@bosonprotocol/core-sdk 1.25.0-alpha.1 → 1.25.0-alpha.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/core-sdk.d.ts +4 -1
- package/dist/cjs/core-sdk.d.ts.map +1 -1
- package/dist/cjs/core-sdk.js +7 -1
- package/dist/cjs/core-sdk.js.map +1 -1
- package/dist/cjs/erc1155/mixin.d.ts +6 -0
- package/dist/cjs/erc1155/mixin.d.ts.map +1 -0
- package/dist/cjs/erc1155/mixin.js +26 -0
- package/dist/cjs/erc1155/mixin.js.map +1 -0
- package/dist/cjs/erc20/mixin.d.ts +12 -0
- package/dist/cjs/erc20/mixin.d.ts.map +1 -0
- package/dist/cjs/erc20/mixin.js +56 -0
- package/dist/cjs/erc20/mixin.js.map +1 -0
- package/dist/cjs/erc721/mixin.d.ts +8 -0
- package/dist/cjs/erc721/mixin.d.ts.map +1 -0
- package/dist/cjs/erc721/mixin.js +36 -0
- package/dist/cjs/erc721/mixin.js.map +1 -0
- package/dist/cjs/meta-tx/handler.d.ts.map +1 -1
- package/dist/cjs/meta-tx/handler.js +9 -6
- package/dist/cjs/meta-tx/handler.js.map +1 -1
- package/dist/cjs/subgraph.d.ts +507 -1
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +33 -3
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/esm/core-sdk.d.ts +4 -1
- package/dist/esm/core-sdk.d.ts.map +1 -1
- package/dist/esm/core-sdk.js +7 -1
- package/dist/esm/core-sdk.js.map +1 -1
- package/dist/esm/erc1155/mixin.d.ts +6 -0
- package/dist/esm/erc1155/mixin.d.ts.map +1 -0
- package/dist/esm/erc1155/mixin.js +11 -0
- package/dist/esm/erc1155/mixin.js.map +1 -0
- package/dist/esm/erc20/mixin.d.ts +12 -0
- package/dist/esm/erc20/mixin.d.ts.map +1 -0
- package/dist/esm/erc20/mixin.js +29 -0
- package/dist/esm/erc20/mixin.js.map +1 -0
- package/dist/esm/erc721/mixin.d.ts +8 -0
- package/dist/esm/erc721/mixin.d.ts.map +1 -0
- package/dist/esm/erc721/mixin.js +17 -0
- package/dist/esm/erc721/mixin.js.map +1 -0
- package/dist/esm/meta-tx/handler.d.ts.map +1 -1
- package/dist/esm/meta-tx/handler.js +9 -6
- package/dist/esm/meta-tx/handler.js.map +1 -1
- package/dist/esm/subgraph.d.ts +507 -1
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +30 -0
- package/dist/esm/subgraph.js.map +1 -1
- package/package.json +3 -3
- package/src/core-sdk.ts +11 -2
- package/src/erc1155/mixin.ts +13 -0
- package/src/erc20/mixin.ts +57 -0
- package/src/erc721/mixin.ts +25 -0
- package/src/meta-tx/handler.ts +10 -10
- package/src/metadata/product-v1.graphql +12 -0
- package/src/subgraph.ts +531 -1
package/src/subgraph.ts
CHANGED
|
@@ -168,8 +168,73 @@ export enum Account_OrderBy {
|
|
|
168
168
|
Logs = "logs"
|
|
169
169
|
}
|
|
170
170
|
|
|
171
|
+
export type AnimationMetadata = {
|
|
172
|
+
__typename?: "AnimationMetadata";
|
|
173
|
+
height?: Maybe<Scalars["Int"]>;
|
|
174
|
+
id: Scalars["ID"];
|
|
175
|
+
type?: Maybe<Scalars["String"]>;
|
|
176
|
+
width?: Maybe<Scalars["Int"]>;
|
|
177
|
+
};
|
|
178
|
+
|
|
179
|
+
export type AnimationMetadata_Filter = {
|
|
180
|
+
/** Filter for the block changed event. */
|
|
181
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
182
|
+
height?: InputMaybe<Scalars["Int"]>;
|
|
183
|
+
height_gt?: InputMaybe<Scalars["Int"]>;
|
|
184
|
+
height_gte?: InputMaybe<Scalars["Int"]>;
|
|
185
|
+
height_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
186
|
+
height_lt?: InputMaybe<Scalars["Int"]>;
|
|
187
|
+
height_lte?: InputMaybe<Scalars["Int"]>;
|
|
188
|
+
height_not?: InputMaybe<Scalars["Int"]>;
|
|
189
|
+
height_not_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
190
|
+
id?: InputMaybe<Scalars["ID"]>;
|
|
191
|
+
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
192
|
+
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
193
|
+
id_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
194
|
+
id_lt?: InputMaybe<Scalars["ID"]>;
|
|
195
|
+
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
196
|
+
id_not?: InputMaybe<Scalars["ID"]>;
|
|
197
|
+
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
198
|
+
type?: InputMaybe<Scalars["String"]>;
|
|
199
|
+
type_contains?: InputMaybe<Scalars["String"]>;
|
|
200
|
+
type_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
201
|
+
type_ends_with?: InputMaybe<Scalars["String"]>;
|
|
202
|
+
type_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
203
|
+
type_gt?: InputMaybe<Scalars["String"]>;
|
|
204
|
+
type_gte?: InputMaybe<Scalars["String"]>;
|
|
205
|
+
type_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
206
|
+
type_lt?: InputMaybe<Scalars["String"]>;
|
|
207
|
+
type_lte?: InputMaybe<Scalars["String"]>;
|
|
208
|
+
type_not?: InputMaybe<Scalars["String"]>;
|
|
209
|
+
type_not_contains?: InputMaybe<Scalars["String"]>;
|
|
210
|
+
type_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
211
|
+
type_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
212
|
+
type_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
213
|
+
type_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
214
|
+
type_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
215
|
+
type_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
216
|
+
type_starts_with?: InputMaybe<Scalars["String"]>;
|
|
217
|
+
type_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
218
|
+
width?: InputMaybe<Scalars["Int"]>;
|
|
219
|
+
width_gt?: InputMaybe<Scalars["Int"]>;
|
|
220
|
+
width_gte?: InputMaybe<Scalars["Int"]>;
|
|
221
|
+
width_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
222
|
+
width_lt?: InputMaybe<Scalars["Int"]>;
|
|
223
|
+
width_lte?: InputMaybe<Scalars["Int"]>;
|
|
224
|
+
width_not?: InputMaybe<Scalars["Int"]>;
|
|
225
|
+
width_not_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
226
|
+
};
|
|
227
|
+
|
|
228
|
+
export enum AnimationMetadata_OrderBy {
|
|
229
|
+
Height = "height",
|
|
230
|
+
Id = "id",
|
|
231
|
+
Type = "type",
|
|
232
|
+
Width = "width"
|
|
233
|
+
}
|
|
234
|
+
|
|
171
235
|
export type BaseMetadataEntity = MetadataInterface & {
|
|
172
236
|
__typename?: "BaseMetadataEntity";
|
|
237
|
+
animationMetadata?: Maybe<AnimationMetadata>;
|
|
173
238
|
animationUrl?: Maybe<Scalars["String"]>;
|
|
174
239
|
attributes?: Maybe<Array<MetadataAttribute>>;
|
|
175
240
|
condition?: Maybe<Scalars["String"]>;
|
|
@@ -217,6 +282,27 @@ export type BaseMetadataEntityAttributesArgs = {
|
|
|
217
282
|
export type BaseMetadataEntity_Filter = {
|
|
218
283
|
/** Filter for the block changed event. */
|
|
219
284
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
285
|
+
animationMetadata?: InputMaybe<Scalars["String"]>;
|
|
286
|
+
animationMetadata_?: InputMaybe<AnimationMetadata_Filter>;
|
|
287
|
+
animationMetadata_contains?: InputMaybe<Scalars["String"]>;
|
|
288
|
+
animationMetadata_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
289
|
+
animationMetadata_ends_with?: InputMaybe<Scalars["String"]>;
|
|
290
|
+
animationMetadata_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
291
|
+
animationMetadata_gt?: InputMaybe<Scalars["String"]>;
|
|
292
|
+
animationMetadata_gte?: InputMaybe<Scalars["String"]>;
|
|
293
|
+
animationMetadata_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
294
|
+
animationMetadata_lt?: InputMaybe<Scalars["String"]>;
|
|
295
|
+
animationMetadata_lte?: InputMaybe<Scalars["String"]>;
|
|
296
|
+
animationMetadata_not?: InputMaybe<Scalars["String"]>;
|
|
297
|
+
animationMetadata_not_contains?: InputMaybe<Scalars["String"]>;
|
|
298
|
+
animationMetadata_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
299
|
+
animationMetadata_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
300
|
+
animationMetadata_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
301
|
+
animationMetadata_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
302
|
+
animationMetadata_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
303
|
+
animationMetadata_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
304
|
+
animationMetadata_starts_with?: InputMaybe<Scalars["String"]>;
|
|
305
|
+
animationMetadata_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
220
306
|
animationUrl?: InputMaybe<Scalars["String"]>;
|
|
221
307
|
animationUrl_contains?: InputMaybe<Scalars["String"]>;
|
|
222
308
|
animationUrl_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -514,6 +600,7 @@ export type BaseMetadataEntity_Filter = {
|
|
|
514
600
|
};
|
|
515
601
|
|
|
516
602
|
export enum BaseMetadataEntity_OrderBy {
|
|
603
|
+
AnimationMetadata = "animationMetadata",
|
|
517
604
|
AnimationUrl = "animationUrl",
|
|
518
605
|
Attributes = "attributes",
|
|
519
606
|
Condition = "condition",
|
|
@@ -2306,6 +2393,7 @@ export enum MetadataAttribute_OrderBy {
|
|
|
2306
2393
|
}
|
|
2307
2394
|
|
|
2308
2395
|
export type MetadataInterface = {
|
|
2396
|
+
animationMetadata?: Maybe<AnimationMetadata>;
|
|
2309
2397
|
animationUrl?: Maybe<Scalars["String"]>;
|
|
2310
2398
|
attributes?: Maybe<Array<MetadataAttribute>>;
|
|
2311
2399
|
condition?: Maybe<Scalars["String"]>;
|
|
@@ -2352,6 +2440,27 @@ export type MetadataInterfaceAttributesArgs = {
|
|
|
2352
2440
|
export type MetadataInterface_Filter = {
|
|
2353
2441
|
/** Filter for the block changed event. */
|
|
2354
2442
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2443
|
+
animationMetadata?: InputMaybe<Scalars["String"]>;
|
|
2444
|
+
animationMetadata_?: InputMaybe<AnimationMetadata_Filter>;
|
|
2445
|
+
animationMetadata_contains?: InputMaybe<Scalars["String"]>;
|
|
2446
|
+
animationMetadata_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2447
|
+
animationMetadata_ends_with?: InputMaybe<Scalars["String"]>;
|
|
2448
|
+
animationMetadata_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2449
|
+
animationMetadata_gt?: InputMaybe<Scalars["String"]>;
|
|
2450
|
+
animationMetadata_gte?: InputMaybe<Scalars["String"]>;
|
|
2451
|
+
animationMetadata_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
2452
|
+
animationMetadata_lt?: InputMaybe<Scalars["String"]>;
|
|
2453
|
+
animationMetadata_lte?: InputMaybe<Scalars["String"]>;
|
|
2454
|
+
animationMetadata_not?: InputMaybe<Scalars["String"]>;
|
|
2455
|
+
animationMetadata_not_contains?: InputMaybe<Scalars["String"]>;
|
|
2456
|
+
animationMetadata_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2457
|
+
animationMetadata_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
2458
|
+
animationMetadata_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2459
|
+
animationMetadata_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
2460
|
+
animationMetadata_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2461
|
+
animationMetadata_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2462
|
+
animationMetadata_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2463
|
+
animationMetadata_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2355
2464
|
animationUrl?: InputMaybe<Scalars["String"]>;
|
|
2356
2465
|
animationUrl_contains?: InputMaybe<Scalars["String"]>;
|
|
2357
2466
|
animationUrl_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -2649,6 +2758,7 @@ export type MetadataInterface_Filter = {
|
|
|
2649
2758
|
};
|
|
2650
2759
|
|
|
2651
2760
|
export enum MetadataInterface_OrderBy {
|
|
2761
|
+
AnimationMetadata = "animationMetadata",
|
|
2652
2762
|
AnimationUrl = "animationUrl",
|
|
2653
2763
|
Attributes = "attributes",
|
|
2654
2764
|
Condition = "condition",
|
|
@@ -3646,10 +3756,12 @@ export enum ProductV1ExchangePolicy_OrderBy {
|
|
|
3646
3756
|
|
|
3647
3757
|
export type ProductV1Media = {
|
|
3648
3758
|
__typename?: "ProductV1Media";
|
|
3759
|
+
height?: Maybe<Scalars["Int"]>;
|
|
3649
3760
|
id: Scalars["ID"];
|
|
3650
3761
|
tag?: Maybe<Scalars["String"]>;
|
|
3651
3762
|
type: ProductV1MediaType;
|
|
3652
3763
|
url: Scalars["String"];
|
|
3764
|
+
width?: Maybe<Scalars["Int"]>;
|
|
3653
3765
|
};
|
|
3654
3766
|
|
|
3655
3767
|
export enum ProductV1MediaType {
|
|
@@ -3660,6 +3772,14 @@ export enum ProductV1MediaType {
|
|
|
3660
3772
|
export type ProductV1Media_Filter = {
|
|
3661
3773
|
/** Filter for the block changed event. */
|
|
3662
3774
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
3775
|
+
height?: InputMaybe<Scalars["Int"]>;
|
|
3776
|
+
height_gt?: InputMaybe<Scalars["Int"]>;
|
|
3777
|
+
height_gte?: InputMaybe<Scalars["Int"]>;
|
|
3778
|
+
height_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
3779
|
+
height_lt?: InputMaybe<Scalars["Int"]>;
|
|
3780
|
+
height_lte?: InputMaybe<Scalars["Int"]>;
|
|
3781
|
+
height_not?: InputMaybe<Scalars["Int"]>;
|
|
3782
|
+
height_not_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
3663
3783
|
id?: InputMaybe<Scalars["ID"]>;
|
|
3664
3784
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
3665
3785
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -3712,17 +3832,28 @@ export type ProductV1Media_Filter = {
|
|
|
3712
3832
|
url_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3713
3833
|
url_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3714
3834
|
url_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3835
|
+
width?: InputMaybe<Scalars["Int"]>;
|
|
3836
|
+
width_gt?: InputMaybe<Scalars["Int"]>;
|
|
3837
|
+
width_gte?: InputMaybe<Scalars["Int"]>;
|
|
3838
|
+
width_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
3839
|
+
width_lt?: InputMaybe<Scalars["Int"]>;
|
|
3840
|
+
width_lte?: InputMaybe<Scalars["Int"]>;
|
|
3841
|
+
width_not?: InputMaybe<Scalars["Int"]>;
|
|
3842
|
+
width_not_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
3715
3843
|
};
|
|
3716
3844
|
|
|
3717
3845
|
export enum ProductV1Media_OrderBy {
|
|
3846
|
+
Height = "height",
|
|
3718
3847
|
Id = "id",
|
|
3719
3848
|
Tag = "tag",
|
|
3720
3849
|
Type = "type",
|
|
3721
|
-
Url = "url"
|
|
3850
|
+
Url = "url",
|
|
3851
|
+
Width = "width"
|
|
3722
3852
|
}
|
|
3723
3853
|
|
|
3724
3854
|
export type ProductV1MetadataEntity = MetadataInterface & {
|
|
3725
3855
|
__typename?: "ProductV1MetadataEntity";
|
|
3856
|
+
animationMetadata?: Maybe<AnimationMetadata>;
|
|
3726
3857
|
animationUrl?: Maybe<Scalars["String"]>;
|
|
3727
3858
|
attributes?: Maybe<Array<MetadataAttribute>>;
|
|
3728
3859
|
condition?: Maybe<Scalars["String"]>;
|
|
@@ -3791,6 +3922,27 @@ export type ProductV1MetadataEntityVariationsArgs = {
|
|
|
3791
3922
|
export type ProductV1MetadataEntity_Filter = {
|
|
3792
3923
|
/** Filter for the block changed event. */
|
|
3793
3924
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
3925
|
+
animationMetadata?: InputMaybe<Scalars["String"]>;
|
|
3926
|
+
animationMetadata_?: InputMaybe<AnimationMetadata_Filter>;
|
|
3927
|
+
animationMetadata_contains?: InputMaybe<Scalars["String"]>;
|
|
3928
|
+
animationMetadata_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3929
|
+
animationMetadata_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3930
|
+
animationMetadata_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3931
|
+
animationMetadata_gt?: InputMaybe<Scalars["String"]>;
|
|
3932
|
+
animationMetadata_gte?: InputMaybe<Scalars["String"]>;
|
|
3933
|
+
animationMetadata_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3934
|
+
animationMetadata_lt?: InputMaybe<Scalars["String"]>;
|
|
3935
|
+
animationMetadata_lte?: InputMaybe<Scalars["String"]>;
|
|
3936
|
+
animationMetadata_not?: InputMaybe<Scalars["String"]>;
|
|
3937
|
+
animationMetadata_not_contains?: InputMaybe<Scalars["String"]>;
|
|
3938
|
+
animationMetadata_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3939
|
+
animationMetadata_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3940
|
+
animationMetadata_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3941
|
+
animationMetadata_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3942
|
+
animationMetadata_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3943
|
+
animationMetadata_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3944
|
+
animationMetadata_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3945
|
+
animationMetadata_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3794
3946
|
animationUrl?: InputMaybe<Scalars["String"]>;
|
|
3795
3947
|
animationUrl_contains?: InputMaybe<Scalars["String"]>;
|
|
3796
3948
|
animationUrl_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -4248,6 +4400,7 @@ export type ProductV1MetadataEntity_Filter = {
|
|
|
4248
4400
|
};
|
|
4249
4401
|
|
|
4250
4402
|
export enum ProductV1MetadataEntity_OrderBy {
|
|
4403
|
+
AnimationMetadata = "animationMetadata",
|
|
4251
4404
|
AnimationUrl = "animationUrl",
|
|
4252
4405
|
Attributes = "attributes",
|
|
4253
4406
|
Condition = "condition",
|
|
@@ -6591,6 +6744,7 @@ export type Query = {
|
|
|
6591
6744
|
accountEventLog?: Maybe<AccountEventLog>;
|
|
6592
6745
|
accountEventLogs: Array<AccountEventLog>;
|
|
6593
6746
|
accounts: Array<Account>;
|
|
6747
|
+
animationMetadata: Array<AnimationMetadata>;
|
|
6594
6748
|
baseMetadataEntities: Array<BaseMetadataEntity>;
|
|
6595
6749
|
baseMetadataEntity?: Maybe<BaseMetadataEntity>;
|
|
6596
6750
|
buyer?: Maybe<Buyer>;
|
|
@@ -6702,6 +6856,16 @@ export type QueryAccountsArgs = {
|
|
|
6702
6856
|
where?: InputMaybe<Account_Filter>;
|
|
6703
6857
|
};
|
|
6704
6858
|
|
|
6859
|
+
export type QueryAnimationMetadataArgs = {
|
|
6860
|
+
block?: InputMaybe<Block_Height>;
|
|
6861
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
6862
|
+
orderBy?: InputMaybe<AnimationMetadata_OrderBy>;
|
|
6863
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
6864
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
6865
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6866
|
+
where?: InputMaybe<AnimationMetadata_Filter>;
|
|
6867
|
+
};
|
|
6868
|
+
|
|
6705
6869
|
export type QueryBaseMetadataEntitiesArgs = {
|
|
6706
6870
|
block?: InputMaybe<Block_Height>;
|
|
6707
6871
|
first?: InputMaybe<Scalars["Int"]>;
|
|
@@ -7473,6 +7637,7 @@ export type Subscription = {
|
|
|
7473
7637
|
accountEventLog?: Maybe<AccountEventLog>;
|
|
7474
7638
|
accountEventLogs: Array<AccountEventLog>;
|
|
7475
7639
|
accounts: Array<Account>;
|
|
7640
|
+
animationMetadata: Array<AnimationMetadata>;
|
|
7476
7641
|
baseMetadataEntities: Array<BaseMetadataEntity>;
|
|
7477
7642
|
baseMetadataEntity?: Maybe<BaseMetadataEntity>;
|
|
7478
7643
|
buyer?: Maybe<Buyer>;
|
|
@@ -7584,6 +7749,16 @@ export type SubscriptionAccountsArgs = {
|
|
|
7584
7749
|
where?: InputMaybe<Account_Filter>;
|
|
7585
7750
|
};
|
|
7586
7751
|
|
|
7752
|
+
export type SubscriptionAnimationMetadataArgs = {
|
|
7753
|
+
block?: InputMaybe<Block_Height>;
|
|
7754
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
7755
|
+
orderBy?: InputMaybe<AnimationMetadata_OrderBy>;
|
|
7756
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
7757
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
7758
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
7759
|
+
where?: InputMaybe<AnimationMetadata_Filter>;
|
|
7760
|
+
};
|
|
7761
|
+
|
|
7587
7762
|
export type SubscriptionBaseMetadataEntitiesArgs = {
|
|
7588
7763
|
block?: InputMaybe<Block_Height>;
|
|
7589
7764
|
first?: InputMaybe<Scalars["Int"]>;
|
|
@@ -8467,6 +8642,8 @@ export type GetSellerByIdQueryQuery = {
|
|
|
8467
8642
|
url: string;
|
|
8468
8643
|
tag?: string | null;
|
|
8469
8644
|
type: ProductV1MediaType;
|
|
8645
|
+
width?: number | null;
|
|
8646
|
+
height?: number | null;
|
|
8470
8647
|
}>;
|
|
8471
8648
|
visuals_videos?: Array<{
|
|
8472
8649
|
__typename?: "ProductV1Media";
|
|
@@ -8474,6 +8651,8 @@ export type GetSellerByIdQueryQuery = {
|
|
|
8474
8651
|
url: string;
|
|
8475
8652
|
tag?: string | null;
|
|
8476
8653
|
type: ProductV1MediaType;
|
|
8654
|
+
width?: number | null;
|
|
8655
|
+
height?: number | null;
|
|
8477
8656
|
}> | null;
|
|
8478
8657
|
productV1Seller?: {
|
|
8479
8658
|
__typename?: "ProductV1Seller";
|
|
@@ -8490,6 +8669,8 @@ export type GetSellerByIdQueryQuery = {
|
|
|
8490
8669
|
url: string;
|
|
8491
8670
|
tag?: string | null;
|
|
8492
8671
|
type: ProductV1MediaType;
|
|
8672
|
+
width?: number | null;
|
|
8673
|
+
height?: number | null;
|
|
8493
8674
|
}> | null;
|
|
8494
8675
|
contactLinks?: Array<{
|
|
8495
8676
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -8534,6 +8715,8 @@ export type GetSellerByIdQueryQuery = {
|
|
|
8534
8715
|
url: string;
|
|
8535
8716
|
tag?: string | null;
|
|
8536
8717
|
type: ProductV1MediaType;
|
|
8718
|
+
width?: number | null;
|
|
8719
|
+
height?: number | null;
|
|
8537
8720
|
}> | null;
|
|
8538
8721
|
contactLinks?: Array<{
|
|
8539
8722
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -8975,6 +9158,8 @@ export type GetSellersQueryQuery = {
|
|
|
8975
9158
|
url: string;
|
|
8976
9159
|
tag?: string | null;
|
|
8977
9160
|
type: ProductV1MediaType;
|
|
9161
|
+
width?: number | null;
|
|
9162
|
+
height?: number | null;
|
|
8978
9163
|
}>;
|
|
8979
9164
|
visuals_videos?: Array<{
|
|
8980
9165
|
__typename?: "ProductV1Media";
|
|
@@ -8982,6 +9167,8 @@ export type GetSellersQueryQuery = {
|
|
|
8982
9167
|
url: string;
|
|
8983
9168
|
tag?: string | null;
|
|
8984
9169
|
type: ProductV1MediaType;
|
|
9170
|
+
width?: number | null;
|
|
9171
|
+
height?: number | null;
|
|
8985
9172
|
}> | null;
|
|
8986
9173
|
productV1Seller?: {
|
|
8987
9174
|
__typename?: "ProductV1Seller";
|
|
@@ -8998,6 +9185,8 @@ export type GetSellersQueryQuery = {
|
|
|
8998
9185
|
url: string;
|
|
8999
9186
|
tag?: string | null;
|
|
9000
9187
|
type: ProductV1MediaType;
|
|
9188
|
+
width?: number | null;
|
|
9189
|
+
height?: number | null;
|
|
9001
9190
|
}> | null;
|
|
9002
9191
|
contactLinks?: Array<{
|
|
9003
9192
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -9042,6 +9231,8 @@ export type GetSellersQueryQuery = {
|
|
|
9042
9231
|
url: string;
|
|
9043
9232
|
tag?: string | null;
|
|
9044
9233
|
type: ProductV1MediaType;
|
|
9234
|
+
width?: number | null;
|
|
9235
|
+
height?: number | null;
|
|
9045
9236
|
}> | null;
|
|
9046
9237
|
contactLinks?: Array<{
|
|
9047
9238
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -9791,6 +9982,8 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
9791
9982
|
url: string;
|
|
9792
9983
|
tag?: string | null;
|
|
9793
9984
|
type: ProductV1MediaType;
|
|
9985
|
+
width?: number | null;
|
|
9986
|
+
height?: number | null;
|
|
9794
9987
|
}>;
|
|
9795
9988
|
visuals_videos?: Array<{
|
|
9796
9989
|
__typename?: "ProductV1Media";
|
|
@@ -9798,6 +9991,8 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
9798
9991
|
url: string;
|
|
9799
9992
|
tag?: string | null;
|
|
9800
9993
|
type: ProductV1MediaType;
|
|
9994
|
+
width?: number | null;
|
|
9995
|
+
height?: number | null;
|
|
9801
9996
|
}> | null;
|
|
9802
9997
|
productV1Seller?: {
|
|
9803
9998
|
__typename?: "ProductV1Seller";
|
|
@@ -9814,6 +10009,8 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
9814
10009
|
url: string;
|
|
9815
10010
|
tag?: string | null;
|
|
9816
10011
|
type: ProductV1MediaType;
|
|
10012
|
+
width?: number | null;
|
|
10013
|
+
height?: number | null;
|
|
9817
10014
|
}> | null;
|
|
9818
10015
|
contactLinks?: Array<{
|
|
9819
10016
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -9858,6 +10055,8 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
9858
10055
|
url: string;
|
|
9859
10056
|
tag?: string | null;
|
|
9860
10057
|
type: ProductV1MediaType;
|
|
10058
|
+
width?: number | null;
|
|
10059
|
+
height?: number | null;
|
|
9861
10060
|
}> | null;
|
|
9862
10061
|
contactLinks?: Array<{
|
|
9863
10062
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -10234,6 +10433,8 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
10234
10433
|
url: string;
|
|
10235
10434
|
tag?: string | null;
|
|
10236
10435
|
type: ProductV1MediaType;
|
|
10436
|
+
width?: number | null;
|
|
10437
|
+
height?: number | null;
|
|
10237
10438
|
}>;
|
|
10238
10439
|
visuals_videos?: Array<{
|
|
10239
10440
|
__typename?: "ProductV1Media";
|
|
@@ -10241,6 +10442,8 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
10241
10442
|
url: string;
|
|
10242
10443
|
tag?: string | null;
|
|
10243
10444
|
type: ProductV1MediaType;
|
|
10445
|
+
width?: number | null;
|
|
10446
|
+
height?: number | null;
|
|
10244
10447
|
}> | null;
|
|
10245
10448
|
productV1Seller?: {
|
|
10246
10449
|
__typename?: "ProductV1Seller";
|
|
@@ -10257,6 +10460,8 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
10257
10460
|
url: string;
|
|
10258
10461
|
tag?: string | null;
|
|
10259
10462
|
type: ProductV1MediaType;
|
|
10463
|
+
width?: number | null;
|
|
10464
|
+
height?: number | null;
|
|
10260
10465
|
}> | null;
|
|
10261
10466
|
contactLinks?: Array<{
|
|
10262
10467
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -10301,6 +10506,8 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
10301
10506
|
url: string;
|
|
10302
10507
|
tag?: string | null;
|
|
10303
10508
|
type: ProductV1MediaType;
|
|
10509
|
+
width?: number | null;
|
|
10510
|
+
height?: number | null;
|
|
10304
10511
|
}> | null;
|
|
10305
10512
|
contactLinks?: Array<{
|
|
10306
10513
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -10669,6 +10876,8 @@ export type SellerFieldsFragment = {
|
|
|
10669
10876
|
url: string;
|
|
10670
10877
|
tag?: string | null;
|
|
10671
10878
|
type: ProductV1MediaType;
|
|
10879
|
+
width?: number | null;
|
|
10880
|
+
height?: number | null;
|
|
10672
10881
|
}>;
|
|
10673
10882
|
visuals_videos?: Array<{
|
|
10674
10883
|
__typename?: "ProductV1Media";
|
|
@@ -10676,6 +10885,8 @@ export type SellerFieldsFragment = {
|
|
|
10676
10885
|
url: string;
|
|
10677
10886
|
tag?: string | null;
|
|
10678
10887
|
type: ProductV1MediaType;
|
|
10888
|
+
width?: number | null;
|
|
10889
|
+
height?: number | null;
|
|
10679
10890
|
}> | null;
|
|
10680
10891
|
productV1Seller?: {
|
|
10681
10892
|
__typename?: "ProductV1Seller";
|
|
@@ -10692,6 +10903,8 @@ export type SellerFieldsFragment = {
|
|
|
10692
10903
|
url: string;
|
|
10693
10904
|
tag?: string | null;
|
|
10694
10905
|
type: ProductV1MediaType;
|
|
10906
|
+
width?: number | null;
|
|
10907
|
+
height?: number | null;
|
|
10695
10908
|
}> | null;
|
|
10696
10909
|
contactLinks?: Array<{
|
|
10697
10910
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -10736,6 +10949,8 @@ export type SellerFieldsFragment = {
|
|
|
10736
10949
|
url: string;
|
|
10737
10950
|
tag?: string | null;
|
|
10738
10951
|
type: ProductV1MediaType;
|
|
10952
|
+
width?: number | null;
|
|
10953
|
+
height?: number | null;
|
|
10739
10954
|
}> | null;
|
|
10740
10955
|
contactLinks?: Array<{
|
|
10741
10956
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -11292,6 +11507,8 @@ export type DisputeResolverFieldsFragment = {
|
|
|
11292
11507
|
url: string;
|
|
11293
11508
|
tag?: string | null;
|
|
11294
11509
|
type: ProductV1MediaType;
|
|
11510
|
+
width?: number | null;
|
|
11511
|
+
height?: number | null;
|
|
11295
11512
|
}>;
|
|
11296
11513
|
visuals_videos?: Array<{
|
|
11297
11514
|
__typename?: "ProductV1Media";
|
|
@@ -11299,6 +11516,8 @@ export type DisputeResolverFieldsFragment = {
|
|
|
11299
11516
|
url: string;
|
|
11300
11517
|
tag?: string | null;
|
|
11301
11518
|
type: ProductV1MediaType;
|
|
11519
|
+
width?: number | null;
|
|
11520
|
+
height?: number | null;
|
|
11302
11521
|
}> | null;
|
|
11303
11522
|
productV1Seller?: {
|
|
11304
11523
|
__typename?: "ProductV1Seller";
|
|
@@ -11315,6 +11534,8 @@ export type DisputeResolverFieldsFragment = {
|
|
|
11315
11534
|
url: string;
|
|
11316
11535
|
tag?: string | null;
|
|
11317
11536
|
type: ProductV1MediaType;
|
|
11537
|
+
width?: number | null;
|
|
11538
|
+
height?: number | null;
|
|
11318
11539
|
}> | null;
|
|
11319
11540
|
contactLinks?: Array<{
|
|
11320
11541
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -11359,6 +11580,8 @@ export type DisputeResolverFieldsFragment = {
|
|
|
11359
11580
|
url: string;
|
|
11360
11581
|
tag?: string | null;
|
|
11361
11582
|
type: ProductV1MediaType;
|
|
11583
|
+
width?: number | null;
|
|
11584
|
+
height?: number | null;
|
|
11362
11585
|
}> | null;
|
|
11363
11586
|
contactLinks?: Array<{
|
|
11364
11587
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12078,6 +12301,8 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
12078
12301
|
url: string;
|
|
12079
12302
|
tag?: string | null;
|
|
12080
12303
|
type: ProductV1MediaType;
|
|
12304
|
+
width?: number | null;
|
|
12305
|
+
height?: number | null;
|
|
12081
12306
|
}>;
|
|
12082
12307
|
visuals_videos?: Array<{
|
|
12083
12308
|
__typename?: "ProductV1Media";
|
|
@@ -12085,6 +12310,8 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
12085
12310
|
url: string;
|
|
12086
12311
|
tag?: string | null;
|
|
12087
12312
|
type: ProductV1MediaType;
|
|
12313
|
+
width?: number | null;
|
|
12314
|
+
height?: number | null;
|
|
12088
12315
|
}> | null;
|
|
12089
12316
|
productV1Seller?: {
|
|
12090
12317
|
__typename?: "ProductV1Seller";
|
|
@@ -12101,6 +12328,8 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
12101
12328
|
url: string;
|
|
12102
12329
|
tag?: string | null;
|
|
12103
12330
|
type: ProductV1MediaType;
|
|
12331
|
+
width?: number | null;
|
|
12332
|
+
height?: number | null;
|
|
12104
12333
|
}> | null;
|
|
12105
12334
|
contactLinks?: Array<{
|
|
12106
12335
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12145,6 +12374,8 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
12145
12374
|
url: string;
|
|
12146
12375
|
tag?: string | null;
|
|
12147
12376
|
type: ProductV1MediaType;
|
|
12377
|
+
width?: number | null;
|
|
12378
|
+
height?: number | null;
|
|
12148
12379
|
}> | null;
|
|
12149
12380
|
contactLinks?: Array<{
|
|
12150
12381
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12432,6 +12663,8 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
12432
12663
|
url: string;
|
|
12433
12664
|
tag?: string | null;
|
|
12434
12665
|
type: ProductV1MediaType;
|
|
12666
|
+
width?: number | null;
|
|
12667
|
+
height?: number | null;
|
|
12435
12668
|
}>;
|
|
12436
12669
|
visuals_videos?: Array<{
|
|
12437
12670
|
__typename?: "ProductV1Media";
|
|
@@ -12439,6 +12672,8 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
12439
12672
|
url: string;
|
|
12440
12673
|
tag?: string | null;
|
|
12441
12674
|
type: ProductV1MediaType;
|
|
12675
|
+
width?: number | null;
|
|
12676
|
+
height?: number | null;
|
|
12442
12677
|
}> | null;
|
|
12443
12678
|
productV1Seller?: {
|
|
12444
12679
|
__typename?: "ProductV1Seller";
|
|
@@ -12455,6 +12690,8 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
12455
12690
|
url: string;
|
|
12456
12691
|
tag?: string | null;
|
|
12457
12692
|
type: ProductV1MediaType;
|
|
12693
|
+
width?: number | null;
|
|
12694
|
+
height?: number | null;
|
|
12458
12695
|
}> | null;
|
|
12459
12696
|
contactLinks?: Array<{
|
|
12460
12697
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12499,6 +12736,8 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
12499
12736
|
url: string;
|
|
12500
12737
|
tag?: string | null;
|
|
12501
12738
|
type: ProductV1MediaType;
|
|
12739
|
+
width?: number | null;
|
|
12740
|
+
height?: number | null;
|
|
12502
12741
|
}> | null;
|
|
12503
12742
|
contactLinks?: Array<{
|
|
12504
12743
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12760,6 +12999,8 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
12760
12999
|
url: string;
|
|
12761
13000
|
tag?: string | null;
|
|
12762
13001
|
type: ProductV1MediaType;
|
|
13002
|
+
width?: number | null;
|
|
13003
|
+
height?: number | null;
|
|
12763
13004
|
}>;
|
|
12764
13005
|
visuals_videos?: Array<{
|
|
12765
13006
|
__typename?: "ProductV1Media";
|
|
@@ -12767,6 +13008,8 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
12767
13008
|
url: string;
|
|
12768
13009
|
tag?: string | null;
|
|
12769
13010
|
type: ProductV1MediaType;
|
|
13011
|
+
width?: number | null;
|
|
13012
|
+
height?: number | null;
|
|
12770
13013
|
}> | null;
|
|
12771
13014
|
productV1Seller?: {
|
|
12772
13015
|
__typename?: "ProductV1Seller";
|
|
@@ -12783,6 +13026,8 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
12783
13026
|
url: string;
|
|
12784
13027
|
tag?: string | null;
|
|
12785
13028
|
type: ProductV1MediaType;
|
|
13029
|
+
width?: number | null;
|
|
13030
|
+
height?: number | null;
|
|
12786
13031
|
}> | null;
|
|
12787
13032
|
contactLinks?: Array<{
|
|
12788
13033
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12827,6 +13072,8 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
12827
13072
|
url: string;
|
|
12828
13073
|
tag?: string | null;
|
|
12829
13074
|
type: ProductV1MediaType;
|
|
13075
|
+
width?: number | null;
|
|
13076
|
+
height?: number | null;
|
|
12830
13077
|
}> | null;
|
|
12831
13078
|
contactLinks?: Array<{
|
|
12832
13079
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -13275,6 +13522,8 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
13275
13522
|
url: string;
|
|
13276
13523
|
tag?: string | null;
|
|
13277
13524
|
type: ProductV1MediaType;
|
|
13525
|
+
width?: number | null;
|
|
13526
|
+
height?: number | null;
|
|
13278
13527
|
}>;
|
|
13279
13528
|
visuals_videos?: Array<{
|
|
13280
13529
|
__typename?: "ProductV1Media";
|
|
@@ -13282,6 +13531,8 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
13282
13531
|
url: string;
|
|
13283
13532
|
tag?: string | null;
|
|
13284
13533
|
type: ProductV1MediaType;
|
|
13534
|
+
width?: number | null;
|
|
13535
|
+
height?: number | null;
|
|
13285
13536
|
}> | null;
|
|
13286
13537
|
productV1Seller?: {
|
|
13287
13538
|
__typename?: "ProductV1Seller";
|
|
@@ -13298,6 +13549,8 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
13298
13549
|
url: string;
|
|
13299
13550
|
tag?: string | null;
|
|
13300
13551
|
type: ProductV1MediaType;
|
|
13552
|
+
width?: number | null;
|
|
13553
|
+
height?: number | null;
|
|
13301
13554
|
}> | null;
|
|
13302
13555
|
contactLinks?: Array<{
|
|
13303
13556
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -13342,6 +13595,8 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
13342
13595
|
url: string;
|
|
13343
13596
|
tag?: string | null;
|
|
13344
13597
|
type: ProductV1MediaType;
|
|
13598
|
+
width?: number | null;
|
|
13599
|
+
height?: number | null;
|
|
13345
13600
|
}> | null;
|
|
13346
13601
|
contactLinks?: Array<{
|
|
13347
13602
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -13653,6 +13908,8 @@ export type GetExchangesQueryQuery = {
|
|
|
13653
13908
|
url: string;
|
|
13654
13909
|
tag?: string | null;
|
|
13655
13910
|
type: ProductV1MediaType;
|
|
13911
|
+
width?: number | null;
|
|
13912
|
+
height?: number | null;
|
|
13656
13913
|
}>;
|
|
13657
13914
|
visuals_videos?: Array<{
|
|
13658
13915
|
__typename?: "ProductV1Media";
|
|
@@ -13660,6 +13917,8 @@ export type GetExchangesQueryQuery = {
|
|
|
13660
13917
|
url: string;
|
|
13661
13918
|
tag?: string | null;
|
|
13662
13919
|
type: ProductV1MediaType;
|
|
13920
|
+
width?: number | null;
|
|
13921
|
+
height?: number | null;
|
|
13663
13922
|
}> | null;
|
|
13664
13923
|
productV1Seller?: {
|
|
13665
13924
|
__typename?: "ProductV1Seller";
|
|
@@ -13676,6 +13935,8 @@ export type GetExchangesQueryQuery = {
|
|
|
13676
13935
|
url: string;
|
|
13677
13936
|
tag?: string | null;
|
|
13678
13937
|
type: ProductV1MediaType;
|
|
13938
|
+
width?: number | null;
|
|
13939
|
+
height?: number | null;
|
|
13679
13940
|
}> | null;
|
|
13680
13941
|
contactLinks?: Array<{
|
|
13681
13942
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -13720,6 +13981,8 @@ export type GetExchangesQueryQuery = {
|
|
|
13720
13981
|
url: string;
|
|
13721
13982
|
tag?: string | null;
|
|
13722
13983
|
type: ProductV1MediaType;
|
|
13984
|
+
width?: number | null;
|
|
13985
|
+
height?: number | null;
|
|
13723
13986
|
}> | null;
|
|
13724
13987
|
contactLinks?: Array<{
|
|
13725
13988
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14017,6 +14280,8 @@ export type ExchangeFieldsFragment = {
|
|
|
14017
14280
|
url: string;
|
|
14018
14281
|
tag?: string | null;
|
|
14019
14282
|
type: ProductV1MediaType;
|
|
14283
|
+
width?: number | null;
|
|
14284
|
+
height?: number | null;
|
|
14020
14285
|
}>;
|
|
14021
14286
|
visuals_videos?: Array<{
|
|
14022
14287
|
__typename?: "ProductV1Media";
|
|
@@ -14024,6 +14289,8 @@ export type ExchangeFieldsFragment = {
|
|
|
14024
14289
|
url: string;
|
|
14025
14290
|
tag?: string | null;
|
|
14026
14291
|
type: ProductV1MediaType;
|
|
14292
|
+
width?: number | null;
|
|
14293
|
+
height?: number | null;
|
|
14027
14294
|
}> | null;
|
|
14028
14295
|
productV1Seller?: {
|
|
14029
14296
|
__typename?: "ProductV1Seller";
|
|
@@ -14040,6 +14307,8 @@ export type ExchangeFieldsFragment = {
|
|
|
14040
14307
|
url: string;
|
|
14041
14308
|
tag?: string | null;
|
|
14042
14309
|
type: ProductV1MediaType;
|
|
14310
|
+
width?: number | null;
|
|
14311
|
+
height?: number | null;
|
|
14043
14312
|
}> | null;
|
|
14044
14313
|
contactLinks?: Array<{
|
|
14045
14314
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14084,6 +14353,8 @@ export type ExchangeFieldsFragment = {
|
|
|
14084
14353
|
url: string;
|
|
14085
14354
|
tag?: string | null;
|
|
14086
14355
|
type: ProductV1MediaType;
|
|
14356
|
+
width?: number | null;
|
|
14357
|
+
height?: number | null;
|
|
14087
14358
|
}> | null;
|
|
14088
14359
|
contactLinks?: Array<{
|
|
14089
14360
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14528,6 +14799,8 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14528
14799
|
url: string;
|
|
14529
14800
|
tag?: string | null;
|
|
14530
14801
|
type: ProductV1MediaType;
|
|
14802
|
+
width?: number | null;
|
|
14803
|
+
height?: number | null;
|
|
14531
14804
|
}>;
|
|
14532
14805
|
visuals_videos?: Array<{
|
|
14533
14806
|
__typename?: "ProductV1Media";
|
|
@@ -14535,6 +14808,8 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14535
14808
|
url: string;
|
|
14536
14809
|
tag?: string | null;
|
|
14537
14810
|
type: ProductV1MediaType;
|
|
14811
|
+
width?: number | null;
|
|
14812
|
+
height?: number | null;
|
|
14538
14813
|
}> | null;
|
|
14539
14814
|
productV1Seller?: {
|
|
14540
14815
|
__typename?: "ProductV1Seller";
|
|
@@ -14551,6 +14826,8 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14551
14826
|
url: string;
|
|
14552
14827
|
tag?: string | null;
|
|
14553
14828
|
type: ProductV1MediaType;
|
|
14829
|
+
width?: number | null;
|
|
14830
|
+
height?: number | null;
|
|
14554
14831
|
}> | null;
|
|
14555
14832
|
contactLinks?: Array<{
|
|
14556
14833
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14595,6 +14872,8 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14595
14872
|
url: string;
|
|
14596
14873
|
tag?: string | null;
|
|
14597
14874
|
type: ProductV1MediaType;
|
|
14875
|
+
width?: number | null;
|
|
14876
|
+
height?: number | null;
|
|
14598
14877
|
}> | null;
|
|
14599
14878
|
contactLinks?: Array<{
|
|
14600
14879
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14904,6 +15183,8 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
14904
15183
|
url: string;
|
|
14905
15184
|
tag?: string | null;
|
|
14906
15185
|
type: ProductV1MediaType;
|
|
15186
|
+
width?: number | null;
|
|
15187
|
+
height?: number | null;
|
|
14907
15188
|
}>;
|
|
14908
15189
|
visuals_videos?: Array<{
|
|
14909
15190
|
__typename?: "ProductV1Media";
|
|
@@ -14911,6 +15192,8 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
14911
15192
|
url: string;
|
|
14912
15193
|
tag?: string | null;
|
|
14913
15194
|
type: ProductV1MediaType;
|
|
15195
|
+
width?: number | null;
|
|
15196
|
+
height?: number | null;
|
|
14914
15197
|
}> | null;
|
|
14915
15198
|
productV1Seller?: {
|
|
14916
15199
|
__typename?: "ProductV1Seller";
|
|
@@ -14927,6 +15210,8 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
14927
15210
|
url: string;
|
|
14928
15211
|
tag?: string | null;
|
|
14929
15212
|
type: ProductV1MediaType;
|
|
15213
|
+
width?: number | null;
|
|
15214
|
+
height?: number | null;
|
|
14930
15215
|
}> | null;
|
|
14931
15216
|
contactLinks?: Array<{
|
|
14932
15217
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14971,6 +15256,8 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
14971
15256
|
url: string;
|
|
14972
15257
|
tag?: string | null;
|
|
14973
15258
|
type: ProductV1MediaType;
|
|
15259
|
+
width?: number | null;
|
|
15260
|
+
height?: number | null;
|
|
14974
15261
|
}> | null;
|
|
14975
15262
|
contactLinks?: Array<{
|
|
14976
15263
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15266,6 +15553,8 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
15266
15553
|
url: string;
|
|
15267
15554
|
tag?: string | null;
|
|
15268
15555
|
type: ProductV1MediaType;
|
|
15556
|
+
width?: number | null;
|
|
15557
|
+
height?: number | null;
|
|
15269
15558
|
}>;
|
|
15270
15559
|
visuals_videos?: Array<{
|
|
15271
15560
|
__typename?: "ProductV1Media";
|
|
@@ -15273,6 +15562,8 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
15273
15562
|
url: string;
|
|
15274
15563
|
tag?: string | null;
|
|
15275
15564
|
type: ProductV1MediaType;
|
|
15565
|
+
width?: number | null;
|
|
15566
|
+
height?: number | null;
|
|
15276
15567
|
}> | null;
|
|
15277
15568
|
productV1Seller?: {
|
|
15278
15569
|
__typename?: "ProductV1Seller";
|
|
@@ -15289,6 +15580,8 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
15289
15580
|
url: string;
|
|
15290
15581
|
tag?: string | null;
|
|
15291
15582
|
type: ProductV1MediaType;
|
|
15583
|
+
width?: number | null;
|
|
15584
|
+
height?: number | null;
|
|
15292
15585
|
}> | null;
|
|
15293
15586
|
contactLinks?: Array<{
|
|
15294
15587
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15333,6 +15626,8 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
15333
15626
|
url: string;
|
|
15334
15627
|
tag?: string | null;
|
|
15335
15628
|
type: ProductV1MediaType;
|
|
15629
|
+
width?: number | null;
|
|
15630
|
+
height?: number | null;
|
|
15336
15631
|
}> | null;
|
|
15337
15632
|
contactLinks?: Array<{
|
|
15338
15633
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15627,6 +15922,8 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
15627
15922
|
url: string;
|
|
15628
15923
|
tag?: string | null;
|
|
15629
15924
|
type: ProductV1MediaType;
|
|
15925
|
+
width?: number | null;
|
|
15926
|
+
height?: number | null;
|
|
15630
15927
|
}>;
|
|
15631
15928
|
visuals_videos?: Array<{
|
|
15632
15929
|
__typename?: "ProductV1Media";
|
|
@@ -15634,6 +15931,8 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
15634
15931
|
url: string;
|
|
15635
15932
|
tag?: string | null;
|
|
15636
15933
|
type: ProductV1MediaType;
|
|
15934
|
+
width?: number | null;
|
|
15935
|
+
height?: number | null;
|
|
15637
15936
|
}> | null;
|
|
15638
15937
|
productV1Seller?: {
|
|
15639
15938
|
__typename?: "ProductV1Seller";
|
|
@@ -15650,6 +15949,8 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
15650
15949
|
url: string;
|
|
15651
15950
|
tag?: string | null;
|
|
15652
15951
|
type: ProductV1MediaType;
|
|
15952
|
+
width?: number | null;
|
|
15953
|
+
height?: number | null;
|
|
15653
15954
|
}> | null;
|
|
15654
15955
|
contactLinks?: Array<{
|
|
15655
15956
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15694,6 +15995,8 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
15694
15995
|
url: string;
|
|
15695
15996
|
tag?: string | null;
|
|
15696
15997
|
type: ProductV1MediaType;
|
|
15998
|
+
width?: number | null;
|
|
15999
|
+
height?: number | null;
|
|
15697
16000
|
}> | null;
|
|
15698
16001
|
contactLinks?: Array<{
|
|
15699
16002
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15861,6 +16164,8 @@ export type GetProductV1ProductsQueryQuery = {
|
|
|
15861
16164
|
url: string;
|
|
15862
16165
|
tag?: string | null;
|
|
15863
16166
|
type: ProductV1MediaType;
|
|
16167
|
+
width?: number | null;
|
|
16168
|
+
height?: number | null;
|
|
15864
16169
|
}>;
|
|
15865
16170
|
visuals_videos?: Array<{
|
|
15866
16171
|
__typename?: "ProductV1Media";
|
|
@@ -15868,6 +16173,8 @@ export type GetProductV1ProductsQueryQuery = {
|
|
|
15868
16173
|
url: string;
|
|
15869
16174
|
tag?: string | null;
|
|
15870
16175
|
type: ProductV1MediaType;
|
|
16176
|
+
width?: number | null;
|
|
16177
|
+
height?: number | null;
|
|
15871
16178
|
}> | null;
|
|
15872
16179
|
productV1Seller?: {
|
|
15873
16180
|
__typename?: "ProductV1Seller";
|
|
@@ -15884,6 +16191,8 @@ export type GetProductV1ProductsQueryQuery = {
|
|
|
15884
16191
|
url: string;
|
|
15885
16192
|
tag?: string | null;
|
|
15886
16193
|
type: ProductV1MediaType;
|
|
16194
|
+
width?: number | null;
|
|
16195
|
+
height?: number | null;
|
|
15887
16196
|
}> | null;
|
|
15888
16197
|
contactLinks?: Array<{
|
|
15889
16198
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16206,6 +16515,8 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16206
16515
|
url: string;
|
|
16207
16516
|
tag?: string | null;
|
|
16208
16517
|
type: ProductV1MediaType;
|
|
16518
|
+
width?: number | null;
|
|
16519
|
+
height?: number | null;
|
|
16209
16520
|
}>;
|
|
16210
16521
|
visuals_videos?: Array<{
|
|
16211
16522
|
__typename?: "ProductV1Media";
|
|
@@ -16213,6 +16524,8 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16213
16524
|
url: string;
|
|
16214
16525
|
tag?: string | null;
|
|
16215
16526
|
type: ProductV1MediaType;
|
|
16527
|
+
width?: number | null;
|
|
16528
|
+
height?: number | null;
|
|
16216
16529
|
}> | null;
|
|
16217
16530
|
productV1Seller?: {
|
|
16218
16531
|
__typename?: "ProductV1Seller";
|
|
@@ -16229,6 +16542,8 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16229
16542
|
url: string;
|
|
16230
16543
|
tag?: string | null;
|
|
16231
16544
|
type: ProductV1MediaType;
|
|
16545
|
+
width?: number | null;
|
|
16546
|
+
height?: number | null;
|
|
16232
16547
|
}> | null;
|
|
16233
16548
|
contactLinks?: Array<{
|
|
16234
16549
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16273,6 +16588,8 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16273
16588
|
url: string;
|
|
16274
16589
|
tag?: string | null;
|
|
16275
16590
|
type: ProductV1MediaType;
|
|
16591
|
+
width?: number | null;
|
|
16592
|
+
height?: number | null;
|
|
16276
16593
|
}> | null;
|
|
16277
16594
|
contactLinks?: Array<{
|
|
16278
16595
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16366,6 +16683,8 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16366
16683
|
url: string;
|
|
16367
16684
|
tag?: string | null;
|
|
16368
16685
|
type: ProductV1MediaType;
|
|
16686
|
+
width?: number | null;
|
|
16687
|
+
height?: number | null;
|
|
16369
16688
|
}>;
|
|
16370
16689
|
visuals_videos?: Array<{
|
|
16371
16690
|
__typename?: "ProductV1Media";
|
|
@@ -16373,6 +16692,8 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16373
16692
|
url: string;
|
|
16374
16693
|
tag?: string | null;
|
|
16375
16694
|
type: ProductV1MediaType;
|
|
16695
|
+
width?: number | null;
|
|
16696
|
+
height?: number | null;
|
|
16376
16697
|
}> | null;
|
|
16377
16698
|
productV1Seller?: {
|
|
16378
16699
|
__typename?: "ProductV1Seller";
|
|
@@ -16389,6 +16710,8 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16389
16710
|
url: string;
|
|
16390
16711
|
tag?: string | null;
|
|
16391
16712
|
type: ProductV1MediaType;
|
|
16713
|
+
width?: number | null;
|
|
16714
|
+
height?: number | null;
|
|
16392
16715
|
}> | null;
|
|
16393
16716
|
contactLinks?: Array<{
|
|
16394
16717
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16711,6 +17034,8 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16711
17034
|
url: string;
|
|
16712
17035
|
tag?: string | null;
|
|
16713
17036
|
type: ProductV1MediaType;
|
|
17037
|
+
width?: number | null;
|
|
17038
|
+
height?: number | null;
|
|
16714
17039
|
}>;
|
|
16715
17040
|
visuals_videos?: Array<{
|
|
16716
17041
|
__typename?: "ProductV1Media";
|
|
@@ -16718,6 +17043,8 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16718
17043
|
url: string;
|
|
16719
17044
|
tag?: string | null;
|
|
16720
17045
|
type: ProductV1MediaType;
|
|
17046
|
+
width?: number | null;
|
|
17047
|
+
height?: number | null;
|
|
16721
17048
|
}> | null;
|
|
16722
17049
|
productV1Seller?: {
|
|
16723
17050
|
__typename?: "ProductV1Seller";
|
|
@@ -16734,6 +17061,8 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16734
17061
|
url: string;
|
|
16735
17062
|
tag?: string | null;
|
|
16736
17063
|
type: ProductV1MediaType;
|
|
17064
|
+
width?: number | null;
|
|
17065
|
+
height?: number | null;
|
|
16737
17066
|
}> | null;
|
|
16738
17067
|
contactLinks?: Array<{
|
|
16739
17068
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16778,6 +17107,8 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16778
17107
|
url: string;
|
|
16779
17108
|
tag?: string | null;
|
|
16780
17109
|
type: ProductV1MediaType;
|
|
17110
|
+
width?: number | null;
|
|
17111
|
+
height?: number | null;
|
|
16781
17112
|
}> | null;
|
|
16782
17113
|
contactLinks?: Array<{
|
|
16783
17114
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16871,6 +17202,8 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16871
17202
|
url: string;
|
|
16872
17203
|
tag?: string | null;
|
|
16873
17204
|
type: ProductV1MediaType;
|
|
17205
|
+
width?: number | null;
|
|
17206
|
+
height?: number | null;
|
|
16874
17207
|
}>;
|
|
16875
17208
|
visuals_videos?: Array<{
|
|
16876
17209
|
__typename?: "ProductV1Media";
|
|
@@ -16878,6 +17211,8 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16878
17211
|
url: string;
|
|
16879
17212
|
tag?: string | null;
|
|
16880
17213
|
type: ProductV1MediaType;
|
|
17214
|
+
width?: number | null;
|
|
17215
|
+
height?: number | null;
|
|
16881
17216
|
}> | null;
|
|
16882
17217
|
productV1Seller?: {
|
|
16883
17218
|
__typename?: "ProductV1Seller";
|
|
@@ -16894,6 +17229,8 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16894
17229
|
url: string;
|
|
16895
17230
|
tag?: string | null;
|
|
16896
17231
|
type: ProductV1MediaType;
|
|
17232
|
+
width?: number | null;
|
|
17233
|
+
height?: number | null;
|
|
16897
17234
|
}> | null;
|
|
16898
17235
|
contactLinks?: Array<{
|
|
16899
17236
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16967,6 +17304,13 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
16967
17304
|
numberOfCommits: string;
|
|
16968
17305
|
numberOfRedemptions: string;
|
|
16969
17306
|
uuid: string;
|
|
17307
|
+
animationMetadata?: {
|
|
17308
|
+
__typename?: "AnimationMetadata";
|
|
17309
|
+
id: string;
|
|
17310
|
+
width?: number | null;
|
|
17311
|
+
height?: number | null;
|
|
17312
|
+
type?: string | null;
|
|
17313
|
+
} | null;
|
|
16970
17314
|
attributes?: Array<{
|
|
16971
17315
|
__typename?: "MetadataAttribute";
|
|
16972
17316
|
traitType: string;
|
|
@@ -17223,6 +17567,8 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17223
17567
|
url: string;
|
|
17224
17568
|
tag?: string | null;
|
|
17225
17569
|
type: ProductV1MediaType;
|
|
17570
|
+
width?: number | null;
|
|
17571
|
+
height?: number | null;
|
|
17226
17572
|
}>;
|
|
17227
17573
|
visuals_videos?: Array<{
|
|
17228
17574
|
__typename?: "ProductV1Media";
|
|
@@ -17230,6 +17576,8 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17230
17576
|
url: string;
|
|
17231
17577
|
tag?: string | null;
|
|
17232
17578
|
type: ProductV1MediaType;
|
|
17579
|
+
width?: number | null;
|
|
17580
|
+
height?: number | null;
|
|
17233
17581
|
}> | null;
|
|
17234
17582
|
productV1Seller?: {
|
|
17235
17583
|
__typename?: "ProductV1Seller";
|
|
@@ -17246,6 +17594,8 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17246
17594
|
url: string;
|
|
17247
17595
|
tag?: string | null;
|
|
17248
17596
|
type: ProductV1MediaType;
|
|
17597
|
+
width?: number | null;
|
|
17598
|
+
height?: number | null;
|
|
17249
17599
|
}> | null;
|
|
17250
17600
|
contactLinks?: Array<{
|
|
17251
17601
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17290,6 +17640,8 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17290
17640
|
url: string;
|
|
17291
17641
|
tag?: string | null;
|
|
17292
17642
|
type: ProductV1MediaType;
|
|
17643
|
+
width?: number | null;
|
|
17644
|
+
height?: number | null;
|
|
17293
17645
|
}> | null;
|
|
17294
17646
|
contactLinks?: Array<{
|
|
17295
17647
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17428,6 +17780,8 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17428
17780
|
url: string;
|
|
17429
17781
|
tag?: string | null;
|
|
17430
17782
|
type: ProductV1MediaType;
|
|
17783
|
+
width?: number | null;
|
|
17784
|
+
height?: number | null;
|
|
17431
17785
|
}>;
|
|
17432
17786
|
visuals_videos?: Array<{
|
|
17433
17787
|
__typename?: "ProductV1Media";
|
|
@@ -17435,6 +17789,8 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17435
17789
|
url: string;
|
|
17436
17790
|
tag?: string | null;
|
|
17437
17791
|
type: ProductV1MediaType;
|
|
17792
|
+
width?: number | null;
|
|
17793
|
+
height?: number | null;
|
|
17438
17794
|
}> | null;
|
|
17439
17795
|
productV1Seller?: {
|
|
17440
17796
|
__typename?: "ProductV1Seller";
|
|
@@ -17451,6 +17807,8 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17451
17807
|
url: string;
|
|
17452
17808
|
tag?: string | null;
|
|
17453
17809
|
type: ProductV1MediaType;
|
|
17810
|
+
width?: number | null;
|
|
17811
|
+
height?: number | null;
|
|
17454
17812
|
}> | null;
|
|
17455
17813
|
contactLinks?: Array<{
|
|
17456
17814
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17495,6 +17853,8 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17495
17853
|
url: string;
|
|
17496
17854
|
tag?: string | null;
|
|
17497
17855
|
type: ProductV1MediaType;
|
|
17856
|
+
width?: number | null;
|
|
17857
|
+
height?: number | null;
|
|
17498
17858
|
}> | null;
|
|
17499
17859
|
contactLinks?: Array<{
|
|
17500
17860
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17560,6 +17920,13 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17560
17920
|
numberOfCommits: string;
|
|
17561
17921
|
numberOfRedemptions: string;
|
|
17562
17922
|
uuid: string;
|
|
17923
|
+
animationMetadata?: {
|
|
17924
|
+
__typename?: "AnimationMetadata";
|
|
17925
|
+
id: string;
|
|
17926
|
+
width?: number | null;
|
|
17927
|
+
height?: number | null;
|
|
17928
|
+
type?: string | null;
|
|
17929
|
+
} | null;
|
|
17563
17930
|
attributes?: Array<{
|
|
17564
17931
|
__typename?: "MetadataAttribute";
|
|
17565
17932
|
traitType: string;
|
|
@@ -17816,6 +18183,8 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17816
18183
|
url: string;
|
|
17817
18184
|
tag?: string | null;
|
|
17818
18185
|
type: ProductV1MediaType;
|
|
18186
|
+
width?: number | null;
|
|
18187
|
+
height?: number | null;
|
|
17819
18188
|
}>;
|
|
17820
18189
|
visuals_videos?: Array<{
|
|
17821
18190
|
__typename?: "ProductV1Media";
|
|
@@ -17823,6 +18192,8 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17823
18192
|
url: string;
|
|
17824
18193
|
tag?: string | null;
|
|
17825
18194
|
type: ProductV1MediaType;
|
|
18195
|
+
width?: number | null;
|
|
18196
|
+
height?: number | null;
|
|
17826
18197
|
}> | null;
|
|
17827
18198
|
productV1Seller?: {
|
|
17828
18199
|
__typename?: "ProductV1Seller";
|
|
@@ -17839,6 +18210,8 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17839
18210
|
url: string;
|
|
17840
18211
|
tag?: string | null;
|
|
17841
18212
|
type: ProductV1MediaType;
|
|
18213
|
+
width?: number | null;
|
|
18214
|
+
height?: number | null;
|
|
17842
18215
|
}> | null;
|
|
17843
18216
|
contactLinks?: Array<{
|
|
17844
18217
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17883,6 +18256,8 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17883
18256
|
url: string;
|
|
17884
18257
|
tag?: string | null;
|
|
17885
18258
|
type: ProductV1MediaType;
|
|
18259
|
+
width?: number | null;
|
|
18260
|
+
height?: number | null;
|
|
17886
18261
|
}> | null;
|
|
17887
18262
|
contactLinks?: Array<{
|
|
17888
18263
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18021,6 +18396,8 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18021
18396
|
url: string;
|
|
18022
18397
|
tag?: string | null;
|
|
18023
18398
|
type: ProductV1MediaType;
|
|
18399
|
+
width?: number | null;
|
|
18400
|
+
height?: number | null;
|
|
18024
18401
|
}>;
|
|
18025
18402
|
visuals_videos?: Array<{
|
|
18026
18403
|
__typename?: "ProductV1Media";
|
|
@@ -18028,6 +18405,8 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18028
18405
|
url: string;
|
|
18029
18406
|
tag?: string | null;
|
|
18030
18407
|
type: ProductV1MediaType;
|
|
18408
|
+
width?: number | null;
|
|
18409
|
+
height?: number | null;
|
|
18031
18410
|
}> | null;
|
|
18032
18411
|
productV1Seller?: {
|
|
18033
18412
|
__typename?: "ProductV1Seller";
|
|
@@ -18044,6 +18423,8 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18044
18423
|
url: string;
|
|
18045
18424
|
tag?: string | null;
|
|
18046
18425
|
type: ProductV1MediaType;
|
|
18426
|
+
width?: number | null;
|
|
18427
|
+
height?: number | null;
|
|
18047
18428
|
}> | null;
|
|
18048
18429
|
contactLinks?: Array<{
|
|
18049
18430
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18088,6 +18469,8 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18088
18469
|
url: string;
|
|
18089
18470
|
tag?: string | null;
|
|
18090
18471
|
type: ProductV1MediaType;
|
|
18472
|
+
width?: number | null;
|
|
18473
|
+
height?: number | null;
|
|
18091
18474
|
}> | null;
|
|
18092
18475
|
contactLinks?: Array<{
|
|
18093
18476
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18143,6 +18526,13 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18143
18526
|
numberOfCommits: string;
|
|
18144
18527
|
numberOfRedemptions: string;
|
|
18145
18528
|
uuid: string;
|
|
18529
|
+
animationMetadata?: {
|
|
18530
|
+
__typename?: "AnimationMetadata";
|
|
18531
|
+
id: string;
|
|
18532
|
+
width?: number | null;
|
|
18533
|
+
height?: number | null;
|
|
18534
|
+
type?: string | null;
|
|
18535
|
+
} | null;
|
|
18146
18536
|
attributes?: Array<{
|
|
18147
18537
|
__typename?: "MetadataAttribute";
|
|
18148
18538
|
traitType: string;
|
|
@@ -18395,6 +18785,8 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18395
18785
|
url: string;
|
|
18396
18786
|
tag?: string | null;
|
|
18397
18787
|
type: ProductV1MediaType;
|
|
18788
|
+
width?: number | null;
|
|
18789
|
+
height?: number | null;
|
|
18398
18790
|
}>;
|
|
18399
18791
|
visuals_videos?: Array<{
|
|
18400
18792
|
__typename?: "ProductV1Media";
|
|
@@ -18402,6 +18794,8 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18402
18794
|
url: string;
|
|
18403
18795
|
tag?: string | null;
|
|
18404
18796
|
type: ProductV1MediaType;
|
|
18797
|
+
width?: number | null;
|
|
18798
|
+
height?: number | null;
|
|
18405
18799
|
}> | null;
|
|
18406
18800
|
productV1Seller?: {
|
|
18407
18801
|
__typename?: "ProductV1Seller";
|
|
@@ -18418,6 +18812,8 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18418
18812
|
url: string;
|
|
18419
18813
|
tag?: string | null;
|
|
18420
18814
|
type: ProductV1MediaType;
|
|
18815
|
+
width?: number | null;
|
|
18816
|
+
height?: number | null;
|
|
18421
18817
|
}> | null;
|
|
18422
18818
|
contactLinks?: Array<{
|
|
18423
18819
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18462,6 +18858,8 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18462
18858
|
url: string;
|
|
18463
18859
|
tag?: string | null;
|
|
18464
18860
|
type: ProductV1MediaType;
|
|
18861
|
+
width?: number | null;
|
|
18862
|
+
height?: number | null;
|
|
18465
18863
|
}> | null;
|
|
18466
18864
|
contactLinks?: Array<{
|
|
18467
18865
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18600,6 +18998,8 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18600
18998
|
url: string;
|
|
18601
18999
|
tag?: string | null;
|
|
18602
19000
|
type: ProductV1MediaType;
|
|
19001
|
+
width?: number | null;
|
|
19002
|
+
height?: number | null;
|
|
18603
19003
|
}>;
|
|
18604
19004
|
visuals_videos?: Array<{
|
|
18605
19005
|
__typename?: "ProductV1Media";
|
|
@@ -18607,6 +19007,8 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18607
19007
|
url: string;
|
|
18608
19008
|
tag?: string | null;
|
|
18609
19009
|
type: ProductV1MediaType;
|
|
19010
|
+
width?: number | null;
|
|
19011
|
+
height?: number | null;
|
|
18610
19012
|
}> | null;
|
|
18611
19013
|
productV1Seller?: {
|
|
18612
19014
|
__typename?: "ProductV1Seller";
|
|
@@ -18623,6 +19025,8 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18623
19025
|
url: string;
|
|
18624
19026
|
tag?: string | null;
|
|
18625
19027
|
type: ProductV1MediaType;
|
|
19028
|
+
width?: number | null;
|
|
19029
|
+
height?: number | null;
|
|
18626
19030
|
}> | null;
|
|
18627
19031
|
contactLinks?: Array<{
|
|
18628
19032
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18667,6 +19071,8 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18667
19071
|
url: string;
|
|
18668
19072
|
tag?: string | null;
|
|
18669
19073
|
type: ProductV1MediaType;
|
|
19074
|
+
width?: number | null;
|
|
19075
|
+
height?: number | null;
|
|
18670
19076
|
}> | null;
|
|
18671
19077
|
contactLinks?: Array<{
|
|
18672
19078
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18721,6 +19127,13 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
18721
19127
|
numberOfCommits: string;
|
|
18722
19128
|
numberOfRedemptions: string;
|
|
18723
19129
|
uuid: string;
|
|
19130
|
+
animationMetadata?: {
|
|
19131
|
+
__typename?: "AnimationMetadata";
|
|
19132
|
+
id: string;
|
|
19133
|
+
width?: number | null;
|
|
19134
|
+
height?: number | null;
|
|
19135
|
+
type?: string | null;
|
|
19136
|
+
} | null;
|
|
18724
19137
|
attributes?: Array<{
|
|
18725
19138
|
__typename?: "MetadataAttribute";
|
|
18726
19139
|
traitType: string;
|
|
@@ -18973,6 +19386,8 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
18973
19386
|
url: string;
|
|
18974
19387
|
tag?: string | null;
|
|
18975
19388
|
type: ProductV1MediaType;
|
|
19389
|
+
width?: number | null;
|
|
19390
|
+
height?: number | null;
|
|
18976
19391
|
}>;
|
|
18977
19392
|
visuals_videos?: Array<{
|
|
18978
19393
|
__typename?: "ProductV1Media";
|
|
@@ -18980,6 +19395,8 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
18980
19395
|
url: string;
|
|
18981
19396
|
tag?: string | null;
|
|
18982
19397
|
type: ProductV1MediaType;
|
|
19398
|
+
width?: number | null;
|
|
19399
|
+
height?: number | null;
|
|
18983
19400
|
}> | null;
|
|
18984
19401
|
productV1Seller?: {
|
|
18985
19402
|
__typename?: "ProductV1Seller";
|
|
@@ -18996,6 +19413,8 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
18996
19413
|
url: string;
|
|
18997
19414
|
tag?: string | null;
|
|
18998
19415
|
type: ProductV1MediaType;
|
|
19416
|
+
width?: number | null;
|
|
19417
|
+
height?: number | null;
|
|
18999
19418
|
}> | null;
|
|
19000
19419
|
contactLinks?: Array<{
|
|
19001
19420
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19040,6 +19459,8 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19040
19459
|
url: string;
|
|
19041
19460
|
tag?: string | null;
|
|
19042
19461
|
type: ProductV1MediaType;
|
|
19462
|
+
width?: number | null;
|
|
19463
|
+
height?: number | null;
|
|
19043
19464
|
}> | null;
|
|
19044
19465
|
contactLinks?: Array<{
|
|
19045
19466
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19178,6 +19599,8 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19178
19599
|
url: string;
|
|
19179
19600
|
tag?: string | null;
|
|
19180
19601
|
type: ProductV1MediaType;
|
|
19602
|
+
width?: number | null;
|
|
19603
|
+
height?: number | null;
|
|
19181
19604
|
}>;
|
|
19182
19605
|
visuals_videos?: Array<{
|
|
19183
19606
|
__typename?: "ProductV1Media";
|
|
@@ -19185,6 +19608,8 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19185
19608
|
url: string;
|
|
19186
19609
|
tag?: string | null;
|
|
19187
19610
|
type: ProductV1MediaType;
|
|
19611
|
+
width?: number | null;
|
|
19612
|
+
height?: number | null;
|
|
19188
19613
|
}> | null;
|
|
19189
19614
|
productV1Seller?: {
|
|
19190
19615
|
__typename?: "ProductV1Seller";
|
|
@@ -19201,6 +19626,8 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19201
19626
|
url: string;
|
|
19202
19627
|
tag?: string | null;
|
|
19203
19628
|
type: ProductV1MediaType;
|
|
19629
|
+
width?: number | null;
|
|
19630
|
+
height?: number | null;
|
|
19204
19631
|
}> | null;
|
|
19205
19632
|
contactLinks?: Array<{
|
|
19206
19633
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19245,6 +19672,8 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19245
19672
|
url: string;
|
|
19246
19673
|
tag?: string | null;
|
|
19247
19674
|
type: ProductV1MediaType;
|
|
19675
|
+
width?: number | null;
|
|
19676
|
+
height?: number | null;
|
|
19248
19677
|
}> | null;
|
|
19249
19678
|
contactLinks?: Array<{
|
|
19250
19679
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19279,6 +19708,14 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19279
19708
|
};
|
|
19280
19709
|
};
|
|
19281
19710
|
|
|
19711
|
+
export type BaseAnimationMetadataFieldsFragment = {
|
|
19712
|
+
__typename?: "AnimationMetadata";
|
|
19713
|
+
id: string;
|
|
19714
|
+
width?: number | null;
|
|
19715
|
+
height?: number | null;
|
|
19716
|
+
type?: string | null;
|
|
19717
|
+
};
|
|
19718
|
+
|
|
19282
19719
|
export type BaseProductV1ProductFieldsFragment = {
|
|
19283
19720
|
__typename?: "ProductV1Product";
|
|
19284
19721
|
id: string;
|
|
@@ -19346,6 +19783,8 @@ export type BaseProductV1ProductFieldsFragment = {
|
|
|
19346
19783
|
url: string;
|
|
19347
19784
|
tag?: string | null;
|
|
19348
19785
|
type: ProductV1MediaType;
|
|
19786
|
+
width?: number | null;
|
|
19787
|
+
height?: number | null;
|
|
19349
19788
|
}>;
|
|
19350
19789
|
visuals_videos?: Array<{
|
|
19351
19790
|
__typename?: "ProductV1Media";
|
|
@@ -19353,6 +19792,8 @@ export type BaseProductV1ProductFieldsFragment = {
|
|
|
19353
19792
|
url: string;
|
|
19354
19793
|
tag?: string | null;
|
|
19355
19794
|
type: ProductV1MediaType;
|
|
19795
|
+
width?: number | null;
|
|
19796
|
+
height?: number | null;
|
|
19356
19797
|
}> | null;
|
|
19357
19798
|
productV1Seller?: {
|
|
19358
19799
|
__typename?: "ProductV1Seller";
|
|
@@ -19369,6 +19810,8 @@ export type BaseProductV1ProductFieldsFragment = {
|
|
|
19369
19810
|
url: string;
|
|
19370
19811
|
tag?: string | null;
|
|
19371
19812
|
type: ProductV1MediaType;
|
|
19813
|
+
width?: number | null;
|
|
19814
|
+
height?: number | null;
|
|
19372
19815
|
}> | null;
|
|
19373
19816
|
contactLinks?: Array<{
|
|
19374
19817
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19680,6 +20123,8 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19680
20123
|
url: string;
|
|
19681
20124
|
tag?: string | null;
|
|
19682
20125
|
type: ProductV1MediaType;
|
|
20126
|
+
width?: number | null;
|
|
20127
|
+
height?: number | null;
|
|
19683
20128
|
}>;
|
|
19684
20129
|
visuals_videos?: Array<{
|
|
19685
20130
|
__typename?: "ProductV1Media";
|
|
@@ -19687,6 +20132,8 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19687
20132
|
url: string;
|
|
19688
20133
|
tag?: string | null;
|
|
19689
20134
|
type: ProductV1MediaType;
|
|
20135
|
+
width?: number | null;
|
|
20136
|
+
height?: number | null;
|
|
19690
20137
|
}> | null;
|
|
19691
20138
|
productV1Seller?: {
|
|
19692
20139
|
__typename?: "ProductV1Seller";
|
|
@@ -19703,6 +20150,8 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19703
20150
|
url: string;
|
|
19704
20151
|
tag?: string | null;
|
|
19705
20152
|
type: ProductV1MediaType;
|
|
20153
|
+
width?: number | null;
|
|
20154
|
+
height?: number | null;
|
|
19706
20155
|
}> | null;
|
|
19707
20156
|
contactLinks?: Array<{
|
|
19708
20157
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19747,6 +20196,8 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19747
20196
|
url: string;
|
|
19748
20197
|
tag?: string | null;
|
|
19749
20198
|
type: ProductV1MediaType;
|
|
20199
|
+
width?: number | null;
|
|
20200
|
+
height?: number | null;
|
|
19750
20201
|
}> | null;
|
|
19751
20202
|
contactLinks?: Array<{
|
|
19752
20203
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19840,6 +20291,8 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19840
20291
|
url: string;
|
|
19841
20292
|
tag?: string | null;
|
|
19842
20293
|
type: ProductV1MediaType;
|
|
20294
|
+
width?: number | null;
|
|
20295
|
+
height?: number | null;
|
|
19843
20296
|
}>;
|
|
19844
20297
|
visuals_videos?: Array<{
|
|
19845
20298
|
__typename?: "ProductV1Media";
|
|
@@ -19847,6 +20300,8 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19847
20300
|
url: string;
|
|
19848
20301
|
tag?: string | null;
|
|
19849
20302
|
type: ProductV1MediaType;
|
|
20303
|
+
width?: number | null;
|
|
20304
|
+
height?: number | null;
|
|
19850
20305
|
}> | null;
|
|
19851
20306
|
productV1Seller?: {
|
|
19852
20307
|
__typename?: "ProductV1Seller";
|
|
@@ -19863,6 +20318,8 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19863
20318
|
url: string;
|
|
19864
20319
|
tag?: string | null;
|
|
19865
20320
|
type: ProductV1MediaType;
|
|
20321
|
+
width?: number | null;
|
|
20322
|
+
height?: number | null;
|
|
19866
20323
|
}> | null;
|
|
19867
20324
|
contactLinks?: Array<{
|
|
19868
20325
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20174,6 +20631,8 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20174
20631
|
url: string;
|
|
20175
20632
|
tag?: string | null;
|
|
20176
20633
|
type: ProductV1MediaType;
|
|
20634
|
+
width?: number | null;
|
|
20635
|
+
height?: number | null;
|
|
20177
20636
|
}>;
|
|
20178
20637
|
visuals_videos?: Array<{
|
|
20179
20638
|
__typename?: "ProductV1Media";
|
|
@@ -20181,6 +20640,8 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20181
20640
|
url: string;
|
|
20182
20641
|
tag?: string | null;
|
|
20183
20642
|
type: ProductV1MediaType;
|
|
20643
|
+
width?: number | null;
|
|
20644
|
+
height?: number | null;
|
|
20184
20645
|
}> | null;
|
|
20185
20646
|
productV1Seller?: {
|
|
20186
20647
|
__typename?: "ProductV1Seller";
|
|
@@ -20197,6 +20658,8 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20197
20658
|
url: string;
|
|
20198
20659
|
tag?: string | null;
|
|
20199
20660
|
type: ProductV1MediaType;
|
|
20661
|
+
width?: number | null;
|
|
20662
|
+
height?: number | null;
|
|
20200
20663
|
}> | null;
|
|
20201
20664
|
contactLinks?: Array<{
|
|
20202
20665
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20241,6 +20704,8 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20241
20704
|
url: string;
|
|
20242
20705
|
tag?: string | null;
|
|
20243
20706
|
type: ProductV1MediaType;
|
|
20707
|
+
width?: number | null;
|
|
20708
|
+
height?: number | null;
|
|
20244
20709
|
}> | null;
|
|
20245
20710
|
contactLinks?: Array<{
|
|
20246
20711
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20334,6 +20799,8 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20334
20799
|
url: string;
|
|
20335
20800
|
tag?: string | null;
|
|
20336
20801
|
type: ProductV1MediaType;
|
|
20802
|
+
width?: number | null;
|
|
20803
|
+
height?: number | null;
|
|
20337
20804
|
}>;
|
|
20338
20805
|
visuals_videos?: Array<{
|
|
20339
20806
|
__typename?: "ProductV1Media";
|
|
@@ -20341,6 +20808,8 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20341
20808
|
url: string;
|
|
20342
20809
|
tag?: string | null;
|
|
20343
20810
|
type: ProductV1MediaType;
|
|
20811
|
+
width?: number | null;
|
|
20812
|
+
height?: number | null;
|
|
20344
20813
|
}> | null;
|
|
20345
20814
|
productV1Seller?: {
|
|
20346
20815
|
__typename?: "ProductV1Seller";
|
|
@@ -20357,6 +20826,8 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20357
20826
|
url: string;
|
|
20358
20827
|
tag?: string | null;
|
|
20359
20828
|
type: ProductV1MediaType;
|
|
20829
|
+
width?: number | null;
|
|
20830
|
+
height?: number | null;
|
|
20360
20831
|
}> | null;
|
|
20361
20832
|
contactLinks?: Array<{
|
|
20362
20833
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20411,6 +20882,8 @@ export type BaseProductV1MediaFieldsFragment = {
|
|
|
20411
20882
|
url: string;
|
|
20412
20883
|
tag?: string | null;
|
|
20413
20884
|
type: ProductV1MediaType;
|
|
20885
|
+
width?: number | null;
|
|
20886
|
+
height?: number | null;
|
|
20414
20887
|
};
|
|
20415
20888
|
|
|
20416
20889
|
export type BaseProductV1PersonalisationFieldsFragment = {
|
|
@@ -20441,6 +20914,8 @@ export type BaseProductV1SellerFieldsFragment = {
|
|
|
20441
20914
|
url: string;
|
|
20442
20915
|
tag?: string | null;
|
|
20443
20916
|
type: ProductV1MediaType;
|
|
20917
|
+
width?: number | null;
|
|
20918
|
+
height?: number | null;
|
|
20444
20919
|
}> | null;
|
|
20445
20920
|
contactLinks?: Array<{
|
|
20446
20921
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20532,6 +21007,8 @@ export type BaseProductV1ProductOverridesFieldsFragment = {
|
|
|
20532
21007
|
url: string;
|
|
20533
21008
|
tag?: string | null;
|
|
20534
21009
|
type: ProductV1MediaType;
|
|
21010
|
+
width?: number | null;
|
|
21011
|
+
height?: number | null;
|
|
20535
21012
|
}>;
|
|
20536
21013
|
visuals_videos?: Array<{
|
|
20537
21014
|
__typename?: "ProductV1Media";
|
|
@@ -20539,6 +21016,8 @@ export type BaseProductV1ProductOverridesFieldsFragment = {
|
|
|
20539
21016
|
url: string;
|
|
20540
21017
|
tag?: string | null;
|
|
20541
21018
|
type: ProductV1MediaType;
|
|
21019
|
+
width?: number | null;
|
|
21020
|
+
height?: number | null;
|
|
20542
21021
|
}> | null;
|
|
20543
21022
|
};
|
|
20544
21023
|
|
|
@@ -20800,6 +21279,8 @@ export type GetOfferByIdQueryQuery = {
|
|
|
20800
21279
|
url: string;
|
|
20801
21280
|
tag?: string | null;
|
|
20802
21281
|
type: ProductV1MediaType;
|
|
21282
|
+
width?: number | null;
|
|
21283
|
+
height?: number | null;
|
|
20803
21284
|
}>;
|
|
20804
21285
|
visuals_videos?: Array<{
|
|
20805
21286
|
__typename?: "ProductV1Media";
|
|
@@ -20807,6 +21288,8 @@ export type GetOfferByIdQueryQuery = {
|
|
|
20807
21288
|
url: string;
|
|
20808
21289
|
tag?: string | null;
|
|
20809
21290
|
type: ProductV1MediaType;
|
|
21291
|
+
width?: number | null;
|
|
21292
|
+
height?: number | null;
|
|
20810
21293
|
}> | null;
|
|
20811
21294
|
productV1Seller?: {
|
|
20812
21295
|
__typename?: "ProductV1Seller";
|
|
@@ -20823,6 +21306,8 @@ export type GetOfferByIdQueryQuery = {
|
|
|
20823
21306
|
url: string;
|
|
20824
21307
|
tag?: string | null;
|
|
20825
21308
|
type: ProductV1MediaType;
|
|
21309
|
+
width?: number | null;
|
|
21310
|
+
height?: number | null;
|
|
20826
21311
|
}> | null;
|
|
20827
21312
|
contactLinks?: Array<{
|
|
20828
21313
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20867,6 +21352,8 @@ export type GetOfferByIdQueryQuery = {
|
|
|
20867
21352
|
url: string;
|
|
20868
21353
|
tag?: string | null;
|
|
20869
21354
|
type: ProductV1MediaType;
|
|
21355
|
+
width?: number | null;
|
|
21356
|
+
height?: number | null;
|
|
20870
21357
|
}> | null;
|
|
20871
21358
|
contactLinks?: Array<{
|
|
20872
21359
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21180,6 +21667,8 @@ export type GetOffersQueryQuery = {
|
|
|
21180
21667
|
url: string;
|
|
21181
21668
|
tag?: string | null;
|
|
21182
21669
|
type: ProductV1MediaType;
|
|
21670
|
+
width?: number | null;
|
|
21671
|
+
height?: number | null;
|
|
21183
21672
|
}>;
|
|
21184
21673
|
visuals_videos?: Array<{
|
|
21185
21674
|
__typename?: "ProductV1Media";
|
|
@@ -21187,6 +21676,8 @@ export type GetOffersQueryQuery = {
|
|
|
21187
21676
|
url: string;
|
|
21188
21677
|
tag?: string | null;
|
|
21189
21678
|
type: ProductV1MediaType;
|
|
21679
|
+
width?: number | null;
|
|
21680
|
+
height?: number | null;
|
|
21190
21681
|
}> | null;
|
|
21191
21682
|
productV1Seller?: {
|
|
21192
21683
|
__typename?: "ProductV1Seller";
|
|
@@ -21203,6 +21694,8 @@ export type GetOffersQueryQuery = {
|
|
|
21203
21694
|
url: string;
|
|
21204
21695
|
tag?: string | null;
|
|
21205
21696
|
type: ProductV1MediaType;
|
|
21697
|
+
width?: number | null;
|
|
21698
|
+
height?: number | null;
|
|
21206
21699
|
}> | null;
|
|
21207
21700
|
contactLinks?: Array<{
|
|
21208
21701
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21247,6 +21740,8 @@ export type GetOffersQueryQuery = {
|
|
|
21247
21740
|
url: string;
|
|
21248
21741
|
tag?: string | null;
|
|
21249
21742
|
type: ProductV1MediaType;
|
|
21743
|
+
width?: number | null;
|
|
21744
|
+
height?: number | null;
|
|
21250
21745
|
}> | null;
|
|
21251
21746
|
contactLinks?: Array<{
|
|
21252
21747
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21544,6 +22039,8 @@ export type OfferFieldsFragment = {
|
|
|
21544
22039
|
url: string;
|
|
21545
22040
|
tag?: string | null;
|
|
21546
22041
|
type: ProductV1MediaType;
|
|
22042
|
+
width?: number | null;
|
|
22043
|
+
height?: number | null;
|
|
21547
22044
|
}>;
|
|
21548
22045
|
visuals_videos?: Array<{
|
|
21549
22046
|
__typename?: "ProductV1Media";
|
|
@@ -21551,6 +22048,8 @@ export type OfferFieldsFragment = {
|
|
|
21551
22048
|
url: string;
|
|
21552
22049
|
tag?: string | null;
|
|
21553
22050
|
type: ProductV1MediaType;
|
|
22051
|
+
width?: number | null;
|
|
22052
|
+
height?: number | null;
|
|
21554
22053
|
}> | null;
|
|
21555
22054
|
productV1Seller?: {
|
|
21556
22055
|
__typename?: "ProductV1Seller";
|
|
@@ -21567,6 +22066,8 @@ export type OfferFieldsFragment = {
|
|
|
21567
22066
|
url: string;
|
|
21568
22067
|
tag?: string | null;
|
|
21569
22068
|
type: ProductV1MediaType;
|
|
22069
|
+
width?: number | null;
|
|
22070
|
+
height?: number | null;
|
|
21570
22071
|
}> | null;
|
|
21571
22072
|
contactLinks?: Array<{
|
|
21572
22073
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21611,6 +22112,8 @@ export type OfferFieldsFragment = {
|
|
|
21611
22112
|
url: string;
|
|
21612
22113
|
tag?: string | null;
|
|
21613
22114
|
type: ProductV1MediaType;
|
|
22115
|
+
width?: number | null;
|
|
22116
|
+
height?: number | null;
|
|
21614
22117
|
}> | null;
|
|
21615
22118
|
contactLinks?: Array<{
|
|
21616
22119
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21857,6 +22360,8 @@ export type BaseOfferFieldsFragment = {
|
|
|
21857
22360
|
url: string;
|
|
21858
22361
|
tag?: string | null;
|
|
21859
22362
|
type: ProductV1MediaType;
|
|
22363
|
+
width?: number | null;
|
|
22364
|
+
height?: number | null;
|
|
21860
22365
|
}>;
|
|
21861
22366
|
visuals_videos?: Array<{
|
|
21862
22367
|
__typename?: "ProductV1Media";
|
|
@@ -21864,6 +22369,8 @@ export type BaseOfferFieldsFragment = {
|
|
|
21864
22369
|
url: string;
|
|
21865
22370
|
tag?: string | null;
|
|
21866
22371
|
type: ProductV1MediaType;
|
|
22372
|
+
width?: number | null;
|
|
22373
|
+
height?: number | null;
|
|
21867
22374
|
}> | null;
|
|
21868
22375
|
productV1Seller?: {
|
|
21869
22376
|
__typename?: "ProductV1Seller";
|
|
@@ -21880,6 +22387,8 @@ export type BaseOfferFieldsFragment = {
|
|
|
21880
22387
|
url: string;
|
|
21881
22388
|
tag?: string | null;
|
|
21882
22389
|
type: ProductV1MediaType;
|
|
22390
|
+
width?: number | null;
|
|
22391
|
+
height?: number | null;
|
|
21883
22392
|
}> | null;
|
|
21884
22393
|
contactLinks?: Array<{
|
|
21885
22394
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21924,6 +22433,8 @@ export type BaseOfferFieldsFragment = {
|
|
|
21924
22433
|
url: string;
|
|
21925
22434
|
tag?: string | null;
|
|
21926
22435
|
type: ProductV1MediaType;
|
|
22436
|
+
width?: number | null;
|
|
22437
|
+
height?: number | null;
|
|
21927
22438
|
}> | null;
|
|
21928
22439
|
contactLinks?: Array<{
|
|
21929
22440
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -22109,6 +22620,8 @@ export const BaseProductV1MediaFieldsFragmentDoc = gql`
|
|
|
22109
22620
|
url
|
|
22110
22621
|
tag
|
|
22111
22622
|
type
|
|
22623
|
+
width
|
|
22624
|
+
height
|
|
22112
22625
|
}
|
|
22113
22626
|
`;
|
|
22114
22627
|
export const BaseProductV1SellerContactLinkFieldsFragmentDoc = gql`
|
|
@@ -22248,6 +22761,14 @@ export const BaseProductV1ShippingOptionFieldsFragmentDoc = gql`
|
|
|
22248
22761
|
}
|
|
22249
22762
|
${BaseProductV1ShippingJurisdictionFieldsFragmentDoc}
|
|
22250
22763
|
`;
|
|
22764
|
+
export const BaseAnimationMetadataFieldsFragmentDoc = gql`
|
|
22765
|
+
fragment BaseAnimationMetadataFields on AnimationMetadata {
|
|
22766
|
+
id
|
|
22767
|
+
width
|
|
22768
|
+
height
|
|
22769
|
+
type
|
|
22770
|
+
}
|
|
22771
|
+
`;
|
|
22251
22772
|
export const BaseOfferFieldsFragmentDoc = gql`
|
|
22252
22773
|
fragment BaseOfferFields on Offer {
|
|
22253
22774
|
id
|
|
@@ -22294,6 +22815,9 @@ export const BaseOfferFieldsFragmentDoc = gql`
|
|
|
22294
22815
|
description
|
|
22295
22816
|
externalUrl
|
|
22296
22817
|
animationUrl
|
|
22818
|
+
animationMetadata {
|
|
22819
|
+
...BaseAnimationMetadataFields
|
|
22820
|
+
}
|
|
22297
22821
|
licenseUrl
|
|
22298
22822
|
condition
|
|
22299
22823
|
schemaUrl
|
|
@@ -22329,6 +22853,7 @@ export const BaseOfferFieldsFragmentDoc = gql`
|
|
|
22329
22853
|
}
|
|
22330
22854
|
}
|
|
22331
22855
|
}
|
|
22856
|
+
${BaseAnimationMetadataFieldsFragmentDoc}
|
|
22332
22857
|
${BaseConditionFieldsFragmentDoc}
|
|
22333
22858
|
${BaseSellerFieldsFragmentDoc}
|
|
22334
22859
|
${BaseExchangeTokenFieldsFragmentDoc}
|
|
@@ -22647,6 +23172,7 @@ export const BaseMetadataEntityFieldsFragmentDoc = gql`
|
|
|
22647
23172
|
}
|
|
22648
23173
|
${BaseBaseMetadataEntityFieldsFragmentDoc}
|
|
22649
23174
|
`;
|
|
23175
|
+
|
|
22650
23176
|
export const BaseProductV1MetadataEntityFieldsFragmentDoc = gql`
|
|
22651
23177
|
fragment BaseProductV1MetadataEntityFields on ProductV1MetadataEntity {
|
|
22652
23178
|
id
|
|
@@ -22654,6 +23180,9 @@ export const BaseProductV1MetadataEntityFieldsFragmentDoc = gql`
|
|
|
22654
23180
|
description
|
|
22655
23181
|
externalUrl
|
|
22656
23182
|
animationUrl
|
|
23183
|
+
animationMetadata {
|
|
23184
|
+
...BaseAnimationMetadataFields
|
|
23185
|
+
}
|
|
22657
23186
|
licenseUrl
|
|
22658
23187
|
condition
|
|
22659
23188
|
schemaUrl
|
|
@@ -22697,6 +23226,7 @@ export const BaseProductV1MetadataEntityFieldsFragmentDoc = gql`
|
|
|
22697
23226
|
...BaseProductV1ExchangePolicyFields
|
|
22698
23227
|
}
|
|
22699
23228
|
}
|
|
23229
|
+
${BaseAnimationMetadataFieldsFragmentDoc}
|
|
22700
23230
|
${BaseOfferFieldsFragmentDoc}
|
|
22701
23231
|
${BaseExchangeFieldsFragmentDoc}
|
|
22702
23232
|
${BaseSellerFieldsFragmentDoc}
|