@bosonprotocol/core-sdk 1.25.0-alpha.6 → 1.25.0-alpha.7
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/subgraph.d.ts +679 -1
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +35 -3
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/esm/subgraph.d.ts +679 -1
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +32 -0
- package/dist/esm/subgraph.js.map +1 -1
- package/package.json +3 -3
- package/src/metadata/product-v1.graphql +13 -0
- package/src/subgraph.ts +703 -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
|
+
name?: 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
|
+
name?: InputMaybe<Scalars["String"]>;
|
|
199
|
+
name_contains?: InputMaybe<Scalars["String"]>;
|
|
200
|
+
name_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
201
|
+
name_ends_with?: InputMaybe<Scalars["String"]>;
|
|
202
|
+
name_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
203
|
+
name_gt?: InputMaybe<Scalars["String"]>;
|
|
204
|
+
name_gte?: InputMaybe<Scalars["String"]>;
|
|
205
|
+
name_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
206
|
+
name_lt?: InputMaybe<Scalars["String"]>;
|
|
207
|
+
name_lte?: InputMaybe<Scalars["String"]>;
|
|
208
|
+
name_not?: InputMaybe<Scalars["String"]>;
|
|
209
|
+
name_not_contains?: InputMaybe<Scalars["String"]>;
|
|
210
|
+
name_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
211
|
+
name_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
212
|
+
name_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
213
|
+
name_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
214
|
+
name_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
215
|
+
name_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
216
|
+
name_starts_with?: InputMaybe<Scalars["String"]>;
|
|
217
|
+
name_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
|
+
Name = "name",
|
|
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,13 @@ 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"];
|
|
3761
|
+
name?: Maybe<Scalars["String"]>;
|
|
3650
3762
|
tag?: Maybe<Scalars["String"]>;
|
|
3651
3763
|
type: ProductV1MediaType;
|
|
3652
3764
|
url: Scalars["String"];
|
|
3765
|
+
width?: Maybe<Scalars["Int"]>;
|
|
3653
3766
|
};
|
|
3654
3767
|
|
|
3655
3768
|
export enum ProductV1MediaType {
|
|
@@ -3660,6 +3773,14 @@ export enum ProductV1MediaType {
|
|
|
3660
3773
|
export type ProductV1Media_Filter = {
|
|
3661
3774
|
/** Filter for the block changed event. */
|
|
3662
3775
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
3776
|
+
height?: InputMaybe<Scalars["Int"]>;
|
|
3777
|
+
height_gt?: InputMaybe<Scalars["Int"]>;
|
|
3778
|
+
height_gte?: InputMaybe<Scalars["Int"]>;
|
|
3779
|
+
height_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
3780
|
+
height_lt?: InputMaybe<Scalars["Int"]>;
|
|
3781
|
+
height_lte?: InputMaybe<Scalars["Int"]>;
|
|
3782
|
+
height_not?: InputMaybe<Scalars["Int"]>;
|
|
3783
|
+
height_not_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
3663
3784
|
id?: InputMaybe<Scalars["ID"]>;
|
|
3664
3785
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
3665
3786
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -3668,6 +3789,26 @@ export type ProductV1Media_Filter = {
|
|
|
3668
3789
|
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
3669
3790
|
id_not?: InputMaybe<Scalars["ID"]>;
|
|
3670
3791
|
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
3792
|
+
name?: InputMaybe<Scalars["String"]>;
|
|
3793
|
+
name_contains?: InputMaybe<Scalars["String"]>;
|
|
3794
|
+
name_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3795
|
+
name_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3796
|
+
name_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3797
|
+
name_gt?: InputMaybe<Scalars["String"]>;
|
|
3798
|
+
name_gte?: InputMaybe<Scalars["String"]>;
|
|
3799
|
+
name_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3800
|
+
name_lt?: InputMaybe<Scalars["String"]>;
|
|
3801
|
+
name_lte?: InputMaybe<Scalars["String"]>;
|
|
3802
|
+
name_not?: InputMaybe<Scalars["String"]>;
|
|
3803
|
+
name_not_contains?: InputMaybe<Scalars["String"]>;
|
|
3804
|
+
name_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3805
|
+
name_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3806
|
+
name_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3807
|
+
name_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3808
|
+
name_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3809
|
+
name_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3810
|
+
name_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3811
|
+
name_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3671
3812
|
tag?: InputMaybe<Scalars["String"]>;
|
|
3672
3813
|
tag_contains?: InputMaybe<Scalars["String"]>;
|
|
3673
3814
|
tag_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -3712,17 +3853,29 @@ export type ProductV1Media_Filter = {
|
|
|
3712
3853
|
url_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3713
3854
|
url_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3714
3855
|
url_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3856
|
+
width?: InputMaybe<Scalars["Int"]>;
|
|
3857
|
+
width_gt?: InputMaybe<Scalars["Int"]>;
|
|
3858
|
+
width_gte?: InputMaybe<Scalars["Int"]>;
|
|
3859
|
+
width_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
3860
|
+
width_lt?: InputMaybe<Scalars["Int"]>;
|
|
3861
|
+
width_lte?: InputMaybe<Scalars["Int"]>;
|
|
3862
|
+
width_not?: InputMaybe<Scalars["Int"]>;
|
|
3863
|
+
width_not_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
3715
3864
|
};
|
|
3716
3865
|
|
|
3717
3866
|
export enum ProductV1Media_OrderBy {
|
|
3867
|
+
Height = "height",
|
|
3718
3868
|
Id = "id",
|
|
3869
|
+
Name = "name",
|
|
3719
3870
|
Tag = "tag",
|
|
3720
3871
|
Type = "type",
|
|
3721
|
-
Url = "url"
|
|
3872
|
+
Url = "url",
|
|
3873
|
+
Width = "width"
|
|
3722
3874
|
}
|
|
3723
3875
|
|
|
3724
3876
|
export type ProductV1MetadataEntity = MetadataInterface & {
|
|
3725
3877
|
__typename?: "ProductV1MetadataEntity";
|
|
3878
|
+
animationMetadata?: Maybe<AnimationMetadata>;
|
|
3726
3879
|
animationUrl?: Maybe<Scalars["String"]>;
|
|
3727
3880
|
attributes?: Maybe<Array<MetadataAttribute>>;
|
|
3728
3881
|
condition?: Maybe<Scalars["String"]>;
|
|
@@ -3791,6 +3944,27 @@ export type ProductV1MetadataEntityVariationsArgs = {
|
|
|
3791
3944
|
export type ProductV1MetadataEntity_Filter = {
|
|
3792
3945
|
/** Filter for the block changed event. */
|
|
3793
3946
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
3947
|
+
animationMetadata?: InputMaybe<Scalars["String"]>;
|
|
3948
|
+
animationMetadata_?: InputMaybe<AnimationMetadata_Filter>;
|
|
3949
|
+
animationMetadata_contains?: InputMaybe<Scalars["String"]>;
|
|
3950
|
+
animationMetadata_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3951
|
+
animationMetadata_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3952
|
+
animationMetadata_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3953
|
+
animationMetadata_gt?: InputMaybe<Scalars["String"]>;
|
|
3954
|
+
animationMetadata_gte?: InputMaybe<Scalars["String"]>;
|
|
3955
|
+
animationMetadata_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3956
|
+
animationMetadata_lt?: InputMaybe<Scalars["String"]>;
|
|
3957
|
+
animationMetadata_lte?: InputMaybe<Scalars["String"]>;
|
|
3958
|
+
animationMetadata_not?: InputMaybe<Scalars["String"]>;
|
|
3959
|
+
animationMetadata_not_contains?: InputMaybe<Scalars["String"]>;
|
|
3960
|
+
animationMetadata_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3961
|
+
animationMetadata_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3962
|
+
animationMetadata_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3963
|
+
animationMetadata_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3964
|
+
animationMetadata_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3965
|
+
animationMetadata_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3966
|
+
animationMetadata_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3967
|
+
animationMetadata_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3794
3968
|
animationUrl?: InputMaybe<Scalars["String"]>;
|
|
3795
3969
|
animationUrl_contains?: InputMaybe<Scalars["String"]>;
|
|
3796
3970
|
animationUrl_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -4248,6 +4422,7 @@ export type ProductV1MetadataEntity_Filter = {
|
|
|
4248
4422
|
};
|
|
4249
4423
|
|
|
4250
4424
|
export enum ProductV1MetadataEntity_OrderBy {
|
|
4425
|
+
AnimationMetadata = "animationMetadata",
|
|
4251
4426
|
AnimationUrl = "animationUrl",
|
|
4252
4427
|
Attributes = "attributes",
|
|
4253
4428
|
Condition = "condition",
|
|
@@ -6591,6 +6766,7 @@ export type Query = {
|
|
|
6591
6766
|
accountEventLog?: Maybe<AccountEventLog>;
|
|
6592
6767
|
accountEventLogs: Array<AccountEventLog>;
|
|
6593
6768
|
accounts: Array<Account>;
|
|
6769
|
+
animationMetadata: Array<AnimationMetadata>;
|
|
6594
6770
|
baseMetadataEntities: Array<BaseMetadataEntity>;
|
|
6595
6771
|
baseMetadataEntity?: Maybe<BaseMetadataEntity>;
|
|
6596
6772
|
buyer?: Maybe<Buyer>;
|
|
@@ -6702,6 +6878,16 @@ export type QueryAccountsArgs = {
|
|
|
6702
6878
|
where?: InputMaybe<Account_Filter>;
|
|
6703
6879
|
};
|
|
6704
6880
|
|
|
6881
|
+
export type QueryAnimationMetadataArgs = {
|
|
6882
|
+
block?: InputMaybe<Block_Height>;
|
|
6883
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
6884
|
+
orderBy?: InputMaybe<AnimationMetadata_OrderBy>;
|
|
6885
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
6886
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
6887
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6888
|
+
where?: InputMaybe<AnimationMetadata_Filter>;
|
|
6889
|
+
};
|
|
6890
|
+
|
|
6705
6891
|
export type QueryBaseMetadataEntitiesArgs = {
|
|
6706
6892
|
block?: InputMaybe<Block_Height>;
|
|
6707
6893
|
first?: InputMaybe<Scalars["Int"]>;
|
|
@@ -7473,6 +7659,7 @@ export type Subscription = {
|
|
|
7473
7659
|
accountEventLog?: Maybe<AccountEventLog>;
|
|
7474
7660
|
accountEventLogs: Array<AccountEventLog>;
|
|
7475
7661
|
accounts: Array<Account>;
|
|
7662
|
+
animationMetadata: Array<AnimationMetadata>;
|
|
7476
7663
|
baseMetadataEntities: Array<BaseMetadataEntity>;
|
|
7477
7664
|
baseMetadataEntity?: Maybe<BaseMetadataEntity>;
|
|
7478
7665
|
buyer?: Maybe<Buyer>;
|
|
@@ -7584,6 +7771,16 @@ export type SubscriptionAccountsArgs = {
|
|
|
7584
7771
|
where?: InputMaybe<Account_Filter>;
|
|
7585
7772
|
};
|
|
7586
7773
|
|
|
7774
|
+
export type SubscriptionAnimationMetadataArgs = {
|
|
7775
|
+
block?: InputMaybe<Block_Height>;
|
|
7776
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
7777
|
+
orderBy?: InputMaybe<AnimationMetadata_OrderBy>;
|
|
7778
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
7779
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
7780
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
7781
|
+
where?: InputMaybe<AnimationMetadata_Filter>;
|
|
7782
|
+
};
|
|
7783
|
+
|
|
7587
7784
|
export type SubscriptionBaseMetadataEntitiesArgs = {
|
|
7588
7785
|
block?: InputMaybe<Block_Height>;
|
|
7589
7786
|
first?: InputMaybe<Scalars["Int"]>;
|
|
@@ -8467,6 +8664,9 @@ export type GetSellerByIdQueryQuery = {
|
|
|
8467
8664
|
url: string;
|
|
8468
8665
|
tag?: string | null;
|
|
8469
8666
|
type: ProductV1MediaType;
|
|
8667
|
+
width?: number | null;
|
|
8668
|
+
height?: number | null;
|
|
8669
|
+
name?: string | null;
|
|
8470
8670
|
}>;
|
|
8471
8671
|
visuals_videos?: Array<{
|
|
8472
8672
|
__typename?: "ProductV1Media";
|
|
@@ -8474,6 +8674,9 @@ export type GetSellerByIdQueryQuery = {
|
|
|
8474
8674
|
url: string;
|
|
8475
8675
|
tag?: string | null;
|
|
8476
8676
|
type: ProductV1MediaType;
|
|
8677
|
+
width?: number | null;
|
|
8678
|
+
height?: number | null;
|
|
8679
|
+
name?: string | null;
|
|
8477
8680
|
}> | null;
|
|
8478
8681
|
productV1Seller?: {
|
|
8479
8682
|
__typename?: "ProductV1Seller";
|
|
@@ -8490,6 +8693,9 @@ export type GetSellerByIdQueryQuery = {
|
|
|
8490
8693
|
url: string;
|
|
8491
8694
|
tag?: string | null;
|
|
8492
8695
|
type: ProductV1MediaType;
|
|
8696
|
+
width?: number | null;
|
|
8697
|
+
height?: number | null;
|
|
8698
|
+
name?: string | null;
|
|
8493
8699
|
}> | null;
|
|
8494
8700
|
contactLinks?: Array<{
|
|
8495
8701
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -8534,6 +8740,9 @@ export type GetSellerByIdQueryQuery = {
|
|
|
8534
8740
|
url: string;
|
|
8535
8741
|
tag?: string | null;
|
|
8536
8742
|
type: ProductV1MediaType;
|
|
8743
|
+
width?: number | null;
|
|
8744
|
+
height?: number | null;
|
|
8745
|
+
name?: string | null;
|
|
8537
8746
|
}> | null;
|
|
8538
8747
|
contactLinks?: Array<{
|
|
8539
8748
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -8975,6 +9184,9 @@ export type GetSellersQueryQuery = {
|
|
|
8975
9184
|
url: string;
|
|
8976
9185
|
tag?: string | null;
|
|
8977
9186
|
type: ProductV1MediaType;
|
|
9187
|
+
width?: number | null;
|
|
9188
|
+
height?: number | null;
|
|
9189
|
+
name?: string | null;
|
|
8978
9190
|
}>;
|
|
8979
9191
|
visuals_videos?: Array<{
|
|
8980
9192
|
__typename?: "ProductV1Media";
|
|
@@ -8982,6 +9194,9 @@ export type GetSellersQueryQuery = {
|
|
|
8982
9194
|
url: string;
|
|
8983
9195
|
tag?: string | null;
|
|
8984
9196
|
type: ProductV1MediaType;
|
|
9197
|
+
width?: number | null;
|
|
9198
|
+
height?: number | null;
|
|
9199
|
+
name?: string | null;
|
|
8985
9200
|
}> | null;
|
|
8986
9201
|
productV1Seller?: {
|
|
8987
9202
|
__typename?: "ProductV1Seller";
|
|
@@ -8998,6 +9213,9 @@ export type GetSellersQueryQuery = {
|
|
|
8998
9213
|
url: string;
|
|
8999
9214
|
tag?: string | null;
|
|
9000
9215
|
type: ProductV1MediaType;
|
|
9216
|
+
width?: number | null;
|
|
9217
|
+
height?: number | null;
|
|
9218
|
+
name?: string | null;
|
|
9001
9219
|
}> | null;
|
|
9002
9220
|
contactLinks?: Array<{
|
|
9003
9221
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -9042,6 +9260,9 @@ export type GetSellersQueryQuery = {
|
|
|
9042
9260
|
url: string;
|
|
9043
9261
|
tag?: string | null;
|
|
9044
9262
|
type: ProductV1MediaType;
|
|
9263
|
+
width?: number | null;
|
|
9264
|
+
height?: number | null;
|
|
9265
|
+
name?: string | null;
|
|
9045
9266
|
}> | null;
|
|
9046
9267
|
contactLinks?: Array<{
|
|
9047
9268
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -9791,6 +10012,9 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
9791
10012
|
url: string;
|
|
9792
10013
|
tag?: string | null;
|
|
9793
10014
|
type: ProductV1MediaType;
|
|
10015
|
+
width?: number | null;
|
|
10016
|
+
height?: number | null;
|
|
10017
|
+
name?: string | null;
|
|
9794
10018
|
}>;
|
|
9795
10019
|
visuals_videos?: Array<{
|
|
9796
10020
|
__typename?: "ProductV1Media";
|
|
@@ -9798,6 +10022,9 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
9798
10022
|
url: string;
|
|
9799
10023
|
tag?: string | null;
|
|
9800
10024
|
type: ProductV1MediaType;
|
|
10025
|
+
width?: number | null;
|
|
10026
|
+
height?: number | null;
|
|
10027
|
+
name?: string | null;
|
|
9801
10028
|
}> | null;
|
|
9802
10029
|
productV1Seller?: {
|
|
9803
10030
|
__typename?: "ProductV1Seller";
|
|
@@ -9814,6 +10041,9 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
9814
10041
|
url: string;
|
|
9815
10042
|
tag?: string | null;
|
|
9816
10043
|
type: ProductV1MediaType;
|
|
10044
|
+
width?: number | null;
|
|
10045
|
+
height?: number | null;
|
|
10046
|
+
name?: string | null;
|
|
9817
10047
|
}> | null;
|
|
9818
10048
|
contactLinks?: Array<{
|
|
9819
10049
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -9858,6 +10088,9 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
9858
10088
|
url: string;
|
|
9859
10089
|
tag?: string | null;
|
|
9860
10090
|
type: ProductV1MediaType;
|
|
10091
|
+
width?: number | null;
|
|
10092
|
+
height?: number | null;
|
|
10093
|
+
name?: string | null;
|
|
9861
10094
|
}> | null;
|
|
9862
10095
|
contactLinks?: Array<{
|
|
9863
10096
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -10234,6 +10467,9 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
10234
10467
|
url: string;
|
|
10235
10468
|
tag?: string | null;
|
|
10236
10469
|
type: ProductV1MediaType;
|
|
10470
|
+
width?: number | null;
|
|
10471
|
+
height?: number | null;
|
|
10472
|
+
name?: string | null;
|
|
10237
10473
|
}>;
|
|
10238
10474
|
visuals_videos?: Array<{
|
|
10239
10475
|
__typename?: "ProductV1Media";
|
|
@@ -10241,6 +10477,9 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
10241
10477
|
url: string;
|
|
10242
10478
|
tag?: string | null;
|
|
10243
10479
|
type: ProductV1MediaType;
|
|
10480
|
+
width?: number | null;
|
|
10481
|
+
height?: number | null;
|
|
10482
|
+
name?: string | null;
|
|
10244
10483
|
}> | null;
|
|
10245
10484
|
productV1Seller?: {
|
|
10246
10485
|
__typename?: "ProductV1Seller";
|
|
@@ -10257,6 +10496,9 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
10257
10496
|
url: string;
|
|
10258
10497
|
tag?: string | null;
|
|
10259
10498
|
type: ProductV1MediaType;
|
|
10499
|
+
width?: number | null;
|
|
10500
|
+
height?: number | null;
|
|
10501
|
+
name?: string | null;
|
|
10260
10502
|
}> | null;
|
|
10261
10503
|
contactLinks?: Array<{
|
|
10262
10504
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -10301,6 +10543,9 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
10301
10543
|
url: string;
|
|
10302
10544
|
tag?: string | null;
|
|
10303
10545
|
type: ProductV1MediaType;
|
|
10546
|
+
width?: number | null;
|
|
10547
|
+
height?: number | null;
|
|
10548
|
+
name?: string | null;
|
|
10304
10549
|
}> | null;
|
|
10305
10550
|
contactLinks?: Array<{
|
|
10306
10551
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -10669,6 +10914,9 @@ export type SellerFieldsFragment = {
|
|
|
10669
10914
|
url: string;
|
|
10670
10915
|
tag?: string | null;
|
|
10671
10916
|
type: ProductV1MediaType;
|
|
10917
|
+
width?: number | null;
|
|
10918
|
+
height?: number | null;
|
|
10919
|
+
name?: string | null;
|
|
10672
10920
|
}>;
|
|
10673
10921
|
visuals_videos?: Array<{
|
|
10674
10922
|
__typename?: "ProductV1Media";
|
|
@@ -10676,6 +10924,9 @@ export type SellerFieldsFragment = {
|
|
|
10676
10924
|
url: string;
|
|
10677
10925
|
tag?: string | null;
|
|
10678
10926
|
type: ProductV1MediaType;
|
|
10927
|
+
width?: number | null;
|
|
10928
|
+
height?: number | null;
|
|
10929
|
+
name?: string | null;
|
|
10679
10930
|
}> | null;
|
|
10680
10931
|
productV1Seller?: {
|
|
10681
10932
|
__typename?: "ProductV1Seller";
|
|
@@ -10692,6 +10943,9 @@ export type SellerFieldsFragment = {
|
|
|
10692
10943
|
url: string;
|
|
10693
10944
|
tag?: string | null;
|
|
10694
10945
|
type: ProductV1MediaType;
|
|
10946
|
+
width?: number | null;
|
|
10947
|
+
height?: number | null;
|
|
10948
|
+
name?: string | null;
|
|
10695
10949
|
}> | null;
|
|
10696
10950
|
contactLinks?: Array<{
|
|
10697
10951
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -10736,6 +10990,9 @@ export type SellerFieldsFragment = {
|
|
|
10736
10990
|
url: string;
|
|
10737
10991
|
tag?: string | null;
|
|
10738
10992
|
type: ProductV1MediaType;
|
|
10993
|
+
width?: number | null;
|
|
10994
|
+
height?: number | null;
|
|
10995
|
+
name?: string | null;
|
|
10739
10996
|
}> | null;
|
|
10740
10997
|
contactLinks?: Array<{
|
|
10741
10998
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -11292,6 +11549,9 @@ export type DisputeResolverFieldsFragment = {
|
|
|
11292
11549
|
url: string;
|
|
11293
11550
|
tag?: string | null;
|
|
11294
11551
|
type: ProductV1MediaType;
|
|
11552
|
+
width?: number | null;
|
|
11553
|
+
height?: number | null;
|
|
11554
|
+
name?: string | null;
|
|
11295
11555
|
}>;
|
|
11296
11556
|
visuals_videos?: Array<{
|
|
11297
11557
|
__typename?: "ProductV1Media";
|
|
@@ -11299,6 +11559,9 @@ export type DisputeResolverFieldsFragment = {
|
|
|
11299
11559
|
url: string;
|
|
11300
11560
|
tag?: string | null;
|
|
11301
11561
|
type: ProductV1MediaType;
|
|
11562
|
+
width?: number | null;
|
|
11563
|
+
height?: number | null;
|
|
11564
|
+
name?: string | null;
|
|
11302
11565
|
}> | null;
|
|
11303
11566
|
productV1Seller?: {
|
|
11304
11567
|
__typename?: "ProductV1Seller";
|
|
@@ -11315,6 +11578,9 @@ export type DisputeResolverFieldsFragment = {
|
|
|
11315
11578
|
url: string;
|
|
11316
11579
|
tag?: string | null;
|
|
11317
11580
|
type: ProductV1MediaType;
|
|
11581
|
+
width?: number | null;
|
|
11582
|
+
height?: number | null;
|
|
11583
|
+
name?: string | null;
|
|
11318
11584
|
}> | null;
|
|
11319
11585
|
contactLinks?: Array<{
|
|
11320
11586
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -11359,6 +11625,9 @@ export type DisputeResolverFieldsFragment = {
|
|
|
11359
11625
|
url: string;
|
|
11360
11626
|
tag?: string | null;
|
|
11361
11627
|
type: ProductV1MediaType;
|
|
11628
|
+
width?: number | null;
|
|
11629
|
+
height?: number | null;
|
|
11630
|
+
name?: string | null;
|
|
11362
11631
|
}> | null;
|
|
11363
11632
|
contactLinks?: Array<{
|
|
11364
11633
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12078,6 +12347,9 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
12078
12347
|
url: string;
|
|
12079
12348
|
tag?: string | null;
|
|
12080
12349
|
type: ProductV1MediaType;
|
|
12350
|
+
width?: number | null;
|
|
12351
|
+
height?: number | null;
|
|
12352
|
+
name?: string | null;
|
|
12081
12353
|
}>;
|
|
12082
12354
|
visuals_videos?: Array<{
|
|
12083
12355
|
__typename?: "ProductV1Media";
|
|
@@ -12085,6 +12357,9 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
12085
12357
|
url: string;
|
|
12086
12358
|
tag?: string | null;
|
|
12087
12359
|
type: ProductV1MediaType;
|
|
12360
|
+
width?: number | null;
|
|
12361
|
+
height?: number | null;
|
|
12362
|
+
name?: string | null;
|
|
12088
12363
|
}> | null;
|
|
12089
12364
|
productV1Seller?: {
|
|
12090
12365
|
__typename?: "ProductV1Seller";
|
|
@@ -12101,6 +12376,9 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
12101
12376
|
url: string;
|
|
12102
12377
|
tag?: string | null;
|
|
12103
12378
|
type: ProductV1MediaType;
|
|
12379
|
+
width?: number | null;
|
|
12380
|
+
height?: number | null;
|
|
12381
|
+
name?: string | null;
|
|
12104
12382
|
}> | null;
|
|
12105
12383
|
contactLinks?: Array<{
|
|
12106
12384
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12145,6 +12423,9 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
12145
12423
|
url: string;
|
|
12146
12424
|
tag?: string | null;
|
|
12147
12425
|
type: ProductV1MediaType;
|
|
12426
|
+
width?: number | null;
|
|
12427
|
+
height?: number | null;
|
|
12428
|
+
name?: string | null;
|
|
12148
12429
|
}> | null;
|
|
12149
12430
|
contactLinks?: Array<{
|
|
12150
12431
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12432,6 +12713,9 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
12432
12713
|
url: string;
|
|
12433
12714
|
tag?: string | null;
|
|
12434
12715
|
type: ProductV1MediaType;
|
|
12716
|
+
width?: number | null;
|
|
12717
|
+
height?: number | null;
|
|
12718
|
+
name?: string | null;
|
|
12435
12719
|
}>;
|
|
12436
12720
|
visuals_videos?: Array<{
|
|
12437
12721
|
__typename?: "ProductV1Media";
|
|
@@ -12439,6 +12723,9 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
12439
12723
|
url: string;
|
|
12440
12724
|
tag?: string | null;
|
|
12441
12725
|
type: ProductV1MediaType;
|
|
12726
|
+
width?: number | null;
|
|
12727
|
+
height?: number | null;
|
|
12728
|
+
name?: string | null;
|
|
12442
12729
|
}> | null;
|
|
12443
12730
|
productV1Seller?: {
|
|
12444
12731
|
__typename?: "ProductV1Seller";
|
|
@@ -12455,6 +12742,9 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
12455
12742
|
url: string;
|
|
12456
12743
|
tag?: string | null;
|
|
12457
12744
|
type: ProductV1MediaType;
|
|
12745
|
+
width?: number | null;
|
|
12746
|
+
height?: number | null;
|
|
12747
|
+
name?: string | null;
|
|
12458
12748
|
}> | null;
|
|
12459
12749
|
contactLinks?: Array<{
|
|
12460
12750
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12499,6 +12789,9 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
12499
12789
|
url: string;
|
|
12500
12790
|
tag?: string | null;
|
|
12501
12791
|
type: ProductV1MediaType;
|
|
12792
|
+
width?: number | null;
|
|
12793
|
+
height?: number | null;
|
|
12794
|
+
name?: string | null;
|
|
12502
12795
|
}> | null;
|
|
12503
12796
|
contactLinks?: Array<{
|
|
12504
12797
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12760,6 +13053,9 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
12760
13053
|
url: string;
|
|
12761
13054
|
tag?: string | null;
|
|
12762
13055
|
type: ProductV1MediaType;
|
|
13056
|
+
width?: number | null;
|
|
13057
|
+
height?: number | null;
|
|
13058
|
+
name?: string | null;
|
|
12763
13059
|
}>;
|
|
12764
13060
|
visuals_videos?: Array<{
|
|
12765
13061
|
__typename?: "ProductV1Media";
|
|
@@ -12767,6 +13063,9 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
12767
13063
|
url: string;
|
|
12768
13064
|
tag?: string | null;
|
|
12769
13065
|
type: ProductV1MediaType;
|
|
13066
|
+
width?: number | null;
|
|
13067
|
+
height?: number | null;
|
|
13068
|
+
name?: string | null;
|
|
12770
13069
|
}> | null;
|
|
12771
13070
|
productV1Seller?: {
|
|
12772
13071
|
__typename?: "ProductV1Seller";
|
|
@@ -12783,6 +13082,9 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
12783
13082
|
url: string;
|
|
12784
13083
|
tag?: string | null;
|
|
12785
13084
|
type: ProductV1MediaType;
|
|
13085
|
+
width?: number | null;
|
|
13086
|
+
height?: number | null;
|
|
13087
|
+
name?: string | null;
|
|
12786
13088
|
}> | null;
|
|
12787
13089
|
contactLinks?: Array<{
|
|
12788
13090
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12827,6 +13129,9 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
12827
13129
|
url: string;
|
|
12828
13130
|
tag?: string | null;
|
|
12829
13131
|
type: ProductV1MediaType;
|
|
13132
|
+
width?: number | null;
|
|
13133
|
+
height?: number | null;
|
|
13134
|
+
name?: string | null;
|
|
12830
13135
|
}> | null;
|
|
12831
13136
|
contactLinks?: Array<{
|
|
12832
13137
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -13275,6 +13580,9 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
13275
13580
|
url: string;
|
|
13276
13581
|
tag?: string | null;
|
|
13277
13582
|
type: ProductV1MediaType;
|
|
13583
|
+
width?: number | null;
|
|
13584
|
+
height?: number | null;
|
|
13585
|
+
name?: string | null;
|
|
13278
13586
|
}>;
|
|
13279
13587
|
visuals_videos?: Array<{
|
|
13280
13588
|
__typename?: "ProductV1Media";
|
|
@@ -13282,6 +13590,9 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
13282
13590
|
url: string;
|
|
13283
13591
|
tag?: string | null;
|
|
13284
13592
|
type: ProductV1MediaType;
|
|
13593
|
+
width?: number | null;
|
|
13594
|
+
height?: number | null;
|
|
13595
|
+
name?: string | null;
|
|
13285
13596
|
}> | null;
|
|
13286
13597
|
productV1Seller?: {
|
|
13287
13598
|
__typename?: "ProductV1Seller";
|
|
@@ -13298,6 +13609,9 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
13298
13609
|
url: string;
|
|
13299
13610
|
tag?: string | null;
|
|
13300
13611
|
type: ProductV1MediaType;
|
|
13612
|
+
width?: number | null;
|
|
13613
|
+
height?: number | null;
|
|
13614
|
+
name?: string | null;
|
|
13301
13615
|
}> | null;
|
|
13302
13616
|
contactLinks?: Array<{
|
|
13303
13617
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -13342,6 +13656,9 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
13342
13656
|
url: string;
|
|
13343
13657
|
tag?: string | null;
|
|
13344
13658
|
type: ProductV1MediaType;
|
|
13659
|
+
width?: number | null;
|
|
13660
|
+
height?: number | null;
|
|
13661
|
+
name?: string | null;
|
|
13345
13662
|
}> | null;
|
|
13346
13663
|
contactLinks?: Array<{
|
|
13347
13664
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -13653,6 +13970,9 @@ export type GetExchangesQueryQuery = {
|
|
|
13653
13970
|
url: string;
|
|
13654
13971
|
tag?: string | null;
|
|
13655
13972
|
type: ProductV1MediaType;
|
|
13973
|
+
width?: number | null;
|
|
13974
|
+
height?: number | null;
|
|
13975
|
+
name?: string | null;
|
|
13656
13976
|
}>;
|
|
13657
13977
|
visuals_videos?: Array<{
|
|
13658
13978
|
__typename?: "ProductV1Media";
|
|
@@ -13660,6 +13980,9 @@ export type GetExchangesQueryQuery = {
|
|
|
13660
13980
|
url: string;
|
|
13661
13981
|
tag?: string | null;
|
|
13662
13982
|
type: ProductV1MediaType;
|
|
13983
|
+
width?: number | null;
|
|
13984
|
+
height?: number | null;
|
|
13985
|
+
name?: string | null;
|
|
13663
13986
|
}> | null;
|
|
13664
13987
|
productV1Seller?: {
|
|
13665
13988
|
__typename?: "ProductV1Seller";
|
|
@@ -13676,6 +13999,9 @@ export type GetExchangesQueryQuery = {
|
|
|
13676
13999
|
url: string;
|
|
13677
14000
|
tag?: string | null;
|
|
13678
14001
|
type: ProductV1MediaType;
|
|
14002
|
+
width?: number | null;
|
|
14003
|
+
height?: number | null;
|
|
14004
|
+
name?: string | null;
|
|
13679
14005
|
}> | null;
|
|
13680
14006
|
contactLinks?: Array<{
|
|
13681
14007
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -13720,6 +14046,9 @@ export type GetExchangesQueryQuery = {
|
|
|
13720
14046
|
url: string;
|
|
13721
14047
|
tag?: string | null;
|
|
13722
14048
|
type: ProductV1MediaType;
|
|
14049
|
+
width?: number | null;
|
|
14050
|
+
height?: number | null;
|
|
14051
|
+
name?: string | null;
|
|
13723
14052
|
}> | null;
|
|
13724
14053
|
contactLinks?: Array<{
|
|
13725
14054
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14017,6 +14346,9 @@ export type ExchangeFieldsFragment = {
|
|
|
14017
14346
|
url: string;
|
|
14018
14347
|
tag?: string | null;
|
|
14019
14348
|
type: ProductV1MediaType;
|
|
14349
|
+
width?: number | null;
|
|
14350
|
+
height?: number | null;
|
|
14351
|
+
name?: string | null;
|
|
14020
14352
|
}>;
|
|
14021
14353
|
visuals_videos?: Array<{
|
|
14022
14354
|
__typename?: "ProductV1Media";
|
|
@@ -14024,6 +14356,9 @@ export type ExchangeFieldsFragment = {
|
|
|
14024
14356
|
url: string;
|
|
14025
14357
|
tag?: string | null;
|
|
14026
14358
|
type: ProductV1MediaType;
|
|
14359
|
+
width?: number | null;
|
|
14360
|
+
height?: number | null;
|
|
14361
|
+
name?: string | null;
|
|
14027
14362
|
}> | null;
|
|
14028
14363
|
productV1Seller?: {
|
|
14029
14364
|
__typename?: "ProductV1Seller";
|
|
@@ -14040,6 +14375,9 @@ export type ExchangeFieldsFragment = {
|
|
|
14040
14375
|
url: string;
|
|
14041
14376
|
tag?: string | null;
|
|
14042
14377
|
type: ProductV1MediaType;
|
|
14378
|
+
width?: number | null;
|
|
14379
|
+
height?: number | null;
|
|
14380
|
+
name?: string | null;
|
|
14043
14381
|
}> | null;
|
|
14044
14382
|
contactLinks?: Array<{
|
|
14045
14383
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14084,6 +14422,9 @@ export type ExchangeFieldsFragment = {
|
|
|
14084
14422
|
url: string;
|
|
14085
14423
|
tag?: string | null;
|
|
14086
14424
|
type: ProductV1MediaType;
|
|
14425
|
+
width?: number | null;
|
|
14426
|
+
height?: number | null;
|
|
14427
|
+
name?: string | null;
|
|
14087
14428
|
}> | null;
|
|
14088
14429
|
contactLinks?: Array<{
|
|
14089
14430
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14528,6 +14869,9 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14528
14869
|
url: string;
|
|
14529
14870
|
tag?: string | null;
|
|
14530
14871
|
type: ProductV1MediaType;
|
|
14872
|
+
width?: number | null;
|
|
14873
|
+
height?: number | null;
|
|
14874
|
+
name?: string | null;
|
|
14531
14875
|
}>;
|
|
14532
14876
|
visuals_videos?: Array<{
|
|
14533
14877
|
__typename?: "ProductV1Media";
|
|
@@ -14535,6 +14879,9 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14535
14879
|
url: string;
|
|
14536
14880
|
tag?: string | null;
|
|
14537
14881
|
type: ProductV1MediaType;
|
|
14882
|
+
width?: number | null;
|
|
14883
|
+
height?: number | null;
|
|
14884
|
+
name?: string | null;
|
|
14538
14885
|
}> | null;
|
|
14539
14886
|
productV1Seller?: {
|
|
14540
14887
|
__typename?: "ProductV1Seller";
|
|
@@ -14551,6 +14898,9 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14551
14898
|
url: string;
|
|
14552
14899
|
tag?: string | null;
|
|
14553
14900
|
type: ProductV1MediaType;
|
|
14901
|
+
width?: number | null;
|
|
14902
|
+
height?: number | null;
|
|
14903
|
+
name?: string | null;
|
|
14554
14904
|
}> | null;
|
|
14555
14905
|
contactLinks?: Array<{
|
|
14556
14906
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14595,6 +14945,9 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14595
14945
|
url: string;
|
|
14596
14946
|
tag?: string | null;
|
|
14597
14947
|
type: ProductV1MediaType;
|
|
14948
|
+
width?: number | null;
|
|
14949
|
+
height?: number | null;
|
|
14950
|
+
name?: string | null;
|
|
14598
14951
|
}> | null;
|
|
14599
14952
|
contactLinks?: Array<{
|
|
14600
14953
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14904,6 +15257,9 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
14904
15257
|
url: string;
|
|
14905
15258
|
tag?: string | null;
|
|
14906
15259
|
type: ProductV1MediaType;
|
|
15260
|
+
width?: number | null;
|
|
15261
|
+
height?: number | null;
|
|
15262
|
+
name?: string | null;
|
|
14907
15263
|
}>;
|
|
14908
15264
|
visuals_videos?: Array<{
|
|
14909
15265
|
__typename?: "ProductV1Media";
|
|
@@ -14911,6 +15267,9 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
14911
15267
|
url: string;
|
|
14912
15268
|
tag?: string | null;
|
|
14913
15269
|
type: ProductV1MediaType;
|
|
15270
|
+
width?: number | null;
|
|
15271
|
+
height?: number | null;
|
|
15272
|
+
name?: string | null;
|
|
14914
15273
|
}> | null;
|
|
14915
15274
|
productV1Seller?: {
|
|
14916
15275
|
__typename?: "ProductV1Seller";
|
|
@@ -14927,6 +15286,9 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
14927
15286
|
url: string;
|
|
14928
15287
|
tag?: string | null;
|
|
14929
15288
|
type: ProductV1MediaType;
|
|
15289
|
+
width?: number | null;
|
|
15290
|
+
height?: number | null;
|
|
15291
|
+
name?: string | null;
|
|
14930
15292
|
}> | null;
|
|
14931
15293
|
contactLinks?: Array<{
|
|
14932
15294
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14971,6 +15333,9 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
14971
15333
|
url: string;
|
|
14972
15334
|
tag?: string | null;
|
|
14973
15335
|
type: ProductV1MediaType;
|
|
15336
|
+
width?: number | null;
|
|
15337
|
+
height?: number | null;
|
|
15338
|
+
name?: string | null;
|
|
14974
15339
|
}> | null;
|
|
14975
15340
|
contactLinks?: Array<{
|
|
14976
15341
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15266,6 +15631,9 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
15266
15631
|
url: string;
|
|
15267
15632
|
tag?: string | null;
|
|
15268
15633
|
type: ProductV1MediaType;
|
|
15634
|
+
width?: number | null;
|
|
15635
|
+
height?: number | null;
|
|
15636
|
+
name?: string | null;
|
|
15269
15637
|
}>;
|
|
15270
15638
|
visuals_videos?: Array<{
|
|
15271
15639
|
__typename?: "ProductV1Media";
|
|
@@ -15273,6 +15641,9 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
15273
15641
|
url: string;
|
|
15274
15642
|
tag?: string | null;
|
|
15275
15643
|
type: ProductV1MediaType;
|
|
15644
|
+
width?: number | null;
|
|
15645
|
+
height?: number | null;
|
|
15646
|
+
name?: string | null;
|
|
15276
15647
|
}> | null;
|
|
15277
15648
|
productV1Seller?: {
|
|
15278
15649
|
__typename?: "ProductV1Seller";
|
|
@@ -15289,6 +15660,9 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
15289
15660
|
url: string;
|
|
15290
15661
|
tag?: string | null;
|
|
15291
15662
|
type: ProductV1MediaType;
|
|
15663
|
+
width?: number | null;
|
|
15664
|
+
height?: number | null;
|
|
15665
|
+
name?: string | null;
|
|
15292
15666
|
}> | null;
|
|
15293
15667
|
contactLinks?: Array<{
|
|
15294
15668
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15333,6 +15707,9 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
15333
15707
|
url: string;
|
|
15334
15708
|
tag?: string | null;
|
|
15335
15709
|
type: ProductV1MediaType;
|
|
15710
|
+
width?: number | null;
|
|
15711
|
+
height?: number | null;
|
|
15712
|
+
name?: string | null;
|
|
15336
15713
|
}> | null;
|
|
15337
15714
|
contactLinks?: Array<{
|
|
15338
15715
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15627,6 +16004,9 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
15627
16004
|
url: string;
|
|
15628
16005
|
tag?: string | null;
|
|
15629
16006
|
type: ProductV1MediaType;
|
|
16007
|
+
width?: number | null;
|
|
16008
|
+
height?: number | null;
|
|
16009
|
+
name?: string | null;
|
|
15630
16010
|
}>;
|
|
15631
16011
|
visuals_videos?: Array<{
|
|
15632
16012
|
__typename?: "ProductV1Media";
|
|
@@ -15634,6 +16014,9 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
15634
16014
|
url: string;
|
|
15635
16015
|
tag?: string | null;
|
|
15636
16016
|
type: ProductV1MediaType;
|
|
16017
|
+
width?: number | null;
|
|
16018
|
+
height?: number | null;
|
|
16019
|
+
name?: string | null;
|
|
15637
16020
|
}> | null;
|
|
15638
16021
|
productV1Seller?: {
|
|
15639
16022
|
__typename?: "ProductV1Seller";
|
|
@@ -15650,6 +16033,9 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
15650
16033
|
url: string;
|
|
15651
16034
|
tag?: string | null;
|
|
15652
16035
|
type: ProductV1MediaType;
|
|
16036
|
+
width?: number | null;
|
|
16037
|
+
height?: number | null;
|
|
16038
|
+
name?: string | null;
|
|
15653
16039
|
}> | null;
|
|
15654
16040
|
contactLinks?: Array<{
|
|
15655
16041
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15694,6 +16080,9 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
15694
16080
|
url: string;
|
|
15695
16081
|
tag?: string | null;
|
|
15696
16082
|
type: ProductV1MediaType;
|
|
16083
|
+
width?: number | null;
|
|
16084
|
+
height?: number | null;
|
|
16085
|
+
name?: string | null;
|
|
15697
16086
|
}> | null;
|
|
15698
16087
|
contactLinks?: Array<{
|
|
15699
16088
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15861,6 +16250,9 @@ export type GetProductV1ProductsQueryQuery = {
|
|
|
15861
16250
|
url: string;
|
|
15862
16251
|
tag?: string | null;
|
|
15863
16252
|
type: ProductV1MediaType;
|
|
16253
|
+
width?: number | null;
|
|
16254
|
+
height?: number | null;
|
|
16255
|
+
name?: string | null;
|
|
15864
16256
|
}>;
|
|
15865
16257
|
visuals_videos?: Array<{
|
|
15866
16258
|
__typename?: "ProductV1Media";
|
|
@@ -15868,6 +16260,9 @@ export type GetProductV1ProductsQueryQuery = {
|
|
|
15868
16260
|
url: string;
|
|
15869
16261
|
tag?: string | null;
|
|
15870
16262
|
type: ProductV1MediaType;
|
|
16263
|
+
width?: number | null;
|
|
16264
|
+
height?: number | null;
|
|
16265
|
+
name?: string | null;
|
|
15871
16266
|
}> | null;
|
|
15872
16267
|
productV1Seller?: {
|
|
15873
16268
|
__typename?: "ProductV1Seller";
|
|
@@ -15884,6 +16279,9 @@ export type GetProductV1ProductsQueryQuery = {
|
|
|
15884
16279
|
url: string;
|
|
15885
16280
|
tag?: string | null;
|
|
15886
16281
|
type: ProductV1MediaType;
|
|
16282
|
+
width?: number | null;
|
|
16283
|
+
height?: number | null;
|
|
16284
|
+
name?: string | null;
|
|
15887
16285
|
}> | null;
|
|
15888
16286
|
contactLinks?: Array<{
|
|
15889
16287
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16206,6 +16604,9 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16206
16604
|
url: string;
|
|
16207
16605
|
tag?: string | null;
|
|
16208
16606
|
type: ProductV1MediaType;
|
|
16607
|
+
width?: number | null;
|
|
16608
|
+
height?: number | null;
|
|
16609
|
+
name?: string | null;
|
|
16209
16610
|
}>;
|
|
16210
16611
|
visuals_videos?: Array<{
|
|
16211
16612
|
__typename?: "ProductV1Media";
|
|
@@ -16213,6 +16614,9 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16213
16614
|
url: string;
|
|
16214
16615
|
tag?: string | null;
|
|
16215
16616
|
type: ProductV1MediaType;
|
|
16617
|
+
width?: number | null;
|
|
16618
|
+
height?: number | null;
|
|
16619
|
+
name?: string | null;
|
|
16216
16620
|
}> | null;
|
|
16217
16621
|
productV1Seller?: {
|
|
16218
16622
|
__typename?: "ProductV1Seller";
|
|
@@ -16229,6 +16633,9 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16229
16633
|
url: string;
|
|
16230
16634
|
tag?: string | null;
|
|
16231
16635
|
type: ProductV1MediaType;
|
|
16636
|
+
width?: number | null;
|
|
16637
|
+
height?: number | null;
|
|
16638
|
+
name?: string | null;
|
|
16232
16639
|
}> | null;
|
|
16233
16640
|
contactLinks?: Array<{
|
|
16234
16641
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16273,6 +16680,9 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16273
16680
|
url: string;
|
|
16274
16681
|
tag?: string | null;
|
|
16275
16682
|
type: ProductV1MediaType;
|
|
16683
|
+
width?: number | null;
|
|
16684
|
+
height?: number | null;
|
|
16685
|
+
name?: string | null;
|
|
16276
16686
|
}> | null;
|
|
16277
16687
|
contactLinks?: Array<{
|
|
16278
16688
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16366,6 +16776,9 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16366
16776
|
url: string;
|
|
16367
16777
|
tag?: string | null;
|
|
16368
16778
|
type: ProductV1MediaType;
|
|
16779
|
+
width?: number | null;
|
|
16780
|
+
height?: number | null;
|
|
16781
|
+
name?: string | null;
|
|
16369
16782
|
}>;
|
|
16370
16783
|
visuals_videos?: Array<{
|
|
16371
16784
|
__typename?: "ProductV1Media";
|
|
@@ -16373,6 +16786,9 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16373
16786
|
url: string;
|
|
16374
16787
|
tag?: string | null;
|
|
16375
16788
|
type: ProductV1MediaType;
|
|
16789
|
+
width?: number | null;
|
|
16790
|
+
height?: number | null;
|
|
16791
|
+
name?: string | null;
|
|
16376
16792
|
}> | null;
|
|
16377
16793
|
productV1Seller?: {
|
|
16378
16794
|
__typename?: "ProductV1Seller";
|
|
@@ -16389,6 +16805,9 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16389
16805
|
url: string;
|
|
16390
16806
|
tag?: string | null;
|
|
16391
16807
|
type: ProductV1MediaType;
|
|
16808
|
+
width?: number | null;
|
|
16809
|
+
height?: number | null;
|
|
16810
|
+
name?: string | null;
|
|
16392
16811
|
}> | null;
|
|
16393
16812
|
contactLinks?: Array<{
|
|
16394
16813
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16711,6 +17130,9 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16711
17130
|
url: string;
|
|
16712
17131
|
tag?: string | null;
|
|
16713
17132
|
type: ProductV1MediaType;
|
|
17133
|
+
width?: number | null;
|
|
17134
|
+
height?: number | null;
|
|
17135
|
+
name?: string | null;
|
|
16714
17136
|
}>;
|
|
16715
17137
|
visuals_videos?: Array<{
|
|
16716
17138
|
__typename?: "ProductV1Media";
|
|
@@ -16718,6 +17140,9 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16718
17140
|
url: string;
|
|
16719
17141
|
tag?: string | null;
|
|
16720
17142
|
type: ProductV1MediaType;
|
|
17143
|
+
width?: number | null;
|
|
17144
|
+
height?: number | null;
|
|
17145
|
+
name?: string | null;
|
|
16721
17146
|
}> | null;
|
|
16722
17147
|
productV1Seller?: {
|
|
16723
17148
|
__typename?: "ProductV1Seller";
|
|
@@ -16734,6 +17159,9 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16734
17159
|
url: string;
|
|
16735
17160
|
tag?: string | null;
|
|
16736
17161
|
type: ProductV1MediaType;
|
|
17162
|
+
width?: number | null;
|
|
17163
|
+
height?: number | null;
|
|
17164
|
+
name?: string | null;
|
|
16737
17165
|
}> | null;
|
|
16738
17166
|
contactLinks?: Array<{
|
|
16739
17167
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16778,6 +17206,9 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16778
17206
|
url: string;
|
|
16779
17207
|
tag?: string | null;
|
|
16780
17208
|
type: ProductV1MediaType;
|
|
17209
|
+
width?: number | null;
|
|
17210
|
+
height?: number | null;
|
|
17211
|
+
name?: string | null;
|
|
16781
17212
|
}> | null;
|
|
16782
17213
|
contactLinks?: Array<{
|
|
16783
17214
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16871,6 +17302,9 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16871
17302
|
url: string;
|
|
16872
17303
|
tag?: string | null;
|
|
16873
17304
|
type: ProductV1MediaType;
|
|
17305
|
+
width?: number | null;
|
|
17306
|
+
height?: number | null;
|
|
17307
|
+
name?: string | null;
|
|
16874
17308
|
}>;
|
|
16875
17309
|
visuals_videos?: Array<{
|
|
16876
17310
|
__typename?: "ProductV1Media";
|
|
@@ -16878,6 +17312,9 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16878
17312
|
url: string;
|
|
16879
17313
|
tag?: string | null;
|
|
16880
17314
|
type: ProductV1MediaType;
|
|
17315
|
+
width?: number | null;
|
|
17316
|
+
height?: number | null;
|
|
17317
|
+
name?: string | null;
|
|
16881
17318
|
}> | null;
|
|
16882
17319
|
productV1Seller?: {
|
|
16883
17320
|
__typename?: "ProductV1Seller";
|
|
@@ -16894,6 +17331,9 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16894
17331
|
url: string;
|
|
16895
17332
|
tag?: string | null;
|
|
16896
17333
|
type: ProductV1MediaType;
|
|
17334
|
+
width?: number | null;
|
|
17335
|
+
height?: number | null;
|
|
17336
|
+
name?: string | null;
|
|
16897
17337
|
}> | null;
|
|
16898
17338
|
contactLinks?: Array<{
|
|
16899
17339
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16967,6 +17407,13 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
16967
17407
|
numberOfCommits: string;
|
|
16968
17408
|
numberOfRedemptions: string;
|
|
16969
17409
|
uuid: string;
|
|
17410
|
+
animationMetadata?: {
|
|
17411
|
+
__typename?: "AnimationMetadata";
|
|
17412
|
+
id: string;
|
|
17413
|
+
width?: number | null;
|
|
17414
|
+
height?: number | null;
|
|
17415
|
+
name?: string | null;
|
|
17416
|
+
} | null;
|
|
16970
17417
|
attributes?: Array<{
|
|
16971
17418
|
__typename?: "MetadataAttribute";
|
|
16972
17419
|
traitType: string;
|
|
@@ -17223,6 +17670,9 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17223
17670
|
url: string;
|
|
17224
17671
|
tag?: string | null;
|
|
17225
17672
|
type: ProductV1MediaType;
|
|
17673
|
+
width?: number | null;
|
|
17674
|
+
height?: number | null;
|
|
17675
|
+
name?: string | null;
|
|
17226
17676
|
}>;
|
|
17227
17677
|
visuals_videos?: Array<{
|
|
17228
17678
|
__typename?: "ProductV1Media";
|
|
@@ -17230,6 +17680,9 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17230
17680
|
url: string;
|
|
17231
17681
|
tag?: string | null;
|
|
17232
17682
|
type: ProductV1MediaType;
|
|
17683
|
+
width?: number | null;
|
|
17684
|
+
height?: number | null;
|
|
17685
|
+
name?: string | null;
|
|
17233
17686
|
}> | null;
|
|
17234
17687
|
productV1Seller?: {
|
|
17235
17688
|
__typename?: "ProductV1Seller";
|
|
@@ -17246,6 +17699,9 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17246
17699
|
url: string;
|
|
17247
17700
|
tag?: string | null;
|
|
17248
17701
|
type: ProductV1MediaType;
|
|
17702
|
+
width?: number | null;
|
|
17703
|
+
height?: number | null;
|
|
17704
|
+
name?: string | null;
|
|
17249
17705
|
}> | null;
|
|
17250
17706
|
contactLinks?: Array<{
|
|
17251
17707
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17290,6 +17746,9 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17290
17746
|
url: string;
|
|
17291
17747
|
tag?: string | null;
|
|
17292
17748
|
type: ProductV1MediaType;
|
|
17749
|
+
width?: number | null;
|
|
17750
|
+
height?: number | null;
|
|
17751
|
+
name?: string | null;
|
|
17293
17752
|
}> | null;
|
|
17294
17753
|
contactLinks?: Array<{
|
|
17295
17754
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17428,6 +17887,9 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17428
17887
|
url: string;
|
|
17429
17888
|
tag?: string | null;
|
|
17430
17889
|
type: ProductV1MediaType;
|
|
17890
|
+
width?: number | null;
|
|
17891
|
+
height?: number | null;
|
|
17892
|
+
name?: string | null;
|
|
17431
17893
|
}>;
|
|
17432
17894
|
visuals_videos?: Array<{
|
|
17433
17895
|
__typename?: "ProductV1Media";
|
|
@@ -17435,6 +17897,9 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17435
17897
|
url: string;
|
|
17436
17898
|
tag?: string | null;
|
|
17437
17899
|
type: ProductV1MediaType;
|
|
17900
|
+
width?: number | null;
|
|
17901
|
+
height?: number | null;
|
|
17902
|
+
name?: string | null;
|
|
17438
17903
|
}> | null;
|
|
17439
17904
|
productV1Seller?: {
|
|
17440
17905
|
__typename?: "ProductV1Seller";
|
|
@@ -17451,6 +17916,9 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17451
17916
|
url: string;
|
|
17452
17917
|
tag?: string | null;
|
|
17453
17918
|
type: ProductV1MediaType;
|
|
17919
|
+
width?: number | null;
|
|
17920
|
+
height?: number | null;
|
|
17921
|
+
name?: string | null;
|
|
17454
17922
|
}> | null;
|
|
17455
17923
|
contactLinks?: Array<{
|
|
17456
17924
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17495,6 +17963,9 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17495
17963
|
url: string;
|
|
17496
17964
|
tag?: string | null;
|
|
17497
17965
|
type: ProductV1MediaType;
|
|
17966
|
+
width?: number | null;
|
|
17967
|
+
height?: number | null;
|
|
17968
|
+
name?: string | null;
|
|
17498
17969
|
}> | null;
|
|
17499
17970
|
contactLinks?: Array<{
|
|
17500
17971
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17560,6 +18031,13 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17560
18031
|
numberOfCommits: string;
|
|
17561
18032
|
numberOfRedemptions: string;
|
|
17562
18033
|
uuid: string;
|
|
18034
|
+
animationMetadata?: {
|
|
18035
|
+
__typename?: "AnimationMetadata";
|
|
18036
|
+
id: string;
|
|
18037
|
+
width?: number | null;
|
|
18038
|
+
height?: number | null;
|
|
18039
|
+
name?: string | null;
|
|
18040
|
+
} | null;
|
|
17563
18041
|
attributes?: Array<{
|
|
17564
18042
|
__typename?: "MetadataAttribute";
|
|
17565
18043
|
traitType: string;
|
|
@@ -17816,6 +18294,9 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17816
18294
|
url: string;
|
|
17817
18295
|
tag?: string | null;
|
|
17818
18296
|
type: ProductV1MediaType;
|
|
18297
|
+
width?: number | null;
|
|
18298
|
+
height?: number | null;
|
|
18299
|
+
name?: string | null;
|
|
17819
18300
|
}>;
|
|
17820
18301
|
visuals_videos?: Array<{
|
|
17821
18302
|
__typename?: "ProductV1Media";
|
|
@@ -17823,6 +18304,9 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17823
18304
|
url: string;
|
|
17824
18305
|
tag?: string | null;
|
|
17825
18306
|
type: ProductV1MediaType;
|
|
18307
|
+
width?: number | null;
|
|
18308
|
+
height?: number | null;
|
|
18309
|
+
name?: string | null;
|
|
17826
18310
|
}> | null;
|
|
17827
18311
|
productV1Seller?: {
|
|
17828
18312
|
__typename?: "ProductV1Seller";
|
|
@@ -17839,6 +18323,9 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17839
18323
|
url: string;
|
|
17840
18324
|
tag?: string | null;
|
|
17841
18325
|
type: ProductV1MediaType;
|
|
18326
|
+
width?: number | null;
|
|
18327
|
+
height?: number | null;
|
|
18328
|
+
name?: string | null;
|
|
17842
18329
|
}> | null;
|
|
17843
18330
|
contactLinks?: Array<{
|
|
17844
18331
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17883,6 +18370,9 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17883
18370
|
url: string;
|
|
17884
18371
|
tag?: string | null;
|
|
17885
18372
|
type: ProductV1MediaType;
|
|
18373
|
+
width?: number | null;
|
|
18374
|
+
height?: number | null;
|
|
18375
|
+
name?: string | null;
|
|
17886
18376
|
}> | null;
|
|
17887
18377
|
contactLinks?: Array<{
|
|
17888
18378
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18021,6 +18511,9 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18021
18511
|
url: string;
|
|
18022
18512
|
tag?: string | null;
|
|
18023
18513
|
type: ProductV1MediaType;
|
|
18514
|
+
width?: number | null;
|
|
18515
|
+
height?: number | null;
|
|
18516
|
+
name?: string | null;
|
|
18024
18517
|
}>;
|
|
18025
18518
|
visuals_videos?: Array<{
|
|
18026
18519
|
__typename?: "ProductV1Media";
|
|
@@ -18028,6 +18521,9 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18028
18521
|
url: string;
|
|
18029
18522
|
tag?: string | null;
|
|
18030
18523
|
type: ProductV1MediaType;
|
|
18524
|
+
width?: number | null;
|
|
18525
|
+
height?: number | null;
|
|
18526
|
+
name?: string | null;
|
|
18031
18527
|
}> | null;
|
|
18032
18528
|
productV1Seller?: {
|
|
18033
18529
|
__typename?: "ProductV1Seller";
|
|
@@ -18044,6 +18540,9 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18044
18540
|
url: string;
|
|
18045
18541
|
tag?: string | null;
|
|
18046
18542
|
type: ProductV1MediaType;
|
|
18543
|
+
width?: number | null;
|
|
18544
|
+
height?: number | null;
|
|
18545
|
+
name?: string | null;
|
|
18047
18546
|
}> | null;
|
|
18048
18547
|
contactLinks?: Array<{
|
|
18049
18548
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18088,6 +18587,9 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18088
18587
|
url: string;
|
|
18089
18588
|
tag?: string | null;
|
|
18090
18589
|
type: ProductV1MediaType;
|
|
18590
|
+
width?: number | null;
|
|
18591
|
+
height?: number | null;
|
|
18592
|
+
name?: string | null;
|
|
18091
18593
|
}> | null;
|
|
18092
18594
|
contactLinks?: Array<{
|
|
18093
18595
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18143,6 +18645,13 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18143
18645
|
numberOfCommits: string;
|
|
18144
18646
|
numberOfRedemptions: string;
|
|
18145
18647
|
uuid: string;
|
|
18648
|
+
animationMetadata?: {
|
|
18649
|
+
__typename?: "AnimationMetadata";
|
|
18650
|
+
id: string;
|
|
18651
|
+
width?: number | null;
|
|
18652
|
+
height?: number | null;
|
|
18653
|
+
name?: string | null;
|
|
18654
|
+
} | null;
|
|
18146
18655
|
attributes?: Array<{
|
|
18147
18656
|
__typename?: "MetadataAttribute";
|
|
18148
18657
|
traitType: string;
|
|
@@ -18395,6 +18904,9 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18395
18904
|
url: string;
|
|
18396
18905
|
tag?: string | null;
|
|
18397
18906
|
type: ProductV1MediaType;
|
|
18907
|
+
width?: number | null;
|
|
18908
|
+
height?: number | null;
|
|
18909
|
+
name?: string | null;
|
|
18398
18910
|
}>;
|
|
18399
18911
|
visuals_videos?: Array<{
|
|
18400
18912
|
__typename?: "ProductV1Media";
|
|
@@ -18402,6 +18914,9 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18402
18914
|
url: string;
|
|
18403
18915
|
tag?: string | null;
|
|
18404
18916
|
type: ProductV1MediaType;
|
|
18917
|
+
width?: number | null;
|
|
18918
|
+
height?: number | null;
|
|
18919
|
+
name?: string | null;
|
|
18405
18920
|
}> | null;
|
|
18406
18921
|
productV1Seller?: {
|
|
18407
18922
|
__typename?: "ProductV1Seller";
|
|
@@ -18418,6 +18933,9 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18418
18933
|
url: string;
|
|
18419
18934
|
tag?: string | null;
|
|
18420
18935
|
type: ProductV1MediaType;
|
|
18936
|
+
width?: number | null;
|
|
18937
|
+
height?: number | null;
|
|
18938
|
+
name?: string | null;
|
|
18421
18939
|
}> | null;
|
|
18422
18940
|
contactLinks?: Array<{
|
|
18423
18941
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18462,6 +18980,9 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18462
18980
|
url: string;
|
|
18463
18981
|
tag?: string | null;
|
|
18464
18982
|
type: ProductV1MediaType;
|
|
18983
|
+
width?: number | null;
|
|
18984
|
+
height?: number | null;
|
|
18985
|
+
name?: string | null;
|
|
18465
18986
|
}> | null;
|
|
18466
18987
|
contactLinks?: Array<{
|
|
18467
18988
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18600,6 +19121,9 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18600
19121
|
url: string;
|
|
18601
19122
|
tag?: string | null;
|
|
18602
19123
|
type: ProductV1MediaType;
|
|
19124
|
+
width?: number | null;
|
|
19125
|
+
height?: number | null;
|
|
19126
|
+
name?: string | null;
|
|
18603
19127
|
}>;
|
|
18604
19128
|
visuals_videos?: Array<{
|
|
18605
19129
|
__typename?: "ProductV1Media";
|
|
@@ -18607,6 +19131,9 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18607
19131
|
url: string;
|
|
18608
19132
|
tag?: string | null;
|
|
18609
19133
|
type: ProductV1MediaType;
|
|
19134
|
+
width?: number | null;
|
|
19135
|
+
height?: number | null;
|
|
19136
|
+
name?: string | null;
|
|
18610
19137
|
}> | null;
|
|
18611
19138
|
productV1Seller?: {
|
|
18612
19139
|
__typename?: "ProductV1Seller";
|
|
@@ -18623,6 +19150,9 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18623
19150
|
url: string;
|
|
18624
19151
|
tag?: string | null;
|
|
18625
19152
|
type: ProductV1MediaType;
|
|
19153
|
+
width?: number | null;
|
|
19154
|
+
height?: number | null;
|
|
19155
|
+
name?: string | null;
|
|
18626
19156
|
}> | null;
|
|
18627
19157
|
contactLinks?: Array<{
|
|
18628
19158
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18667,6 +19197,9 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18667
19197
|
url: string;
|
|
18668
19198
|
tag?: string | null;
|
|
18669
19199
|
type: ProductV1MediaType;
|
|
19200
|
+
width?: number | null;
|
|
19201
|
+
height?: number | null;
|
|
19202
|
+
name?: string | null;
|
|
18670
19203
|
}> | null;
|
|
18671
19204
|
contactLinks?: Array<{
|
|
18672
19205
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18721,6 +19254,13 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
18721
19254
|
numberOfCommits: string;
|
|
18722
19255
|
numberOfRedemptions: string;
|
|
18723
19256
|
uuid: string;
|
|
19257
|
+
animationMetadata?: {
|
|
19258
|
+
__typename?: "AnimationMetadata";
|
|
19259
|
+
id: string;
|
|
19260
|
+
width?: number | null;
|
|
19261
|
+
height?: number | null;
|
|
19262
|
+
name?: string | null;
|
|
19263
|
+
} | null;
|
|
18724
19264
|
attributes?: Array<{
|
|
18725
19265
|
__typename?: "MetadataAttribute";
|
|
18726
19266
|
traitType: string;
|
|
@@ -18973,6 +19513,9 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
18973
19513
|
url: string;
|
|
18974
19514
|
tag?: string | null;
|
|
18975
19515
|
type: ProductV1MediaType;
|
|
19516
|
+
width?: number | null;
|
|
19517
|
+
height?: number | null;
|
|
19518
|
+
name?: string | null;
|
|
18976
19519
|
}>;
|
|
18977
19520
|
visuals_videos?: Array<{
|
|
18978
19521
|
__typename?: "ProductV1Media";
|
|
@@ -18980,6 +19523,9 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
18980
19523
|
url: string;
|
|
18981
19524
|
tag?: string | null;
|
|
18982
19525
|
type: ProductV1MediaType;
|
|
19526
|
+
width?: number | null;
|
|
19527
|
+
height?: number | null;
|
|
19528
|
+
name?: string | null;
|
|
18983
19529
|
}> | null;
|
|
18984
19530
|
productV1Seller?: {
|
|
18985
19531
|
__typename?: "ProductV1Seller";
|
|
@@ -18996,6 +19542,9 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
18996
19542
|
url: string;
|
|
18997
19543
|
tag?: string | null;
|
|
18998
19544
|
type: ProductV1MediaType;
|
|
19545
|
+
width?: number | null;
|
|
19546
|
+
height?: number | null;
|
|
19547
|
+
name?: string | null;
|
|
18999
19548
|
}> | null;
|
|
19000
19549
|
contactLinks?: Array<{
|
|
19001
19550
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19040,6 +19589,9 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19040
19589
|
url: string;
|
|
19041
19590
|
tag?: string | null;
|
|
19042
19591
|
type: ProductV1MediaType;
|
|
19592
|
+
width?: number | null;
|
|
19593
|
+
height?: number | null;
|
|
19594
|
+
name?: string | null;
|
|
19043
19595
|
}> | null;
|
|
19044
19596
|
contactLinks?: Array<{
|
|
19045
19597
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19178,6 +19730,9 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19178
19730
|
url: string;
|
|
19179
19731
|
tag?: string | null;
|
|
19180
19732
|
type: ProductV1MediaType;
|
|
19733
|
+
width?: number | null;
|
|
19734
|
+
height?: number | null;
|
|
19735
|
+
name?: string | null;
|
|
19181
19736
|
}>;
|
|
19182
19737
|
visuals_videos?: Array<{
|
|
19183
19738
|
__typename?: "ProductV1Media";
|
|
@@ -19185,6 +19740,9 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19185
19740
|
url: string;
|
|
19186
19741
|
tag?: string | null;
|
|
19187
19742
|
type: ProductV1MediaType;
|
|
19743
|
+
width?: number | null;
|
|
19744
|
+
height?: number | null;
|
|
19745
|
+
name?: string | null;
|
|
19188
19746
|
}> | null;
|
|
19189
19747
|
productV1Seller?: {
|
|
19190
19748
|
__typename?: "ProductV1Seller";
|
|
@@ -19201,6 +19759,9 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19201
19759
|
url: string;
|
|
19202
19760
|
tag?: string | null;
|
|
19203
19761
|
type: ProductV1MediaType;
|
|
19762
|
+
width?: number | null;
|
|
19763
|
+
height?: number | null;
|
|
19764
|
+
name?: string | null;
|
|
19204
19765
|
}> | null;
|
|
19205
19766
|
contactLinks?: Array<{
|
|
19206
19767
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19245,6 +19806,9 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19245
19806
|
url: string;
|
|
19246
19807
|
tag?: string | null;
|
|
19247
19808
|
type: ProductV1MediaType;
|
|
19809
|
+
width?: number | null;
|
|
19810
|
+
height?: number | null;
|
|
19811
|
+
name?: string | null;
|
|
19248
19812
|
}> | null;
|
|
19249
19813
|
contactLinks?: Array<{
|
|
19250
19814
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19279,6 +19843,14 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19279
19843
|
};
|
|
19280
19844
|
};
|
|
19281
19845
|
|
|
19846
|
+
export type BaseAnimationMetadataFieldsFragment = {
|
|
19847
|
+
__typename?: "AnimationMetadata";
|
|
19848
|
+
id: string;
|
|
19849
|
+
width?: number | null;
|
|
19850
|
+
height?: number | null;
|
|
19851
|
+
name?: string | null;
|
|
19852
|
+
};
|
|
19853
|
+
|
|
19282
19854
|
export type BaseProductV1ProductFieldsFragment = {
|
|
19283
19855
|
__typename?: "ProductV1Product";
|
|
19284
19856
|
id: string;
|
|
@@ -19346,6 +19918,9 @@ export type BaseProductV1ProductFieldsFragment = {
|
|
|
19346
19918
|
url: string;
|
|
19347
19919
|
tag?: string | null;
|
|
19348
19920
|
type: ProductV1MediaType;
|
|
19921
|
+
width?: number | null;
|
|
19922
|
+
height?: number | null;
|
|
19923
|
+
name?: string | null;
|
|
19349
19924
|
}>;
|
|
19350
19925
|
visuals_videos?: Array<{
|
|
19351
19926
|
__typename?: "ProductV1Media";
|
|
@@ -19353,6 +19928,9 @@ export type BaseProductV1ProductFieldsFragment = {
|
|
|
19353
19928
|
url: string;
|
|
19354
19929
|
tag?: string | null;
|
|
19355
19930
|
type: ProductV1MediaType;
|
|
19931
|
+
width?: number | null;
|
|
19932
|
+
height?: number | null;
|
|
19933
|
+
name?: string | null;
|
|
19356
19934
|
}> | null;
|
|
19357
19935
|
productV1Seller?: {
|
|
19358
19936
|
__typename?: "ProductV1Seller";
|
|
@@ -19369,6 +19947,9 @@ export type BaseProductV1ProductFieldsFragment = {
|
|
|
19369
19947
|
url: string;
|
|
19370
19948
|
tag?: string | null;
|
|
19371
19949
|
type: ProductV1MediaType;
|
|
19950
|
+
width?: number | null;
|
|
19951
|
+
height?: number | null;
|
|
19952
|
+
name?: string | null;
|
|
19372
19953
|
}> | null;
|
|
19373
19954
|
contactLinks?: Array<{
|
|
19374
19955
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19680,6 +20261,9 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19680
20261
|
url: string;
|
|
19681
20262
|
tag?: string | null;
|
|
19682
20263
|
type: ProductV1MediaType;
|
|
20264
|
+
width?: number | null;
|
|
20265
|
+
height?: number | null;
|
|
20266
|
+
name?: string | null;
|
|
19683
20267
|
}>;
|
|
19684
20268
|
visuals_videos?: Array<{
|
|
19685
20269
|
__typename?: "ProductV1Media";
|
|
@@ -19687,6 +20271,9 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19687
20271
|
url: string;
|
|
19688
20272
|
tag?: string | null;
|
|
19689
20273
|
type: ProductV1MediaType;
|
|
20274
|
+
width?: number | null;
|
|
20275
|
+
height?: number | null;
|
|
20276
|
+
name?: string | null;
|
|
19690
20277
|
}> | null;
|
|
19691
20278
|
productV1Seller?: {
|
|
19692
20279
|
__typename?: "ProductV1Seller";
|
|
@@ -19703,6 +20290,9 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19703
20290
|
url: string;
|
|
19704
20291
|
tag?: string | null;
|
|
19705
20292
|
type: ProductV1MediaType;
|
|
20293
|
+
width?: number | null;
|
|
20294
|
+
height?: number | null;
|
|
20295
|
+
name?: string | null;
|
|
19706
20296
|
}> | null;
|
|
19707
20297
|
contactLinks?: Array<{
|
|
19708
20298
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19747,6 +20337,9 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19747
20337
|
url: string;
|
|
19748
20338
|
tag?: string | null;
|
|
19749
20339
|
type: ProductV1MediaType;
|
|
20340
|
+
width?: number | null;
|
|
20341
|
+
height?: number | null;
|
|
20342
|
+
name?: string | null;
|
|
19750
20343
|
}> | null;
|
|
19751
20344
|
contactLinks?: Array<{
|
|
19752
20345
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19840,6 +20433,9 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19840
20433
|
url: string;
|
|
19841
20434
|
tag?: string | null;
|
|
19842
20435
|
type: ProductV1MediaType;
|
|
20436
|
+
width?: number | null;
|
|
20437
|
+
height?: number | null;
|
|
20438
|
+
name?: string | null;
|
|
19843
20439
|
}>;
|
|
19844
20440
|
visuals_videos?: Array<{
|
|
19845
20441
|
__typename?: "ProductV1Media";
|
|
@@ -19847,6 +20443,9 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19847
20443
|
url: string;
|
|
19848
20444
|
tag?: string | null;
|
|
19849
20445
|
type: ProductV1MediaType;
|
|
20446
|
+
width?: number | null;
|
|
20447
|
+
height?: number | null;
|
|
20448
|
+
name?: string | null;
|
|
19850
20449
|
}> | null;
|
|
19851
20450
|
productV1Seller?: {
|
|
19852
20451
|
__typename?: "ProductV1Seller";
|
|
@@ -19863,6 +20462,9 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19863
20462
|
url: string;
|
|
19864
20463
|
tag?: string | null;
|
|
19865
20464
|
type: ProductV1MediaType;
|
|
20465
|
+
width?: number | null;
|
|
20466
|
+
height?: number | null;
|
|
20467
|
+
name?: string | null;
|
|
19866
20468
|
}> | null;
|
|
19867
20469
|
contactLinks?: Array<{
|
|
19868
20470
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20174,6 +20776,9 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20174
20776
|
url: string;
|
|
20175
20777
|
tag?: string | null;
|
|
20176
20778
|
type: ProductV1MediaType;
|
|
20779
|
+
width?: number | null;
|
|
20780
|
+
height?: number | null;
|
|
20781
|
+
name?: string | null;
|
|
20177
20782
|
}>;
|
|
20178
20783
|
visuals_videos?: Array<{
|
|
20179
20784
|
__typename?: "ProductV1Media";
|
|
@@ -20181,6 +20786,9 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20181
20786
|
url: string;
|
|
20182
20787
|
tag?: string | null;
|
|
20183
20788
|
type: ProductV1MediaType;
|
|
20789
|
+
width?: number | null;
|
|
20790
|
+
height?: number | null;
|
|
20791
|
+
name?: string | null;
|
|
20184
20792
|
}> | null;
|
|
20185
20793
|
productV1Seller?: {
|
|
20186
20794
|
__typename?: "ProductV1Seller";
|
|
@@ -20197,6 +20805,9 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20197
20805
|
url: string;
|
|
20198
20806
|
tag?: string | null;
|
|
20199
20807
|
type: ProductV1MediaType;
|
|
20808
|
+
width?: number | null;
|
|
20809
|
+
height?: number | null;
|
|
20810
|
+
name?: string | null;
|
|
20200
20811
|
}> | null;
|
|
20201
20812
|
contactLinks?: Array<{
|
|
20202
20813
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20241,6 +20852,9 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20241
20852
|
url: string;
|
|
20242
20853
|
tag?: string | null;
|
|
20243
20854
|
type: ProductV1MediaType;
|
|
20855
|
+
width?: number | null;
|
|
20856
|
+
height?: number | null;
|
|
20857
|
+
name?: string | null;
|
|
20244
20858
|
}> | null;
|
|
20245
20859
|
contactLinks?: Array<{
|
|
20246
20860
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20334,6 +20948,9 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20334
20948
|
url: string;
|
|
20335
20949
|
tag?: string | null;
|
|
20336
20950
|
type: ProductV1MediaType;
|
|
20951
|
+
width?: number | null;
|
|
20952
|
+
height?: number | null;
|
|
20953
|
+
name?: string | null;
|
|
20337
20954
|
}>;
|
|
20338
20955
|
visuals_videos?: Array<{
|
|
20339
20956
|
__typename?: "ProductV1Media";
|
|
@@ -20341,6 +20958,9 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20341
20958
|
url: string;
|
|
20342
20959
|
tag?: string | null;
|
|
20343
20960
|
type: ProductV1MediaType;
|
|
20961
|
+
width?: number | null;
|
|
20962
|
+
height?: number | null;
|
|
20963
|
+
name?: string | null;
|
|
20344
20964
|
}> | null;
|
|
20345
20965
|
productV1Seller?: {
|
|
20346
20966
|
__typename?: "ProductV1Seller";
|
|
@@ -20357,6 +20977,9 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20357
20977
|
url: string;
|
|
20358
20978
|
tag?: string | null;
|
|
20359
20979
|
type: ProductV1MediaType;
|
|
20980
|
+
width?: number | null;
|
|
20981
|
+
height?: number | null;
|
|
20982
|
+
name?: string | null;
|
|
20360
20983
|
}> | null;
|
|
20361
20984
|
contactLinks?: Array<{
|
|
20362
20985
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20411,6 +21034,9 @@ export type BaseProductV1MediaFieldsFragment = {
|
|
|
20411
21034
|
url: string;
|
|
20412
21035
|
tag?: string | null;
|
|
20413
21036
|
type: ProductV1MediaType;
|
|
21037
|
+
width?: number | null;
|
|
21038
|
+
height?: number | null;
|
|
21039
|
+
name?: string | null;
|
|
20414
21040
|
};
|
|
20415
21041
|
|
|
20416
21042
|
export type BaseProductV1PersonalisationFieldsFragment = {
|
|
@@ -20441,6 +21067,9 @@ export type BaseProductV1SellerFieldsFragment = {
|
|
|
20441
21067
|
url: string;
|
|
20442
21068
|
tag?: string | null;
|
|
20443
21069
|
type: ProductV1MediaType;
|
|
21070
|
+
width?: number | null;
|
|
21071
|
+
height?: number | null;
|
|
21072
|
+
name?: string | null;
|
|
20444
21073
|
}> | null;
|
|
20445
21074
|
contactLinks?: Array<{
|
|
20446
21075
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20532,6 +21161,9 @@ export type BaseProductV1ProductOverridesFieldsFragment = {
|
|
|
20532
21161
|
url: string;
|
|
20533
21162
|
tag?: string | null;
|
|
20534
21163
|
type: ProductV1MediaType;
|
|
21164
|
+
width?: number | null;
|
|
21165
|
+
height?: number | null;
|
|
21166
|
+
name?: string | null;
|
|
20535
21167
|
}>;
|
|
20536
21168
|
visuals_videos?: Array<{
|
|
20537
21169
|
__typename?: "ProductV1Media";
|
|
@@ -20539,6 +21171,9 @@ export type BaseProductV1ProductOverridesFieldsFragment = {
|
|
|
20539
21171
|
url: string;
|
|
20540
21172
|
tag?: string | null;
|
|
20541
21173
|
type: ProductV1MediaType;
|
|
21174
|
+
width?: number | null;
|
|
21175
|
+
height?: number | null;
|
|
21176
|
+
name?: string | null;
|
|
20542
21177
|
}> | null;
|
|
20543
21178
|
};
|
|
20544
21179
|
|
|
@@ -20800,6 +21435,9 @@ export type GetOfferByIdQueryQuery = {
|
|
|
20800
21435
|
url: string;
|
|
20801
21436
|
tag?: string | null;
|
|
20802
21437
|
type: ProductV1MediaType;
|
|
21438
|
+
width?: number | null;
|
|
21439
|
+
height?: number | null;
|
|
21440
|
+
name?: string | null;
|
|
20803
21441
|
}>;
|
|
20804
21442
|
visuals_videos?: Array<{
|
|
20805
21443
|
__typename?: "ProductV1Media";
|
|
@@ -20807,6 +21445,9 @@ export type GetOfferByIdQueryQuery = {
|
|
|
20807
21445
|
url: string;
|
|
20808
21446
|
tag?: string | null;
|
|
20809
21447
|
type: ProductV1MediaType;
|
|
21448
|
+
width?: number | null;
|
|
21449
|
+
height?: number | null;
|
|
21450
|
+
name?: string | null;
|
|
20810
21451
|
}> | null;
|
|
20811
21452
|
productV1Seller?: {
|
|
20812
21453
|
__typename?: "ProductV1Seller";
|
|
@@ -20823,6 +21464,9 @@ export type GetOfferByIdQueryQuery = {
|
|
|
20823
21464
|
url: string;
|
|
20824
21465
|
tag?: string | null;
|
|
20825
21466
|
type: ProductV1MediaType;
|
|
21467
|
+
width?: number | null;
|
|
21468
|
+
height?: number | null;
|
|
21469
|
+
name?: string | null;
|
|
20826
21470
|
}> | null;
|
|
20827
21471
|
contactLinks?: Array<{
|
|
20828
21472
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20867,6 +21511,9 @@ export type GetOfferByIdQueryQuery = {
|
|
|
20867
21511
|
url: string;
|
|
20868
21512
|
tag?: string | null;
|
|
20869
21513
|
type: ProductV1MediaType;
|
|
21514
|
+
width?: number | null;
|
|
21515
|
+
height?: number | null;
|
|
21516
|
+
name?: string | null;
|
|
20870
21517
|
}> | null;
|
|
20871
21518
|
contactLinks?: Array<{
|
|
20872
21519
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21180,6 +21827,9 @@ export type GetOffersQueryQuery = {
|
|
|
21180
21827
|
url: string;
|
|
21181
21828
|
tag?: string | null;
|
|
21182
21829
|
type: ProductV1MediaType;
|
|
21830
|
+
width?: number | null;
|
|
21831
|
+
height?: number | null;
|
|
21832
|
+
name?: string | null;
|
|
21183
21833
|
}>;
|
|
21184
21834
|
visuals_videos?: Array<{
|
|
21185
21835
|
__typename?: "ProductV1Media";
|
|
@@ -21187,6 +21837,9 @@ export type GetOffersQueryQuery = {
|
|
|
21187
21837
|
url: string;
|
|
21188
21838
|
tag?: string | null;
|
|
21189
21839
|
type: ProductV1MediaType;
|
|
21840
|
+
width?: number | null;
|
|
21841
|
+
height?: number | null;
|
|
21842
|
+
name?: string | null;
|
|
21190
21843
|
}> | null;
|
|
21191
21844
|
productV1Seller?: {
|
|
21192
21845
|
__typename?: "ProductV1Seller";
|
|
@@ -21203,6 +21856,9 @@ export type GetOffersQueryQuery = {
|
|
|
21203
21856
|
url: string;
|
|
21204
21857
|
tag?: string | null;
|
|
21205
21858
|
type: ProductV1MediaType;
|
|
21859
|
+
width?: number | null;
|
|
21860
|
+
height?: number | null;
|
|
21861
|
+
name?: string | null;
|
|
21206
21862
|
}> | null;
|
|
21207
21863
|
contactLinks?: Array<{
|
|
21208
21864
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21247,6 +21903,9 @@ export type GetOffersQueryQuery = {
|
|
|
21247
21903
|
url: string;
|
|
21248
21904
|
tag?: string | null;
|
|
21249
21905
|
type: ProductV1MediaType;
|
|
21906
|
+
width?: number | null;
|
|
21907
|
+
height?: number | null;
|
|
21908
|
+
name?: string | null;
|
|
21250
21909
|
}> | null;
|
|
21251
21910
|
contactLinks?: Array<{
|
|
21252
21911
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21544,6 +22203,9 @@ export type OfferFieldsFragment = {
|
|
|
21544
22203
|
url: string;
|
|
21545
22204
|
tag?: string | null;
|
|
21546
22205
|
type: ProductV1MediaType;
|
|
22206
|
+
width?: number | null;
|
|
22207
|
+
height?: number | null;
|
|
22208
|
+
name?: string | null;
|
|
21547
22209
|
}>;
|
|
21548
22210
|
visuals_videos?: Array<{
|
|
21549
22211
|
__typename?: "ProductV1Media";
|
|
@@ -21551,6 +22213,9 @@ export type OfferFieldsFragment = {
|
|
|
21551
22213
|
url: string;
|
|
21552
22214
|
tag?: string | null;
|
|
21553
22215
|
type: ProductV1MediaType;
|
|
22216
|
+
width?: number | null;
|
|
22217
|
+
height?: number | null;
|
|
22218
|
+
name?: string | null;
|
|
21554
22219
|
}> | null;
|
|
21555
22220
|
productV1Seller?: {
|
|
21556
22221
|
__typename?: "ProductV1Seller";
|
|
@@ -21567,6 +22232,9 @@ export type OfferFieldsFragment = {
|
|
|
21567
22232
|
url: string;
|
|
21568
22233
|
tag?: string | null;
|
|
21569
22234
|
type: ProductV1MediaType;
|
|
22235
|
+
width?: number | null;
|
|
22236
|
+
height?: number | null;
|
|
22237
|
+
name?: string | null;
|
|
21570
22238
|
}> | null;
|
|
21571
22239
|
contactLinks?: Array<{
|
|
21572
22240
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21611,6 +22279,9 @@ export type OfferFieldsFragment = {
|
|
|
21611
22279
|
url: string;
|
|
21612
22280
|
tag?: string | null;
|
|
21613
22281
|
type: ProductV1MediaType;
|
|
22282
|
+
width?: number | null;
|
|
22283
|
+
height?: number | null;
|
|
22284
|
+
name?: string | null;
|
|
21614
22285
|
}> | null;
|
|
21615
22286
|
contactLinks?: Array<{
|
|
21616
22287
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21857,6 +22528,9 @@ export type BaseOfferFieldsFragment = {
|
|
|
21857
22528
|
url: string;
|
|
21858
22529
|
tag?: string | null;
|
|
21859
22530
|
type: ProductV1MediaType;
|
|
22531
|
+
width?: number | null;
|
|
22532
|
+
height?: number | null;
|
|
22533
|
+
name?: string | null;
|
|
21860
22534
|
}>;
|
|
21861
22535
|
visuals_videos?: Array<{
|
|
21862
22536
|
__typename?: "ProductV1Media";
|
|
@@ -21864,6 +22538,9 @@ export type BaseOfferFieldsFragment = {
|
|
|
21864
22538
|
url: string;
|
|
21865
22539
|
tag?: string | null;
|
|
21866
22540
|
type: ProductV1MediaType;
|
|
22541
|
+
width?: number | null;
|
|
22542
|
+
height?: number | null;
|
|
22543
|
+
name?: string | null;
|
|
21867
22544
|
}> | null;
|
|
21868
22545
|
productV1Seller?: {
|
|
21869
22546
|
__typename?: "ProductV1Seller";
|
|
@@ -21880,6 +22557,9 @@ export type BaseOfferFieldsFragment = {
|
|
|
21880
22557
|
url: string;
|
|
21881
22558
|
tag?: string | null;
|
|
21882
22559
|
type: ProductV1MediaType;
|
|
22560
|
+
width?: number | null;
|
|
22561
|
+
height?: number | null;
|
|
22562
|
+
name?: string | null;
|
|
21883
22563
|
}> | null;
|
|
21884
22564
|
contactLinks?: Array<{
|
|
21885
22565
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21924,6 +22604,9 @@ export type BaseOfferFieldsFragment = {
|
|
|
21924
22604
|
url: string;
|
|
21925
22605
|
tag?: string | null;
|
|
21926
22606
|
type: ProductV1MediaType;
|
|
22607
|
+
width?: number | null;
|
|
22608
|
+
height?: number | null;
|
|
22609
|
+
name?: string | null;
|
|
21927
22610
|
}> | null;
|
|
21928
22611
|
contactLinks?: Array<{
|
|
21929
22612
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -22109,6 +22792,9 @@ export const BaseProductV1MediaFieldsFragmentDoc = gql`
|
|
|
22109
22792
|
url
|
|
22110
22793
|
tag
|
|
22111
22794
|
type
|
|
22795
|
+
width
|
|
22796
|
+
height
|
|
22797
|
+
name
|
|
22112
22798
|
}
|
|
22113
22799
|
`;
|
|
22114
22800
|
export const BaseProductV1SellerContactLinkFieldsFragmentDoc = gql`
|
|
@@ -22248,6 +22934,14 @@ export const BaseProductV1ShippingOptionFieldsFragmentDoc = gql`
|
|
|
22248
22934
|
}
|
|
22249
22935
|
${BaseProductV1ShippingJurisdictionFieldsFragmentDoc}
|
|
22250
22936
|
`;
|
|
22937
|
+
export const BaseAnimationMetadataFieldsFragmentDoc = gql`
|
|
22938
|
+
fragment BaseAnimationMetadataFields on AnimationMetadata {
|
|
22939
|
+
id
|
|
22940
|
+
width
|
|
22941
|
+
height
|
|
22942
|
+
name
|
|
22943
|
+
}
|
|
22944
|
+
`;
|
|
22251
22945
|
export const BaseOfferFieldsFragmentDoc = gql`
|
|
22252
22946
|
fragment BaseOfferFields on Offer {
|
|
22253
22947
|
id
|
|
@@ -22294,6 +22988,9 @@ export const BaseOfferFieldsFragmentDoc = gql`
|
|
|
22294
22988
|
description
|
|
22295
22989
|
externalUrl
|
|
22296
22990
|
animationUrl
|
|
22991
|
+
animationMetadata {
|
|
22992
|
+
...BaseAnimationMetadataFields
|
|
22993
|
+
}
|
|
22297
22994
|
licenseUrl
|
|
22298
22995
|
condition
|
|
22299
22996
|
schemaUrl
|
|
@@ -22329,6 +23026,7 @@ export const BaseOfferFieldsFragmentDoc = gql`
|
|
|
22329
23026
|
}
|
|
22330
23027
|
}
|
|
22331
23028
|
}
|
|
23029
|
+
${BaseAnimationMetadataFieldsFragmentDoc}
|
|
22332
23030
|
${BaseConditionFieldsFragmentDoc}
|
|
22333
23031
|
${BaseSellerFieldsFragmentDoc}
|
|
22334
23032
|
${BaseExchangeTokenFieldsFragmentDoc}
|
|
@@ -22654,6 +23352,9 @@ export const BaseProductV1MetadataEntityFieldsFragmentDoc = gql`
|
|
|
22654
23352
|
description
|
|
22655
23353
|
externalUrl
|
|
22656
23354
|
animationUrl
|
|
23355
|
+
animationMetadata {
|
|
23356
|
+
...BaseAnimationMetadataFields
|
|
23357
|
+
}
|
|
22657
23358
|
licenseUrl
|
|
22658
23359
|
condition
|
|
22659
23360
|
schemaUrl
|
|
@@ -22697,6 +23398,7 @@ export const BaseProductV1MetadataEntityFieldsFragmentDoc = gql`
|
|
|
22697
23398
|
...BaseProductV1ExchangePolicyFields
|
|
22698
23399
|
}
|
|
22699
23400
|
}
|
|
23401
|
+
${BaseAnimationMetadataFieldsFragmentDoc}
|
|
22700
23402
|
${BaseOfferFieldsFragmentDoc}
|
|
22701
23403
|
${BaseExchangeFieldsFragmentDoc}
|
|
22702
23404
|
${BaseSellerFieldsFragmentDoc}
|