@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/dist/cjs/subgraph.d.ts
CHANGED
|
@@ -164,7 +164,7 @@ export declare type AnimationMetadata = {
|
|
|
164
164
|
__typename?: "AnimationMetadata";
|
|
165
165
|
height?: Maybe<Scalars["Int"]>;
|
|
166
166
|
id: Scalars["ID"];
|
|
167
|
-
|
|
167
|
+
type?: Maybe<Scalars["String"]>;
|
|
168
168
|
width?: Maybe<Scalars["Int"]>;
|
|
169
169
|
};
|
|
170
170
|
export declare type AnimationMetadata_Filter = {
|
|
@@ -186,26 +186,26 @@ export declare type AnimationMetadata_Filter = {
|
|
|
186
186
|
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
187
187
|
id_not?: InputMaybe<Scalars["ID"]>;
|
|
188
188
|
id_not_in?: InputMaybe<Array<Scalars["ID"]>>;
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
189
|
+
type?: InputMaybe<Scalars["String"]>;
|
|
190
|
+
type_contains?: InputMaybe<Scalars["String"]>;
|
|
191
|
+
type_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
192
|
+
type_ends_with?: InputMaybe<Scalars["String"]>;
|
|
193
|
+
type_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
194
|
+
type_gt?: InputMaybe<Scalars["String"]>;
|
|
195
|
+
type_gte?: InputMaybe<Scalars["String"]>;
|
|
196
|
+
type_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
197
|
+
type_lt?: InputMaybe<Scalars["String"]>;
|
|
198
|
+
type_lte?: InputMaybe<Scalars["String"]>;
|
|
199
|
+
type_not?: InputMaybe<Scalars["String"]>;
|
|
200
|
+
type_not_contains?: InputMaybe<Scalars["String"]>;
|
|
201
|
+
type_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
202
|
+
type_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
203
|
+
type_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
204
|
+
type_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
205
|
+
type_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
206
|
+
type_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
207
|
+
type_starts_with?: InputMaybe<Scalars["String"]>;
|
|
208
|
+
type_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
209
209
|
width?: InputMaybe<Scalars["Int"]>;
|
|
210
210
|
width_gt?: InputMaybe<Scalars["Int"]>;
|
|
211
211
|
width_gte?: InputMaybe<Scalars["Int"]>;
|
|
@@ -218,7 +218,7 @@ export declare type AnimationMetadata_Filter = {
|
|
|
218
218
|
export declare enum AnimationMetadata_OrderBy {
|
|
219
219
|
Height = "height",
|
|
220
220
|
Id = "id",
|
|
221
|
-
|
|
221
|
+
Type = "type",
|
|
222
222
|
Width = "width"
|
|
223
223
|
}
|
|
224
224
|
export declare type BaseMetadataEntity = MetadataInterface & {
|
|
@@ -3650,7 +3650,6 @@ export declare type ProductV1Media = {
|
|
|
3650
3650
|
__typename?: "ProductV1Media";
|
|
3651
3651
|
height?: Maybe<Scalars["Int"]>;
|
|
3652
3652
|
id: Scalars["ID"];
|
|
3653
|
-
name?: Maybe<Scalars["String"]>;
|
|
3654
3653
|
tag?: Maybe<Scalars["String"]>;
|
|
3655
3654
|
type: ProductV1MediaType;
|
|
3656
3655
|
url: Scalars["String"];
|
|
@@ -3679,26 +3678,6 @@ export declare type ProductV1Media_Filter = {
|
|
|
3679
3678
|
id_lte?: InputMaybe<Scalars["ID"]>;
|
|
3680
3679
|
id_not?: InputMaybe<Scalars["ID"]>;
|
|
3681
3680
|
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"]>;
|
|
3702
3681
|
tag?: InputMaybe<Scalars["String"]>;
|
|
3703
3682
|
tag_contains?: InputMaybe<Scalars["String"]>;
|
|
3704
3683
|
tag_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -3755,7 +3734,6 @@ export declare type ProductV1Media_Filter = {
|
|
|
3755
3734
|
export declare enum ProductV1Media_OrderBy {
|
|
3756
3735
|
Height = "height",
|
|
3757
3736
|
Id = "id",
|
|
3758
|
-
Name = "name",
|
|
3759
3737
|
Tag = "tag",
|
|
3760
3738
|
Type = "type",
|
|
3761
3739
|
Url = "url",
|
|
@@ -8039,7 +8017,6 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
8039
8017
|
type: ProductV1MediaType;
|
|
8040
8018
|
width?: number | null;
|
|
8041
8019
|
height?: number | null;
|
|
8042
|
-
name?: string | null;
|
|
8043
8020
|
}>;
|
|
8044
8021
|
visuals_videos?: Array<{
|
|
8045
8022
|
__typename?: "ProductV1Media";
|
|
@@ -8049,7 +8026,6 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
8049
8026
|
type: ProductV1MediaType;
|
|
8050
8027
|
width?: number | null;
|
|
8051
8028
|
height?: number | null;
|
|
8052
|
-
name?: string | null;
|
|
8053
8029
|
}> | null;
|
|
8054
8030
|
productV1Seller?: {
|
|
8055
8031
|
__typename?: "ProductV1Seller";
|
|
@@ -8068,7 +8044,6 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
8068
8044
|
type: ProductV1MediaType;
|
|
8069
8045
|
width?: number | null;
|
|
8070
8046
|
height?: number | null;
|
|
8071
|
-
name?: string | null;
|
|
8072
8047
|
}> | null;
|
|
8073
8048
|
contactLinks?: Array<{
|
|
8074
8049
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -8115,7 +8090,6 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
8115
8090
|
type: ProductV1MediaType;
|
|
8116
8091
|
width?: number | null;
|
|
8117
8092
|
height?: number | null;
|
|
8118
|
-
name?: string | null;
|
|
8119
8093
|
}> | null;
|
|
8120
8094
|
contactLinks?: Array<{
|
|
8121
8095
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -8590,7 +8564,6 @@ export declare type GetSellersQueryQuery = {
|
|
|
8590
8564
|
type: ProductV1MediaType;
|
|
8591
8565
|
width?: number | null;
|
|
8592
8566
|
height?: number | null;
|
|
8593
|
-
name?: string | null;
|
|
8594
8567
|
}>;
|
|
8595
8568
|
visuals_videos?: Array<{
|
|
8596
8569
|
__typename?: "ProductV1Media";
|
|
@@ -8600,7 +8573,6 @@ export declare type GetSellersQueryQuery = {
|
|
|
8600
8573
|
type: ProductV1MediaType;
|
|
8601
8574
|
width?: number | null;
|
|
8602
8575
|
height?: number | null;
|
|
8603
|
-
name?: string | null;
|
|
8604
8576
|
}> | null;
|
|
8605
8577
|
productV1Seller?: {
|
|
8606
8578
|
__typename?: "ProductV1Seller";
|
|
@@ -8619,7 +8591,6 @@ export declare type GetSellersQueryQuery = {
|
|
|
8619
8591
|
type: ProductV1MediaType;
|
|
8620
8592
|
width?: number | null;
|
|
8621
8593
|
height?: number | null;
|
|
8622
|
-
name?: string | null;
|
|
8623
8594
|
}> | null;
|
|
8624
8595
|
contactLinks?: Array<{
|
|
8625
8596
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -8666,7 +8637,6 @@ export declare type GetSellersQueryQuery = {
|
|
|
8666
8637
|
type: ProductV1MediaType;
|
|
8667
8638
|
width?: number | null;
|
|
8668
8639
|
height?: number | null;
|
|
8669
|
-
name?: string | null;
|
|
8670
8640
|
}> | null;
|
|
8671
8641
|
contactLinks?: Array<{
|
|
8672
8642
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -9517,7 +9487,6 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
9517
9487
|
type: ProductV1MediaType;
|
|
9518
9488
|
width?: number | null;
|
|
9519
9489
|
height?: number | null;
|
|
9520
|
-
name?: string | null;
|
|
9521
9490
|
}>;
|
|
9522
9491
|
visuals_videos?: Array<{
|
|
9523
9492
|
__typename?: "ProductV1Media";
|
|
@@ -9527,7 +9496,6 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
9527
9496
|
type: ProductV1MediaType;
|
|
9528
9497
|
width?: number | null;
|
|
9529
9498
|
height?: number | null;
|
|
9530
|
-
name?: string | null;
|
|
9531
9499
|
}> | null;
|
|
9532
9500
|
productV1Seller?: {
|
|
9533
9501
|
__typename?: "ProductV1Seller";
|
|
@@ -9546,7 +9514,6 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
9546
9514
|
type: ProductV1MediaType;
|
|
9547
9515
|
width?: number | null;
|
|
9548
9516
|
height?: number | null;
|
|
9549
|
-
name?: string | null;
|
|
9550
9517
|
}> | null;
|
|
9551
9518
|
contactLinks?: Array<{
|
|
9552
9519
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -9593,7 +9560,6 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
9593
9560
|
type: ProductV1MediaType;
|
|
9594
9561
|
width?: number | null;
|
|
9595
9562
|
height?: number | null;
|
|
9596
|
-
name?: string | null;
|
|
9597
9563
|
}> | null;
|
|
9598
9564
|
contactLinks?: Array<{
|
|
9599
9565
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -10003,7 +9969,6 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
10003
9969
|
type: ProductV1MediaType;
|
|
10004
9970
|
width?: number | null;
|
|
10005
9971
|
height?: number | null;
|
|
10006
|
-
name?: string | null;
|
|
10007
9972
|
}>;
|
|
10008
9973
|
visuals_videos?: Array<{
|
|
10009
9974
|
__typename?: "ProductV1Media";
|
|
@@ -10013,7 +9978,6 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
10013
9978
|
type: ProductV1MediaType;
|
|
10014
9979
|
width?: number | null;
|
|
10015
9980
|
height?: number | null;
|
|
10016
|
-
name?: string | null;
|
|
10017
9981
|
}> | null;
|
|
10018
9982
|
productV1Seller?: {
|
|
10019
9983
|
__typename?: "ProductV1Seller";
|
|
@@ -10032,7 +9996,6 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
10032
9996
|
type: ProductV1MediaType;
|
|
10033
9997
|
width?: number | null;
|
|
10034
9998
|
height?: number | null;
|
|
10035
|
-
name?: string | null;
|
|
10036
9999
|
}> | null;
|
|
10037
10000
|
contactLinks?: Array<{
|
|
10038
10001
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -10079,7 +10042,6 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
10079
10042
|
type: ProductV1MediaType;
|
|
10080
10043
|
width?: number | null;
|
|
10081
10044
|
height?: number | null;
|
|
10082
|
-
name?: string | null;
|
|
10083
10045
|
}> | null;
|
|
10084
10046
|
contactLinks?: Array<{
|
|
10085
10047
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -10486,7 +10448,6 @@ export declare type SellerFieldsFragment = {
|
|
|
10486
10448
|
type: ProductV1MediaType;
|
|
10487
10449
|
width?: number | null;
|
|
10488
10450
|
height?: number | null;
|
|
10489
|
-
name?: string | null;
|
|
10490
10451
|
}>;
|
|
10491
10452
|
visuals_videos?: Array<{
|
|
10492
10453
|
__typename?: "ProductV1Media";
|
|
@@ -10496,7 +10457,6 @@ export declare type SellerFieldsFragment = {
|
|
|
10496
10457
|
type: ProductV1MediaType;
|
|
10497
10458
|
width?: number | null;
|
|
10498
10459
|
height?: number | null;
|
|
10499
|
-
name?: string | null;
|
|
10500
10460
|
}> | null;
|
|
10501
10461
|
productV1Seller?: {
|
|
10502
10462
|
__typename?: "ProductV1Seller";
|
|
@@ -10515,7 +10475,6 @@ export declare type SellerFieldsFragment = {
|
|
|
10515
10475
|
type: ProductV1MediaType;
|
|
10516
10476
|
width?: number | null;
|
|
10517
10477
|
height?: number | null;
|
|
10518
|
-
name?: string | null;
|
|
10519
10478
|
}> | null;
|
|
10520
10479
|
contactLinks?: Array<{
|
|
10521
10480
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -10562,7 +10521,6 @@ export declare type SellerFieldsFragment = {
|
|
|
10562
10521
|
type: ProductV1MediaType;
|
|
10563
10522
|
width?: number | null;
|
|
10564
10523
|
height?: number | null;
|
|
10565
|
-
name?: string | null;
|
|
10566
10524
|
}> | null;
|
|
10567
10525
|
contactLinks?: Array<{
|
|
10568
10526
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -11189,7 +11147,6 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
11189
11147
|
type: ProductV1MediaType;
|
|
11190
11148
|
width?: number | null;
|
|
11191
11149
|
height?: number | null;
|
|
11192
|
-
name?: string | null;
|
|
11193
11150
|
}>;
|
|
11194
11151
|
visuals_videos?: Array<{
|
|
11195
11152
|
__typename?: "ProductV1Media";
|
|
@@ -11199,7 +11156,6 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
11199
11156
|
type: ProductV1MediaType;
|
|
11200
11157
|
width?: number | null;
|
|
11201
11158
|
height?: number | null;
|
|
11202
|
-
name?: string | null;
|
|
11203
11159
|
}> | null;
|
|
11204
11160
|
productV1Seller?: {
|
|
11205
11161
|
__typename?: "ProductV1Seller";
|
|
@@ -11218,7 +11174,6 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
11218
11174
|
type: ProductV1MediaType;
|
|
11219
11175
|
width?: number | null;
|
|
11220
11176
|
height?: number | null;
|
|
11221
|
-
name?: string | null;
|
|
11222
11177
|
}> | null;
|
|
11223
11178
|
contactLinks?: Array<{
|
|
11224
11179
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -11265,7 +11220,6 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
11265
11220
|
type: ProductV1MediaType;
|
|
11266
11221
|
width?: number | null;
|
|
11267
11222
|
height?: number | null;
|
|
11268
|
-
name?: string | null;
|
|
11269
11223
|
}> | null;
|
|
11270
11224
|
contactLinks?: Array<{
|
|
11271
11225
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12013,7 +11967,6 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
12013
11967
|
type: ProductV1MediaType;
|
|
12014
11968
|
width?: number | null;
|
|
12015
11969
|
height?: number | null;
|
|
12016
|
-
name?: string | null;
|
|
12017
11970
|
}>;
|
|
12018
11971
|
visuals_videos?: Array<{
|
|
12019
11972
|
__typename?: "ProductV1Media";
|
|
@@ -12023,7 +11976,6 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
12023
11976
|
type: ProductV1MediaType;
|
|
12024
11977
|
width?: number | null;
|
|
12025
11978
|
height?: number | null;
|
|
12026
|
-
name?: string | null;
|
|
12027
11979
|
}> | null;
|
|
12028
11980
|
productV1Seller?: {
|
|
12029
11981
|
__typename?: "ProductV1Seller";
|
|
@@ -12042,7 +11994,6 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
12042
11994
|
type: ProductV1MediaType;
|
|
12043
11995
|
width?: number | null;
|
|
12044
11996
|
height?: number | null;
|
|
12045
|
-
name?: string | null;
|
|
12046
11997
|
}> | null;
|
|
12047
11998
|
contactLinks?: Array<{
|
|
12048
11999
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12089,7 +12040,6 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
12089
12040
|
type: ProductV1MediaType;
|
|
12090
12041
|
width?: number | null;
|
|
12091
12042
|
height?: number | null;
|
|
12092
|
-
name?: string | null;
|
|
12093
12043
|
}> | null;
|
|
12094
12044
|
contactLinks?: Array<{
|
|
12095
12045
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12374,7 +12324,6 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
12374
12324
|
type: ProductV1MediaType;
|
|
12375
12325
|
width?: number | null;
|
|
12376
12326
|
height?: number | null;
|
|
12377
|
-
name?: string | null;
|
|
12378
12327
|
}>;
|
|
12379
12328
|
visuals_videos?: Array<{
|
|
12380
12329
|
__typename?: "ProductV1Media";
|
|
@@ -12384,7 +12333,6 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
12384
12333
|
type: ProductV1MediaType;
|
|
12385
12334
|
width?: number | null;
|
|
12386
12335
|
height?: number | null;
|
|
12387
|
-
name?: string | null;
|
|
12388
12336
|
}> | null;
|
|
12389
12337
|
productV1Seller?: {
|
|
12390
12338
|
__typename?: "ProductV1Seller";
|
|
@@ -12403,7 +12351,6 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
12403
12351
|
type: ProductV1MediaType;
|
|
12404
12352
|
width?: number | null;
|
|
12405
12353
|
height?: number | null;
|
|
12406
|
-
name?: string | null;
|
|
12407
12354
|
}> | null;
|
|
12408
12355
|
contactLinks?: Array<{
|
|
12409
12356
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12450,7 +12397,6 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
12450
12397
|
type: ProductV1MediaType;
|
|
12451
12398
|
width?: number | null;
|
|
12452
12399
|
height?: number | null;
|
|
12453
|
-
name?: string | null;
|
|
12454
12400
|
}> | null;
|
|
12455
12401
|
contactLinks?: Array<{
|
|
12456
12402
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12714,7 +12660,6 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
12714
12660
|
type: ProductV1MediaType;
|
|
12715
12661
|
width?: number | null;
|
|
12716
12662
|
height?: number | null;
|
|
12717
|
-
name?: string | null;
|
|
12718
12663
|
}>;
|
|
12719
12664
|
visuals_videos?: Array<{
|
|
12720
12665
|
__typename?: "ProductV1Media";
|
|
@@ -12724,7 +12669,6 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
12724
12669
|
type: ProductV1MediaType;
|
|
12725
12670
|
width?: number | null;
|
|
12726
12671
|
height?: number | null;
|
|
12727
|
-
name?: string | null;
|
|
12728
12672
|
}> | null;
|
|
12729
12673
|
productV1Seller?: {
|
|
12730
12674
|
__typename?: "ProductV1Seller";
|
|
@@ -12743,7 +12687,6 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
12743
12687
|
type: ProductV1MediaType;
|
|
12744
12688
|
width?: number | null;
|
|
12745
12689
|
height?: number | null;
|
|
12746
|
-
name?: string | null;
|
|
12747
12690
|
}> | null;
|
|
12748
12691
|
contactLinks?: Array<{
|
|
12749
12692
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -12790,7 +12733,6 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
12790
12733
|
type: ProductV1MediaType;
|
|
12791
12734
|
width?: number | null;
|
|
12792
12735
|
height?: number | null;
|
|
12793
|
-
name?: string | null;
|
|
12794
12736
|
}> | null;
|
|
12795
12737
|
contactLinks?: Array<{
|
|
12796
12738
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -13300,7 +13242,6 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
13300
13242
|
type: ProductV1MediaType;
|
|
13301
13243
|
width?: number | null;
|
|
13302
13244
|
height?: number | null;
|
|
13303
|
-
name?: string | null;
|
|
13304
13245
|
}>;
|
|
13305
13246
|
visuals_videos?: Array<{
|
|
13306
13247
|
__typename?: "ProductV1Media";
|
|
@@ -13310,7 +13251,6 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
13310
13251
|
type: ProductV1MediaType;
|
|
13311
13252
|
width?: number | null;
|
|
13312
13253
|
height?: number | null;
|
|
13313
|
-
name?: string | null;
|
|
13314
13254
|
}> | null;
|
|
13315
13255
|
productV1Seller?: {
|
|
13316
13256
|
__typename?: "ProductV1Seller";
|
|
@@ -13329,7 +13269,6 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
13329
13269
|
type: ProductV1MediaType;
|
|
13330
13270
|
width?: number | null;
|
|
13331
13271
|
height?: number | null;
|
|
13332
|
-
name?: string | null;
|
|
13333
13272
|
}> | null;
|
|
13334
13273
|
contactLinks?: Array<{
|
|
13335
13274
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -13376,7 +13315,6 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
13376
13315
|
type: ProductV1MediaType;
|
|
13377
13316
|
width?: number | null;
|
|
13378
13317
|
height?: number | null;
|
|
13379
|
-
name?: string | null;
|
|
13380
13318
|
}> | null;
|
|
13381
13319
|
contactLinks?: Array<{
|
|
13382
13320
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -13685,7 +13623,6 @@ export declare type GetExchangesQueryQuery = {
|
|
|
13685
13623
|
type: ProductV1MediaType;
|
|
13686
13624
|
width?: number | null;
|
|
13687
13625
|
height?: number | null;
|
|
13688
|
-
name?: string | null;
|
|
13689
13626
|
}>;
|
|
13690
13627
|
visuals_videos?: Array<{
|
|
13691
13628
|
__typename?: "ProductV1Media";
|
|
@@ -13695,7 +13632,6 @@ export declare type GetExchangesQueryQuery = {
|
|
|
13695
13632
|
type: ProductV1MediaType;
|
|
13696
13633
|
width?: number | null;
|
|
13697
13634
|
height?: number | null;
|
|
13698
|
-
name?: string | null;
|
|
13699
13635
|
}> | null;
|
|
13700
13636
|
productV1Seller?: {
|
|
13701
13637
|
__typename?: "ProductV1Seller";
|
|
@@ -13714,7 +13650,6 @@ export declare type GetExchangesQueryQuery = {
|
|
|
13714
13650
|
type: ProductV1MediaType;
|
|
13715
13651
|
width?: number | null;
|
|
13716
13652
|
height?: number | null;
|
|
13717
|
-
name?: string | null;
|
|
13718
13653
|
}> | null;
|
|
13719
13654
|
contactLinks?: Array<{
|
|
13720
13655
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -13761,7 +13696,6 @@ export declare type GetExchangesQueryQuery = {
|
|
|
13761
13696
|
type: ProductV1MediaType;
|
|
13762
13697
|
width?: number | null;
|
|
13763
13698
|
height?: number | null;
|
|
13764
|
-
name?: string | null;
|
|
13765
13699
|
}> | null;
|
|
13766
13700
|
contactLinks?: Array<{
|
|
13767
13701
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14061,7 +13995,6 @@ export declare type ExchangeFieldsFragment = {
|
|
|
14061
13995
|
type: ProductV1MediaType;
|
|
14062
13996
|
width?: number | null;
|
|
14063
13997
|
height?: number | null;
|
|
14064
|
-
name?: string | null;
|
|
14065
13998
|
}>;
|
|
14066
13999
|
visuals_videos?: Array<{
|
|
14067
14000
|
__typename?: "ProductV1Media";
|
|
@@ -14071,7 +14004,6 @@ export declare type ExchangeFieldsFragment = {
|
|
|
14071
14004
|
type: ProductV1MediaType;
|
|
14072
14005
|
width?: number | null;
|
|
14073
14006
|
height?: number | null;
|
|
14074
|
-
name?: string | null;
|
|
14075
14007
|
}> | null;
|
|
14076
14008
|
productV1Seller?: {
|
|
14077
14009
|
__typename?: "ProductV1Seller";
|
|
@@ -14090,7 +14022,6 @@ export declare type ExchangeFieldsFragment = {
|
|
|
14090
14022
|
type: ProductV1MediaType;
|
|
14091
14023
|
width?: number | null;
|
|
14092
14024
|
height?: number | null;
|
|
14093
|
-
name?: string | null;
|
|
14094
14025
|
}> | null;
|
|
14095
14026
|
contactLinks?: Array<{
|
|
14096
14027
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14137,7 +14068,6 @@ export declare type ExchangeFieldsFragment = {
|
|
|
14137
14068
|
type: ProductV1MediaType;
|
|
14138
14069
|
width?: number | null;
|
|
14139
14070
|
height?: number | null;
|
|
14140
|
-
name?: string | null;
|
|
14141
14071
|
}> | null;
|
|
14142
14072
|
contactLinks?: Array<{
|
|
14143
14073
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14581,7 +14511,6 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14581
14511
|
type: ProductV1MediaType;
|
|
14582
14512
|
width?: number | null;
|
|
14583
14513
|
height?: number | null;
|
|
14584
|
-
name?: string | null;
|
|
14585
14514
|
}>;
|
|
14586
14515
|
visuals_videos?: Array<{
|
|
14587
14516
|
__typename?: "ProductV1Media";
|
|
@@ -14591,7 +14520,6 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14591
14520
|
type: ProductV1MediaType;
|
|
14592
14521
|
width?: number | null;
|
|
14593
14522
|
height?: number | null;
|
|
14594
|
-
name?: string | null;
|
|
14595
14523
|
}> | null;
|
|
14596
14524
|
productV1Seller?: {
|
|
14597
14525
|
__typename?: "ProductV1Seller";
|
|
@@ -14610,7 +14538,6 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14610
14538
|
type: ProductV1MediaType;
|
|
14611
14539
|
width?: number | null;
|
|
14612
14540
|
height?: number | null;
|
|
14613
|
-
name?: string | null;
|
|
14614
14541
|
}> | null;
|
|
14615
14542
|
contactLinks?: Array<{
|
|
14616
14543
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14657,7 +14584,6 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
14657
14584
|
type: ProductV1MediaType;
|
|
14658
14585
|
width?: number | null;
|
|
14659
14586
|
height?: number | null;
|
|
14660
|
-
name?: string | null;
|
|
14661
14587
|
}> | null;
|
|
14662
14588
|
contactLinks?: Array<{
|
|
14663
14589
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -14964,7 +14890,6 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
14964
14890
|
type: ProductV1MediaType;
|
|
14965
14891
|
width?: number | null;
|
|
14966
14892
|
height?: number | null;
|
|
14967
|
-
name?: string | null;
|
|
14968
14893
|
}>;
|
|
14969
14894
|
visuals_videos?: Array<{
|
|
14970
14895
|
__typename?: "ProductV1Media";
|
|
@@ -14974,7 +14899,6 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
14974
14899
|
type: ProductV1MediaType;
|
|
14975
14900
|
width?: number | null;
|
|
14976
14901
|
height?: number | null;
|
|
14977
|
-
name?: string | null;
|
|
14978
14902
|
}> | null;
|
|
14979
14903
|
productV1Seller?: {
|
|
14980
14904
|
__typename?: "ProductV1Seller";
|
|
@@ -14993,7 +14917,6 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
14993
14917
|
type: ProductV1MediaType;
|
|
14994
14918
|
width?: number | null;
|
|
14995
14919
|
height?: number | null;
|
|
14996
|
-
name?: string | null;
|
|
14997
14920
|
}> | null;
|
|
14998
14921
|
contactLinks?: Array<{
|
|
14999
14922
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15040,7 +14963,6 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
15040
14963
|
type: ProductV1MediaType;
|
|
15041
14964
|
width?: number | null;
|
|
15042
14965
|
height?: number | null;
|
|
15043
|
-
name?: string | null;
|
|
15044
14966
|
}> | null;
|
|
15045
14967
|
contactLinks?: Array<{
|
|
15046
14968
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15338,7 +15260,6 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
15338
15260
|
type: ProductV1MediaType;
|
|
15339
15261
|
width?: number | null;
|
|
15340
15262
|
height?: number | null;
|
|
15341
|
-
name?: string | null;
|
|
15342
15263
|
}>;
|
|
15343
15264
|
visuals_videos?: Array<{
|
|
15344
15265
|
__typename?: "ProductV1Media";
|
|
@@ -15348,7 +15269,6 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
15348
15269
|
type: ProductV1MediaType;
|
|
15349
15270
|
width?: number | null;
|
|
15350
15271
|
height?: number | null;
|
|
15351
|
-
name?: string | null;
|
|
15352
15272
|
}> | null;
|
|
15353
15273
|
productV1Seller?: {
|
|
15354
15274
|
__typename?: "ProductV1Seller";
|
|
@@ -15367,7 +15287,6 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
15367
15287
|
type: ProductV1MediaType;
|
|
15368
15288
|
width?: number | null;
|
|
15369
15289
|
height?: number | null;
|
|
15370
|
-
name?: string | null;
|
|
15371
15290
|
}> | null;
|
|
15372
15291
|
contactLinks?: Array<{
|
|
15373
15292
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15414,7 +15333,6 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
15414
15333
|
type: ProductV1MediaType;
|
|
15415
15334
|
width?: number | null;
|
|
15416
15335
|
height?: number | null;
|
|
15417
|
-
name?: string | null;
|
|
15418
15336
|
}> | null;
|
|
15419
15337
|
contactLinks?: Array<{
|
|
15420
15338
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15711,7 +15629,6 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
15711
15629
|
type: ProductV1MediaType;
|
|
15712
15630
|
width?: number | null;
|
|
15713
15631
|
height?: number | null;
|
|
15714
|
-
name?: string | null;
|
|
15715
15632
|
}>;
|
|
15716
15633
|
visuals_videos?: Array<{
|
|
15717
15634
|
__typename?: "ProductV1Media";
|
|
@@ -15721,7 +15638,6 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
15721
15638
|
type: ProductV1MediaType;
|
|
15722
15639
|
width?: number | null;
|
|
15723
15640
|
height?: number | null;
|
|
15724
|
-
name?: string | null;
|
|
15725
15641
|
}> | null;
|
|
15726
15642
|
productV1Seller?: {
|
|
15727
15643
|
__typename?: "ProductV1Seller";
|
|
@@ -15740,7 +15656,6 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
15740
15656
|
type: ProductV1MediaType;
|
|
15741
15657
|
width?: number | null;
|
|
15742
15658
|
height?: number | null;
|
|
15743
|
-
name?: string | null;
|
|
15744
15659
|
}> | null;
|
|
15745
15660
|
contactLinks?: Array<{
|
|
15746
15661
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15787,7 +15702,6 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
15787
15702
|
type: ProductV1MediaType;
|
|
15788
15703
|
width?: number | null;
|
|
15789
15704
|
height?: number | null;
|
|
15790
|
-
name?: string | null;
|
|
15791
15705
|
}> | null;
|
|
15792
15706
|
contactLinks?: Array<{
|
|
15793
15707
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -15956,7 +15870,6 @@ export declare type GetProductV1ProductsQueryQuery = {
|
|
|
15956
15870
|
type: ProductV1MediaType;
|
|
15957
15871
|
width?: number | null;
|
|
15958
15872
|
height?: number | null;
|
|
15959
|
-
name?: string | null;
|
|
15960
15873
|
}>;
|
|
15961
15874
|
visuals_videos?: Array<{
|
|
15962
15875
|
__typename?: "ProductV1Media";
|
|
@@ -15966,7 +15879,6 @@ export declare type GetProductV1ProductsQueryQuery = {
|
|
|
15966
15879
|
type: ProductV1MediaType;
|
|
15967
15880
|
width?: number | null;
|
|
15968
15881
|
height?: number | null;
|
|
15969
|
-
name?: string | null;
|
|
15970
15882
|
}> | null;
|
|
15971
15883
|
productV1Seller?: {
|
|
15972
15884
|
__typename?: "ProductV1Seller";
|
|
@@ -15985,7 +15897,6 @@ export declare type GetProductV1ProductsQueryQuery = {
|
|
|
15985
15897
|
type: ProductV1MediaType;
|
|
15986
15898
|
width?: number | null;
|
|
15987
15899
|
height?: number | null;
|
|
15988
|
-
name?: string | null;
|
|
15989
15900
|
}> | null;
|
|
15990
15901
|
contactLinks?: Array<{
|
|
15991
15902
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16306,7 +16217,6 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16306
16217
|
type: ProductV1MediaType;
|
|
16307
16218
|
width?: number | null;
|
|
16308
16219
|
height?: number | null;
|
|
16309
|
-
name?: string | null;
|
|
16310
16220
|
}>;
|
|
16311
16221
|
visuals_videos?: Array<{
|
|
16312
16222
|
__typename?: "ProductV1Media";
|
|
@@ -16316,7 +16226,6 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16316
16226
|
type: ProductV1MediaType;
|
|
16317
16227
|
width?: number | null;
|
|
16318
16228
|
height?: number | null;
|
|
16319
|
-
name?: string | null;
|
|
16320
16229
|
}> | null;
|
|
16321
16230
|
productV1Seller?: {
|
|
16322
16231
|
__typename?: "ProductV1Seller";
|
|
@@ -16335,7 +16244,6 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16335
16244
|
type: ProductV1MediaType;
|
|
16336
16245
|
width?: number | null;
|
|
16337
16246
|
height?: number | null;
|
|
16338
|
-
name?: string | null;
|
|
16339
16247
|
}> | null;
|
|
16340
16248
|
contactLinks?: Array<{
|
|
16341
16249
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16382,7 +16290,6 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16382
16290
|
type: ProductV1MediaType;
|
|
16383
16291
|
width?: number | null;
|
|
16384
16292
|
height?: number | null;
|
|
16385
|
-
name?: string | null;
|
|
16386
16293
|
}> | null;
|
|
16387
16294
|
contactLinks?: Array<{
|
|
16388
16295
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16481,7 +16388,6 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16481
16388
|
type: ProductV1MediaType;
|
|
16482
16389
|
width?: number | null;
|
|
16483
16390
|
height?: number | null;
|
|
16484
|
-
name?: string | null;
|
|
16485
16391
|
}>;
|
|
16486
16392
|
visuals_videos?: Array<{
|
|
16487
16393
|
__typename?: "ProductV1Media";
|
|
@@ -16491,7 +16397,6 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16491
16397
|
type: ProductV1MediaType;
|
|
16492
16398
|
width?: number | null;
|
|
16493
16399
|
height?: number | null;
|
|
16494
|
-
name?: string | null;
|
|
16495
16400
|
}> | null;
|
|
16496
16401
|
productV1Seller?: {
|
|
16497
16402
|
__typename?: "ProductV1Seller";
|
|
@@ -16510,7 +16415,6 @@ export declare type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
16510
16415
|
type: ProductV1MediaType;
|
|
16511
16416
|
width?: number | null;
|
|
16512
16417
|
height?: number | null;
|
|
16513
|
-
name?: string | null;
|
|
16514
16418
|
}> | null;
|
|
16515
16419
|
contactLinks?: Array<{
|
|
16516
16420
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16831,7 +16735,6 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16831
16735
|
type: ProductV1MediaType;
|
|
16832
16736
|
width?: number | null;
|
|
16833
16737
|
height?: number | null;
|
|
16834
|
-
name?: string | null;
|
|
16835
16738
|
}>;
|
|
16836
16739
|
visuals_videos?: Array<{
|
|
16837
16740
|
__typename?: "ProductV1Media";
|
|
@@ -16841,7 +16744,6 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16841
16744
|
type: ProductV1MediaType;
|
|
16842
16745
|
width?: number | null;
|
|
16843
16746
|
height?: number | null;
|
|
16844
|
-
name?: string | null;
|
|
16845
16747
|
}> | null;
|
|
16846
16748
|
productV1Seller?: {
|
|
16847
16749
|
__typename?: "ProductV1Seller";
|
|
@@ -16860,7 +16762,6 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16860
16762
|
type: ProductV1MediaType;
|
|
16861
16763
|
width?: number | null;
|
|
16862
16764
|
height?: number | null;
|
|
16863
|
-
name?: string | null;
|
|
16864
16765
|
}> | null;
|
|
16865
16766
|
contactLinks?: Array<{
|
|
16866
16767
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -16907,7 +16808,6 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
16907
16808
|
type: ProductV1MediaType;
|
|
16908
16809
|
width?: number | null;
|
|
16909
16810
|
height?: number | null;
|
|
16910
|
-
name?: string | null;
|
|
16911
16811
|
}> | null;
|
|
16912
16812
|
contactLinks?: Array<{
|
|
16913
16813
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17006,7 +16906,6 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
17006
16906
|
type: ProductV1MediaType;
|
|
17007
16907
|
width?: number | null;
|
|
17008
16908
|
height?: number | null;
|
|
17009
|
-
name?: string | null;
|
|
17010
16909
|
}>;
|
|
17011
16910
|
visuals_videos?: Array<{
|
|
17012
16911
|
__typename?: "ProductV1Media";
|
|
@@ -17016,7 +16915,6 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
17016
16915
|
type: ProductV1MediaType;
|
|
17017
16916
|
width?: number | null;
|
|
17018
16917
|
height?: number | null;
|
|
17019
|
-
name?: string | null;
|
|
17020
16918
|
}> | null;
|
|
17021
16919
|
productV1Seller?: {
|
|
17022
16920
|
__typename?: "ProductV1Seller";
|
|
@@ -17035,7 +16933,6 @@ export declare type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
17035
16933
|
type: ProductV1MediaType;
|
|
17036
16934
|
width?: number | null;
|
|
17037
16935
|
height?: number | null;
|
|
17038
|
-
name?: string | null;
|
|
17039
16936
|
}> | null;
|
|
17040
16937
|
contactLinks?: Array<{
|
|
17041
16938
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17110,7 +17007,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17110
17007
|
id: string;
|
|
17111
17008
|
width?: number | null;
|
|
17112
17009
|
height?: number | null;
|
|
17113
|
-
|
|
17010
|
+
type?: string | null;
|
|
17114
17011
|
} | null;
|
|
17115
17012
|
attributes?: Array<{
|
|
17116
17013
|
__typename?: "MetadataAttribute";
|
|
@@ -17368,7 +17265,6 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17368
17265
|
type: ProductV1MediaType;
|
|
17369
17266
|
width?: number | null;
|
|
17370
17267
|
height?: number | null;
|
|
17371
|
-
name?: string | null;
|
|
17372
17268
|
}>;
|
|
17373
17269
|
visuals_videos?: Array<{
|
|
17374
17270
|
__typename?: "ProductV1Media";
|
|
@@ -17378,7 +17274,6 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17378
17274
|
type: ProductV1MediaType;
|
|
17379
17275
|
width?: number | null;
|
|
17380
17276
|
height?: number | null;
|
|
17381
|
-
name?: string | null;
|
|
17382
17277
|
}> | null;
|
|
17383
17278
|
productV1Seller?: {
|
|
17384
17279
|
__typename?: "ProductV1Seller";
|
|
@@ -17397,7 +17292,6 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17397
17292
|
type: ProductV1MediaType;
|
|
17398
17293
|
width?: number | null;
|
|
17399
17294
|
height?: number | null;
|
|
17400
|
-
name?: string | null;
|
|
17401
17295
|
}> | null;
|
|
17402
17296
|
contactLinks?: Array<{
|
|
17403
17297
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17444,7 +17338,6 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17444
17338
|
type: ProductV1MediaType;
|
|
17445
17339
|
width?: number | null;
|
|
17446
17340
|
height?: number | null;
|
|
17447
|
-
name?: string | null;
|
|
17448
17341
|
}> | null;
|
|
17449
17342
|
contactLinks?: Array<{
|
|
17450
17343
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17588,7 +17481,6 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17588
17481
|
type: ProductV1MediaType;
|
|
17589
17482
|
width?: number | null;
|
|
17590
17483
|
height?: number | null;
|
|
17591
|
-
name?: string | null;
|
|
17592
17484
|
}>;
|
|
17593
17485
|
visuals_videos?: Array<{
|
|
17594
17486
|
__typename?: "ProductV1Media";
|
|
@@ -17598,7 +17490,6 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17598
17490
|
type: ProductV1MediaType;
|
|
17599
17491
|
width?: number | null;
|
|
17600
17492
|
height?: number | null;
|
|
17601
|
-
name?: string | null;
|
|
17602
17493
|
}> | null;
|
|
17603
17494
|
productV1Seller?: {
|
|
17604
17495
|
__typename?: "ProductV1Seller";
|
|
@@ -17617,7 +17508,6 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17617
17508
|
type: ProductV1MediaType;
|
|
17618
17509
|
width?: number | null;
|
|
17619
17510
|
height?: number | null;
|
|
17620
|
-
name?: string | null;
|
|
17621
17511
|
}> | null;
|
|
17622
17512
|
contactLinks?: Array<{
|
|
17623
17513
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17664,7 +17554,6 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
17664
17554
|
type: ProductV1MediaType;
|
|
17665
17555
|
width?: number | null;
|
|
17666
17556
|
height?: number | null;
|
|
17667
|
-
name?: string | null;
|
|
17668
17557
|
}> | null;
|
|
17669
17558
|
contactLinks?: Array<{
|
|
17670
17559
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -17733,7 +17622,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17733
17622
|
id: string;
|
|
17734
17623
|
width?: number | null;
|
|
17735
17624
|
height?: number | null;
|
|
17736
|
-
|
|
17625
|
+
type?: string | null;
|
|
17737
17626
|
} | null;
|
|
17738
17627
|
attributes?: Array<{
|
|
17739
17628
|
__typename?: "MetadataAttribute";
|
|
@@ -17991,7 +17880,6 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
17991
17880
|
type: ProductV1MediaType;
|
|
17992
17881
|
width?: number | null;
|
|
17993
17882
|
height?: number | null;
|
|
17994
|
-
name?: string | null;
|
|
17995
17883
|
}>;
|
|
17996
17884
|
visuals_videos?: Array<{
|
|
17997
17885
|
__typename?: "ProductV1Media";
|
|
@@ -18001,7 +17889,6 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18001
17889
|
type: ProductV1MediaType;
|
|
18002
17890
|
width?: number | null;
|
|
18003
17891
|
height?: number | null;
|
|
18004
|
-
name?: string | null;
|
|
18005
17892
|
}> | null;
|
|
18006
17893
|
productV1Seller?: {
|
|
18007
17894
|
__typename?: "ProductV1Seller";
|
|
@@ -18020,7 +17907,6 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18020
17907
|
type: ProductV1MediaType;
|
|
18021
17908
|
width?: number | null;
|
|
18022
17909
|
height?: number | null;
|
|
18023
|
-
name?: string | null;
|
|
18024
17910
|
}> | null;
|
|
18025
17911
|
contactLinks?: Array<{
|
|
18026
17912
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18067,7 +17953,6 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18067
17953
|
type: ProductV1MediaType;
|
|
18068
17954
|
width?: number | null;
|
|
18069
17955
|
height?: number | null;
|
|
18070
|
-
name?: string | null;
|
|
18071
17956
|
}> | null;
|
|
18072
17957
|
contactLinks?: Array<{
|
|
18073
17958
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18211,7 +18096,6 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18211
18096
|
type: ProductV1MediaType;
|
|
18212
18097
|
width?: number | null;
|
|
18213
18098
|
height?: number | null;
|
|
18214
|
-
name?: string | null;
|
|
18215
18099
|
}>;
|
|
18216
18100
|
visuals_videos?: Array<{
|
|
18217
18101
|
__typename?: "ProductV1Media";
|
|
@@ -18221,7 +18105,6 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18221
18105
|
type: ProductV1MediaType;
|
|
18222
18106
|
width?: number | null;
|
|
18223
18107
|
height?: number | null;
|
|
18224
|
-
name?: string | null;
|
|
18225
18108
|
}> | null;
|
|
18226
18109
|
productV1Seller?: {
|
|
18227
18110
|
__typename?: "ProductV1Seller";
|
|
@@ -18240,7 +18123,6 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18240
18123
|
type: ProductV1MediaType;
|
|
18241
18124
|
width?: number | null;
|
|
18242
18125
|
height?: number | null;
|
|
18243
|
-
name?: string | null;
|
|
18244
18126
|
}> | null;
|
|
18245
18127
|
contactLinks?: Array<{
|
|
18246
18128
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18287,7 +18169,6 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
18287
18169
|
type: ProductV1MediaType;
|
|
18288
18170
|
width?: number | null;
|
|
18289
18171
|
height?: number | null;
|
|
18290
|
-
name?: string | null;
|
|
18291
18172
|
}> | null;
|
|
18292
18173
|
contactLinks?: Array<{
|
|
18293
18174
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18347,7 +18228,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18347
18228
|
id: string;
|
|
18348
18229
|
width?: number | null;
|
|
18349
18230
|
height?: number | null;
|
|
18350
|
-
|
|
18231
|
+
type?: string | null;
|
|
18351
18232
|
} | null;
|
|
18352
18233
|
attributes?: Array<{
|
|
18353
18234
|
__typename?: "MetadataAttribute";
|
|
@@ -18605,7 +18486,6 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18605
18486
|
type: ProductV1MediaType;
|
|
18606
18487
|
width?: number | null;
|
|
18607
18488
|
height?: number | null;
|
|
18608
|
-
name?: string | null;
|
|
18609
18489
|
}>;
|
|
18610
18490
|
visuals_videos?: Array<{
|
|
18611
18491
|
__typename?: "ProductV1Media";
|
|
@@ -18615,7 +18495,6 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18615
18495
|
type: ProductV1MediaType;
|
|
18616
18496
|
width?: number | null;
|
|
18617
18497
|
height?: number | null;
|
|
18618
|
-
name?: string | null;
|
|
18619
18498
|
}> | null;
|
|
18620
18499
|
productV1Seller?: {
|
|
18621
18500
|
__typename?: "ProductV1Seller";
|
|
@@ -18634,7 +18513,6 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18634
18513
|
type: ProductV1MediaType;
|
|
18635
18514
|
width?: number | null;
|
|
18636
18515
|
height?: number | null;
|
|
18637
|
-
name?: string | null;
|
|
18638
18516
|
}> | null;
|
|
18639
18517
|
contactLinks?: Array<{
|
|
18640
18518
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18681,7 +18559,6 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18681
18559
|
type: ProductV1MediaType;
|
|
18682
18560
|
width?: number | null;
|
|
18683
18561
|
height?: number | null;
|
|
18684
|
-
name?: string | null;
|
|
18685
18562
|
}> | null;
|
|
18686
18563
|
contactLinks?: Array<{
|
|
18687
18564
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18825,7 +18702,6 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18825
18702
|
type: ProductV1MediaType;
|
|
18826
18703
|
width?: number | null;
|
|
18827
18704
|
height?: number | null;
|
|
18828
|
-
name?: string | null;
|
|
18829
18705
|
}>;
|
|
18830
18706
|
visuals_videos?: Array<{
|
|
18831
18707
|
__typename?: "ProductV1Media";
|
|
@@ -18835,7 +18711,6 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18835
18711
|
type: ProductV1MediaType;
|
|
18836
18712
|
width?: number | null;
|
|
18837
18713
|
height?: number | null;
|
|
18838
|
-
name?: string | null;
|
|
18839
18714
|
}> | null;
|
|
18840
18715
|
productV1Seller?: {
|
|
18841
18716
|
__typename?: "ProductV1Seller";
|
|
@@ -18854,7 +18729,6 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18854
18729
|
type: ProductV1MediaType;
|
|
18855
18730
|
width?: number | null;
|
|
18856
18731
|
height?: number | null;
|
|
18857
|
-
name?: string | null;
|
|
18858
18732
|
}> | null;
|
|
18859
18733
|
contactLinks?: Array<{
|
|
18860
18734
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18901,7 +18775,6 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
18901
18775
|
type: ProductV1MediaType;
|
|
18902
18776
|
width?: number | null;
|
|
18903
18777
|
height?: number | null;
|
|
18904
|
-
name?: string | null;
|
|
18905
18778
|
}> | null;
|
|
18906
18779
|
contactLinks?: Array<{
|
|
18907
18780
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -18960,7 +18833,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
18960
18833
|
id: string;
|
|
18961
18834
|
width?: number | null;
|
|
18962
18835
|
height?: number | null;
|
|
18963
|
-
|
|
18836
|
+
type?: string | null;
|
|
18964
18837
|
} | null;
|
|
18965
18838
|
attributes?: Array<{
|
|
18966
18839
|
__typename?: "MetadataAttribute";
|
|
@@ -19218,7 +19091,6 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19218
19091
|
type: ProductV1MediaType;
|
|
19219
19092
|
width?: number | null;
|
|
19220
19093
|
height?: number | null;
|
|
19221
|
-
name?: string | null;
|
|
19222
19094
|
}>;
|
|
19223
19095
|
visuals_videos?: Array<{
|
|
19224
19096
|
__typename?: "ProductV1Media";
|
|
@@ -19228,7 +19100,6 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19228
19100
|
type: ProductV1MediaType;
|
|
19229
19101
|
width?: number | null;
|
|
19230
19102
|
height?: number | null;
|
|
19231
|
-
name?: string | null;
|
|
19232
19103
|
}> | null;
|
|
19233
19104
|
productV1Seller?: {
|
|
19234
19105
|
__typename?: "ProductV1Seller";
|
|
@@ -19247,7 +19118,6 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19247
19118
|
type: ProductV1MediaType;
|
|
19248
19119
|
width?: number | null;
|
|
19249
19120
|
height?: number | null;
|
|
19250
|
-
name?: string | null;
|
|
19251
19121
|
}> | null;
|
|
19252
19122
|
contactLinks?: Array<{
|
|
19253
19123
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19294,7 +19164,6 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19294
19164
|
type: ProductV1MediaType;
|
|
19295
19165
|
width?: number | null;
|
|
19296
19166
|
height?: number | null;
|
|
19297
|
-
name?: string | null;
|
|
19298
19167
|
}> | null;
|
|
19299
19168
|
contactLinks?: Array<{
|
|
19300
19169
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19438,7 +19307,6 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19438
19307
|
type: ProductV1MediaType;
|
|
19439
19308
|
width?: number | null;
|
|
19440
19309
|
height?: number | null;
|
|
19441
|
-
name?: string | null;
|
|
19442
19310
|
}>;
|
|
19443
19311
|
visuals_videos?: Array<{
|
|
19444
19312
|
__typename?: "ProductV1Media";
|
|
@@ -19448,7 +19316,6 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19448
19316
|
type: ProductV1MediaType;
|
|
19449
19317
|
width?: number | null;
|
|
19450
19318
|
height?: number | null;
|
|
19451
|
-
name?: string | null;
|
|
19452
19319
|
}> | null;
|
|
19453
19320
|
productV1Seller?: {
|
|
19454
19321
|
__typename?: "ProductV1Seller";
|
|
@@ -19467,7 +19334,6 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19467
19334
|
type: ProductV1MediaType;
|
|
19468
19335
|
width?: number | null;
|
|
19469
19336
|
height?: number | null;
|
|
19470
|
-
name?: string | null;
|
|
19471
19337
|
}> | null;
|
|
19472
19338
|
contactLinks?: Array<{
|
|
19473
19339
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19514,7 +19380,6 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
19514
19380
|
type: ProductV1MediaType;
|
|
19515
19381
|
width?: number | null;
|
|
19516
19382
|
height?: number | null;
|
|
19517
|
-
name?: string | null;
|
|
19518
19383
|
}> | null;
|
|
19519
19384
|
contactLinks?: Array<{
|
|
19520
19385
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19553,7 +19418,7 @@ export declare type BaseAnimationMetadataFieldsFragment = {
|
|
|
19553
19418
|
id: string;
|
|
19554
19419
|
width?: number | null;
|
|
19555
19420
|
height?: number | null;
|
|
19556
|
-
|
|
19421
|
+
type?: string | null;
|
|
19557
19422
|
};
|
|
19558
19423
|
export declare type BaseProductV1ProductFieldsFragment = {
|
|
19559
19424
|
__typename?: "ProductV1Product";
|
|
@@ -19628,7 +19493,6 @@ export declare type BaseProductV1ProductFieldsFragment = {
|
|
|
19628
19493
|
type: ProductV1MediaType;
|
|
19629
19494
|
width?: number | null;
|
|
19630
19495
|
height?: number | null;
|
|
19631
|
-
name?: string | null;
|
|
19632
19496
|
}>;
|
|
19633
19497
|
visuals_videos?: Array<{
|
|
19634
19498
|
__typename?: "ProductV1Media";
|
|
@@ -19638,7 +19502,6 @@ export declare type BaseProductV1ProductFieldsFragment = {
|
|
|
19638
19502
|
type: ProductV1MediaType;
|
|
19639
19503
|
width?: number | null;
|
|
19640
19504
|
height?: number | null;
|
|
19641
|
-
name?: string | null;
|
|
19642
19505
|
}> | null;
|
|
19643
19506
|
productV1Seller?: {
|
|
19644
19507
|
__typename?: "ProductV1Seller";
|
|
@@ -19657,7 +19520,6 @@ export declare type BaseProductV1ProductFieldsFragment = {
|
|
|
19657
19520
|
type: ProductV1MediaType;
|
|
19658
19521
|
width?: number | null;
|
|
19659
19522
|
height?: number | null;
|
|
19660
|
-
name?: string | null;
|
|
19661
19523
|
}> | null;
|
|
19662
19524
|
contactLinks?: Array<{
|
|
19663
19525
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -19968,7 +19830,6 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19968
19830
|
type: ProductV1MediaType;
|
|
19969
19831
|
width?: number | null;
|
|
19970
19832
|
height?: number | null;
|
|
19971
|
-
name?: string | null;
|
|
19972
19833
|
}>;
|
|
19973
19834
|
visuals_videos?: Array<{
|
|
19974
19835
|
__typename?: "ProductV1Media";
|
|
@@ -19978,7 +19839,6 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19978
19839
|
type: ProductV1MediaType;
|
|
19979
19840
|
width?: number | null;
|
|
19980
19841
|
height?: number | null;
|
|
19981
|
-
name?: string | null;
|
|
19982
19842
|
}> | null;
|
|
19983
19843
|
productV1Seller?: {
|
|
19984
19844
|
__typename?: "ProductV1Seller";
|
|
@@ -19997,7 +19857,6 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
19997
19857
|
type: ProductV1MediaType;
|
|
19998
19858
|
width?: number | null;
|
|
19999
19859
|
height?: number | null;
|
|
20000
|
-
name?: string | null;
|
|
20001
19860
|
}> | null;
|
|
20002
19861
|
contactLinks?: Array<{
|
|
20003
19862
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20044,7 +19903,6 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
20044
19903
|
type: ProductV1MediaType;
|
|
20045
19904
|
width?: number | null;
|
|
20046
19905
|
height?: number | null;
|
|
20047
|
-
name?: string | null;
|
|
20048
19906
|
}> | null;
|
|
20049
19907
|
contactLinks?: Array<{
|
|
20050
19908
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20143,7 +20001,6 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
20143
20001
|
type: ProductV1MediaType;
|
|
20144
20002
|
width?: number | null;
|
|
20145
20003
|
height?: number | null;
|
|
20146
|
-
name?: string | null;
|
|
20147
20004
|
}>;
|
|
20148
20005
|
visuals_videos?: Array<{
|
|
20149
20006
|
__typename?: "ProductV1Media";
|
|
@@ -20153,7 +20010,6 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
20153
20010
|
type: ProductV1MediaType;
|
|
20154
20011
|
width?: number | null;
|
|
20155
20012
|
height?: number | null;
|
|
20156
|
-
name?: string | null;
|
|
20157
20013
|
}> | null;
|
|
20158
20014
|
productV1Seller?: {
|
|
20159
20015
|
__typename?: "ProductV1Seller";
|
|
@@ -20172,7 +20028,6 @@ export declare type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
20172
20028
|
type: ProductV1MediaType;
|
|
20173
20029
|
width?: number | null;
|
|
20174
20030
|
height?: number | null;
|
|
20175
|
-
name?: string | null;
|
|
20176
20031
|
}> | null;
|
|
20177
20032
|
contactLinks?: Array<{
|
|
20178
20033
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20483,7 +20338,6 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20483
20338
|
type: ProductV1MediaType;
|
|
20484
20339
|
width?: number | null;
|
|
20485
20340
|
height?: number | null;
|
|
20486
|
-
name?: string | null;
|
|
20487
20341
|
}>;
|
|
20488
20342
|
visuals_videos?: Array<{
|
|
20489
20343
|
__typename?: "ProductV1Media";
|
|
@@ -20493,7 +20347,6 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20493
20347
|
type: ProductV1MediaType;
|
|
20494
20348
|
width?: number | null;
|
|
20495
20349
|
height?: number | null;
|
|
20496
|
-
name?: string | null;
|
|
20497
20350
|
}> | null;
|
|
20498
20351
|
productV1Seller?: {
|
|
20499
20352
|
__typename?: "ProductV1Seller";
|
|
@@ -20512,7 +20365,6 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20512
20365
|
type: ProductV1MediaType;
|
|
20513
20366
|
width?: number | null;
|
|
20514
20367
|
height?: number | null;
|
|
20515
|
-
name?: string | null;
|
|
20516
20368
|
}> | null;
|
|
20517
20369
|
contactLinks?: Array<{
|
|
20518
20370
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20559,7 +20411,6 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20559
20411
|
type: ProductV1MediaType;
|
|
20560
20412
|
width?: number | null;
|
|
20561
20413
|
height?: number | null;
|
|
20562
|
-
name?: string | null;
|
|
20563
20414
|
}> | null;
|
|
20564
20415
|
contactLinks?: Array<{
|
|
20565
20416
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20658,7 +20509,6 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20658
20509
|
type: ProductV1MediaType;
|
|
20659
20510
|
width?: number | null;
|
|
20660
20511
|
height?: number | null;
|
|
20661
|
-
name?: string | null;
|
|
20662
20512
|
}>;
|
|
20663
20513
|
visuals_videos?: Array<{
|
|
20664
20514
|
__typename?: "ProductV1Media";
|
|
@@ -20668,7 +20518,6 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20668
20518
|
type: ProductV1MediaType;
|
|
20669
20519
|
width?: number | null;
|
|
20670
20520
|
height?: number | null;
|
|
20671
|
-
name?: string | null;
|
|
20672
20521
|
}> | null;
|
|
20673
20522
|
productV1Seller?: {
|
|
20674
20523
|
__typename?: "ProductV1Seller";
|
|
@@ -20687,7 +20536,6 @@ export declare type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
20687
20536
|
type: ProductV1MediaType;
|
|
20688
20537
|
width?: number | null;
|
|
20689
20538
|
height?: number | null;
|
|
20690
|
-
name?: string | null;
|
|
20691
20539
|
}> | null;
|
|
20692
20540
|
contactLinks?: Array<{
|
|
20693
20541
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20739,7 +20587,6 @@ export declare type BaseProductV1MediaFieldsFragment = {
|
|
|
20739
20587
|
type: ProductV1MediaType;
|
|
20740
20588
|
width?: number | null;
|
|
20741
20589
|
height?: number | null;
|
|
20742
|
-
name?: string | null;
|
|
20743
20590
|
};
|
|
20744
20591
|
export declare type BaseProductV1PersonalisationFieldsFragment = {
|
|
20745
20592
|
__typename?: "ProductV1Personalisation";
|
|
@@ -20769,7 +20616,6 @@ export declare type BaseProductV1SellerFieldsFragment = {
|
|
|
20769
20616
|
type: ProductV1MediaType;
|
|
20770
20617
|
width?: number | null;
|
|
20771
20618
|
height?: number | null;
|
|
20772
|
-
name?: string | null;
|
|
20773
20619
|
}> | null;
|
|
20774
20620
|
contactLinks?: Array<{
|
|
20775
20621
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -20862,7 +20708,6 @@ export declare type BaseProductV1ProductOverridesFieldsFragment = {
|
|
|
20862
20708
|
type: ProductV1MediaType;
|
|
20863
20709
|
width?: number | null;
|
|
20864
20710
|
height?: number | null;
|
|
20865
|
-
name?: string | null;
|
|
20866
20711
|
}>;
|
|
20867
20712
|
visuals_videos?: Array<{
|
|
20868
20713
|
__typename?: "ProductV1Media";
|
|
@@ -20872,7 +20717,6 @@ export declare type BaseProductV1ProductOverridesFieldsFragment = {
|
|
|
20872
20717
|
type: ProductV1MediaType;
|
|
20873
20718
|
width?: number | null;
|
|
20874
20719
|
height?: number | null;
|
|
20875
|
-
name?: string | null;
|
|
20876
20720
|
}> | null;
|
|
20877
20721
|
};
|
|
20878
20722
|
export declare type GetOfferByIdQueryQueryVariables = Exact<{
|
|
@@ -21136,7 +20980,6 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
21136
20980
|
type: ProductV1MediaType;
|
|
21137
20981
|
width?: number | null;
|
|
21138
20982
|
height?: number | null;
|
|
21139
|
-
name?: string | null;
|
|
21140
20983
|
}>;
|
|
21141
20984
|
visuals_videos?: Array<{
|
|
21142
20985
|
__typename?: "ProductV1Media";
|
|
@@ -21146,7 +20989,6 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
21146
20989
|
type: ProductV1MediaType;
|
|
21147
20990
|
width?: number | null;
|
|
21148
20991
|
height?: number | null;
|
|
21149
|
-
name?: string | null;
|
|
21150
20992
|
}> | null;
|
|
21151
20993
|
productV1Seller?: {
|
|
21152
20994
|
__typename?: "ProductV1Seller";
|
|
@@ -21165,7 +21007,6 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
21165
21007
|
type: ProductV1MediaType;
|
|
21166
21008
|
width?: number | null;
|
|
21167
21009
|
height?: number | null;
|
|
21168
|
-
name?: string | null;
|
|
21169
21010
|
}> | null;
|
|
21170
21011
|
contactLinks?: Array<{
|
|
21171
21012
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21212,7 +21053,6 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
21212
21053
|
type: ProductV1MediaType;
|
|
21213
21054
|
width?: number | null;
|
|
21214
21055
|
height?: number | null;
|
|
21215
|
-
name?: string | null;
|
|
21216
21056
|
}> | null;
|
|
21217
21057
|
contactLinks?: Array<{
|
|
21218
21058
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21527,7 +21367,6 @@ export declare type GetOffersQueryQuery = {
|
|
|
21527
21367
|
type: ProductV1MediaType;
|
|
21528
21368
|
width?: number | null;
|
|
21529
21369
|
height?: number | null;
|
|
21530
|
-
name?: string | null;
|
|
21531
21370
|
}>;
|
|
21532
21371
|
visuals_videos?: Array<{
|
|
21533
21372
|
__typename?: "ProductV1Media";
|
|
@@ -21537,7 +21376,6 @@ export declare type GetOffersQueryQuery = {
|
|
|
21537
21376
|
type: ProductV1MediaType;
|
|
21538
21377
|
width?: number | null;
|
|
21539
21378
|
height?: number | null;
|
|
21540
|
-
name?: string | null;
|
|
21541
21379
|
}> | null;
|
|
21542
21380
|
productV1Seller?: {
|
|
21543
21381
|
__typename?: "ProductV1Seller";
|
|
@@ -21556,7 +21394,6 @@ export declare type GetOffersQueryQuery = {
|
|
|
21556
21394
|
type: ProductV1MediaType;
|
|
21557
21395
|
width?: number | null;
|
|
21558
21396
|
height?: number | null;
|
|
21559
|
-
name?: string | null;
|
|
21560
21397
|
}> | null;
|
|
21561
21398
|
contactLinks?: Array<{
|
|
21562
21399
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21603,7 +21440,6 @@ export declare type GetOffersQueryQuery = {
|
|
|
21603
21440
|
type: ProductV1MediaType;
|
|
21604
21441
|
width?: number | null;
|
|
21605
21442
|
height?: number | null;
|
|
21606
|
-
name?: string | null;
|
|
21607
21443
|
}> | null;
|
|
21608
21444
|
contactLinks?: Array<{
|
|
21609
21445
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21903,7 +21739,6 @@ export declare type OfferFieldsFragment = {
|
|
|
21903
21739
|
type: ProductV1MediaType;
|
|
21904
21740
|
width?: number | null;
|
|
21905
21741
|
height?: number | null;
|
|
21906
|
-
name?: string | null;
|
|
21907
21742
|
}>;
|
|
21908
21743
|
visuals_videos?: Array<{
|
|
21909
21744
|
__typename?: "ProductV1Media";
|
|
@@ -21913,7 +21748,6 @@ export declare type OfferFieldsFragment = {
|
|
|
21913
21748
|
type: ProductV1MediaType;
|
|
21914
21749
|
width?: number | null;
|
|
21915
21750
|
height?: number | null;
|
|
21916
|
-
name?: string | null;
|
|
21917
21751
|
}> | null;
|
|
21918
21752
|
productV1Seller?: {
|
|
21919
21753
|
__typename?: "ProductV1Seller";
|
|
@@ -21932,7 +21766,6 @@ export declare type OfferFieldsFragment = {
|
|
|
21932
21766
|
type: ProductV1MediaType;
|
|
21933
21767
|
width?: number | null;
|
|
21934
21768
|
height?: number | null;
|
|
21935
|
-
name?: string | null;
|
|
21936
21769
|
}> | null;
|
|
21937
21770
|
contactLinks?: Array<{
|
|
21938
21771
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -21979,7 +21812,6 @@ export declare type OfferFieldsFragment = {
|
|
|
21979
21812
|
type: ProductV1MediaType;
|
|
21980
21813
|
width?: number | null;
|
|
21981
21814
|
height?: number | null;
|
|
21982
|
-
name?: string | null;
|
|
21983
21815
|
}> | null;
|
|
21984
21816
|
contactLinks?: Array<{
|
|
21985
21817
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -22228,7 +22060,6 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
22228
22060
|
type: ProductV1MediaType;
|
|
22229
22061
|
width?: number | null;
|
|
22230
22062
|
height?: number | null;
|
|
22231
|
-
name?: string | null;
|
|
22232
22063
|
}>;
|
|
22233
22064
|
visuals_videos?: Array<{
|
|
22234
22065
|
__typename?: "ProductV1Media";
|
|
@@ -22238,7 +22069,6 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
22238
22069
|
type: ProductV1MediaType;
|
|
22239
22070
|
width?: number | null;
|
|
22240
22071
|
height?: number | null;
|
|
22241
|
-
name?: string | null;
|
|
22242
22072
|
}> | null;
|
|
22243
22073
|
productV1Seller?: {
|
|
22244
22074
|
__typename?: "ProductV1Seller";
|
|
@@ -22257,7 +22087,6 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
22257
22087
|
type: ProductV1MediaType;
|
|
22258
22088
|
width?: number | null;
|
|
22259
22089
|
height?: number | null;
|
|
22260
|
-
name?: string | null;
|
|
22261
22090
|
}> | null;
|
|
22262
22091
|
contactLinks?: Array<{
|
|
22263
22092
|
__typename?: "ProductV1SellerContactLink";
|
|
@@ -22304,7 +22133,6 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
22304
22133
|
type: ProductV1MediaType;
|
|
22305
22134
|
width?: number | null;
|
|
22306
22135
|
height?: number | null;
|
|
22307
|
-
name?: string | null;
|
|
22308
22136
|
}> | null;
|
|
22309
22137
|
contactLinks?: Array<{
|
|
22310
22138
|
__typename?: "ProductV1SellerContactLink";
|