File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -93,12 +93,13 @@ export type SuperusersRecord = {
9393 verified ?: boolean
9494}
9595
96- export type ItemsRecord = {
96+ export type ItemsRecord < Ttags = unknown > = {
9797 category ?: string
9898 created ?: IsoDateString
9999 id : string
100100 image ?: string
101101 name ?: string
102+ tags ?: null | Ttags
102103 updated ?: IsoDateString
103104}
104105
@@ -140,7 +141,7 @@ export type ExternalauthsResponse<Texpand = unknown> = Required<ExternalauthsRec
140141export type MfasResponse < Texpand = unknown > = Required < MfasRecord > & BaseSystemFields < Texpand >
141142export type OtpsResponse < Texpand = unknown > = Required < OtpsRecord > & BaseSystemFields < Texpand >
142143export type SuperusersResponse < Texpand = unknown > = Required < SuperusersRecord > & AuthSystemFields < Texpand >
143- export type ItemsResponse < Texpand = unknown > = Required < ItemsRecord > & BaseSystemFields < Texpand >
144+ export type ItemsResponse < Ttags = unknown , Texpand = unknown > = Required < ItemsRecord < Ttags > > & BaseSystemFields < Texpand >
144145export type LookbooksResponse < Texpand = unknown > = Required < LookbooksRecord > & BaseSystemFields < Texpand >
145146export type TrendsResponse < Tsources = unknown , Texpand = unknown > = Required < TrendsRecord < Tsources > > & BaseSystemFields < Texpand >
146147export type UsersResponse < Texpand = unknown > = Required < UsersRecord > & AuthSystemFields < Texpand >
You can’t perform that action at this time.
0 commit comments