@bosonprotocol/core-sdk 1.25.0-alpha.10 → 1.25.0-alpha.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/subgraph.d.ts +27 -199
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +2 -4
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/esm/subgraph.d.ts +27 -199
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +2 -4
- package/dist/esm/subgraph.js.map +1 -1
- package/package.json +3 -3
- package/src/metadata/product-v1.graphql +1 -2
- package/src/subgraph.ts +29 -201
package/src/subgraph.ts
CHANGED
|
@@ -172,7 +172,7 @@ export type AnimationMetadata = {
|
|
|
172
172
|
__typename?: "AnimationMetadata";
|
|
173
173
|
height?: Maybe<Scalars["Int"]>;
|
|
174
174
|
id: Scalars["ID"];
|
|
175
|
-
|
|
175
|
+
type?: Maybe<Scalars["String"]>;
|
|
176
176
|
width?: Maybe<Scalars["Int"]>;
|
|
177
177
|
};
|
|
178
178
|
|
|
@@ -195,26 +195,26 @@ export type AnimationMetadata_Filter = {
|
|
|
195
195
|
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
196
196
|
id_not?: InputMaybe<Scalars["ID"]>;
|
|
197
197
|
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
198
|
+
type?: InputMaybe<Scalars["String"]>;
|
|
199
|
+
type_contains?: InputMaybe<Scalars["String"]>;
|
|
200
|
+
type_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
201
|
+
type_ends_with?: InputMaybe<Scalars["String"]>;
|
|
202
|
+
type_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
203
|
+
type_gt?: InputMaybe<Scalars["String"]>;
|
|
204
|
+
type_gte?: InputMaybe<Scalars["String"]>;
|
|
205
|
+
type_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
206
|
+
type_lt?: InputMaybe<Scalars["String"]>;
|
|
207
|
+
type_lte?: InputMaybe<Scalars["String"]>;
|
|
208
|
+
type_not?: InputMaybe<Scalars["String"]>;
|
|
209
|
+
type_not_contains?: InputMaybe<Scalars["String"]>;
|
|
210
|
+
type_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
211
|
+
type_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
212
|
+
type_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
213
|
+
type_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
214
|
+
type_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
215
|
+
type_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
216
|
+
type_starts_with?: InputMaybe<Scalars["String"]>;
|
|
217
|
+
type_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
218
218
|
width?: InputMaybe<Scalars["Int"]>;
|
|
219
219
|
width_gt?: InputMaybe<Scalars["Int"]>;
|
|
220
220
|
width_gte?: InputMaybe<Scalars["Int"]>;
|
|
@@ -228,7 +228,7 @@ export type AnimationMetadata_Filter = {
|
|
|
228
228
|
export enum AnimationMetadata_OrderBy {
|
|
229
229
|
Height = "height",
|
|
230
230
|
Id = "id",
|
|
231
|
-
|
|
231
|
+
Type = "type",
|
|
232
232
|
Width = "width"
|
|
233
233
|
}
|
|
234
234
|
|
|
@@ -3758,7 +3758,6 @@ export type ProductV1Media = {
|
|
|
3758
3758
|
__typename?: "ProductV1Media";
|
|
3759
3759
|
height?: Maybe<Scalars["Int"]>;
|
|
3760
3760
|
id: Scalars["ID"];
|
|
3761
|
-
name?: Maybe<Scalars["String"]>;
|
|
3762
3761
|
tag?: Maybe<Scalars["String"]>;
|
|
3763
3762
|
type: ProductV1MediaType;
|
|
3764
3763
|
url: Scalars["String"];
|
|
@@ -3789,26 +3788,6 @@ export type ProductV1Media_Filter = {
|
|
|
3789
3788
|
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
3790
3789
|
id_not?: InputMaybe<Scalars["ID"]>;
|
|
3791
3790
|
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"]>;
|
|
3812
3791
|
tag?: InputMaybe<Scalars["String"]>;
|
|
3813
3792
|
tag_contains?: InputMaybe<Scalars["String"]>;
|
|
3814
3793
|
tag_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -3866,7 +3845,6 @@ export type ProductV1Media_Filter = {
|
|
|
3866
3845
|
export enum ProductV1Media_OrderBy {
|
|
3867
3846
|
Height = "height",
|
|
3868
3847
|
Id = "id",
|
|
3869
|
-
Name = "name",
|
|
3870
3848
|
Tag = "tag",
|
|
3871
3849
|
Type = "type",
|
|
3872
3850
|
Url = "url",
|
|
@@ -8666,7 +8644,6 @@ export type GetSellerByIdQueryQuery = {
|
|
|
8666
8644
|
type: ProductV1MediaType;
|
|
8667
8645
|
width?: number | null;
|
|
8668
8646
|
height?: number | null;
|
|
8669
|
-
name?: string | null;
|
|
8670
8647
|
}>;
|
|
8671
8648
|
visuals_videos?: Array<{
|
|
8672
8649
|
__typename?: "ProductV1Media";
|
|
@@ -8676,7 +8653,6 @@ export type GetSellerByIdQueryQuery = {
|
|
|
8676
8653
|
type: ProductV1MediaType;
|
|
8677
8654
|
width?: number | null;
|
|
8678
8655
|
height?: number | null;
|
|
8679
|
-
name?: string | null;
|
|
8680
8656
|
}> | null;
|
|
8681
8657
|
productV1Seller?: {
|
|
8682
8658
|
__typename?: "ProductV1Seller";
|
|
@@ -8695,7 +8671,6 @@ export type GetSellerByIdQueryQuery = {
|
|
|
8695
8671
|
type: ProductV1MediaType;
|
|
8696
8672
|
width?: number | null;
|
|
8697
8673
|
height?: number | null;
|
|
8698
|
-
name?: string | null;
|
|
8699
8674
|
}> | null;
|
|
8700
8675
|
contactLinks?: Array<{
|
|
8701
8676
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -8742,7 +8717,6 @@ export type GetSellerByIdQueryQuery = {
|
|
|
8742
8717
|
type: ProductV1MediaType;
|
|
8743
8718
|
width?: number | null;
|
|
8744
8719
|
height?: number | null;
|
|
8745
|
-
name?: string | null;
|
|
8746
8720
|
}> | null;
|
|
8747
8721
|
contactLinks?: Array<{
|
|
8748
8722
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -9186,7 +9160,6 @@ export type GetSellersQueryQuery = {
|
|
|
9186
9160
|
type: ProductV1MediaType;
|
|
9187
9161
|
width?: number | null;
|
|
9188
9162
|
height?: number | null;
|
|
9189
|
-
name?: string | null;
|
|
9190
9163
|
}>;
|
|
9191
9164
|
visuals_videos?: Array<{
|
|
9192
9165
|
__typename?: "ProductV1Media";
|
|
@@ -9196,7 +9169,6 @@ export type GetSellersQueryQuery = {
|
|
|
9196
9169
|
type: ProductV1MediaType;
|
|
9197
9170
|
width?: number | null;
|
|
9198
9171
|
height?: number | null;
|
|
9199
|
-
name?: string | null;
|
|
9200
9172
|
}> | null;
|
|
9201
9173
|
productV1Seller?: {
|
|
9202
9174
|
__typename?: "ProductV1Seller";
|
|
@@ -9215,7 +9187,6 @@ export type GetSellersQueryQuery = {
|
|
|
9215
9187
|
type: ProductV1MediaType;
|
|
9216
9188
|
width?: number | null;
|
|
9217
9189
|
height?: number | null;
|
|
9218
|
-
name?: string | null;
|
|
9219
9190
|
}> | null;
|
|
9220
9191
|
contactLinks?: Array<{
|
|
9221
9192
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -9262,7 +9233,6 @@ export type GetSellersQueryQuery = {
|
|
|
9262
9233
|
type: ProductV1MediaType;
|
|
9263
9234
|
width?: number | null;
|
|
9264
9235
|
height?: number | null;
|
|
9265
|
-
name?: string | null;
|
|
9266
9236
|
}> | null;
|
|
9267
9237
|
contactLinks?: Array<{
|
|
9268
9238
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -10014,7 +9984,6 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
10014
9984
|
type: ProductV1MediaType;
|
|
10015
9985
|
width?: number | null;
|
|
10016
9986
|
height?: number | null;
|
|
10017
|
-
name?: string | null;
|
|
10018
9987
|
}>;
|
|
10019
9988
|
visuals_videos?: Array<{
|
|
10020
9989
|
__typename?: "ProductV1Media";
|
|
@@ -10024,7 +9993,6 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
10024
9993
|
type: ProductV1MediaType;
|
|
10025
9994
|
width?: number | null;
|
|
10026
9995
|
height?: number | null;
|
|
10027
|
-
name?: string | null;
|
|
10028
9996
|
}> | null;
|
|
10029
9997
|
productV1Seller?: {
|
|
10030
9998
|
__typename?: "ProductV1Seller";
|
|
@@ -10043,7 +10011,6 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
10043
10011
|
type: ProductV1MediaType;
|
|
10044
10012
|
width?: number | null;
|
|
10045
10013
|
height?: number | null;
|
|
10046
|
-
name?: string | null;
|
|
10047
10014
|
}> | null;
|
|
10048
10015
|
contactLinks?: Array<{
|
|
10049
10016
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -10090,7 +10057,6 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
10090
10057
|
type: ProductV1MediaType;
|
|
10091
10058
|
width?: number | null;
|
|
10092
10059
|
height?: number | null;
|
|
10093
|
-
name?: string | null;
|
|
10094
10060
|
}> | null;
|
|
10095
10061
|
contactLinks?: Array<{
|
|
10096
10062
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -10469,7 +10435,6 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
10469
10435
|
type: ProductV1MediaType;
|
|
10470
10436
|
width?: number | null;
|
|
10471
10437
|
height?: number | null;
|
|
10472
|
-
name?: string | null;
|
|
10473
10438
|
}>;
|
|
10474
10439
|
visuals_videos?: Array<{
|
|
10475
10440
|
__typename?: "ProductV1Media";
|
|
@@ -10479,7 +10444,6 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
10479
10444
|
type: ProductV1MediaType;
|
|
10480
10445
|
width?: number | null;
|
|
10481
10446
|
height?: number | null;
|
|
10482
|
-
name?: string | null;
|
|
10483
10447
|
}> | null;
|
|
10484
10448
|
productV1Seller?: {
|
|
10485
10449
|
__typename?: "ProductV1Seller";
|
|
@@ -10498,7 +10462,6 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
10498
10462
|
type: ProductV1MediaType;
|
|
10499
10463
|
width?: number | null;
|
|
10500
10464
|
height?: number | null;
|
|
10501
|
-
name?: string | null;
|
|
10502
10465
|
}> | null;
|
|
10503
10466
|
contactLinks?: Array<{
|
|
10504
10467
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -10545,7 +10508,6 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
10545
10508
|
type: ProductV1MediaType;
|
|
10546
10509
|
width?: number | null;
|
|
10547
10510
|
height?: number | null;
|
|
10548
|
-
name?: string | null;
|
|
10549
10511
|
}> | null;
|
|
10550
10512
|
contactLinks?: Array<{
|
|
10551
10513
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -10916,7 +10878,6 @@ export type SellerFieldsFragment = {
|
|
|
10916
10878
|
type: ProductV1MediaType;
|
|
10917
10879
|
width?: number | null;
|
|
10918
10880
|
height?: number | null;
|
|
10919
|
-
name?: string | null;
|
|
10920
10881
|
}>;
|
|
10921
10882
|
visuals_videos?: Array<{
|
|
10922
10883
|
__typename?: "ProductV1Media";
|
|
@@ -10926,7 +10887,6 @@ export type SellerFieldsFragment = {
|
|
|
10926
10887
|
type: ProductV1MediaType;
|
|
10927
10888
|
width?: number | null;
|
|
10928
10889
|
height?: number | null;
|
|
10929
|
-
name?: string | null;
|
|
10930
10890
|
}> | null;
|
|
10931
10891
|
productV1Seller?: {
|
|
10932
10892
|
__typename?: "ProductV1Seller";
|
|
@@ -10945,7 +10905,6 @@ export type SellerFieldsFragment = {
|
|
|
10945
10905
|
type: ProductV1MediaType;
|
|
10946
10906
|
width?: number | null;
|
|
10947
10907
|
height?: number | null;
|
|
10948
|
-
name?: string | null;
|
|
10949
10908
|
}> | null;
|
|
10950
10909
|
contactLinks?: Array<{
|
|
10951
10910
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -10992,7 +10951,6 @@ export type SellerFieldsFragment = {
|
|
|
10992
10951
|
type: ProductV1MediaType;
|
|
10993
10952
|
width?: number | null;
|
|
10994
10953
|
height?: number | null;
|
|
10995
|
-
name?: string | null;
|
|
10996
10954
|
}> | null;
|
|
10997
10955
|
contactLinks?: Array<{
|
|
10998
10956
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -11551,7 +11509,6 @@ export type DisputeResolverFieldsFragment = {
|
|
|
11551
11509
|
type: ProductV1MediaType;
|
|
11552
11510
|
width?: number | null;
|
|
11553
11511
|
height?: number | null;
|
|
11554
|
-
name?: string | null;
|
|
11555
11512
|
}>;
|
|
11556
11513
|
visuals_videos?: Array<{
|
|
11557
11514
|
__typename?: "ProductV1Media";
|
|
@@ -11561,7 +11518,6 @@ export type DisputeResolverFieldsFragment = {
|
|
|
11561
11518
|
type: ProductV1MediaType;
|
|
11562
11519
|
width?: number | null;
|
|
11563
11520
|
height?: number | null;
|
|
11564
|
-
name?: string | null;
|
|
11565
11521
|
}> | null;
|
|
11566
11522
|
productV1Seller?: {
|
|
11567
11523
|
__typename?: "ProductV1Seller";
|
|
@@ -11580,7 +11536,6 @@ export type DisputeResolverFieldsFragment = {
|
|
|
11580
11536
|
type: ProductV1MediaType;
|
|
11581
11537
|
width?: number | null;
|
|
11582
11538
|
height?: number | null;
|
|
11583
|
-
name?: string | null;
|
|
11584
11539
|
}> | null;
|
|
11585
11540
|
contactLinks?: Array<{
|
|
11586
11541
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -11627,7 +11582,6 @@ export type DisputeResolverFieldsFragment = {
|
|
|
11627
11582
|
type: ProductV1MediaType;
|
|
11628
11583
|
width?: number | null;
|
|
11629
11584
|
height?: number | null;
|
|
11630
|
-
name?: string | null;
|
|
11631
11585
|
}> | null;
|
|
11632
11586
|
contactLinks?: Array<{
|
|
11633
11587
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12349,7 +12303,6 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
12349
12303
|
type: ProductV1MediaType;
|
|
12350
12304
|
width?: number | null;
|
|
12351
12305
|
height?: number | null;
|
|
12352
|
-
name?: string | null;
|
|
12353
12306
|
}>;
|
|
12354
12307
|
visuals_videos?: Array<{
|
|
12355
12308
|
__typename?: "ProductV1Media";
|
|
@@ -12359,7 +12312,6 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
12359
12312
|
type: ProductV1MediaType;
|
|
12360
12313
|
width?: number | null;
|
|
12361
12314
|
height?: number | null;
|
|
12362
|
-
name?: string | null;
|
|
12363
12315
|
}> | null;
|
|
12364
12316
|
productV1Seller?: {
|
|
12365
12317
|
__typename?: "ProductV1Seller";
|
|
@@ -12378,7 +12330,6 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
12378
12330
|
type: ProductV1MediaType;
|
|
12379
12331
|
width?: number | null;
|
|
12380
12332
|
height?: number | null;
|
|
12381
|
-
name?: string | null;
|
|
12382
12333
|
}> | null;
|
|
12383
12334
|
contactLinks?: Array<{
|
|
12384
12335
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12425,7 +12376,6 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
12425
12376
|
type: ProductV1MediaType;
|
|
12426
12377
|
width?: number | null;
|
|
12427
12378
|
height?: number | null;
|
|
12428
|
-
name?: string | null;
|
|
12429
12379
|
}> | null;
|
|
12430
12380
|
contactLinks?: Array<{
|
|
12431
12381
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12715,7 +12665,6 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
12715
12665
|
type: ProductV1MediaType;
|
|
12716
12666
|
width?: number | null;
|
|
12717
12667
|
height?: number | null;
|
|
12718
|
-
name?: string | null;
|
|
12719
12668
|
}>;
|
|
12720
12669
|
visuals_videos?: Array<{
|
|
12721
12670
|
__typename?: "ProductV1Media";
|
|
@@ -12725,7 +12674,6 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
12725
12674
|
type: ProductV1MediaType;
|
|
12726
12675
|
width?: number | null;
|
|
12727
12676
|
height?: number | null;
|
|
12728
|
-
name?: string | null;
|
|
12729
12677
|
}> | null;
|
|
12730
12678
|
productV1Seller?: {
|
|
12731
12679
|
__typename?: "ProductV1Seller";
|
|
@@ -12744,7 +12692,6 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
12744
12692
|
type: ProductV1MediaType;
|
|
12745
12693
|
width?: number | null;
|
|
12746
12694
|
height?: number | null;
|
|
12747
|
-
name?: string | null;
|
|
12748
12695
|
}> | null;
|
|
12749
12696
|
contactLinks?: Array<{
|
|
12750
12697
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12791,7 +12738,6 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
12791
12738
|
type: ProductV1MediaType;
|
|
12792
12739
|
width?: number | null;
|
|
12793
12740
|
height?: number | null;
|
|
12794
|
-
name?: string | null;
|
|
12795
12741
|
}> | null;
|
|
12796
12742
|
contactLinks?: Array<{
|
|
12797
12743
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -13055,7 +13001,6 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
13055
13001
|
type: ProductV1MediaType;
|
|
13056
13002
|
width?: number | null;
|
|
13057
13003
|
height?: number | null;
|
|
13058
|
-
name?: string | null;
|
|
13059
13004
|
}>;
|
|
13060
13005
|
visuals_videos?: Array<{
|
|
13061
13006
|
__typename?: "ProductV1Media";
|
|
@@ -13065,7 +13010,6 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
13065
13010
|
type: ProductV1MediaType;
|
|
13066
13011
|
width?: number | null;
|
|
13067
13012
|
height?: number | null;
|
|
13068
|
-
name?: string | null;
|
|
13069
13013
|
}> | null;
|
|
13070
13014
|
productV1Seller?: {
|
|
13071
13015
|
__typename?: "ProductV1Seller";
|
|
@@ -13084,7 +13028,6 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
13084
13028
|
type: ProductV1MediaType;
|
|
13085
13029
|
width?: number | null;
|
|
13086
13030
|
height?: number | null;
|
|
13087
|
-
name?: string | null;
|
|
13088
13031
|
}> | null;
|
|
13089
13032
|
contactLinks?: Array<{
|
|
13090
13033
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -13131,7 +13074,6 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
13131
13074
|
type: ProductV1MediaType;
|
|
13132
13075
|
width?: number | null;
|
|
13133
13076
|
height?: number | null;
|
|
13134
|
-
name?: string | null;
|
|
13135
13077
|
}> | null;
|
|
13136
13078
|
contactLinks?: Array<{
|
|
13137
13079
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -13582,7 +13524,6 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
13582
13524
|
type: ProductV1MediaType;
|
|
13583
13525
|
width?: number | null;
|
|
13584
13526
|
height?: number | null;
|
|
13585
|
-
name?: string | null;
|
|
13586
13527
|
}>;
|
|
13587
13528
|
visuals_videos?: Array<{
|
|
13588
13529
|
__typename?: "ProductV1Media";
|
|
@@ -13592,7 +13533,6 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
13592
13533
|
type: ProductV1MediaType;
|
|
13593
13534
|
width?: number | null;
|
|
13594
13535
|
height?: number | null;
|
|
13595
|
-
name?: string | null;
|
|
13596
13536
|
}> | null;
|
|
13597
13537
|
productV1Seller?: {
|
|
13598
13538
|
__typename?: "ProductV1Seller";
|
|
@@ -13611,7 +13551,6 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
13611
13551
|
type: ProductV1MediaType;
|
|
13612
13552
|
width?: number | null;
|
|
13613
13553
|
height?: number | null;
|
|
13614
|
-
name?: string | null;
|
|
13615
13554
|
}> | null;
|
|
13616
13555
|
contactLinks?: Array<{
|
|
13617
13556
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -13658,7 +13597,6 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
13658
13597
|
type: ProductV1MediaType;
|
|
13659
13598
|
width?: number | null;
|
|
13660
13599
|
height?: number | null;
|
|
13661
|
-
name?: string | null;
|
|
13662
13600
|
}> | null;
|
|
13663
13601
|
contactLinks?: Array<{
|
|
13664
13602
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -13972,7 +13910,6 @@ export type GetExchangesQueryQuery = {
|
|
|
13972
13910
|
type: ProductV1MediaType;
|
|
13973
13911
|
width?: number | null;
|
|
13974
13912
|
height?: number | null;
|
|
13975
|
-
name?: string | null;
|
|
13976
13913
|
}>;
|
|
13977
13914
|
visuals_videos?: Array<{
|
|
13978
13915
|
__typename?: "ProductV1Media";
|
|
@@ -13982,7 +13919,6 @@ export type GetExchangesQueryQuery = {
|
|
|
13982
13919
|
type: ProductV1MediaType;
|
|
13983
13920
|
width?: number | null;
|
|
13984
13921
|
height?: number | null;
|
|
13985
|
-
name?: string | null;
|
|
13986
13922
|
}> | null;
|
|
13987
13923
|
productV1Seller?: {
|
|
13988
13924
|
__typename?: "ProductV1Seller";
|
|
@@ -14001,7 +13937,6 @@ export type GetExchangesQueryQuery = {
|
|
|
14001
13937
|
type: ProductV1MediaType;
|
|
14002
13938
|
width?: number | null;
|
|
14003
13939
|
height?: number | null;
|
|
14004
|
-
name?: string | null;
|
|
14005
13940
|
}> | null;
|
|
14006
13941
|
contactLinks?: Array<{
|
|
14007
13942
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14048,7 +13983,6 @@ export type GetExchangesQueryQuery = {
|
|
|
14048
13983
|
type: ProductV1MediaType;
|
|
14049
13984
|
width?: number | null;
|
|
14050
13985
|
height?: number | null;
|
|
14051
|
-
name?: string | null;
|
|
14052
13986
|
}> | null;
|
|
14053
13987
|
contactLinks?: Array<{
|
|
14054
13988
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14348,7 +14282,6 @@ export type ExchangeFieldsFragment = {
|
|
|
14348
14282
|
type: ProductV1MediaType;
|
|
14349
14283
|
width?: number | null;
|
|
14350
14284
|
height?: number | null;
|
|
14351
|
-
name?: string | null;
|
|
14352
14285
|
}>;
|
|
14353
14286
|
visuals_videos?: Array<{
|
|
14354
14287
|
__typename?: "ProductV1Media";
|
|
@@ -14358,7 +14291,6 @@ export type ExchangeFieldsFragment = {
|
|
|
14358
14291
|
type: ProductV1MediaType;
|
|
14359
14292
|
width?: number | null;
|
|
14360
14293
|
height?: number | null;
|
|
14361
|
-
name?: string | null;
|
|
14362
14294
|
}> | null;
|
|
14363
14295
|
productV1Seller?: {
|
|
14364
14296
|
__typename?: "ProductV1Seller";
|
|
@@ -14377,7 +14309,6 @@ export type ExchangeFieldsFragment = {
|
|
|
14377
14309
|
type: ProductV1MediaType;
|
|
14378
14310
|
width?: number | null;
|
|
14379
14311
|
height?: number | null;
|
|
14380
|
-
name?: string | null;
|
|
14381
14312
|
}> | null;
|
|
14382
14313
|
contactLinks?: Array<{
|
|
14383
14314
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14424,7 +14355,6 @@ export type ExchangeFieldsFragment = {
|
|
|
14424
14355
|
type: ProductV1MediaType;
|
|
14425
14356
|
width?: number | null;
|
|
14426
14357
|
height?: number | null;
|
|
14427
|
-
name?: string | null;
|
|
14428
14358
|
}> | null;
|
|
14429
14359
|
contactLinks?: Array<{
|
|
14430
14360
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14871,7 +14801,6 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14871
14801
|
type: ProductV1MediaType;
|
|
14872
14802
|
width?: number | null;
|
|
14873
14803
|
height?: number | null;
|
|
14874
|
-
name?: string | null;
|
|
14875
14804
|
}>;
|
|
14876
14805
|
visuals_videos?: Array<{
|
|
14877
14806
|
__typename?: "ProductV1Media";
|
|
@@ -14881,7 +14810,6 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14881
14810
|
type: ProductV1MediaType;
|
|
14882
14811
|
width?: number | null;
|
|
14883
14812
|
height?: number | null;
|
|
14884
|
-
name?: string | null;
|
|
14885
14813
|
}> | null;
|
|
14886
14814
|
productV1Seller?: {
|
|
14887
14815
|
__typename?: "ProductV1Seller";
|
|
@@ -14900,7 +14828,6 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14900
14828
|
type: ProductV1MediaType;
|
|
14901
14829
|
width?: number | null;
|
|
14902
14830
|
height?: number | null;
|
|
14903
|
-
name?: string | null;
|
|
14904
14831
|
}> | null;
|
|
14905
14832
|
contactLinks?: Array<{
|
|
14906
14833
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14947,7 +14874,6 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14947
14874
|
type: ProductV1MediaType;
|
|
14948
14875
|
width?: number | null;
|
|
14949
14876
|
height?: number | null;
|
|
14950
|
-
name?: string | null;
|
|
14951
14877
|
}> | null;
|
|
14952
14878
|
contactLinks?: Array<{
|
|
14953
14879
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15259,7 +15185,6 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
15259
15185
|
type: ProductV1MediaType;
|
|
15260
15186
|
width?: number | null;
|
|
15261
15187
|
height?: number | null;
|
|
15262
|
-
name?: string | null;
|
|
15263
15188
|
}>;
|
|
15264
15189
|
visuals_videos?: Array<{
|
|
15265
15190
|
__typename?: "ProductV1Media";
|
|
@@ -15269,7 +15194,6 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
15269
15194
|
type: ProductV1MediaType;
|
|
15270
15195
|
width?: number | null;
|
|
15271
15196
|
height?: number | null;
|
|
15272
|
-
name?: string | null;
|
|
15273
15197
|
}> | null;
|
|
15274
15198
|
productV1Seller?: {
|
|
15275
15199
|
__typename?: "ProductV1Seller";
|
|
@@ -15288,7 +15212,6 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
15288
15212
|
type: ProductV1MediaType;
|
|
15289
15213
|
width?: number | null;
|
|
15290
15214
|
height?: number | null;
|
|
15291
|
-
name?: string | null;
|
|
15292
15215
|
}> | null;
|
|
15293
15216
|
contactLinks?: Array<{
|
|
15294
15217
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15335,7 +15258,6 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
15335
15258
|
type: ProductV1MediaType;
|
|
15336
15259
|
width?: number | null;
|
|
15337
15260
|
height?: number | null;
|
|
15338
|
-
name?: string | null;
|
|
15339
15261
|
}> | null;
|
|
15340
15262
|
contactLinks?: Array<{
|
|
15341
15263
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15633,7 +15555,6 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
15633
15555
|
type: ProductV1MediaType;
|
|
15634
15556
|
width?: number | null;
|
|
15635
15557
|
height?: number | null;
|
|
15636
|
-
name?: string | null;
|
|
15637
15558
|
}>;
|
|
15638
15559
|
visuals_videos?: Array<{
|
|
15639
15560
|
__typename?: "ProductV1Media";
|
|
@@ -15643,7 +15564,6 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
15643
15564
|
type: ProductV1MediaType;
|
|
15644
15565
|
width?: number | null;
|
|
15645
15566
|
height?: number | null;
|
|
15646
|
-
name?: string | null;
|
|
15647
15567
|
}> | null;
|
|
15648
15568
|
productV1Seller?: {
|
|
15649
15569
|
__typename?: "ProductV1Seller";
|
|
@@ -15662,7 +15582,6 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
15662
15582
|
type: ProductV1MediaType;
|
|
15663
15583
|
width?: number | null;
|
|
15664
15584
|
height?: number | null;
|
|
15665
|
-
name?: string | null;
|
|
15666
15585
|
}> | null;
|
|
15667
15586
|
contactLinks?: Array<{
|
|
15668
15587
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15709,7 +15628,6 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
15709
15628
|
type: ProductV1MediaType;
|
|
15710
15629
|
width?: number | null;
|
|
15711
15630
|
height?: number | null;
|
|
15712
|
-
name?: string | null;
|
|
15713
15631
|
}> | null;
|
|
15714
15632
|
contactLinks?: Array<{
|
|
15715
15633
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16006,7 +15924,6 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
16006
15924
|
type: ProductV1MediaType;
|
|
16007
15925
|
width?: number | null;
|
|
16008
15926
|
height?: number | null;
|
|
16009
|
-
name?: string | null;
|
|
16010
15927
|
}>;
|
|
16011
15928
|
visuals_videos?: Array<{
|
|
16012
15929
|
__typename?: "ProductV1Media";
|
|
@@ -16016,7 +15933,6 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
16016
15933
|
type: ProductV1MediaType;
|
|
16017
15934
|
width?: number | null;
|
|
16018
15935
|
height?: number | null;
|
|
16019
|
-
name?: string | null;
|
|
16020
15936
|
}> | null;
|
|
16021
15937
|
productV1Seller?: {
|
|
16022
15938
|
__typename?: "ProductV1Seller";
|
|
@@ -16035,7 +15951,6 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
16035
15951
|
type: ProductV1MediaType;
|
|
16036
15952
|
width?: number | null;
|
|
16037
15953
|
height?: number | null;
|
|
16038
|
-
name?: string | null;
|
|
16039
15954
|
}> | null;
|
|
16040
15955
|
contactLinks?: Array<{
|
|
16041
15956
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16082,7 +15997,6 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
16082
15997
|
type: ProductV1MediaType;
|
|
16083
15998
|
width?: number | null;
|
|
16084
15999
|
height?: number | null;
|
|
16085
|
-
name?: string | null;
|
|
16086
16000
|
}> | null;
|
|
16087
16001
|
contactLinks?: Array<{
|
|
16088
16002
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16252,7 +16166,6 @@ export type GetProductV1ProductsQueryQuery = {
|
|
|
16252
16166
|
type: ProductV1MediaType;
|
|
16253
16167
|
width?: number | null;
|
|
16254
16168
|
height?: number | null;
|
|
16255
|
-
name?: string | null;
|
|
16256
16169
|
}>;
|
|
16257
16170
|
visuals_videos?: Array<{
|
|
16258
16171
|
__typename?: "ProductV1Media";
|
|
@@ -16262,7 +16175,6 @@ export type GetProductV1ProductsQueryQuery = {
|
|
|
16262
16175
|
type: ProductV1MediaType;
|
|
16263
16176
|
width?: number | null;
|
|
16264
16177
|
height?: number | null;
|
|
16265
|
-
name?: string | null;
|
|
16266
16178
|
}> | null;
|
|
16267
16179
|
productV1Seller?: {
|
|
16268
16180
|
__typename?: "ProductV1Seller";
|
|
@@ -16281,7 +16193,6 @@ export type GetProductV1ProductsQueryQuery = {
|
|
|
16281
16193
|
type: ProductV1MediaType;
|
|
16282
16194
|
width?: number | null;
|
|
16283
16195
|
height?: number | null;
|
|
16284
|
-
name?: string | null;
|
|
16285
16196
|
}> | null;
|
|
16286
16197
|
contactLinks?: Array<{
|
|
16287
16198
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16606,7 +16517,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16606
16517
|
type: ProductV1MediaType;
|
|
16607
16518
|
width?: number | null;
|
|
16608
16519
|
height?: number | null;
|
|
16609
|
-
name?: string | null;
|
|
16610
16520
|
}>;
|
|
16611
16521
|
visuals_videos?: Array<{
|
|
16612
16522
|
__typename?: "ProductV1Media";
|
|
@@ -16616,7 +16526,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16616
16526
|
type: ProductV1MediaType;
|
|
16617
16527
|
width?: number | null;
|
|
16618
16528
|
height?: number | null;
|
|
16619
|
-
name?: string | null;
|
|
16620
16529
|
}> | null;
|
|
16621
16530
|
productV1Seller?: {
|
|
16622
16531
|
__typename?: "ProductV1Seller";
|
|
@@ -16635,7 +16544,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16635
16544
|
type: ProductV1MediaType;
|
|
16636
16545
|
width?: number | null;
|
|
16637
16546
|
height?: number | null;
|
|
16638
|
-
name?: string | null;
|
|
16639
16547
|
}> | null;
|
|
16640
16548
|
contactLinks?: Array<{
|
|
16641
16549
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16682,7 +16590,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16682
16590
|
type: ProductV1MediaType;
|
|
16683
16591
|
width?: number | null;
|
|
16684
16592
|
height?: number | null;
|
|
16685
|
-
name?: string | null;
|
|
16686
16593
|
}> | null;
|
|
16687
16594
|
contactLinks?: Array<{
|
|
16688
16595
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16778,7 +16685,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16778
16685
|
type: ProductV1MediaType;
|
|
16779
16686
|
width?: number | null;
|
|
16780
16687
|
height?: number | null;
|
|
16781
|
-
name?: string | null;
|
|
16782
16688
|
}>;
|
|
16783
16689
|
visuals_videos?: Array<{
|
|
16784
16690
|
__typename?: "ProductV1Media";
|
|
@@ -16788,7 +16694,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16788
16694
|
type: ProductV1MediaType;
|
|
16789
16695
|
width?: number | null;
|
|
16790
16696
|
height?: number | null;
|
|
16791
|
-
name?: string | null;
|
|
16792
16697
|
}> | null;
|
|
16793
16698
|
productV1Seller?: {
|
|
16794
16699
|
__typename?: "ProductV1Seller";
|
|
@@ -16807,7 +16712,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16807
16712
|
type: ProductV1MediaType;
|
|
16808
16713
|
width?: number | null;
|
|
16809
16714
|
height?: number | null;
|
|
16810
|
-
name?: string | null;
|
|
16811
16715
|
}> | null;
|
|
16812
16716
|
contactLinks?: Array<{
|
|
16813
16717
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17132,7 +17036,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
17132
17036
|
type: ProductV1MediaType;
|
|
17133
17037
|
width?: number | null;
|
|
17134
17038
|
height?: number | null;
|
|
17135
|
-
name?: string | null;
|
|
17136
17039
|
}>;
|
|
17137
17040
|
visuals_videos?: Array<{
|
|
17138
17041
|
__typename?: "ProductV1Media";
|
|
@@ -17142,7 +17045,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
17142
17045
|
type: ProductV1MediaType;
|
|
17143
17046
|
width?: number | null;
|
|
17144
17047
|
height?: number | null;
|
|
17145
|
-
name?: string | null;
|
|
17146
17048
|
}> | null;
|
|
17147
17049
|
productV1Seller?: {
|
|
17148
17050
|
__typename?: "ProductV1Seller";
|
|
@@ -17161,7 +17063,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
17161
17063
|
type: ProductV1MediaType;
|
|
17162
17064
|
width?: number | null;
|
|
17163
17065
|
height?: number | null;
|
|
17164
|
-
name?: string | null;
|
|
17165
17066
|
}> | null;
|
|
17166
17067
|
contactLinks?: Array<{
|
|
17167
17068
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17208,7 +17109,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
17208
17109
|
type: ProductV1MediaType;
|
|
17209
17110
|
width?: number | null;
|
|
17210
17111
|
height?: number | null;
|
|
17211
|
-
name?: string | null;
|
|
17212
17112
|
}> | null;
|
|
17213
17113
|
contactLinks?: Array<{
|
|
17214
17114
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17304,7 +17204,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
17304
17204
|
type: ProductV1MediaType;
|
|
17305
17205
|
width?: number | null;
|
|
17306
17206
|
height?: number | null;
|
|
17307
|
-
name?: string | null;
|
|
17308
17207
|
}>;
|
|
17309
17208
|
visuals_videos?: Array<{
|
|
17310
17209
|
__typename?: "ProductV1Media";
|
|
@@ -17314,7 +17213,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
17314
17213
|
type: ProductV1MediaType;
|
|
17315
17214
|
width?: number | null;
|
|
17316
17215
|
height?: number | null;
|
|
17317
|
-
name?: string | null;
|
|
17318
17216
|
}> | null;
|
|
17319
17217
|
productV1Seller?: {
|
|
17320
17218
|
__typename?: "ProductV1Seller";
|
|
@@ -17333,7 +17231,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
17333
17231
|
type: ProductV1MediaType;
|
|
17334
17232
|
width?: number | null;
|
|
17335
17233
|
height?: number | null;
|
|
17336
|
-
name?: string | null;
|
|
17337
17234
|
}> | null;
|
|
17338
17235
|
contactLinks?: Array<{
|
|
17339
17236
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17412,7 +17309,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17412
17309
|
id: string;
|
|
17413
17310
|
width?: number | null;
|
|
17414
17311
|
height?: number | null;
|
|
17415
|
-
|
|
17312
|
+
type?: string | null;
|
|
17416
17313
|
} | null;
|
|
17417
17314
|
attributes?: Array<{
|
|
17418
17315
|
__typename?: "MetadataAttribute";
|
|
@@ -17672,7 +17569,6 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17672
17569
|
type: ProductV1MediaType;
|
|
17673
17570
|
width?: number | null;
|
|
17674
17571
|
height?: number | null;
|
|
17675
|
-
name?: string | null;
|
|
17676
17572
|
}>;
|
|
17677
17573
|
visuals_videos?: Array<{
|
|
17678
17574
|
__typename?: "ProductV1Media";
|
|
@@ -17682,7 +17578,6 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17682
17578
|
type: ProductV1MediaType;
|
|
17683
17579
|
width?: number | null;
|
|
17684
17580
|
height?: number | null;
|
|
17685
|
-
name?: string | null;
|
|
17686
17581
|
}> | null;
|
|
17687
17582
|
productV1Seller?: {
|
|
17688
17583
|
__typename?: "ProductV1Seller";
|
|
@@ -17701,7 +17596,6 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17701
17596
|
type: ProductV1MediaType;
|
|
17702
17597
|
width?: number | null;
|
|
17703
17598
|
height?: number | null;
|
|
17704
|
-
name?: string | null;
|
|
17705
17599
|
}> | null;
|
|
17706
17600
|
contactLinks?: Array<{
|
|
17707
17601
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17748,7 +17642,6 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17748
17642
|
type: ProductV1MediaType;
|
|
17749
17643
|
width?: number | null;
|
|
17750
17644
|
height?: number | null;
|
|
17751
|
-
name?: string | null;
|
|
17752
17645
|
}> | null;
|
|
17753
17646
|
contactLinks?: Array<{
|
|
17754
17647
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17889,7 +17782,6 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17889
17782
|
type: ProductV1MediaType;
|
|
17890
17783
|
width?: number | null;
|
|
17891
17784
|
height?: number | null;
|
|
17892
|
-
name?: string | null;
|
|
17893
17785
|
}>;
|
|
17894
17786
|
visuals_videos?: Array<{
|
|
17895
17787
|
__typename?: "ProductV1Media";
|
|
@@ -17899,7 +17791,6 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17899
17791
|
type: ProductV1MediaType;
|
|
17900
17792
|
width?: number | null;
|
|
17901
17793
|
height?: number | null;
|
|
17902
|
-
name?: string | null;
|
|
17903
17794
|
}> | null;
|
|
17904
17795
|
productV1Seller?: {
|
|
17905
17796
|
__typename?: "ProductV1Seller";
|
|
@@ -17918,7 +17809,6 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17918
17809
|
type: ProductV1MediaType;
|
|
17919
17810
|
width?: number | null;
|
|
17920
17811
|
height?: number | null;
|
|
17921
|
-
name?: string | null;
|
|
17922
17812
|
}> | null;
|
|
17923
17813
|
contactLinks?: Array<{
|
|
17924
17814
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17965,7 +17855,6 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17965
17855
|
type: ProductV1MediaType;
|
|
17966
17856
|
width?: number | null;
|
|
17967
17857
|
height?: number | null;
|
|
17968
|
-
name?: string | null;
|
|
17969
17858
|
}> | null;
|
|
17970
17859
|
contactLinks?: Array<{
|
|
17971
17860
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18036,7 +17925,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18036
17925
|
id: string;
|
|
18037
17926
|
width?: number | null;
|
|
18038
17927
|
height?: number | null;
|
|
18039
|
-
|
|
17928
|
+
type?: string | null;
|
|
18040
17929
|
} | null;
|
|
18041
17930
|
attributes?: Array<{
|
|
18042
17931
|
__typename?: "MetadataAttribute";
|
|
@@ -18296,7 +18185,6 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18296
18185
|
type: ProductV1MediaType;
|
|
18297
18186
|
width?: number | null;
|
|
18298
18187
|
height?: number | null;
|
|
18299
|
-
name?: string | null;
|
|
18300
18188
|
}>;
|
|
18301
18189
|
visuals_videos?: Array<{
|
|
18302
18190
|
__typename?: "ProductV1Media";
|
|
@@ -18306,7 +18194,6 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18306
18194
|
type: ProductV1MediaType;
|
|
18307
18195
|
width?: number | null;
|
|
18308
18196
|
height?: number | null;
|
|
18309
|
-
name?: string | null;
|
|
18310
18197
|
}> | null;
|
|
18311
18198
|
productV1Seller?: {
|
|
18312
18199
|
__typename?: "ProductV1Seller";
|
|
@@ -18325,7 +18212,6 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18325
18212
|
type: ProductV1MediaType;
|
|
18326
18213
|
width?: number | null;
|
|
18327
18214
|
height?: number | null;
|
|
18328
|
-
name?: string | null;
|
|
18329
18215
|
}> | null;
|
|
18330
18216
|
contactLinks?: Array<{
|
|
18331
18217
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18372,7 +18258,6 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18372
18258
|
type: ProductV1MediaType;
|
|
18373
18259
|
width?: number | null;
|
|
18374
18260
|
height?: number | null;
|
|
18375
|
-
name?: string | null;
|
|
18376
18261
|
}> | null;
|
|
18377
18262
|
contactLinks?: Array<{
|
|
18378
18263
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18513,7 +18398,6 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18513
18398
|
type: ProductV1MediaType;
|
|
18514
18399
|
width?: number | null;
|
|
18515
18400
|
height?: number | null;
|
|
18516
|
-
name?: string | null;
|
|
18517
18401
|
}>;
|
|
18518
18402
|
visuals_videos?: Array<{
|
|
18519
18403
|
__typename?: "ProductV1Media";
|
|
@@ -18523,7 +18407,6 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18523
18407
|
type: ProductV1MediaType;
|
|
18524
18408
|
width?: number | null;
|
|
18525
18409
|
height?: number | null;
|
|
18526
|
-
name?: string | null;
|
|
18527
18410
|
}> | null;
|
|
18528
18411
|
productV1Seller?: {
|
|
18529
18412
|
__typename?: "ProductV1Seller";
|
|
@@ -18542,7 +18425,6 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18542
18425
|
type: ProductV1MediaType;
|
|
18543
18426
|
width?: number | null;
|
|
18544
18427
|
height?: number | null;
|
|
18545
|
-
name?: string | null;
|
|
18546
18428
|
}> | null;
|
|
18547
18429
|
contactLinks?: Array<{
|
|
18548
18430
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18589,7 +18471,6 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18589
18471
|
type: ProductV1MediaType;
|
|
18590
18472
|
width?: number | null;
|
|
18591
18473
|
height?: number | null;
|
|
18592
|
-
name?: string | null;
|
|
18593
18474
|
}> | null;
|
|
18594
18475
|
contactLinks?: Array<{
|
|
18595
18476
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18650,7 +18531,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18650
18531
|
id: string;
|
|
18651
18532
|
width?: number | null;
|
|
18652
18533
|
height?: number | null;
|
|
18653
|
-
|
|
18534
|
+
type?: string | null;
|
|
18654
18535
|
} | null;
|
|
18655
18536
|
attributes?: Array<{
|
|
18656
18537
|
__typename?: "MetadataAttribute";
|
|
@@ -18906,7 +18787,6 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18906
18787
|
type: ProductV1MediaType;
|
|
18907
18788
|
width?: number | null;
|
|
18908
18789
|
height?: number | null;
|
|
18909
|
-
name?: string | null;
|
|
18910
18790
|
}>;
|
|
18911
18791
|
visuals_videos?: Array<{
|
|
18912
18792
|
__typename?: "ProductV1Media";
|
|
@@ -18916,7 +18796,6 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18916
18796
|
type: ProductV1MediaType;
|
|
18917
18797
|
width?: number | null;
|
|
18918
18798
|
height?: number | null;
|
|
18919
|
-
name?: string | null;
|
|
18920
18799
|
}> | null;
|
|
18921
18800
|
productV1Seller?: {
|
|
18922
18801
|
__typename?: "ProductV1Seller";
|
|
@@ -18935,7 +18814,6 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18935
18814
|
type: ProductV1MediaType;
|
|
18936
18815
|
width?: number | null;
|
|
18937
18816
|
height?: number | null;
|
|
18938
|
-
name?: string | null;
|
|
18939
18817
|
}> | null;
|
|
18940
18818
|
contactLinks?: Array<{
|
|
18941
18819
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18982,7 +18860,6 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18982
18860
|
type: ProductV1MediaType;
|
|
18983
18861
|
width?: number | null;
|
|
18984
18862
|
height?: number | null;
|
|
18985
|
-
name?: string | null;
|
|
18986
18863
|
}> | null;
|
|
18987
18864
|
contactLinks?: Array<{
|
|
18988
18865
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19123,7 +19000,6 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
19123
19000
|
type: ProductV1MediaType;
|
|
19124
19001
|
width?: number | null;
|
|
19125
19002
|
height?: number | null;
|
|
19126
|
-
name?: string | null;
|
|
19127
19003
|
}>;
|
|
19128
19004
|
visuals_videos?: Array<{
|
|
19129
19005
|
__typename?: "ProductV1Media";
|
|
@@ -19133,7 +19009,6 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
19133
19009
|
type: ProductV1MediaType;
|
|
19134
19010
|
width?: number | null;
|
|
19135
19011
|
height?: number | null;
|
|
19136
|
-
name?: string | null;
|
|
19137
19012
|
}> | null;
|
|
19138
19013
|
productV1Seller?: {
|
|
19139
19014
|
__typename?: "ProductV1Seller";
|
|
@@ -19152,7 +19027,6 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
19152
19027
|
type: ProductV1MediaType;
|
|
19153
19028
|
width?: number | null;
|
|
19154
19029
|
height?: number | null;
|
|
19155
|
-
name?: string | null;
|
|
19156
19030
|
}> | null;
|
|
19157
19031
|
contactLinks?: Array<{
|
|
19158
19032
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19199,7 +19073,6 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
19199
19073
|
type: ProductV1MediaType;
|
|
19200
19074
|
width?: number | null;
|
|
19201
19075
|
height?: number | null;
|
|
19202
|
-
name?: string | null;
|
|
19203
19076
|
}> | null;
|
|
19204
19077
|
contactLinks?: Array<{
|
|
19205
19078
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19259,7 +19132,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19259
19132
|
id: string;
|
|
19260
19133
|
width?: number | null;
|
|
19261
19134
|
height?: number | null;
|
|
19262
|
-
|
|
19135
|
+
type?: string | null;
|
|
19263
19136
|
} | null;
|
|
19264
19137
|
attributes?: Array<{
|
|
19265
19138
|
__typename?: "MetadataAttribute";
|
|
@@ -19515,7 +19388,6 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19515
19388
|
type: ProductV1MediaType;
|
|
19516
19389
|
width?: number | null;
|
|
19517
19390
|
height?: number | null;
|
|
19518
|
-
name?: string | null;
|
|
19519
19391
|
}>;
|
|
19520
19392
|
visuals_videos?: Array<{
|
|
19521
19393
|
__typename?: "ProductV1Media";
|
|
@@ -19525,7 +19397,6 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19525
19397
|
type: ProductV1MediaType;
|
|
19526
19398
|
width?: number | null;
|
|
19527
19399
|
height?: number | null;
|
|
19528
|
-
name?: string | null;
|
|
19529
19400
|
}> | null;
|
|
19530
19401
|
productV1Seller?: {
|
|
19531
19402
|
__typename?: "ProductV1Seller";
|
|
@@ -19544,7 +19415,6 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19544
19415
|
type: ProductV1MediaType;
|
|
19545
19416
|
width?: number | null;
|
|
19546
19417
|
height?: number | null;
|
|
19547
|
-
name?: string | null;
|
|
19548
19418
|
}> | null;
|
|
19549
19419
|
contactLinks?: Array<{
|
|
19550
19420
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19591,7 +19461,6 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19591
19461
|
type: ProductV1MediaType;
|
|
19592
19462
|
width?: number | null;
|
|
19593
19463
|
height?: number | null;
|
|
19594
|
-
name?: string | null;
|
|
19595
19464
|
}> | null;
|
|
19596
19465
|
contactLinks?: Array<{
|
|
19597
19466
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19732,7 +19601,6 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19732
19601
|
type: ProductV1MediaType;
|
|
19733
19602
|
width?: number | null;
|
|
19734
19603
|
height?: number | null;
|
|
19735
|
-
name?: string | null;
|
|
19736
19604
|
}>;
|
|
19737
19605
|
visuals_videos?: Array<{
|
|
19738
19606
|
__typename?: "ProductV1Media";
|
|
@@ -19742,7 +19610,6 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19742
19610
|
type: ProductV1MediaType;
|
|
19743
19611
|
width?: number | null;
|
|
19744
19612
|
height?: number | null;
|
|
19745
|
-
name?: string | null;
|
|
19746
19613
|
}> | null;
|
|
19747
19614
|
productV1Seller?: {
|
|
19748
19615
|
__typename?: "ProductV1Seller";
|
|
@@ -19761,7 +19628,6 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19761
19628
|
type: ProductV1MediaType;
|
|
19762
19629
|
width?: number | null;
|
|
19763
19630
|
height?: number | null;
|
|
19764
|
-
name?: string | null;
|
|
19765
19631
|
}> | null;
|
|
19766
19632
|
contactLinks?: Array<{
|
|
19767
19633
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19808,7 +19674,6 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19808
19674
|
type: ProductV1MediaType;
|
|
19809
19675
|
width?: number | null;
|
|
19810
19676
|
height?: number | null;
|
|
19811
|
-
name?: string | null;
|
|
19812
19677
|
}> | null;
|
|
19813
19678
|
contactLinks?: Array<{
|
|
19814
19679
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19848,7 +19713,7 @@ export type BaseAnimationMetadataFieldsFragment = {
|
|
|
19848
19713
|
id: string;
|
|
19849
19714
|
width?: number | null;
|
|
19850
19715
|
height?: number | null;
|
|
19851
|
-
|
|
19716
|
+
type?: string | null;
|
|
19852
19717
|
};
|
|
19853
19718
|
|
|
19854
19719
|
export type BaseProductV1ProductFieldsFragment = {
|
|
@@ -19920,7 +19785,6 @@ export type BaseProductV1ProductFieldsFragment = {
|
|
|
19920
19785
|
type: ProductV1MediaType;
|
|
19921
19786
|
width?: number | null;
|
|
19922
19787
|
height?: number | null;
|
|
19923
|
-
name?: string | null;
|
|
19924
19788
|
}>;
|
|
19925
19789
|
visuals_videos?: Array<{
|
|
19926
19790
|
__typename?: "ProductV1Media";
|
|
@@ -19930,7 +19794,6 @@ export type BaseProductV1ProductFieldsFragment = {
|
|
|
19930
19794
|
type: ProductV1MediaType;
|
|
19931
19795
|
width?: number | null;
|
|
19932
19796
|
height?: number | null;
|
|
19933
|
-
name?: string | null;
|
|
19934
19797
|
}> | null;
|
|
19935
19798
|
productV1Seller?: {
|
|
19936
19799
|
__typename?: "ProductV1Seller";
|
|
@@ -19949,7 +19812,6 @@ export type BaseProductV1ProductFieldsFragment = {
|
|
|
19949
19812
|
type: ProductV1MediaType;
|
|
19950
19813
|
width?: number | null;
|
|
19951
19814
|
height?: number | null;
|
|
19952
|
-
name?: string | null;
|
|
19953
19815
|
}> | null;
|
|
19954
19816
|
contactLinks?: Array<{
|
|
19955
19817
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20263,7 +20125,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
20263
20125
|
type: ProductV1MediaType;
|
|
20264
20126
|
width?: number | null;
|
|
20265
20127
|
height?: number | null;
|
|
20266
|
-
name?: string | null;
|
|
20267
20128
|
}>;
|
|
20268
20129
|
visuals_videos?: Array<{
|
|
20269
20130
|
__typename?: "ProductV1Media";
|
|
@@ -20273,7 +20134,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
20273
20134
|
type: ProductV1MediaType;
|
|
20274
20135
|
width?: number | null;
|
|
20275
20136
|
height?: number | null;
|
|
20276
|
-
name?: string | null;
|
|
20277
20137
|
}> | null;
|
|
20278
20138
|
productV1Seller?: {
|
|
20279
20139
|
__typename?: "ProductV1Seller";
|
|
@@ -20292,7 +20152,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
20292
20152
|
type: ProductV1MediaType;
|
|
20293
20153
|
width?: number | null;
|
|
20294
20154
|
height?: number | null;
|
|
20295
|
-
name?: string | null;
|
|
20296
20155
|
}> | null;
|
|
20297
20156
|
contactLinks?: Array<{
|
|
20298
20157
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20339,7 +20198,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
20339
20198
|
type: ProductV1MediaType;
|
|
20340
20199
|
width?: number | null;
|
|
20341
20200
|
height?: number | null;
|
|
20342
|
-
name?: string | null;
|
|
20343
20201
|
}> | null;
|
|
20344
20202
|
contactLinks?: Array<{
|
|
20345
20203
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20435,7 +20293,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
20435
20293
|
type: ProductV1MediaType;
|
|
20436
20294
|
width?: number | null;
|
|
20437
20295
|
height?: number | null;
|
|
20438
|
-
name?: string | null;
|
|
20439
20296
|
}>;
|
|
20440
20297
|
visuals_videos?: Array<{
|
|
20441
20298
|
__typename?: "ProductV1Media";
|
|
@@ -20445,7 +20302,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
20445
20302
|
type: ProductV1MediaType;
|
|
20446
20303
|
width?: number | null;
|
|
20447
20304
|
height?: number | null;
|
|
20448
|
-
name?: string | null;
|
|
20449
20305
|
}> | null;
|
|
20450
20306
|
productV1Seller?: {
|
|
20451
20307
|
__typename?: "ProductV1Seller";
|
|
@@ -20464,7 +20320,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
20464
20320
|
type: ProductV1MediaType;
|
|
20465
20321
|
width?: number | null;
|
|
20466
20322
|
height?: number | null;
|
|
20467
|
-
name?: string | null;
|
|
20468
20323
|
}> | null;
|
|
20469
20324
|
contactLinks?: Array<{
|
|
20470
20325
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20778,7 +20633,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20778
20633
|
type: ProductV1MediaType;
|
|
20779
20634
|
width?: number | null;
|
|
20780
20635
|
height?: number | null;
|
|
20781
|
-
name?: string | null;
|
|
20782
20636
|
}>;
|
|
20783
20637
|
visuals_videos?: Array<{
|
|
20784
20638
|
__typename?: "ProductV1Media";
|
|
@@ -20788,7 +20642,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20788
20642
|
type: ProductV1MediaType;
|
|
20789
20643
|
width?: number | null;
|
|
20790
20644
|
height?: number | null;
|
|
20791
|
-
name?: string | null;
|
|
20792
20645
|
}> | null;
|
|
20793
20646
|
productV1Seller?: {
|
|
20794
20647
|
__typename?: "ProductV1Seller";
|
|
@@ -20807,7 +20660,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20807
20660
|
type: ProductV1MediaType;
|
|
20808
20661
|
width?: number | null;
|
|
20809
20662
|
height?: number | null;
|
|
20810
|
-
name?: string | null;
|
|
20811
20663
|
}> | null;
|
|
20812
20664
|
contactLinks?: Array<{
|
|
20813
20665
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20854,7 +20706,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20854
20706
|
type: ProductV1MediaType;
|
|
20855
20707
|
width?: number | null;
|
|
20856
20708
|
height?: number | null;
|
|
20857
|
-
name?: string | null;
|
|
20858
20709
|
}> | null;
|
|
20859
20710
|
contactLinks?: Array<{
|
|
20860
20711
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20950,7 +20801,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20950
20801
|
type: ProductV1MediaType;
|
|
20951
20802
|
width?: number | null;
|
|
20952
20803
|
height?: number | null;
|
|
20953
|
-
name?: string | null;
|
|
20954
20804
|
}>;
|
|
20955
20805
|
visuals_videos?: Array<{
|
|
20956
20806
|
__typename?: "ProductV1Media";
|
|
@@ -20960,7 +20810,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20960
20810
|
type: ProductV1MediaType;
|
|
20961
20811
|
width?: number | null;
|
|
20962
20812
|
height?: number | null;
|
|
20963
|
-
name?: string | null;
|
|
20964
20813
|
}> | null;
|
|
20965
20814
|
productV1Seller?: {
|
|
20966
20815
|
__typename?: "ProductV1Seller";
|
|
@@ -20979,7 +20828,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20979
20828
|
type: ProductV1MediaType;
|
|
20980
20829
|
width?: number | null;
|
|
20981
20830
|
height?: number | null;
|
|
20982
|
-
name?: string | null;
|
|
20983
20831
|
}> | null;
|
|
20984
20832
|
contactLinks?: Array<{
|
|
20985
20833
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21036,7 +20884,6 @@ export type BaseProductV1MediaFieldsFragment = {
|
|
|
21036
20884
|
type: ProductV1MediaType;
|
|
21037
20885
|
width?: number | null;
|
|
21038
20886
|
height?: number | null;
|
|
21039
|
-
name?: string | null;
|
|
21040
20887
|
};
|
|
21041
20888
|
|
|
21042
20889
|
export type BaseProductV1PersonalisationFieldsFragment = {
|
|
@@ -21069,7 +20916,6 @@ export type BaseProductV1SellerFieldsFragment = {
|
|
|
21069
20916
|
type: ProductV1MediaType;
|
|
21070
20917
|
width?: number | null;
|
|
21071
20918
|
height?: number | null;
|
|
21072
|
-
name?: string | null;
|
|
21073
20919
|
}> | null;
|
|
21074
20920
|
contactLinks?: Array<{
|
|
21075
20921
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21163,7 +21009,6 @@ export type BaseProductV1ProductOverridesFieldsFragment = {
|
|
|
21163
21009
|
type: ProductV1MediaType;
|
|
21164
21010
|
width?: number | null;
|
|
21165
21011
|
height?: number | null;
|
|
21166
|
-
name?: string | null;
|
|
21167
21012
|
}>;
|
|
21168
21013
|
visuals_videos?: Array<{
|
|
21169
21014
|
__typename?: "ProductV1Media";
|
|
@@ -21173,7 +21018,6 @@ export type BaseProductV1ProductOverridesFieldsFragment = {
|
|
|
21173
21018
|
type: ProductV1MediaType;
|
|
21174
21019
|
width?: number | null;
|
|
21175
21020
|
height?: number | null;
|
|
21176
|
-
name?: string | null;
|
|
21177
21021
|
}> | null;
|
|
21178
21022
|
};
|
|
21179
21023
|
|
|
@@ -21437,7 +21281,6 @@ export type GetOfferByIdQueryQuery = {
|
|
|
21437
21281
|
type: ProductV1MediaType;
|
|
21438
21282
|
width?: number | null;
|
|
21439
21283
|
height?: number | null;
|
|
21440
|
-
name?: string | null;
|
|
21441
21284
|
}>;
|
|
21442
21285
|
visuals_videos?: Array<{
|
|
21443
21286
|
__typename?: "ProductV1Media";
|
|
@@ -21447,7 +21290,6 @@ export type GetOfferByIdQueryQuery = {
|
|
|
21447
21290
|
type: ProductV1MediaType;
|
|
21448
21291
|
width?: number | null;
|
|
21449
21292
|
height?: number | null;
|
|
21450
|
-
name?: string | null;
|
|
21451
21293
|
}> | null;
|
|
21452
21294
|
productV1Seller?: {
|
|
21453
21295
|
__typename?: "ProductV1Seller";
|
|
@@ -21466,7 +21308,6 @@ export type GetOfferByIdQueryQuery = {
|
|
|
21466
21308
|
type: ProductV1MediaType;
|
|
21467
21309
|
width?: number | null;
|
|
21468
21310
|
height?: number | null;
|
|
21469
|
-
name?: string | null;
|
|
21470
21311
|
}> | null;
|
|
21471
21312
|
contactLinks?: Array<{
|
|
21472
21313
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21513,7 +21354,6 @@ export type GetOfferByIdQueryQuery = {
|
|
|
21513
21354
|
type: ProductV1MediaType;
|
|
21514
21355
|
width?: number | null;
|
|
21515
21356
|
height?: number | null;
|
|
21516
|
-
name?: string | null;
|
|
21517
21357
|
}> | null;
|
|
21518
21358
|
contactLinks?: Array<{
|
|
21519
21359
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21829,7 +21669,6 @@ export type GetOffersQueryQuery = {
|
|
|
21829
21669
|
type: ProductV1MediaType;
|
|
21830
21670
|
width?: number | null;
|
|
21831
21671
|
height?: number | null;
|
|
21832
|
-
name?: string | null;
|
|
21833
21672
|
}>;
|
|
21834
21673
|
visuals_videos?: Array<{
|
|
21835
21674
|
__typename?: "ProductV1Media";
|
|
@@ -21839,7 +21678,6 @@ export type GetOffersQueryQuery = {
|
|
|
21839
21678
|
type: ProductV1MediaType;
|
|
21840
21679
|
width?: number | null;
|
|
21841
21680
|
height?: number | null;
|
|
21842
|
-
name?: string | null;
|
|
21843
21681
|
}> | null;
|
|
21844
21682
|
productV1Seller?: {
|
|
21845
21683
|
__typename?: "ProductV1Seller";
|
|
@@ -21858,7 +21696,6 @@ export type GetOffersQueryQuery = {
|
|
|
21858
21696
|
type: ProductV1MediaType;
|
|
21859
21697
|
width?: number | null;
|
|
21860
21698
|
height?: number | null;
|
|
21861
|
-
name?: string | null;
|
|
21862
21699
|
}> | null;
|
|
21863
21700
|
contactLinks?: Array<{
|
|
21864
21701
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21905,7 +21742,6 @@ export type GetOffersQueryQuery = {
|
|
|
21905
21742
|
type: ProductV1MediaType;
|
|
21906
21743
|
width?: number | null;
|
|
21907
21744
|
height?: number | null;
|
|
21908
|
-
name?: string | null;
|
|
21909
21745
|
}> | null;
|
|
21910
21746
|
contactLinks?: Array<{
|
|
21911
21747
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -22205,7 +22041,6 @@ export type OfferFieldsFragment = {
|
|
|
22205
22041
|
type: ProductV1MediaType;
|
|
22206
22042
|
width?: number | null;
|
|
22207
22043
|
height?: number | null;
|
|
22208
|
-
name?: string | null;
|
|
22209
22044
|
}>;
|
|
22210
22045
|
visuals_videos?: Array<{
|
|
22211
22046
|
__typename?: "ProductV1Media";
|
|
@@ -22215,7 +22050,6 @@ export type OfferFieldsFragment = {
|
|
|
22215
22050
|
type: ProductV1MediaType;
|
|
22216
22051
|
width?: number | null;
|
|
22217
22052
|
height?: number | null;
|
|
22218
|
-
name?: string | null;
|
|
22219
22053
|
}> | null;
|
|
22220
22054
|
productV1Seller?: {
|
|
22221
22055
|
__typename?: "ProductV1Seller";
|
|
@@ -22234,7 +22068,6 @@ export type OfferFieldsFragment = {
|
|
|
22234
22068
|
type: ProductV1MediaType;
|
|
22235
22069
|
width?: number | null;
|
|
22236
22070
|
height?: number | null;
|
|
22237
|
-
name?: string | null;
|
|
22238
22071
|
}> | null;
|
|
22239
22072
|
contactLinks?: Array<{
|
|
22240
22073
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -22281,7 +22114,6 @@ export type OfferFieldsFragment = {
|
|
|
22281
22114
|
type: ProductV1MediaType;
|
|
22282
22115
|
width?: number | null;
|
|
22283
22116
|
height?: number | null;
|
|
22284
|
-
name?: string | null;
|
|
22285
22117
|
}> | null;
|
|
22286
22118
|
contactLinks?: Array<{
|
|
22287
22119
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -22530,7 +22362,6 @@ export type BaseOfferFieldsFragment = {
|
|
|
22530
22362
|
type: ProductV1MediaType;
|
|
22531
22363
|
width?: number | null;
|
|
22532
22364
|
height?: number | null;
|
|
22533
|
-
name?: string | null;
|
|
22534
22365
|
}>;
|
|
22535
22366
|
visuals_videos?: Array<{
|
|
22536
22367
|
__typename?: "ProductV1Media";
|
|
@@ -22540,7 +22371,6 @@ export type BaseOfferFieldsFragment = {
|
|
|
22540
22371
|
type: ProductV1MediaType;
|
|
22541
22372
|
width?: number | null;
|
|
22542
22373
|
height?: number | null;
|
|
22543
|
-
name?: string | null;
|
|
22544
22374
|
}> | null;
|
|
22545
22375
|
productV1Seller?: {
|
|
22546
22376
|
__typename?: "ProductV1Seller";
|
|
@@ -22559,7 +22389,6 @@ export type BaseOfferFieldsFragment = {
|
|
|
22559
22389
|
type: ProductV1MediaType;
|
|
22560
22390
|
width?: number | null;
|
|
22561
22391
|
height?: number | null;
|
|
22562
|
-
name?: string | null;
|
|
22563
22392
|
}> | null;
|
|
22564
22393
|
contactLinks?: Array<{
|
|
22565
22394
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -22606,7 +22435,6 @@ export type BaseOfferFieldsFragment = {
|
|
|
22606
22435
|
type: ProductV1MediaType;
|
|
22607
22436
|
width?: number | null;
|
|
22608
22437
|
height?: number | null;
|
|
22609
|
-
name?: string | null;
|
|
22610
22438
|
}> | null;
|
|
22611
22439
|
contactLinks?: Array<{
|
|
22612
22440
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -22794,7 +22622,6 @@ export const BaseProductV1MediaFieldsFragmentDoc = gql`
|
|
|
22794
22622
|
type
|
|
22795
22623
|
width
|
|
22796
22624
|
height
|
|
22797
|
-
name
|
|
22798
22625
|
}
|
|
22799
22626
|
`;
|
|
22800
22627
|
export const BaseProductV1SellerContactLinkFieldsFragmentDoc = gql`
|
|
@@ -22939,7 +22766,7 @@ export const BaseAnimationMetadataFieldsFragmentDoc = gql`
|
|
|
22939
22766
|
id
|
|
22940
22767
|
width
|
|
22941
22768
|
height
|
|
22942
|
-
|
|
22769
|
+
type
|
|
22943
22770
|
}
|
|
22944
22771
|
`;
|
|
22945
22772
|
export const BaseOfferFieldsFragmentDoc = gql`
|
|
@@ -23345,6 +23172,7 @@ export const BaseMetadataEntityFieldsFragmentDoc = gql`
|
|
|
23345
23172
|
}
|
|
23346
23173
|
${BaseBaseMetadataEntityFieldsFragmentDoc}
|
|
23347
23174
|
`;
|
|
23175
|
+
|
|
23348
23176
|
export const BaseProductV1MetadataEntityFieldsFragmentDoc = gql`
|
|
23349
23177
|
fragment BaseProductV1MetadataEntityFields on ProductV1MetadataEntity {
|
|
23350
23178
|
id
|