@bosonprotocol/core-sdk 1.25.0-alpha.5 → 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/dist/cjs/subgraph.d.ts
CHANGED
|
@@ -160,8 +160,70 @@ export declare enum Account_OrderBy {
|
|
|
160
160
|
Id = "id",
|
|
161
161
|
Logs = "logs"
|
|
162
162
|
}
|
|
163
|
+
export declare type AnimationMetadata = {
|
|
164
|
+
__typename?: "AnimationMetadata";
|
|
165
|
+
height?: Maybe<Scalars["Int"]>;
|
|
166
|
+
id: Scalars["ID"];
|
|
167
|
+
name?: Maybe<Scalars["String"]>;
|
|
168
|
+
width?: Maybe<Scalars["Int"]>;
|
|
169
|
+
};
|
|
170
|
+
export declare type AnimationMetadata_Filter = {
|
|
171
|
+
/** Filter for the block changed event. */
|
|
172
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
173
|
+
height?: InputMaybe<Scalars["Int"]>;
|
|
174
|
+
height_gt?: InputMaybe<Scalars["Int"]>;
|
|
175
|
+
height_gte?: InputMaybe<Scalars["Int"]>;
|
|
176
|
+
height_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
177
|
+
height_lt?: InputMaybe<Scalars["Int"]>;
|
|
178
|
+
height_lte?: InputMaybe<Scalars["Int"]>;
|
|
179
|
+
height_not?: InputMaybe<Scalars["Int"]>;
|
|
180
|
+
height_not_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
181
|
+
id?: InputMaybe<Scalars["ID"]>;
|
|
182
|
+
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
183
|
+
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
184
|
+
id_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
185
|
+
id_lt?: InputMaybe<Scalars["ID"]>;
|
|
186
|
+
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
187
|
+
id_not?: InputMaybe<Scalars["ID"]>;
|
|
188
|
+
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
189
|
+
name?: InputMaybe<Scalars["String"]>;
|
|
190
|
+
name_contains?: InputMaybe<Scalars["String"]>;
|
|
191
|
+
name_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
192
|
+
name_ends_with?: InputMaybe<Scalars["String"]>;
|
|
193
|
+
name_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
194
|
+
name_gt?: InputMaybe<Scalars["String"]>;
|
|
195
|
+
name_gte?: InputMaybe<Scalars["String"]>;
|
|
196
|
+
name_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
197
|
+
name_lt?: InputMaybe<Scalars["String"]>;
|
|
198
|
+
name_lte?: InputMaybe<Scalars["String"]>;
|
|
199
|
+
name_not?: InputMaybe<Scalars["String"]>;
|
|
200
|
+
name_not_contains?: InputMaybe<Scalars["String"]>;
|
|
201
|
+
name_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
202
|
+
name_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
203
|
+
name_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
204
|
+
name_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
205
|
+
name_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
206
|
+
name_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
207
|
+
name_starts_with?: InputMaybe<Scalars["String"]>;
|
|
208
|
+
name_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
209
|
+
width?: InputMaybe<Scalars["Int"]>;
|
|
210
|
+
width_gt?: InputMaybe<Scalars["Int"]>;
|
|
211
|
+
width_gte?: InputMaybe<Scalars["Int"]>;
|
|
212
|
+
width_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
213
|
+
width_lt?: InputMaybe<Scalars["Int"]>;
|
|
214
|
+
width_lte?: InputMaybe<Scalars["Int"]>;
|
|
215
|
+
width_not?: InputMaybe<Scalars["Int"]>;
|
|
216
|
+
width_not_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
217
|
+
};
|
|
218
|
+
export declare enum AnimationMetadata_OrderBy {
|
|
219
|
+
Height = "height",
|
|
220
|
+
Id = "id",
|
|
221
|
+
Name = "name",
|
|
222
|
+
Width = "width"
|
|
223
|
+
}
|
|
163
224
|
export declare type BaseMetadataEntity = MetadataInterface & {
|
|
164
225
|
__typename?: "BaseMetadataEntity";
|
|
226
|
+
animationMetadata?: Maybe<AnimationMetadata>;
|
|
165
227
|
animationUrl?: Maybe<Scalars["String"]>;
|
|
166
228
|
attributes?: Maybe<Array<MetadataAttribute>>;
|
|
167
229
|
condition?: Maybe<Scalars["String"]>;
|
|
@@ -207,6 +269,27 @@ export declare type BaseMetadataEntityAttributesArgs = {
|
|
|
207
269
|
export declare type BaseMetadataEntity_Filter = {
|
|
208
270
|
/** Filter for the block changed event. */
|
|
209
271
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
272
|
+
animationMetadata?: InputMaybe<Scalars["String"]>;
|
|
273
|
+
animationMetadata_?: InputMaybe<AnimationMetadata_Filter>;
|
|
274
|
+
animationMetadata_contains?: InputMaybe<Scalars["String"]>;
|
|
275
|
+
animationMetadata_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
276
|
+
animationMetadata_ends_with?: InputMaybe<Scalars["String"]>;
|
|
277
|
+
animationMetadata_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
278
|
+
animationMetadata_gt?: InputMaybe<Scalars["String"]>;
|
|
279
|
+
animationMetadata_gte?: InputMaybe<Scalars["String"]>;
|
|
280
|
+
animationMetadata_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
281
|
+
animationMetadata_lt?: InputMaybe<Scalars["String"]>;
|
|
282
|
+
animationMetadata_lte?: InputMaybe<Scalars["String"]>;
|
|
283
|
+
animationMetadata_not?: InputMaybe<Scalars["String"]>;
|
|
284
|
+
animationMetadata_not_contains?: InputMaybe<Scalars["String"]>;
|
|
285
|
+
animationMetadata_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
286
|
+
animationMetadata_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
287
|
+
animationMetadata_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
288
|
+
animationMetadata_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
289
|
+
animationMetadata_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
290
|
+
animationMetadata_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
291
|
+
animationMetadata_starts_with?: InputMaybe<Scalars["String"]>;
|
|
292
|
+
animationMetadata_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
210
293
|
animationUrl?: InputMaybe<Scalars["String"]>;
|
|
211
294
|
animationUrl_contains?: InputMaybe<Scalars["String"]>;
|
|
212
295
|
animationUrl_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -503,6 +586,7 @@ export declare type BaseMetadataEntity_Filter = {
|
|
|
503
586
|
voided_not_in?: InputMaybe<Array<Scalars["Boolean"]>>;
|
|
504
587
|
};
|
|
505
588
|
export declare enum BaseMetadataEntity_OrderBy {
|
|
589
|
+
AnimationMetadata = "animationMetadata",
|
|
506
590
|
AnimationUrl = "animationUrl",
|
|
507
591
|
Attributes = "attributes",
|
|
508
592
|
Condition = "condition",
|
|
@@ -2238,6 +2322,7 @@ export declare enum MetadataAttribute_OrderBy {
|
|
|
2238
2322
|
Value = "value"
|
|
2239
2323
|
}
|
|
2240
2324
|
export declare type MetadataInterface = {
|
|
2325
|
+
animationMetadata?: Maybe<AnimationMetadata>;
|
|
2241
2326
|
animationUrl?: Maybe<Scalars["String"]>;
|
|
2242
2327
|
attributes?: Maybe<Array<MetadataAttribute>>;
|
|
2243
2328
|
condition?: Maybe<Scalars["String"]>;
|
|
@@ -2282,6 +2367,27 @@ export declare type MetadataInterfaceAttributesArgs = {
|
|
|
2282
2367
|
export declare type MetadataInterface_Filter = {
|
|
2283
2368
|
/** Filter for the block changed event. */
|
|
2284
2369
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2370
|
+
animationMetadata?: InputMaybe<Scalars["String"]>;
|
|
2371
|
+
animationMetadata_?: InputMaybe<AnimationMetadata_Filter>;
|
|
2372
|
+
animationMetadata_contains?: InputMaybe<Scalars["String"]>;
|
|
2373
|
+
animationMetadata_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2374
|
+
animationMetadata_ends_with?: InputMaybe<Scalars["String"]>;
|
|
2375
|
+
animationMetadata_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2376
|
+
animationMetadata_gt?: InputMaybe<Scalars["String"]>;
|
|
2377
|
+
animationMetadata_gte?: InputMaybe<Scalars["String"]>;
|
|
2378
|
+
animationMetadata_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
2379
|
+
animationMetadata_lt?: InputMaybe<Scalars["String"]>;
|
|
2380
|
+
animationMetadata_lte?: InputMaybe<Scalars["String"]>;
|
|
2381
|
+
animationMetadata_not?: InputMaybe<Scalars["String"]>;
|
|
2382
|
+
animationMetadata_not_contains?: InputMaybe<Scalars["String"]>;
|
|
2383
|
+
animationMetadata_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2384
|
+
animationMetadata_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
2385
|
+
animationMetadata_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2386
|
+
animationMetadata_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
2387
|
+
animationMetadata_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2388
|
+
animationMetadata_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2389
|
+
animationMetadata_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2390
|
+
animationMetadata_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2285
2391
|
animationUrl?: InputMaybe<Scalars["String"]>;
|
|
2286
2392
|
animationUrl_contains?: InputMaybe<Scalars["String"]>;
|
|
2287
2393
|
animationUrl_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -2578,6 +2684,7 @@ export declare type MetadataInterface_Filter = {
|
|
|
2578
2684
|
voided_not_in?: InputMaybe<Array<Scalars["Boolean"]>>;
|
|
2579
2685
|
};
|
|
2580
2686
|
export declare enum MetadataInterface_OrderBy {
|
|
2687
|
+
AnimationMetadata = "animationMetadata",
|
|
2581
2688
|
AnimationUrl = "animationUrl",
|
|
2582
2689
|
Attributes = "attributes",
|
|
2583
2690
|
Condition = "condition",
|
|
@@ -3541,10 +3648,13 @@ export declare enum ProductV1ExchangePolicy_OrderBy {
|
|
|
3541
3648
|
}
|
|
3542
3649
|
export declare type ProductV1Media = {
|
|
3543
3650
|
__typename?: "ProductV1Media";
|
|
3651
|
+
height?: Maybe<Scalars["Int"]>;
|
|
3544
3652
|
id: Scalars["ID"];
|
|
3653
|
+
name?: Maybe<Scalars["String"]>;
|
|
3545
3654
|
tag?: Maybe<Scalars["String"]>;
|
|
3546
3655
|
type: ProductV1MediaType;
|
|
3547
3656
|
url: Scalars["String"];
|
|
3657
|
+
width?: Maybe<Scalars["Int"]>;
|
|
3548
3658
|
};
|
|
3549
3659
|
export declare enum ProductV1MediaType {
|
|
3550
3660
|
Image = "IMAGE",
|
|
@@ -3553,6 +3663,14 @@ export declare enum ProductV1MediaType {
|
|
|
3553
3663
|
export declare type ProductV1Media_Filter = {
|
|
3554
3664
|
/** Filter for the block changed event. */
|
|
3555
3665
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
3666
|
+
height?: InputMaybe<Scalars["Int"]>;
|
|
3667
|
+
height_gt?: InputMaybe<Scalars["Int"]>;
|
|
3668
|
+
height_gte?: InputMaybe<Scalars["Int"]>;
|
|
3669
|
+
height_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
3670
|
+
height_lt?: InputMaybe<Scalars["Int"]>;
|
|
3671
|
+
height_lte?: InputMaybe<Scalars["Int"]>;
|
|
3672
|
+
height_not?: InputMaybe<Scalars["Int"]>;
|
|
3673
|
+
height_not_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
3556
3674
|
id?: InputMaybe<Scalars["ID"]>;
|
|
3557
3675
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
3558
3676
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -3561,6 +3679,26 @@ export declare type ProductV1Media_Filter = {
|
|
|
3561
3679
|
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
3562
3680
|
id_not?: InputMaybe<Scalars["ID"]>;
|
|
3563
3681
|
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
3682
|
+
name?: InputMaybe<Scalars["String"]>;
|
|
3683
|
+
name_contains?: InputMaybe<Scalars["String"]>;
|
|
3684
|
+
name_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3685
|
+
name_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3686
|
+
name_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3687
|
+
name_gt?: InputMaybe<Scalars["String"]>;
|
|
3688
|
+
name_gte?: InputMaybe<Scalars["String"]>;
|
|
3689
|
+
name_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3690
|
+
name_lt?: InputMaybe<Scalars["String"]>;
|
|
3691
|
+
name_lte?: InputMaybe<Scalars["String"]>;
|
|
3692
|
+
name_not?: InputMaybe<Scalars["String"]>;
|
|
3693
|
+
name_not_contains?: InputMaybe<Scalars["String"]>;
|
|
3694
|
+
name_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3695
|
+
name_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3696
|
+
name_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3697
|
+
name_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3698
|
+
name_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3699
|
+
name_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3700
|
+
name_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3701
|
+
name_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3564
3702
|
tag?: InputMaybe<Scalars["String"]>;
|
|
3565
3703
|
tag_contains?: InputMaybe<Scalars["String"]>;
|
|
3566
3704
|
tag_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -3605,15 +3743,27 @@ export declare type ProductV1Media_Filter = {
|
|
|
3605
3743
|
url_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3606
3744
|
url_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3607
3745
|
url_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3746
|
+
width?: InputMaybe<Scalars["Int"]>;
|
|
3747
|
+
width_gt?: InputMaybe<Scalars["Int"]>;
|
|
3748
|
+
width_gte?: InputMaybe<Scalars["Int"]>;
|
|
3749
|
+
width_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
3750
|
+
width_lt?: InputMaybe<Scalars["Int"]>;
|
|
3751
|
+
width_lte?: InputMaybe<Scalars["Int"]>;
|
|
3752
|
+
width_not?: InputMaybe<Scalars["Int"]>;
|
|
3753
|
+
width_not_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
3608
3754
|
};
|
|
3609
3755
|
export declare enum ProductV1Media_OrderBy {
|
|
3756
|
+
Height = "height",
|
|
3610
3757
|
Id = "id",
|
|
3758
|
+
Name = "name",
|
|
3611
3759
|
Tag = "tag",
|
|
3612
3760
|
Type = "type",
|
|
3613
|
-
Url = "url"
|
|
3761
|
+
Url = "url",
|
|
3762
|
+
Width = "width"
|
|
3614
3763
|
}
|
|
3615
3764
|
export declare type ProductV1MetadataEntity = MetadataInterface & {
|
|
3616
3765
|
__typename?: "ProductV1MetadataEntity";
|
|
3766
|
+
animationMetadata?: Maybe<AnimationMetadata>;
|
|
3617
3767
|
animationUrl?: Maybe<Scalars["String"]>;
|
|
3618
3768
|
attributes?: Maybe<Array<MetadataAttribute>>;
|
|
3619
3769
|
condition?: Maybe<Scalars["String"]>;
|
|
@@ -3679,6 +3829,27 @@ export declare type ProductV1MetadataEntityVariationsArgs = {
|
|
|
3679
3829
|
export declare type ProductV1MetadataEntity_Filter = {
|
|
3680
3830
|
/** Filter for the block changed event. */
|
|
3681
3831
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
3832
|
+
animationMetadata?: InputMaybe<Scalars["String"]>;
|
|
3833
|
+
animationMetadata_?: InputMaybe<AnimationMetadata_Filter>;
|
|
3834
|
+
animationMetadata_contains?: InputMaybe<Scalars["String"]>;
|
|
3835
|
+
animationMetadata_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3836
|
+
animationMetadata_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3837
|
+
animationMetadata_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3838
|
+
animationMetadata_gt?: InputMaybe<Scalars["String"]>;
|
|
3839
|
+
animationMetadata_gte?: InputMaybe<Scalars["String"]>;
|
|
3840
|
+
animationMetadata_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3841
|
+
animationMetadata_lt?: InputMaybe<Scalars["String"]>;
|
|
3842
|
+
animationMetadata_lte?: InputMaybe<Scalars["String"]>;
|
|
3843
|
+
animationMetadata_not?: InputMaybe<Scalars["String"]>;
|
|
3844
|
+
animationMetadata_not_contains?: InputMaybe<Scalars["String"]>;
|
|
3845
|
+
animationMetadata_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3846
|
+
animationMetadata_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3847
|
+
animationMetadata_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3848
|
+
animationMetadata_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3849
|
+
animationMetadata_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3850
|
+
animationMetadata_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3851
|
+
animationMetadata_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3852
|
+
animationMetadata_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3682
3853
|
animationUrl?: InputMaybe<Scalars["String"]>;
|
|
3683
3854
|
animationUrl_contains?: InputMaybe<Scalars["String"]>;
|
|
3684
3855
|
animationUrl_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -4135,6 +4306,7 @@ export declare type ProductV1MetadataEntity_Filter = {
|
|
|
4135
4306
|
voided_not_in?: InputMaybe<Array<Scalars["Boolean"]>>;
|
|
4136
4307
|
};
|
|
4137
4308
|
export declare enum ProductV1MetadataEntity_OrderBy {
|
|
4309
|
+
AnimationMetadata = "animationMetadata",
|
|
4138
4310
|
AnimationUrl = "animationUrl",
|
|
4139
4311
|
Attributes = "attributes",
|
|
4140
4312
|
Condition = "condition",
|
|
@@ -6140,6 +6312,7 @@ export declare type Query = {
|
|
|
6140
6312
|
accountEventLog?: Maybe<AccountEventLog>;
|
|
6141
6313
|
accountEventLogs: Array<AccountEventLog>;
|
|
6142
6314
|
accounts: Array<Account>;
|
|
6315
|
+
animationMetadata: Array<AnimationMetadata>;
|
|
6143
6316
|
baseMetadataEntities: Array<BaseMetadataEntity>;
|
|
6144
6317
|
baseMetadataEntity?: Maybe<BaseMetadataEntity>;
|
|
6145
6318
|
buyer?: Maybe<Buyer>;
|
|
@@ -6245,6 +6418,15 @@ export declare type QueryAccountsArgs = {
|
|
|
6245
6418
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
6246
6419
|
where?: InputMaybe<Account_Filter>;
|
|
6247
6420
|
};
|
|
6421
|
+
export declare type QueryAnimationMetadataArgs = {
|
|
6422
|
+
block?: InputMaybe<Block_Height>;
|
|
6423
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
6424
|
+
orderBy?: InputMaybe<AnimationMetadata_OrderBy>;
|
|
6425
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
6426
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
6427
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6428
|
+
where?: InputMaybe<AnimationMetadata_Filter>;
|
|
6429
|
+
};
|
|
6248
6430
|
export declare type QueryBaseMetadataEntitiesArgs = {
|
|
6249
6431
|
block?: InputMaybe<Block_Height>;
|
|
6250
6432
|
first?: InputMaybe<Scalars["Int"]>;
|
|
@@ -6936,6 +7118,7 @@ export declare type Subscription = {
|
|
|
6936
7118
|
accountEventLog?: Maybe<AccountEventLog>;
|
|
6937
7119
|
accountEventLogs: Array<AccountEventLog>;
|
|
6938
7120
|
accounts: Array<Account>;
|
|
7121
|
+
animationMetadata: Array<AnimationMetadata>;
|
|
6939
7122
|
baseMetadataEntities: Array<BaseMetadataEntity>;
|
|
6940
7123
|
baseMetadataEntity?: Maybe<BaseMetadataEntity>;
|
|
6941
7124
|
buyer?: Maybe<Buyer>;
|
|
@@ -7041,6 +7224,15 @@ export declare type SubscriptionAccountsArgs = {
|
|
|
7041
7224
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
7042
7225
|
where?: InputMaybe<Account_Filter>;
|
|
7043
7226
|
};
|
|
7227
|
+
export declare type SubscriptionAnimationMetadataArgs = {
|
|
7228
|
+
block?: InputMaybe<Block_Height>;
|
|
7229
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
7230
|
+
orderBy?: InputMaybe<AnimationMetadata_OrderBy>;
|
|
7231
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
7232
|
+
skip?: InputMaybe<Scalars["Int"]>;
|
|
7233
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
7234
|
+
where?: InputMaybe<AnimationMetadata_Filter>;
|
|
7235
|
+
};
|
|
7044
7236
|
export declare type SubscriptionBaseMetadataEntitiesArgs = {
|
|
7045
7237
|
block?: InputMaybe<Block_Height>;
|
|
7046
7238
|
first?: InputMaybe<Scalars["Int"]>;
|
|
@@ -7845,6 +8037,9 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
7845
8037
|
url: string;
|
|
7846
8038
|
tag?: string | null;
|
|
7847
8039
|
type: ProductV1MediaType;
|
|
8040
|
+
width?: number | null;
|
|
8041
|
+
height?: number | null;
|
|
8042
|
+
name?: string | null;
|
|
7848
8043
|
}>;
|
|
7849
8044
|
visuals_videos?: Array<{
|
|
7850
8045
|
__typename?: "ProductV1Media";
|
|
@@ -7852,6 +8047,9 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
7852
8047
|
url: string;
|
|
7853
8048
|
tag?: string | null;
|
|
7854
8049
|
type: ProductV1MediaType;
|
|
8050
|
+
width?: number | null;
|
|
8051
|
+
height?: number | null;
|
|
8052
|
+
name?: string | null;
|
|
7855
8053
|
}> | null;
|
|
7856
8054
|
productV1Seller?: {
|
|
7857
8055
|
__typename?: "ProductV1Seller";
|
|
@@ -7868,6 +8066,9 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
7868
8066
|
url: string;
|
|
7869
8067
|
tag?: string | null;
|
|
7870
8068
|
type: ProductV1MediaType;
|
|
8069
|
+
width?: number | null;
|
|
8070
|
+
height?: number | null;
|
|
8071
|
+
name?: string | null;
|
|
7871
8072
|
}> | null;
|
|
7872
8073
|
contactLinks?: Array<{
|
|
7873
8074
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -7912,6 +8113,9 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
7912
8113
|
url: string;
|
|
7913
8114
|
tag?: string | null;
|
|
7914
8115
|
type: ProductV1MediaType;
|
|
8116
|
+
width?: number | null;
|
|
8117
|
+
height?: number | null;
|
|
8118
|
+
name?: string | null;
|
|
7915
8119
|
}> | null;
|
|
7916
8120
|
contactLinks?: Array<{
|
|
7917
8121
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -8384,6 +8588,9 @@ export declare type GetSellersQueryQuery = {
|
|
|
8384
8588
|
url: string;
|
|
8385
8589
|
tag?: string | null;
|
|
8386
8590
|
type: ProductV1MediaType;
|
|
8591
|
+
width?: number | null;
|
|
8592
|
+
height?: number | null;
|
|
8593
|
+
name?: string | null;
|
|
8387
8594
|
}>;
|
|
8388
8595
|
visuals_videos?: Array<{
|
|
8389
8596
|
__typename?: "ProductV1Media";
|
|
@@ -8391,6 +8598,9 @@ export declare type GetSellersQueryQuery = {
|
|
|
8391
8598
|
url: string;
|
|
8392
8599
|
tag?: string | null;
|
|
8393
8600
|
type: ProductV1MediaType;
|
|
8601
|
+
width?: number | null;
|
|
8602
|
+
height?: number | null;
|
|
8603
|
+
name?: string | null;
|
|
8394
8604
|
}> | null;
|
|
8395
8605
|
productV1Seller?: {
|
|
8396
8606
|
__typename?: "ProductV1Seller";
|
|
@@ -8407,6 +8617,9 @@ export declare type GetSellersQueryQuery = {
|
|
|
8407
8617
|
url: string;
|
|
8408
8618
|
tag?: string | null;
|
|
8409
8619
|
type: ProductV1MediaType;
|
|
8620
|
+
width?: number | null;
|
|
8621
|
+
height?: number | null;
|
|
8622
|
+
name?: string | null;
|
|
8410
8623
|
}> | null;
|
|
8411
8624
|
contactLinks?: Array<{
|
|
8412
8625
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -8451,6 +8664,9 @@ export declare type GetSellersQueryQuery = {
|
|
|
8451
8664
|
url: string;
|
|
8452
8665
|
tag?: string | null;
|
|
8453
8666
|
type: ProductV1MediaType;
|
|
8667
|
+
width?: number | null;
|
|
8668
|
+
height?: number | null;
|
|
8669
|
+
name?: string | null;
|
|
8454
8670
|
}> | null;
|
|
8455
8671
|
contactLinks?: Array<{
|
|
8456
8672
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -9299,6 +9515,9 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
9299
9515
|
url: string;
|
|
9300
9516
|
tag?: string | null;
|
|
9301
9517
|
type: ProductV1MediaType;
|
|
9518
|
+
width?: number | null;
|
|
9519
|
+
height?: number | null;
|
|
9520
|
+
name?: string | null;
|
|
9302
9521
|
}>;
|
|
9303
9522
|
visuals_videos?: Array<{
|
|
9304
9523
|
__typename?: "ProductV1Media";
|
|
@@ -9306,6 +9525,9 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
9306
9525
|
url: string;
|
|
9307
9526
|
tag?: string | null;
|
|
9308
9527
|
type: ProductV1MediaType;
|
|
9528
|
+
width?: number | null;
|
|
9529
|
+
height?: number | null;
|
|
9530
|
+
name?: string | null;
|
|
9309
9531
|
}> | null;
|
|
9310
9532
|
productV1Seller?: {
|
|
9311
9533
|
__typename?: "ProductV1Seller";
|
|
@@ -9322,6 +9544,9 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
9322
9544
|
url: string;
|
|
9323
9545
|
tag?: string | null;
|
|
9324
9546
|
type: ProductV1MediaType;
|
|
9547
|
+
width?: number | null;
|
|
9548
|
+
height?: number | null;
|
|
9549
|
+
name?: string | null;
|
|
9325
9550
|
}> | null;
|
|
9326
9551
|
contactLinks?: Array<{
|
|
9327
9552
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -9366,6 +9591,9 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
9366
9591
|
url: string;
|
|
9367
9592
|
tag?: string | null;
|
|
9368
9593
|
type: ProductV1MediaType;
|
|
9594
|
+
width?: number | null;
|
|
9595
|
+
height?: number | null;
|
|
9596
|
+
name?: string | null;
|
|
9369
9597
|
}> | null;
|
|
9370
9598
|
contactLinks?: Array<{
|
|
9371
9599
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -9773,6 +10001,9 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
9773
10001
|
url: string;
|
|
9774
10002
|
tag?: string | null;
|
|
9775
10003
|
type: ProductV1MediaType;
|
|
10004
|
+
width?: number | null;
|
|
10005
|
+
height?: number | null;
|
|
10006
|
+
name?: string | null;
|
|
9776
10007
|
}>;
|
|
9777
10008
|
visuals_videos?: Array<{
|
|
9778
10009
|
__typename?: "ProductV1Media";
|
|
@@ -9780,6 +10011,9 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
9780
10011
|
url: string;
|
|
9781
10012
|
tag?: string | null;
|
|
9782
10013
|
type: ProductV1MediaType;
|
|
10014
|
+
width?: number | null;
|
|
10015
|
+
height?: number | null;
|
|
10016
|
+
name?: string | null;
|
|
9783
10017
|
}> | null;
|
|
9784
10018
|
productV1Seller?: {
|
|
9785
10019
|
__typename?: "ProductV1Seller";
|
|
@@ -9796,6 +10030,9 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
9796
10030
|
url: string;
|
|
9797
10031
|
tag?: string | null;
|
|
9798
10032
|
type: ProductV1MediaType;
|
|
10033
|
+
width?: number | null;
|
|
10034
|
+
height?: number | null;
|
|
10035
|
+
name?: string | null;
|
|
9799
10036
|
}> | null;
|
|
9800
10037
|
contactLinks?: Array<{
|
|
9801
10038
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -9840,6 +10077,9 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
9840
10077
|
url: string;
|
|
9841
10078
|
tag?: string | null;
|
|
9842
10079
|
type: ProductV1MediaType;
|
|
10080
|
+
width?: number | null;
|
|
10081
|
+
height?: number | null;
|
|
10082
|
+
name?: string | null;
|
|
9843
10083
|
}> | null;
|
|
9844
10084
|
contactLinks?: Array<{
|
|
9845
10085
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -10244,6 +10484,9 @@ export declare type SellerFieldsFragment = {
|
|
|
10244
10484
|
url: string;
|
|
10245
10485
|
tag?: string | null;
|
|
10246
10486
|
type: ProductV1MediaType;
|
|
10487
|
+
width?: number | null;
|
|
10488
|
+
height?: number | null;
|
|
10489
|
+
name?: string | null;
|
|
10247
10490
|
}>;
|
|
10248
10491
|
visuals_videos?: Array<{
|
|
10249
10492
|
__typename?: "ProductV1Media";
|
|
@@ -10251,6 +10494,9 @@ export declare type SellerFieldsFragment = {
|
|
|
10251
10494
|
url: string;
|
|
10252
10495
|
tag?: string | null;
|
|
10253
10496
|
type: ProductV1MediaType;
|
|
10497
|
+
width?: number | null;
|
|
10498
|
+
height?: number | null;
|
|
10499
|
+
name?: string | null;
|
|
10254
10500
|
}> | null;
|
|
10255
10501
|
productV1Seller?: {
|
|
10256
10502
|
__typename?: "ProductV1Seller";
|
|
@@ -10267,6 +10513,9 @@ export declare type SellerFieldsFragment = {
|
|
|
10267
10513
|
url: string;
|
|
10268
10514
|
tag?: string | null;
|
|
10269
10515
|
type: ProductV1MediaType;
|
|
10516
|
+
width?: number | null;
|
|
10517
|
+
height?: number | null;
|
|
10518
|
+
name?: string | null;
|
|
10270
10519
|
}> | null;
|
|
10271
10520
|
contactLinks?: Array<{
|
|
10272
10521
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -10311,6 +10560,9 @@ export declare type SellerFieldsFragment = {
|
|
|
10311
10560
|
url: string;
|
|
10312
10561
|
tag?: string | null;
|
|
10313
10562
|
type: ProductV1MediaType;
|
|
10563
|
+
width?: number | null;
|
|
10564
|
+
height?: number | null;
|
|
10565
|
+
name?: string | null;
|
|
10314
10566
|
}> | null;
|
|
10315
10567
|
contactLinks?: Array<{
|
|
10316
10568
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -10935,6 +11187,9 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
10935
11187
|
url: string;
|
|
10936
11188
|
tag?: string | null;
|
|
10937
11189
|
type: ProductV1MediaType;
|
|
11190
|
+
width?: number | null;
|
|
11191
|
+
height?: number | null;
|
|
11192
|
+
name?: string | null;
|
|
10938
11193
|
}>;
|
|
10939
11194
|
visuals_videos?: Array<{
|
|
10940
11195
|
__typename?: "ProductV1Media";
|
|
@@ -10942,6 +11197,9 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
10942
11197
|
url: string;
|
|
10943
11198
|
tag?: string | null;
|
|
10944
11199
|
type: ProductV1MediaType;
|
|
11200
|
+
width?: number | null;
|
|
11201
|
+
height?: number | null;
|
|
11202
|
+
name?: string | null;
|
|
10945
11203
|
}> | null;
|
|
10946
11204
|
productV1Seller?: {
|
|
10947
11205
|
__typename?: "ProductV1Seller";
|
|
@@ -10958,6 +11216,9 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
10958
11216
|
url: string;
|
|
10959
11217
|
tag?: string | null;
|
|
10960
11218
|
type: ProductV1MediaType;
|
|
11219
|
+
width?: number | null;
|
|
11220
|
+
height?: number | null;
|
|
11221
|
+
name?: string | null;
|
|
10961
11222
|
}> | null;
|
|
10962
11223
|
contactLinks?: Array<{
|
|
10963
11224
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -11002,6 +11263,9 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
11002
11263
|
url: string;
|
|
11003
11264
|
tag?: string | null;
|
|
11004
11265
|
type: ProductV1MediaType;
|
|
11266
|
+
width?: number | null;
|
|
11267
|
+
height?: number | null;
|
|
11268
|
+
name?: string | null;
|
|
11005
11269
|
}> | null;
|
|
11006
11270
|
contactLinks?: Array<{
|
|
11007
11271
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -11747,6 +12011,9 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
11747
12011
|
url: string;
|
|
11748
12012
|
tag?: string | null;
|
|
11749
12013
|
type: ProductV1MediaType;
|
|
12014
|
+
width?: number | null;
|
|
12015
|
+
height?: number | null;
|
|
12016
|
+
name?: string | null;
|
|
11750
12017
|
}>;
|
|
11751
12018
|
visuals_videos?: Array<{
|
|
11752
12019
|
__typename?: "ProductV1Media";
|
|
@@ -11754,6 +12021,9 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
11754
12021
|
url: string;
|
|
11755
12022
|
tag?: string | null;
|
|
11756
12023
|
type: ProductV1MediaType;
|
|
12024
|
+
width?: number | null;
|
|
12025
|
+
height?: number | null;
|
|
12026
|
+
name?: string | null;
|
|
11757
12027
|
}> | null;
|
|
11758
12028
|
productV1Seller?: {
|
|
11759
12029
|
__typename?: "ProductV1Seller";
|
|
@@ -11770,6 +12040,9 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
11770
12040
|
url: string;
|
|
11771
12041
|
tag?: string | null;
|
|
11772
12042
|
type: ProductV1MediaType;
|
|
12043
|
+
width?: number | null;
|
|
12044
|
+
height?: number | null;
|
|
12045
|
+
name?: string | null;
|
|
11773
12046
|
}> | null;
|
|
11774
12047
|
contactLinks?: Array<{
|
|
11775
12048
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -11814,6 +12087,9 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
11814
12087
|
url: string;
|
|
11815
12088
|
tag?: string | null;
|
|
11816
12089
|
type: ProductV1MediaType;
|
|
12090
|
+
width?: number | null;
|
|
12091
|
+
height?: number | null;
|
|
12092
|
+
name?: string | null;
|
|
11817
12093
|
}> | null;
|
|
11818
12094
|
contactLinks?: Array<{
|
|
11819
12095
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12096,6 +12372,9 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
12096
12372
|
url: string;
|
|
12097
12373
|
tag?: string | null;
|
|
12098
12374
|
type: ProductV1MediaType;
|
|
12375
|
+
width?: number | null;
|
|
12376
|
+
height?: number | null;
|
|
12377
|
+
name?: string | null;
|
|
12099
12378
|
}>;
|
|
12100
12379
|
visuals_videos?: Array<{
|
|
12101
12380
|
__typename?: "ProductV1Media";
|
|
@@ -12103,6 +12382,9 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
12103
12382
|
url: string;
|
|
12104
12383
|
tag?: string | null;
|
|
12105
12384
|
type: ProductV1MediaType;
|
|
12385
|
+
width?: number | null;
|
|
12386
|
+
height?: number | null;
|
|
12387
|
+
name?: string | null;
|
|
12106
12388
|
}> | null;
|
|
12107
12389
|
productV1Seller?: {
|
|
12108
12390
|
__typename?: "ProductV1Seller";
|
|
@@ -12119,6 +12401,9 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
12119
12401
|
url: string;
|
|
12120
12402
|
tag?: string | null;
|
|
12121
12403
|
type: ProductV1MediaType;
|
|
12404
|
+
width?: number | null;
|
|
12405
|
+
height?: number | null;
|
|
12406
|
+
name?: string | null;
|
|
12122
12407
|
}> | null;
|
|
12123
12408
|
contactLinks?: Array<{
|
|
12124
12409
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12163,6 +12448,9 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
12163
12448
|
url: string;
|
|
12164
12449
|
tag?: string | null;
|
|
12165
12450
|
type: ProductV1MediaType;
|
|
12451
|
+
width?: number | null;
|
|
12452
|
+
height?: number | null;
|
|
12453
|
+
name?: string | null;
|
|
12166
12454
|
}> | null;
|
|
12167
12455
|
contactLinks?: Array<{
|
|
12168
12456
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12424,6 +12712,9 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
12424
12712
|
url: string;
|
|
12425
12713
|
tag?: string | null;
|
|
12426
12714
|
type: ProductV1MediaType;
|
|
12715
|
+
width?: number | null;
|
|
12716
|
+
height?: number | null;
|
|
12717
|
+
name?: string | null;
|
|
12427
12718
|
}>;
|
|
12428
12719
|
visuals_videos?: Array<{
|
|
12429
12720
|
__typename?: "ProductV1Media";
|
|
@@ -12431,6 +12722,9 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
12431
12722
|
url: string;
|
|
12432
12723
|
tag?: string | null;
|
|
12433
12724
|
type: ProductV1MediaType;
|
|
12725
|
+
width?: number | null;
|
|
12726
|
+
height?: number | null;
|
|
12727
|
+
name?: string | null;
|
|
12434
12728
|
}> | null;
|
|
12435
12729
|
productV1Seller?: {
|
|
12436
12730
|
__typename?: "ProductV1Seller";
|
|
@@ -12447,6 +12741,9 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
12447
12741
|
url: string;
|
|
12448
12742
|
tag?: string | null;
|
|
12449
12743
|
type: ProductV1MediaType;
|
|
12744
|
+
width?: number | null;
|
|
12745
|
+
height?: number | null;
|
|
12746
|
+
name?: string | null;
|
|
12450
12747
|
}> | null;
|
|
12451
12748
|
contactLinks?: Array<{
|
|
12452
12749
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12491,6 +12788,9 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
12491
12788
|
url: string;
|
|
12492
12789
|
tag?: string | null;
|
|
12493
12790
|
type: ProductV1MediaType;
|
|
12791
|
+
width?: number | null;
|
|
12792
|
+
height?: number | null;
|
|
12793
|
+
name?: string | null;
|
|
12494
12794
|
}> | null;
|
|
12495
12795
|
contactLinks?: Array<{
|
|
12496
12796
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12998,6 +13298,9 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
12998
13298
|
url: string;
|
|
12999
13299
|
tag?: string | null;
|
|
13000
13300
|
type: ProductV1MediaType;
|
|
13301
|
+
width?: number | null;
|
|
13302
|
+
height?: number | null;
|
|
13303
|
+
name?: string | null;
|
|
13001
13304
|
}>;
|
|
13002
13305
|
visuals_videos?: Array<{
|
|
13003
13306
|
__typename?: "ProductV1Media";
|
|
@@ -13005,6 +13308,9 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
13005
13308
|
url: string;
|
|
13006
13309
|
tag?: string | null;
|
|
13007
13310
|
type: ProductV1MediaType;
|
|
13311
|
+
width?: number | null;
|
|
13312
|
+
height?: number | null;
|
|
13313
|
+
name?: string | null;
|
|
13008
13314
|
}> | null;
|
|
13009
13315
|
productV1Seller?: {
|
|
13010
13316
|
__typename?: "ProductV1Seller";
|
|
@@ -13021,6 +13327,9 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
13021
13327
|
url: string;
|
|
13022
13328
|
tag?: string | null;
|
|
13023
13329
|
type: ProductV1MediaType;
|
|
13330
|
+
width?: number | null;
|
|
13331
|
+
height?: number | null;
|
|
13332
|
+
name?: string | null;
|
|
13024
13333
|
}> | null;
|
|
13025
13334
|
contactLinks?: Array<{
|
|
13026
13335
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -13065,6 +13374,9 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
13065
13374
|
url: string;
|
|
13066
13375
|
tag?: string | null;
|
|
13067
13376
|
type: ProductV1MediaType;
|
|
13377
|
+
width?: number | null;
|
|
13378
|
+
height?: number | null;
|
|
13379
|
+
name?: string | null;
|
|
13068
13380
|
}> | null;
|
|
13069
13381
|
contactLinks?: Array<{
|
|
13070
13382
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -13371,6 +13683,9 @@ export declare type GetExchangesQueryQuery = {
|
|
|
13371
13683
|
url: string;
|
|
13372
13684
|
tag?: string | null;
|
|
13373
13685
|
type: ProductV1MediaType;
|
|
13686
|
+
width?: number | null;
|
|
13687
|
+
height?: number | null;
|
|
13688
|
+
name?: string | null;
|
|
13374
13689
|
}>;
|
|
13375
13690
|
visuals_videos?: Array<{
|
|
13376
13691
|
__typename?: "ProductV1Media";
|
|
@@ -13378,6 +13693,9 @@ export declare type GetExchangesQueryQuery = {
|
|
|
13378
13693
|
url: string;
|
|
13379
13694
|
tag?: string | null;
|
|
13380
13695
|
type: ProductV1MediaType;
|
|
13696
|
+
width?: number | null;
|
|
13697
|
+
height?: number | null;
|
|
13698
|
+
name?: string | null;
|
|
13381
13699
|
}> | null;
|
|
13382
13700
|
productV1Seller?: {
|
|
13383
13701
|
__typename?: "ProductV1Seller";
|
|
@@ -13394,6 +13712,9 @@ export declare type GetExchangesQueryQuery = {
|
|
|
13394
13712
|
url: string;
|
|
13395
13713
|
tag?: string | null;
|
|
13396
13714
|
type: ProductV1MediaType;
|
|
13715
|
+
width?: number | null;
|
|
13716
|
+
height?: number | null;
|
|
13717
|
+
name?: string | null;
|
|
13397
13718
|
}> | null;
|
|
13398
13719
|
contactLinks?: Array<{
|
|
13399
13720
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -13438,6 +13759,9 @@ export declare type GetExchangesQueryQuery = {
|
|
|
13438
13759
|
url: string;
|
|
13439
13760
|
tag?: string | null;
|
|
13440
13761
|
type: ProductV1MediaType;
|
|
13762
|
+
width?: number | null;
|
|
13763
|
+
height?: number | null;
|
|
13764
|
+
name?: string | null;
|
|
13441
13765
|
}> | null;
|
|
13442
13766
|
contactLinks?: Array<{
|
|
13443
13767
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -13735,6 +14059,9 @@ export declare type ExchangeFieldsFragment = {
|
|
|
13735
14059
|
url: string;
|
|
13736
14060
|
tag?: string | null;
|
|
13737
14061
|
type: ProductV1MediaType;
|
|
14062
|
+
width?: number | null;
|
|
14063
|
+
height?: number | null;
|
|
14064
|
+
name?: string | null;
|
|
13738
14065
|
}>;
|
|
13739
14066
|
visuals_videos?: Array<{
|
|
13740
14067
|
__typename?: "ProductV1Media";
|
|
@@ -13742,6 +14069,9 @@ export declare type ExchangeFieldsFragment = {
|
|
|
13742
14069
|
url: string;
|
|
13743
14070
|
tag?: string | null;
|
|
13744
14071
|
type: ProductV1MediaType;
|
|
14072
|
+
width?: number | null;
|
|
14073
|
+
height?: number | null;
|
|
14074
|
+
name?: string | null;
|
|
13745
14075
|
}> | null;
|
|
13746
14076
|
productV1Seller?: {
|
|
13747
14077
|
__typename?: "ProductV1Seller";
|
|
@@ -13758,6 +14088,9 @@ export declare type ExchangeFieldsFragment = {
|
|
|
13758
14088
|
url: string;
|
|
13759
14089
|
tag?: string | null;
|
|
13760
14090
|
type: ProductV1MediaType;
|
|
14091
|
+
width?: number | null;
|
|
14092
|
+
height?: number | null;
|
|
14093
|
+
name?: string | null;
|
|
13761
14094
|
}> | null;
|
|
13762
14095
|
contactLinks?: Array<{
|
|
13763
14096
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -13802,6 +14135,9 @@ export declare type ExchangeFieldsFragment = {
|
|
|
13802
14135
|
url: string;
|
|
13803
14136
|
tag?: string | null;
|
|
13804
14137
|
type: ProductV1MediaType;
|
|
14138
|
+
width?: number | null;
|
|
14139
|
+
height?: number | null;
|
|
14140
|
+
name?: string | null;
|
|
13805
14141
|
}> | null;
|
|
13806
14142
|
contactLinks?: Array<{
|
|
13807
14143
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14243,6 +14579,9 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14243
14579
|
url: string;
|
|
14244
14580
|
tag?: string | null;
|
|
14245
14581
|
type: ProductV1MediaType;
|
|
14582
|
+
width?: number | null;
|
|
14583
|
+
height?: number | null;
|
|
14584
|
+
name?: string | null;
|
|
14246
14585
|
}>;
|
|
14247
14586
|
visuals_videos?: Array<{
|
|
14248
14587
|
__typename?: "ProductV1Media";
|
|
@@ -14250,6 +14589,9 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14250
14589
|
url: string;
|
|
14251
14590
|
tag?: string | null;
|
|
14252
14591
|
type: ProductV1MediaType;
|
|
14592
|
+
width?: number | null;
|
|
14593
|
+
height?: number | null;
|
|
14594
|
+
name?: string | null;
|
|
14253
14595
|
}> | null;
|
|
14254
14596
|
productV1Seller?: {
|
|
14255
14597
|
__typename?: "ProductV1Seller";
|
|
@@ -14266,6 +14608,9 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14266
14608
|
url: string;
|
|
14267
14609
|
tag?: string | null;
|
|
14268
14610
|
type: ProductV1MediaType;
|
|
14611
|
+
width?: number | null;
|
|
14612
|
+
height?: number | null;
|
|
14613
|
+
name?: string | null;
|
|
14269
14614
|
}> | null;
|
|
14270
14615
|
contactLinks?: Array<{
|
|
14271
14616
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14310,6 +14655,9 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14310
14655
|
url: string;
|
|
14311
14656
|
tag?: string | null;
|
|
14312
14657
|
type: ProductV1MediaType;
|
|
14658
|
+
width?: number | null;
|
|
14659
|
+
height?: number | null;
|
|
14660
|
+
name?: string | null;
|
|
14313
14661
|
}> | null;
|
|
14314
14662
|
contactLinks?: Array<{
|
|
14315
14663
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14614,6 +14962,9 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
14614
14962
|
url: string;
|
|
14615
14963
|
tag?: string | null;
|
|
14616
14964
|
type: ProductV1MediaType;
|
|
14965
|
+
width?: number | null;
|
|
14966
|
+
height?: number | null;
|
|
14967
|
+
name?: string | null;
|
|
14617
14968
|
}>;
|
|
14618
14969
|
visuals_videos?: Array<{
|
|
14619
14970
|
__typename?: "ProductV1Media";
|
|
@@ -14621,6 +14972,9 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
14621
14972
|
url: string;
|
|
14622
14973
|
tag?: string | null;
|
|
14623
14974
|
type: ProductV1MediaType;
|
|
14975
|
+
width?: number | null;
|
|
14976
|
+
height?: number | null;
|
|
14977
|
+
name?: string | null;
|
|
14624
14978
|
}> | null;
|
|
14625
14979
|
productV1Seller?: {
|
|
14626
14980
|
__typename?: "ProductV1Seller";
|
|
@@ -14637,6 +14991,9 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
14637
14991
|
url: string;
|
|
14638
14992
|
tag?: string | null;
|
|
14639
14993
|
type: ProductV1MediaType;
|
|
14994
|
+
width?: number | null;
|
|
14995
|
+
height?: number | null;
|
|
14996
|
+
name?: string | null;
|
|
14640
14997
|
}> | null;
|
|
14641
14998
|
contactLinks?: Array<{
|
|
14642
14999
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14681,6 +15038,9 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
14681
15038
|
url: string;
|
|
14682
15039
|
tag?: string | null;
|
|
14683
15040
|
type: ProductV1MediaType;
|
|
15041
|
+
width?: number | null;
|
|
15042
|
+
height?: number | null;
|
|
15043
|
+
name?: string | null;
|
|
14684
15044
|
}> | null;
|
|
14685
15045
|
contactLinks?: Array<{
|
|
14686
15046
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14976,6 +15336,9 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
14976
15336
|
url: string;
|
|
14977
15337
|
tag?: string | null;
|
|
14978
15338
|
type: ProductV1MediaType;
|
|
15339
|
+
width?: number | null;
|
|
15340
|
+
height?: number | null;
|
|
15341
|
+
name?: string | null;
|
|
14979
15342
|
}>;
|
|
14980
15343
|
visuals_videos?: Array<{
|
|
14981
15344
|
__typename?: "ProductV1Media";
|
|
@@ -14983,6 +15346,9 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
14983
15346
|
url: string;
|
|
14984
15347
|
tag?: string | null;
|
|
14985
15348
|
type: ProductV1MediaType;
|
|
15349
|
+
width?: number | null;
|
|
15350
|
+
height?: number | null;
|
|
15351
|
+
name?: string | null;
|
|
14986
15352
|
}> | null;
|
|
14987
15353
|
productV1Seller?: {
|
|
14988
15354
|
__typename?: "ProductV1Seller";
|
|
@@ -14999,6 +15365,9 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
14999
15365
|
url: string;
|
|
15000
15366
|
tag?: string | null;
|
|
15001
15367
|
type: ProductV1MediaType;
|
|
15368
|
+
width?: number | null;
|
|
15369
|
+
height?: number | null;
|
|
15370
|
+
name?: string | null;
|
|
15002
15371
|
}> | null;
|
|
15003
15372
|
contactLinks?: Array<{
|
|
15004
15373
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15043,6 +15412,9 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
15043
15412
|
url: string;
|
|
15044
15413
|
tag?: string | null;
|
|
15045
15414
|
type: ProductV1MediaType;
|
|
15415
|
+
width?: number | null;
|
|
15416
|
+
height?: number | null;
|
|
15417
|
+
name?: string | null;
|
|
15046
15418
|
}> | null;
|
|
15047
15419
|
contactLinks?: Array<{
|
|
15048
15420
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15337,6 +15709,9 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
15337
15709
|
url: string;
|
|
15338
15710
|
tag?: string | null;
|
|
15339
15711
|
type: ProductV1MediaType;
|
|
15712
|
+
width?: number | null;
|
|
15713
|
+
height?: number | null;
|
|
15714
|
+
name?: string | null;
|
|
15340
15715
|
}>;
|
|
15341
15716
|
visuals_videos?: Array<{
|
|
15342
15717
|
__typename?: "ProductV1Media";
|
|
@@ -15344,6 +15719,9 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
15344
15719
|
url: string;
|
|
15345
15720
|
tag?: string | null;
|
|
15346
15721
|
type: ProductV1MediaType;
|
|
15722
|
+
width?: number | null;
|
|
15723
|
+
height?: number | null;
|
|
15724
|
+
name?: string | null;
|
|
15347
15725
|
}> | null;
|
|
15348
15726
|
productV1Seller?: {
|
|
15349
15727
|
__typename?: "ProductV1Seller";
|
|
@@ -15360,6 +15738,9 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
15360
15738
|
url: string;
|
|
15361
15739
|
tag?: string | null;
|
|
15362
15740
|
type: ProductV1MediaType;
|
|
15741
|
+
width?: number | null;
|
|
15742
|
+
height?: number | null;
|
|
15743
|
+
name?: string | null;
|
|
15363
15744
|
}> | null;
|
|
15364
15745
|
contactLinks?: Array<{
|
|
15365
15746
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15404,6 +15785,9 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
15404
15785
|
url: string;
|
|
15405
15786
|
tag?: string | null;
|
|
15406
15787
|
type: ProductV1MediaType;
|
|
15788
|
+
width?: number | null;
|
|
15789
|
+
height?: number | null;
|
|
15790
|
+
name?: string | null;
|
|
15407
15791
|
}> | null;
|
|
15408
15792
|
contactLinks?: Array<{
|
|
15409
15793
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15570,6 +15954,9 @@ export declare type GetProductV1ProductsQueryQuery = {
|
|
|
15570
15954
|
url: string;
|
|
15571
15955
|
tag?: string | null;
|
|
15572
15956
|
type: ProductV1MediaType;
|
|
15957
|
+
width?: number | null;
|
|
15958
|
+
height?: number | null;
|
|
15959
|
+
name?: string | null;
|
|
15573
15960
|
}>;
|
|
15574
15961
|
visuals_videos?: Array<{
|
|
15575
15962
|
__typename?: "ProductV1Media";
|
|
@@ -15577,6 +15964,9 @@ export declare type GetProductV1ProductsQueryQuery = {
|
|
|
15577
15964
|
url: string;
|
|
15578
15965
|
tag?: string | null;
|
|
15579
15966
|
type: ProductV1MediaType;
|
|
15967
|
+
width?: number | null;
|
|
15968
|
+
height?: number | null;
|
|
15969
|
+
name?: string | null;
|
|
15580
15970
|
}> | null;
|
|
15581
15971
|
productV1Seller?: {
|
|
15582
15972
|
__typename?: "ProductV1Seller";
|
|
@@ -15593,6 +15983,9 @@ export declare type GetProductV1ProductsQueryQuery = {
|
|
|
15593
15983
|
url: string;
|
|
15594
15984
|
tag?: string | null;
|
|
15595
15985
|
type: ProductV1MediaType;
|
|
15986
|
+
width?: number | null;
|
|
15987
|
+
height?: number | null;
|
|
15988
|
+
name?: string | null;
|
|
15596
15989
|
}> | null;
|
|
15597
15990
|
contactLinks?: Array<{
|
|
15598
15991
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15911,6 +16304,9 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
15911
16304
|
url: string;
|
|
15912
16305
|
tag?: string | null;
|
|
15913
16306
|
type: ProductV1MediaType;
|
|
16307
|
+
width?: number | null;
|
|
16308
|
+
height?: number | null;
|
|
16309
|
+
name?: string | null;
|
|
15914
16310
|
}>;
|
|
15915
16311
|
visuals_videos?: Array<{
|
|
15916
16312
|
__typename?: "ProductV1Media";
|
|
@@ -15918,6 +16314,9 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
15918
16314
|
url: string;
|
|
15919
16315
|
tag?: string | null;
|
|
15920
16316
|
type: ProductV1MediaType;
|
|
16317
|
+
width?: number | null;
|
|
16318
|
+
height?: number | null;
|
|
16319
|
+
name?: string | null;
|
|
15921
16320
|
}> | null;
|
|
15922
16321
|
productV1Seller?: {
|
|
15923
16322
|
__typename?: "ProductV1Seller";
|
|
@@ -15934,6 +16333,9 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
15934
16333
|
url: string;
|
|
15935
16334
|
tag?: string | null;
|
|
15936
16335
|
type: ProductV1MediaType;
|
|
16336
|
+
width?: number | null;
|
|
16337
|
+
height?: number | null;
|
|
16338
|
+
name?: string | null;
|
|
15937
16339
|
}> | null;
|
|
15938
16340
|
contactLinks?: Array<{
|
|
15939
16341
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15978,6 +16380,9 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
15978
16380
|
url: string;
|
|
15979
16381
|
tag?: string | null;
|
|
15980
16382
|
type: ProductV1MediaType;
|
|
16383
|
+
width?: number | null;
|
|
16384
|
+
height?: number | null;
|
|
16385
|
+
name?: string | null;
|
|
15981
16386
|
}> | null;
|
|
15982
16387
|
contactLinks?: Array<{
|
|
15983
16388
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16074,6 +16479,9 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16074
16479
|
url: string;
|
|
16075
16480
|
tag?: string | null;
|
|
16076
16481
|
type: ProductV1MediaType;
|
|
16482
|
+
width?: number | null;
|
|
16483
|
+
height?: number | null;
|
|
16484
|
+
name?: string | null;
|
|
16077
16485
|
}>;
|
|
16078
16486
|
visuals_videos?: Array<{
|
|
16079
16487
|
__typename?: "ProductV1Media";
|
|
@@ -16081,6 +16489,9 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16081
16489
|
url: string;
|
|
16082
16490
|
tag?: string | null;
|
|
16083
16491
|
type: ProductV1MediaType;
|
|
16492
|
+
width?: number | null;
|
|
16493
|
+
height?: number | null;
|
|
16494
|
+
name?: string | null;
|
|
16084
16495
|
}> | null;
|
|
16085
16496
|
productV1Seller?: {
|
|
16086
16497
|
__typename?: "ProductV1Seller";
|
|
@@ -16097,6 +16508,9 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16097
16508
|
url: string;
|
|
16098
16509
|
tag?: string | null;
|
|
16099
16510
|
type: ProductV1MediaType;
|
|
16511
|
+
width?: number | null;
|
|
16512
|
+
height?: number | null;
|
|
16513
|
+
name?: string | null;
|
|
16100
16514
|
}> | null;
|
|
16101
16515
|
contactLinks?: Array<{
|
|
16102
16516
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16415,6 +16829,9 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16415
16829
|
url: string;
|
|
16416
16830
|
tag?: string | null;
|
|
16417
16831
|
type: ProductV1MediaType;
|
|
16832
|
+
width?: number | null;
|
|
16833
|
+
height?: number | null;
|
|
16834
|
+
name?: string | null;
|
|
16418
16835
|
}>;
|
|
16419
16836
|
visuals_videos?: Array<{
|
|
16420
16837
|
__typename?: "ProductV1Media";
|
|
@@ -16422,6 +16839,9 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16422
16839
|
url: string;
|
|
16423
16840
|
tag?: string | null;
|
|
16424
16841
|
type: ProductV1MediaType;
|
|
16842
|
+
width?: number | null;
|
|
16843
|
+
height?: number | null;
|
|
16844
|
+
name?: string | null;
|
|
16425
16845
|
}> | null;
|
|
16426
16846
|
productV1Seller?: {
|
|
16427
16847
|
__typename?: "ProductV1Seller";
|
|
@@ -16438,6 +16858,9 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16438
16858
|
url: string;
|
|
16439
16859
|
tag?: string | null;
|
|
16440
16860
|
type: ProductV1MediaType;
|
|
16861
|
+
width?: number | null;
|
|
16862
|
+
height?: number | null;
|
|
16863
|
+
name?: string | null;
|
|
16441
16864
|
}> | null;
|
|
16442
16865
|
contactLinks?: Array<{
|
|
16443
16866
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16482,6 +16905,9 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16482
16905
|
url: string;
|
|
16483
16906
|
tag?: string | null;
|
|
16484
16907
|
type: ProductV1MediaType;
|
|
16908
|
+
width?: number | null;
|
|
16909
|
+
height?: number | null;
|
|
16910
|
+
name?: string | null;
|
|
16485
16911
|
}> | null;
|
|
16486
16912
|
contactLinks?: Array<{
|
|
16487
16913
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16578,6 +17004,9 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16578
17004
|
url: string;
|
|
16579
17005
|
tag?: string | null;
|
|
16580
17006
|
type: ProductV1MediaType;
|
|
17007
|
+
width?: number | null;
|
|
17008
|
+
height?: number | null;
|
|
17009
|
+
name?: string | null;
|
|
16581
17010
|
}>;
|
|
16582
17011
|
visuals_videos?: Array<{
|
|
16583
17012
|
__typename?: "ProductV1Media";
|
|
@@ -16585,6 +17014,9 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16585
17014
|
url: string;
|
|
16586
17015
|
tag?: string | null;
|
|
16587
17016
|
type: ProductV1MediaType;
|
|
17017
|
+
width?: number | null;
|
|
17018
|
+
height?: number | null;
|
|
17019
|
+
name?: string | null;
|
|
16588
17020
|
}> | null;
|
|
16589
17021
|
productV1Seller?: {
|
|
16590
17022
|
__typename?: "ProductV1Seller";
|
|
@@ -16601,6 +17033,9 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16601
17033
|
url: string;
|
|
16602
17034
|
tag?: string | null;
|
|
16603
17035
|
type: ProductV1MediaType;
|
|
17036
|
+
width?: number | null;
|
|
17037
|
+
height?: number | null;
|
|
17038
|
+
name?: string | null;
|
|
16604
17039
|
}> | null;
|
|
16605
17040
|
contactLinks?: Array<{
|
|
16606
17041
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16670,6 +17105,13 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
16670
17105
|
numberOfCommits: string;
|
|
16671
17106
|
numberOfRedemptions: string;
|
|
16672
17107
|
uuid: string;
|
|
17108
|
+
animationMetadata?: {
|
|
17109
|
+
__typename?: "AnimationMetadata";
|
|
17110
|
+
id: string;
|
|
17111
|
+
width?: number | null;
|
|
17112
|
+
height?: number | null;
|
|
17113
|
+
name?: string | null;
|
|
17114
|
+
} | null;
|
|
16673
17115
|
attributes?: Array<{
|
|
16674
17116
|
__typename?: "MetadataAttribute";
|
|
16675
17117
|
traitType: string;
|
|
@@ -16924,6 +17366,9 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
16924
17366
|
url: string;
|
|
16925
17367
|
tag?: string | null;
|
|
16926
17368
|
type: ProductV1MediaType;
|
|
17369
|
+
width?: number | null;
|
|
17370
|
+
height?: number | null;
|
|
17371
|
+
name?: string | null;
|
|
16927
17372
|
}>;
|
|
16928
17373
|
visuals_videos?: Array<{
|
|
16929
17374
|
__typename?: "ProductV1Media";
|
|
@@ -16931,6 +17376,9 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
16931
17376
|
url: string;
|
|
16932
17377
|
tag?: string | null;
|
|
16933
17378
|
type: ProductV1MediaType;
|
|
17379
|
+
width?: number | null;
|
|
17380
|
+
height?: number | null;
|
|
17381
|
+
name?: string | null;
|
|
16934
17382
|
}> | null;
|
|
16935
17383
|
productV1Seller?: {
|
|
16936
17384
|
__typename?: "ProductV1Seller";
|
|
@@ -16947,6 +17395,9 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
16947
17395
|
url: string;
|
|
16948
17396
|
tag?: string | null;
|
|
16949
17397
|
type: ProductV1MediaType;
|
|
17398
|
+
width?: number | null;
|
|
17399
|
+
height?: number | null;
|
|
17400
|
+
name?: string | null;
|
|
16950
17401
|
}> | null;
|
|
16951
17402
|
contactLinks?: Array<{
|
|
16952
17403
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16991,6 +17442,9 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
16991
17442
|
url: string;
|
|
16992
17443
|
tag?: string | null;
|
|
16993
17444
|
type: ProductV1MediaType;
|
|
17445
|
+
width?: number | null;
|
|
17446
|
+
height?: number | null;
|
|
17447
|
+
name?: string | null;
|
|
16994
17448
|
}> | null;
|
|
16995
17449
|
contactLinks?: Array<{
|
|
16996
17450
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17132,6 +17586,9 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17132
17586
|
url: string;
|
|
17133
17587
|
tag?: string | null;
|
|
17134
17588
|
type: ProductV1MediaType;
|
|
17589
|
+
width?: number | null;
|
|
17590
|
+
height?: number | null;
|
|
17591
|
+
name?: string | null;
|
|
17135
17592
|
}>;
|
|
17136
17593
|
visuals_videos?: Array<{
|
|
17137
17594
|
__typename?: "ProductV1Media";
|
|
@@ -17139,6 +17596,9 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17139
17596
|
url: string;
|
|
17140
17597
|
tag?: string | null;
|
|
17141
17598
|
type: ProductV1MediaType;
|
|
17599
|
+
width?: number | null;
|
|
17600
|
+
height?: number | null;
|
|
17601
|
+
name?: string | null;
|
|
17142
17602
|
}> | null;
|
|
17143
17603
|
productV1Seller?: {
|
|
17144
17604
|
__typename?: "ProductV1Seller";
|
|
@@ -17155,6 +17615,9 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17155
17615
|
url: string;
|
|
17156
17616
|
tag?: string | null;
|
|
17157
17617
|
type: ProductV1MediaType;
|
|
17618
|
+
width?: number | null;
|
|
17619
|
+
height?: number | null;
|
|
17620
|
+
name?: string | null;
|
|
17158
17621
|
}> | null;
|
|
17159
17622
|
contactLinks?: Array<{
|
|
17160
17623
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17199,6 +17662,9 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17199
17662
|
url: string;
|
|
17200
17663
|
tag?: string | null;
|
|
17201
17664
|
type: ProductV1MediaType;
|
|
17665
|
+
width?: number | null;
|
|
17666
|
+
height?: number | null;
|
|
17667
|
+
name?: string | null;
|
|
17202
17668
|
}> | null;
|
|
17203
17669
|
contactLinks?: Array<{
|
|
17204
17670
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17262,6 +17728,13 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17262
17728
|
numberOfCommits: string;
|
|
17263
17729
|
numberOfRedemptions: string;
|
|
17264
17730
|
uuid: string;
|
|
17731
|
+
animationMetadata?: {
|
|
17732
|
+
__typename?: "AnimationMetadata";
|
|
17733
|
+
id: string;
|
|
17734
|
+
width?: number | null;
|
|
17735
|
+
height?: number | null;
|
|
17736
|
+
name?: string | null;
|
|
17737
|
+
} | null;
|
|
17265
17738
|
attributes?: Array<{
|
|
17266
17739
|
__typename?: "MetadataAttribute";
|
|
17267
17740
|
traitType: string;
|
|
@@ -17516,6 +17989,9 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17516
17989
|
url: string;
|
|
17517
17990
|
tag?: string | null;
|
|
17518
17991
|
type: ProductV1MediaType;
|
|
17992
|
+
width?: number | null;
|
|
17993
|
+
height?: number | null;
|
|
17994
|
+
name?: string | null;
|
|
17519
17995
|
}>;
|
|
17520
17996
|
visuals_videos?: Array<{
|
|
17521
17997
|
__typename?: "ProductV1Media";
|
|
@@ -17523,6 +17999,9 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17523
17999
|
url: string;
|
|
17524
18000
|
tag?: string | null;
|
|
17525
18001
|
type: ProductV1MediaType;
|
|
18002
|
+
width?: number | null;
|
|
18003
|
+
height?: number | null;
|
|
18004
|
+
name?: string | null;
|
|
17526
18005
|
}> | null;
|
|
17527
18006
|
productV1Seller?: {
|
|
17528
18007
|
__typename?: "ProductV1Seller";
|
|
@@ -17539,6 +18018,9 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17539
18018
|
url: string;
|
|
17540
18019
|
tag?: string | null;
|
|
17541
18020
|
type: ProductV1MediaType;
|
|
18021
|
+
width?: number | null;
|
|
18022
|
+
height?: number | null;
|
|
18023
|
+
name?: string | null;
|
|
17542
18024
|
}> | null;
|
|
17543
18025
|
contactLinks?: Array<{
|
|
17544
18026
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17583,6 +18065,9 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17583
18065
|
url: string;
|
|
17584
18066
|
tag?: string | null;
|
|
17585
18067
|
type: ProductV1MediaType;
|
|
18068
|
+
width?: number | null;
|
|
18069
|
+
height?: number | null;
|
|
18070
|
+
name?: string | null;
|
|
17586
18071
|
}> | null;
|
|
17587
18072
|
contactLinks?: Array<{
|
|
17588
18073
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17724,6 +18209,9 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17724
18209
|
url: string;
|
|
17725
18210
|
tag?: string | null;
|
|
17726
18211
|
type: ProductV1MediaType;
|
|
18212
|
+
width?: number | null;
|
|
18213
|
+
height?: number | null;
|
|
18214
|
+
name?: string | null;
|
|
17727
18215
|
}>;
|
|
17728
18216
|
visuals_videos?: Array<{
|
|
17729
18217
|
__typename?: "ProductV1Media";
|
|
@@ -17731,6 +18219,9 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17731
18219
|
url: string;
|
|
17732
18220
|
tag?: string | null;
|
|
17733
18221
|
type: ProductV1MediaType;
|
|
18222
|
+
width?: number | null;
|
|
18223
|
+
height?: number | null;
|
|
18224
|
+
name?: string | null;
|
|
17734
18225
|
}> | null;
|
|
17735
18226
|
productV1Seller?: {
|
|
17736
18227
|
__typename?: "ProductV1Seller";
|
|
@@ -17747,6 +18238,9 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17747
18238
|
url: string;
|
|
17748
18239
|
tag?: string | null;
|
|
17749
18240
|
type: ProductV1MediaType;
|
|
18241
|
+
width?: number | null;
|
|
18242
|
+
height?: number | null;
|
|
18243
|
+
name?: string | null;
|
|
17750
18244
|
}> | null;
|
|
17751
18245
|
contactLinks?: Array<{
|
|
17752
18246
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17791,6 +18285,9 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17791
18285
|
url: string;
|
|
17792
18286
|
tag?: string | null;
|
|
17793
18287
|
type: ProductV1MediaType;
|
|
18288
|
+
width?: number | null;
|
|
18289
|
+
height?: number | null;
|
|
18290
|
+
name?: string | null;
|
|
17794
18291
|
}> | null;
|
|
17795
18292
|
contactLinks?: Array<{
|
|
17796
18293
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17845,6 +18342,13 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
17845
18342
|
numberOfCommits: string;
|
|
17846
18343
|
numberOfRedemptions: string;
|
|
17847
18344
|
uuid: string;
|
|
18345
|
+
animationMetadata?: {
|
|
18346
|
+
__typename?: "AnimationMetadata";
|
|
18347
|
+
id: string;
|
|
18348
|
+
width?: number | null;
|
|
18349
|
+
height?: number | null;
|
|
18350
|
+
name?: string | null;
|
|
18351
|
+
} | null;
|
|
17848
18352
|
attributes?: Array<{
|
|
17849
18353
|
__typename?: "MetadataAttribute";
|
|
17850
18354
|
traitType: string;
|
|
@@ -18099,6 +18603,9 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18099
18603
|
url: string;
|
|
18100
18604
|
tag?: string | null;
|
|
18101
18605
|
type: ProductV1MediaType;
|
|
18606
|
+
width?: number | null;
|
|
18607
|
+
height?: number | null;
|
|
18608
|
+
name?: string | null;
|
|
18102
18609
|
}>;
|
|
18103
18610
|
visuals_videos?: Array<{
|
|
18104
18611
|
__typename?: "ProductV1Media";
|
|
@@ -18106,6 +18613,9 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18106
18613
|
url: string;
|
|
18107
18614
|
tag?: string | null;
|
|
18108
18615
|
type: ProductV1MediaType;
|
|
18616
|
+
width?: number | null;
|
|
18617
|
+
height?: number | null;
|
|
18618
|
+
name?: string | null;
|
|
18109
18619
|
}> | null;
|
|
18110
18620
|
productV1Seller?: {
|
|
18111
18621
|
__typename?: "ProductV1Seller";
|
|
@@ -18122,6 +18632,9 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18122
18632
|
url: string;
|
|
18123
18633
|
tag?: string | null;
|
|
18124
18634
|
type: ProductV1MediaType;
|
|
18635
|
+
width?: number | null;
|
|
18636
|
+
height?: number | null;
|
|
18637
|
+
name?: string | null;
|
|
18125
18638
|
}> | null;
|
|
18126
18639
|
contactLinks?: Array<{
|
|
18127
18640
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18166,6 +18679,9 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18166
18679
|
url: string;
|
|
18167
18680
|
tag?: string | null;
|
|
18168
18681
|
type: ProductV1MediaType;
|
|
18682
|
+
width?: number | null;
|
|
18683
|
+
height?: number | null;
|
|
18684
|
+
name?: string | null;
|
|
18169
18685
|
}> | null;
|
|
18170
18686
|
contactLinks?: Array<{
|
|
18171
18687
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18307,6 +18823,9 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18307
18823
|
url: string;
|
|
18308
18824
|
tag?: string | null;
|
|
18309
18825
|
type: ProductV1MediaType;
|
|
18826
|
+
width?: number | null;
|
|
18827
|
+
height?: number | null;
|
|
18828
|
+
name?: string | null;
|
|
18310
18829
|
}>;
|
|
18311
18830
|
visuals_videos?: Array<{
|
|
18312
18831
|
__typename?: "ProductV1Media";
|
|
@@ -18314,6 +18833,9 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18314
18833
|
url: string;
|
|
18315
18834
|
tag?: string | null;
|
|
18316
18835
|
type: ProductV1MediaType;
|
|
18836
|
+
width?: number | null;
|
|
18837
|
+
height?: number | null;
|
|
18838
|
+
name?: string | null;
|
|
18317
18839
|
}> | null;
|
|
18318
18840
|
productV1Seller?: {
|
|
18319
18841
|
__typename?: "ProductV1Seller";
|
|
@@ -18330,6 +18852,9 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18330
18852
|
url: string;
|
|
18331
18853
|
tag?: string | null;
|
|
18332
18854
|
type: ProductV1MediaType;
|
|
18855
|
+
width?: number | null;
|
|
18856
|
+
height?: number | null;
|
|
18857
|
+
name?: string | null;
|
|
18333
18858
|
}> | null;
|
|
18334
18859
|
contactLinks?: Array<{
|
|
18335
18860
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18374,6 +18899,9 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18374
18899
|
url: string;
|
|
18375
18900
|
tag?: string | null;
|
|
18376
18901
|
type: ProductV1MediaType;
|
|
18902
|
+
width?: number | null;
|
|
18903
|
+
height?: number | null;
|
|
18904
|
+
name?: string | null;
|
|
18377
18905
|
}> | null;
|
|
18378
18906
|
contactLinks?: Array<{
|
|
18379
18907
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18427,6 +18955,13 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
18427
18955
|
numberOfCommits: string;
|
|
18428
18956
|
numberOfRedemptions: string;
|
|
18429
18957
|
uuid: string;
|
|
18958
|
+
animationMetadata?: {
|
|
18959
|
+
__typename?: "AnimationMetadata";
|
|
18960
|
+
id: string;
|
|
18961
|
+
width?: number | null;
|
|
18962
|
+
height?: number | null;
|
|
18963
|
+
name?: string | null;
|
|
18964
|
+
} | null;
|
|
18430
18965
|
attributes?: Array<{
|
|
18431
18966
|
__typename?: "MetadataAttribute";
|
|
18432
18967
|
traitType: string;
|
|
@@ -18681,6 +19216,9 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
18681
19216
|
url: string;
|
|
18682
19217
|
tag?: string | null;
|
|
18683
19218
|
type: ProductV1MediaType;
|
|
19219
|
+
width?: number | null;
|
|
19220
|
+
height?: number | null;
|
|
19221
|
+
name?: string | null;
|
|
18684
19222
|
}>;
|
|
18685
19223
|
visuals_videos?: Array<{
|
|
18686
19224
|
__typename?: "ProductV1Media";
|
|
@@ -18688,6 +19226,9 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
18688
19226
|
url: string;
|
|
18689
19227
|
tag?: string | null;
|
|
18690
19228
|
type: ProductV1MediaType;
|
|
19229
|
+
width?: number | null;
|
|
19230
|
+
height?: number | null;
|
|
19231
|
+
name?: string | null;
|
|
18691
19232
|
}> | null;
|
|
18692
19233
|
productV1Seller?: {
|
|
18693
19234
|
__typename?: "ProductV1Seller";
|
|
@@ -18704,6 +19245,9 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
18704
19245
|
url: string;
|
|
18705
19246
|
tag?: string | null;
|
|
18706
19247
|
type: ProductV1MediaType;
|
|
19248
|
+
width?: number | null;
|
|
19249
|
+
height?: number | null;
|
|
19250
|
+
name?: string | null;
|
|
18707
19251
|
}> | null;
|
|
18708
19252
|
contactLinks?: Array<{
|
|
18709
19253
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18748,6 +19292,9 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
18748
19292
|
url: string;
|
|
18749
19293
|
tag?: string | null;
|
|
18750
19294
|
type: ProductV1MediaType;
|
|
19295
|
+
width?: number | null;
|
|
19296
|
+
height?: number | null;
|
|
19297
|
+
name?: string | null;
|
|
18751
19298
|
}> | null;
|
|
18752
19299
|
contactLinks?: Array<{
|
|
18753
19300
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18889,6 +19436,9 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
18889
19436
|
url: string;
|
|
18890
19437
|
tag?: string | null;
|
|
18891
19438
|
type: ProductV1MediaType;
|
|
19439
|
+
width?: number | null;
|
|
19440
|
+
height?: number | null;
|
|
19441
|
+
name?: string | null;
|
|
18892
19442
|
}>;
|
|
18893
19443
|
visuals_videos?: Array<{
|
|
18894
19444
|
__typename?: "ProductV1Media";
|
|
@@ -18896,6 +19446,9 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
18896
19446
|
url: string;
|
|
18897
19447
|
tag?: string | null;
|
|
18898
19448
|
type: ProductV1MediaType;
|
|
19449
|
+
width?: number | null;
|
|
19450
|
+
height?: number | null;
|
|
19451
|
+
name?: string | null;
|
|
18899
19452
|
}> | null;
|
|
18900
19453
|
productV1Seller?: {
|
|
18901
19454
|
__typename?: "ProductV1Seller";
|
|
@@ -18912,6 +19465,9 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
18912
19465
|
url: string;
|
|
18913
19466
|
tag?: string | null;
|
|
18914
19467
|
type: ProductV1MediaType;
|
|
19468
|
+
width?: number | null;
|
|
19469
|
+
height?: number | null;
|
|
19470
|
+
name?: string | null;
|
|
18915
19471
|
}> | null;
|
|
18916
19472
|
contactLinks?: Array<{
|
|
18917
19473
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18956,6 +19512,9 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
18956
19512
|
url: string;
|
|
18957
19513
|
tag?: string | null;
|
|
18958
19514
|
type: ProductV1MediaType;
|
|
19515
|
+
width?: number | null;
|
|
19516
|
+
height?: number | null;
|
|
19517
|
+
name?: string | null;
|
|
18959
19518
|
}> | null;
|
|
18960
19519
|
contactLinks?: Array<{
|
|
18961
19520
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18989,6 +19548,13 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
18989
19548
|
disputeResolverContactMethod: string;
|
|
18990
19549
|
};
|
|
18991
19550
|
};
|
|
19551
|
+
export declare type BaseAnimationMetadataFieldsFragment = {
|
|
19552
|
+
__typename?: "AnimationMetadata";
|
|
19553
|
+
id: string;
|
|
19554
|
+
width?: number | null;
|
|
19555
|
+
height?: number | null;
|
|
19556
|
+
name?: string | null;
|
|
19557
|
+
};
|
|
18992
19558
|
export declare type BaseProductV1ProductFieldsFragment = {
|
|
18993
19559
|
__typename?: "ProductV1Product";
|
|
18994
19560
|
id: string;
|
|
@@ -19060,6 +19626,9 @@ export declare type BaseProductV1ProductFieldsFragment = {
|
|
|
19060
19626
|
url: string;
|
|
19061
19627
|
tag?: string | null;
|
|
19062
19628
|
type: ProductV1MediaType;
|
|
19629
|
+
width?: number | null;
|
|
19630
|
+
height?: number | null;
|
|
19631
|
+
name?: string | null;
|
|
19063
19632
|
}>;
|
|
19064
19633
|
visuals_videos?: Array<{
|
|
19065
19634
|
__typename?: "ProductV1Media";
|
|
@@ -19067,6 +19636,9 @@ export declare type BaseProductV1ProductFieldsFragment = {
|
|
|
19067
19636
|
url: string;
|
|
19068
19637
|
tag?: string | null;
|
|
19069
19638
|
type: ProductV1MediaType;
|
|
19639
|
+
width?: number | null;
|
|
19640
|
+
height?: number | null;
|
|
19641
|
+
name?: string | null;
|
|
19070
19642
|
}> | null;
|
|
19071
19643
|
productV1Seller?: {
|
|
19072
19644
|
__typename?: "ProductV1Seller";
|
|
@@ -19083,6 +19655,9 @@ export declare type BaseProductV1ProductFieldsFragment = {
|
|
|
19083
19655
|
url: string;
|
|
19084
19656
|
tag?: string | null;
|
|
19085
19657
|
type: ProductV1MediaType;
|
|
19658
|
+
width?: number | null;
|
|
19659
|
+
height?: number | null;
|
|
19660
|
+
name?: string | null;
|
|
19086
19661
|
}> | null;
|
|
19087
19662
|
contactLinks?: Array<{
|
|
19088
19663
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19391,6 +19966,9 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19391
19966
|
url: string;
|
|
19392
19967
|
tag?: string | null;
|
|
19393
19968
|
type: ProductV1MediaType;
|
|
19969
|
+
width?: number | null;
|
|
19970
|
+
height?: number | null;
|
|
19971
|
+
name?: string | null;
|
|
19394
19972
|
}>;
|
|
19395
19973
|
visuals_videos?: Array<{
|
|
19396
19974
|
__typename?: "ProductV1Media";
|
|
@@ -19398,6 +19976,9 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19398
19976
|
url: string;
|
|
19399
19977
|
tag?: string | null;
|
|
19400
19978
|
type: ProductV1MediaType;
|
|
19979
|
+
width?: number | null;
|
|
19980
|
+
height?: number | null;
|
|
19981
|
+
name?: string | null;
|
|
19401
19982
|
}> | null;
|
|
19402
19983
|
productV1Seller?: {
|
|
19403
19984
|
__typename?: "ProductV1Seller";
|
|
@@ -19414,6 +19995,9 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19414
19995
|
url: string;
|
|
19415
19996
|
tag?: string | null;
|
|
19416
19997
|
type: ProductV1MediaType;
|
|
19998
|
+
width?: number | null;
|
|
19999
|
+
height?: number | null;
|
|
20000
|
+
name?: string | null;
|
|
19417
20001
|
}> | null;
|
|
19418
20002
|
contactLinks?: Array<{
|
|
19419
20003
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19458,6 +20042,9 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19458
20042
|
url: string;
|
|
19459
20043
|
tag?: string | null;
|
|
19460
20044
|
type: ProductV1MediaType;
|
|
20045
|
+
width?: number | null;
|
|
20046
|
+
height?: number | null;
|
|
20047
|
+
name?: string | null;
|
|
19461
20048
|
}> | null;
|
|
19462
20049
|
contactLinks?: Array<{
|
|
19463
20050
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19554,6 +20141,9 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19554
20141
|
url: string;
|
|
19555
20142
|
tag?: string | null;
|
|
19556
20143
|
type: ProductV1MediaType;
|
|
20144
|
+
width?: number | null;
|
|
20145
|
+
height?: number | null;
|
|
20146
|
+
name?: string | null;
|
|
19557
20147
|
}>;
|
|
19558
20148
|
visuals_videos?: Array<{
|
|
19559
20149
|
__typename?: "ProductV1Media";
|
|
@@ -19561,6 +20151,9 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19561
20151
|
url: string;
|
|
19562
20152
|
tag?: string | null;
|
|
19563
20153
|
type: ProductV1MediaType;
|
|
20154
|
+
width?: number | null;
|
|
20155
|
+
height?: number | null;
|
|
20156
|
+
name?: string | null;
|
|
19564
20157
|
}> | null;
|
|
19565
20158
|
productV1Seller?: {
|
|
19566
20159
|
__typename?: "ProductV1Seller";
|
|
@@ -19577,6 +20170,9 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19577
20170
|
url: string;
|
|
19578
20171
|
tag?: string | null;
|
|
19579
20172
|
type: ProductV1MediaType;
|
|
20173
|
+
width?: number | null;
|
|
20174
|
+
height?: number | null;
|
|
20175
|
+
name?: string | null;
|
|
19580
20176
|
}> | null;
|
|
19581
20177
|
contactLinks?: Array<{
|
|
19582
20178
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19885,6 +20481,9 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
19885
20481
|
url: string;
|
|
19886
20482
|
tag?: string | null;
|
|
19887
20483
|
type: ProductV1MediaType;
|
|
20484
|
+
width?: number | null;
|
|
20485
|
+
height?: number | null;
|
|
20486
|
+
name?: string | null;
|
|
19888
20487
|
}>;
|
|
19889
20488
|
visuals_videos?: Array<{
|
|
19890
20489
|
__typename?: "ProductV1Media";
|
|
@@ -19892,6 +20491,9 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
19892
20491
|
url: string;
|
|
19893
20492
|
tag?: string | null;
|
|
19894
20493
|
type: ProductV1MediaType;
|
|
20494
|
+
width?: number | null;
|
|
20495
|
+
height?: number | null;
|
|
20496
|
+
name?: string | null;
|
|
19895
20497
|
}> | null;
|
|
19896
20498
|
productV1Seller?: {
|
|
19897
20499
|
__typename?: "ProductV1Seller";
|
|
@@ -19908,6 +20510,9 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
19908
20510
|
url: string;
|
|
19909
20511
|
tag?: string | null;
|
|
19910
20512
|
type: ProductV1MediaType;
|
|
20513
|
+
width?: number | null;
|
|
20514
|
+
height?: number | null;
|
|
20515
|
+
name?: string | null;
|
|
19911
20516
|
}> | null;
|
|
19912
20517
|
contactLinks?: Array<{
|
|
19913
20518
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19952,6 +20557,9 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
19952
20557
|
url: string;
|
|
19953
20558
|
tag?: string | null;
|
|
19954
20559
|
type: ProductV1MediaType;
|
|
20560
|
+
width?: number | null;
|
|
20561
|
+
height?: number | null;
|
|
20562
|
+
name?: string | null;
|
|
19955
20563
|
}> | null;
|
|
19956
20564
|
contactLinks?: Array<{
|
|
19957
20565
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20048,6 +20656,9 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20048
20656
|
url: string;
|
|
20049
20657
|
tag?: string | null;
|
|
20050
20658
|
type: ProductV1MediaType;
|
|
20659
|
+
width?: number | null;
|
|
20660
|
+
height?: number | null;
|
|
20661
|
+
name?: string | null;
|
|
20051
20662
|
}>;
|
|
20052
20663
|
visuals_videos?: Array<{
|
|
20053
20664
|
__typename?: "ProductV1Media";
|
|
@@ -20055,6 +20666,9 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20055
20666
|
url: string;
|
|
20056
20667
|
tag?: string | null;
|
|
20057
20668
|
type: ProductV1MediaType;
|
|
20669
|
+
width?: number | null;
|
|
20670
|
+
height?: number | null;
|
|
20671
|
+
name?: string | null;
|
|
20058
20672
|
}> | null;
|
|
20059
20673
|
productV1Seller?: {
|
|
20060
20674
|
__typename?: "ProductV1Seller";
|
|
@@ -20071,6 +20685,9 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20071
20685
|
url: string;
|
|
20072
20686
|
tag?: string | null;
|
|
20073
20687
|
type: ProductV1MediaType;
|
|
20688
|
+
width?: number | null;
|
|
20689
|
+
height?: number | null;
|
|
20690
|
+
name?: string | null;
|
|
20074
20691
|
}> | null;
|
|
20075
20692
|
contactLinks?: Array<{
|
|
20076
20693
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20120,6 +20737,9 @@ export declare type BaseProductV1MediaFieldsFragment = {
|
|
|
20120
20737
|
url: string;
|
|
20121
20738
|
tag?: string | null;
|
|
20122
20739
|
type: ProductV1MediaType;
|
|
20740
|
+
width?: number | null;
|
|
20741
|
+
height?: number | null;
|
|
20742
|
+
name?: string | null;
|
|
20123
20743
|
};
|
|
20124
20744
|
export declare type BaseProductV1PersonalisationFieldsFragment = {
|
|
20125
20745
|
__typename?: "ProductV1Personalisation";
|
|
@@ -20147,6 +20767,9 @@ export declare type BaseProductV1SellerFieldsFragment = {
|
|
|
20147
20767
|
url: string;
|
|
20148
20768
|
tag?: string | null;
|
|
20149
20769
|
type: ProductV1MediaType;
|
|
20770
|
+
width?: number | null;
|
|
20771
|
+
height?: number | null;
|
|
20772
|
+
name?: string | null;
|
|
20150
20773
|
}> | null;
|
|
20151
20774
|
contactLinks?: Array<{
|
|
20152
20775
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20237,6 +20860,9 @@ export declare type BaseProductV1ProductOverridesFieldsFragment = {
|
|
|
20237
20860
|
url: string;
|
|
20238
20861
|
tag?: string | null;
|
|
20239
20862
|
type: ProductV1MediaType;
|
|
20863
|
+
width?: number | null;
|
|
20864
|
+
height?: number | null;
|
|
20865
|
+
name?: string | null;
|
|
20240
20866
|
}>;
|
|
20241
20867
|
visuals_videos?: Array<{
|
|
20242
20868
|
__typename?: "ProductV1Media";
|
|
@@ -20244,6 +20870,9 @@ export declare type BaseProductV1ProductOverridesFieldsFragment = {
|
|
|
20244
20870
|
url: string;
|
|
20245
20871
|
tag?: string | null;
|
|
20246
20872
|
type: ProductV1MediaType;
|
|
20873
|
+
width?: number | null;
|
|
20874
|
+
height?: number | null;
|
|
20875
|
+
name?: string | null;
|
|
20247
20876
|
}> | null;
|
|
20248
20877
|
};
|
|
20249
20878
|
export declare type GetOfferByIdQueryQueryVariables = Exact<{
|
|
@@ -20505,6 +21134,9 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
20505
21134
|
url: string;
|
|
20506
21135
|
tag?: string | null;
|
|
20507
21136
|
type: ProductV1MediaType;
|
|
21137
|
+
width?: number | null;
|
|
21138
|
+
height?: number | null;
|
|
21139
|
+
name?: string | null;
|
|
20508
21140
|
}>;
|
|
20509
21141
|
visuals_videos?: Array<{
|
|
20510
21142
|
__typename?: "ProductV1Media";
|
|
@@ -20512,6 +21144,9 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
20512
21144
|
url: string;
|
|
20513
21145
|
tag?: string | null;
|
|
20514
21146
|
type: ProductV1MediaType;
|
|
21147
|
+
width?: number | null;
|
|
21148
|
+
height?: number | null;
|
|
21149
|
+
name?: string | null;
|
|
20515
21150
|
}> | null;
|
|
20516
21151
|
productV1Seller?: {
|
|
20517
21152
|
__typename?: "ProductV1Seller";
|
|
@@ -20528,6 +21163,9 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
20528
21163
|
url: string;
|
|
20529
21164
|
tag?: string | null;
|
|
20530
21165
|
type: ProductV1MediaType;
|
|
21166
|
+
width?: number | null;
|
|
21167
|
+
height?: number | null;
|
|
21168
|
+
name?: string | null;
|
|
20531
21169
|
}> | null;
|
|
20532
21170
|
contactLinks?: Array<{
|
|
20533
21171
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20572,6 +21210,9 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
20572
21210
|
url: string;
|
|
20573
21211
|
tag?: string | null;
|
|
20574
21212
|
type: ProductV1MediaType;
|
|
21213
|
+
width?: number | null;
|
|
21214
|
+
height?: number | null;
|
|
21215
|
+
name?: string | null;
|
|
20575
21216
|
}> | null;
|
|
20576
21217
|
contactLinks?: Array<{
|
|
20577
21218
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20884,6 +21525,9 @@ export declare type GetOffersQueryQuery = {
|
|
|
20884
21525
|
url: string;
|
|
20885
21526
|
tag?: string | null;
|
|
20886
21527
|
type: ProductV1MediaType;
|
|
21528
|
+
width?: number | null;
|
|
21529
|
+
height?: number | null;
|
|
21530
|
+
name?: string | null;
|
|
20887
21531
|
}>;
|
|
20888
21532
|
visuals_videos?: Array<{
|
|
20889
21533
|
__typename?: "ProductV1Media";
|
|
@@ -20891,6 +21535,9 @@ export declare type GetOffersQueryQuery = {
|
|
|
20891
21535
|
url: string;
|
|
20892
21536
|
tag?: string | null;
|
|
20893
21537
|
type: ProductV1MediaType;
|
|
21538
|
+
width?: number | null;
|
|
21539
|
+
height?: number | null;
|
|
21540
|
+
name?: string | null;
|
|
20894
21541
|
}> | null;
|
|
20895
21542
|
productV1Seller?: {
|
|
20896
21543
|
__typename?: "ProductV1Seller";
|
|
@@ -20907,6 +21554,9 @@ export declare type GetOffersQueryQuery = {
|
|
|
20907
21554
|
url: string;
|
|
20908
21555
|
tag?: string | null;
|
|
20909
21556
|
type: ProductV1MediaType;
|
|
21557
|
+
width?: number | null;
|
|
21558
|
+
height?: number | null;
|
|
21559
|
+
name?: string | null;
|
|
20910
21560
|
}> | null;
|
|
20911
21561
|
contactLinks?: Array<{
|
|
20912
21562
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20951,6 +21601,9 @@ export declare type GetOffersQueryQuery = {
|
|
|
20951
21601
|
url: string;
|
|
20952
21602
|
tag?: string | null;
|
|
20953
21603
|
type: ProductV1MediaType;
|
|
21604
|
+
width?: number | null;
|
|
21605
|
+
height?: number | null;
|
|
21606
|
+
name?: string | null;
|
|
20954
21607
|
}> | null;
|
|
20955
21608
|
contactLinks?: Array<{
|
|
20956
21609
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21248,6 +21901,9 @@ export declare type OfferFieldsFragment = {
|
|
|
21248
21901
|
url: string;
|
|
21249
21902
|
tag?: string | null;
|
|
21250
21903
|
type: ProductV1MediaType;
|
|
21904
|
+
width?: number | null;
|
|
21905
|
+
height?: number | null;
|
|
21906
|
+
name?: string | null;
|
|
21251
21907
|
}>;
|
|
21252
21908
|
visuals_videos?: Array<{
|
|
21253
21909
|
__typename?: "ProductV1Media";
|
|
@@ -21255,6 +21911,9 @@ export declare type OfferFieldsFragment = {
|
|
|
21255
21911
|
url: string;
|
|
21256
21912
|
tag?: string | null;
|
|
21257
21913
|
type: ProductV1MediaType;
|
|
21914
|
+
width?: number | null;
|
|
21915
|
+
height?: number | null;
|
|
21916
|
+
name?: string | null;
|
|
21258
21917
|
}> | null;
|
|
21259
21918
|
productV1Seller?: {
|
|
21260
21919
|
__typename?: "ProductV1Seller";
|
|
@@ -21271,6 +21930,9 @@ export declare type OfferFieldsFragment = {
|
|
|
21271
21930
|
url: string;
|
|
21272
21931
|
tag?: string | null;
|
|
21273
21932
|
type: ProductV1MediaType;
|
|
21933
|
+
width?: number | null;
|
|
21934
|
+
height?: number | null;
|
|
21935
|
+
name?: string | null;
|
|
21274
21936
|
}> | null;
|
|
21275
21937
|
contactLinks?: Array<{
|
|
21276
21938
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21315,6 +21977,9 @@ export declare type OfferFieldsFragment = {
|
|
|
21315
21977
|
url: string;
|
|
21316
21978
|
tag?: string | null;
|
|
21317
21979
|
type: ProductV1MediaType;
|
|
21980
|
+
width?: number | null;
|
|
21981
|
+
height?: number | null;
|
|
21982
|
+
name?: string | null;
|
|
21318
21983
|
}> | null;
|
|
21319
21984
|
contactLinks?: Array<{
|
|
21320
21985
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21561,6 +22226,9 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
21561
22226
|
url: string;
|
|
21562
22227
|
tag?: string | null;
|
|
21563
22228
|
type: ProductV1MediaType;
|
|
22229
|
+
width?: number | null;
|
|
22230
|
+
height?: number | null;
|
|
22231
|
+
name?: string | null;
|
|
21564
22232
|
}>;
|
|
21565
22233
|
visuals_videos?: Array<{
|
|
21566
22234
|
__typename?: "ProductV1Media";
|
|
@@ -21568,6 +22236,9 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
21568
22236
|
url: string;
|
|
21569
22237
|
tag?: string | null;
|
|
21570
22238
|
type: ProductV1MediaType;
|
|
22239
|
+
width?: number | null;
|
|
22240
|
+
height?: number | null;
|
|
22241
|
+
name?: string | null;
|
|
21571
22242
|
}> | null;
|
|
21572
22243
|
productV1Seller?: {
|
|
21573
22244
|
__typename?: "ProductV1Seller";
|
|
@@ -21584,6 +22255,9 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
21584
22255
|
url: string;
|
|
21585
22256
|
tag?: string | null;
|
|
21586
22257
|
type: ProductV1MediaType;
|
|
22258
|
+
width?: number | null;
|
|
22259
|
+
height?: number | null;
|
|
22260
|
+
name?: string | null;
|
|
21587
22261
|
}> | null;
|
|
21588
22262
|
contactLinks?: Array<{
|
|
21589
22263
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21628,6 +22302,9 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
21628
22302
|
url: string;
|
|
21629
22303
|
tag?: string | null;
|
|
21630
22304
|
type: ProductV1MediaType;
|
|
22305
|
+
width?: number | null;
|
|
22306
|
+
height?: number | null;
|
|
22307
|
+
name?: string | null;
|
|
21631
22308
|
}> | null;
|
|
21632
22309
|
contactLinks?: Array<{
|
|
21633
22310
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21698,6 +22375,7 @@ export declare const BaseProductV1VariationFieldsFragmentDoc: string;
|
|
|
21698
22375
|
export declare const BaseProductV1ExchangePolicyFieldsFragmentDoc: string;
|
|
21699
22376
|
export declare const BaseProductV1ShippingJurisdictionFieldsFragmentDoc: string;
|
|
21700
22377
|
export declare const BaseProductV1ShippingOptionFieldsFragmentDoc: string;
|
|
22378
|
+
export declare const BaseAnimationMetadataFieldsFragmentDoc: string;
|
|
21701
22379
|
export declare const BaseOfferFieldsFragmentDoc: string;
|
|
21702
22380
|
export declare const BaseDisputeFieldsFragmentDoc: string;
|
|
21703
22381
|
export declare const BaseBuyerFieldsFragmentDoc: string;
|