@bosonprotocol/core-sdk 1.30.1-alpha.0 → 1.31.0-alpha.1
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 +1416 -95
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +107 -48
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/cjs/utils/graphql.d.ts +13 -0
- package/dist/cjs/utils/graphql.d.ts.map +1 -1
- package/dist/esm/subgraph.d.ts +1416 -95
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +105 -45
- package/dist/esm/subgraph.js.map +1 -1
- package/dist/esm/utils/graphql.d.ts +13 -0
- package/dist/esm/utils/graphql.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/offers/queries.graphql +55 -0
- package/src/subgraph.ts +1406 -57
package/dist/cjs/subgraph.d.ts
CHANGED
|
@@ -9203,6 +9203,51 @@ export type GetSellerByIdQueryQuery = {
|
|
|
9203
9203
|
schemaUrl: string;
|
|
9204
9204
|
type: MetadataType;
|
|
9205
9205
|
image: string;
|
|
9206
|
+
productOverrides?: {
|
|
9207
|
+
__typename?: "ProductV1ProductOverrides";
|
|
9208
|
+
id: string;
|
|
9209
|
+
version: number;
|
|
9210
|
+
title: string;
|
|
9211
|
+
description: string;
|
|
9212
|
+
identification_sKU?: string | null;
|
|
9213
|
+
identification_productId?: string | null;
|
|
9214
|
+
identification_productIdType?: string | null;
|
|
9215
|
+
productionInformation_brandName: string;
|
|
9216
|
+
productionInformation_manufacturer?: string | null;
|
|
9217
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
9218
|
+
productionInformation_modelNumber?: string | null;
|
|
9219
|
+
productionInformation_materials?: Array<string> | null;
|
|
9220
|
+
packaging_packageQuantity?: string | null;
|
|
9221
|
+
packaging_dimensions_length?: string | null;
|
|
9222
|
+
packaging_dimensions_width?: string | null;
|
|
9223
|
+
packaging_dimensions_height?: string | null;
|
|
9224
|
+
packaging_dimensions_unit?: string | null;
|
|
9225
|
+
packaging_weight_value?: string | null;
|
|
9226
|
+
packaging_weight_unit?: string | null;
|
|
9227
|
+
brand: {
|
|
9228
|
+
__typename?: "ProductV1Brand";
|
|
9229
|
+
id: string;
|
|
9230
|
+
name: string;
|
|
9231
|
+
};
|
|
9232
|
+
visuals_images: Array<{
|
|
9233
|
+
__typename?: "ProductV1Media";
|
|
9234
|
+
id: string;
|
|
9235
|
+
url: string;
|
|
9236
|
+
tag?: string | null;
|
|
9237
|
+
type: ProductV1MediaType;
|
|
9238
|
+
width?: number | null;
|
|
9239
|
+
height?: number | null;
|
|
9240
|
+
}>;
|
|
9241
|
+
visuals_videos?: Array<{
|
|
9242
|
+
__typename?: "ProductV1Media";
|
|
9243
|
+
id: string;
|
|
9244
|
+
url: string;
|
|
9245
|
+
tag?: string | null;
|
|
9246
|
+
type: ProductV1MediaType;
|
|
9247
|
+
width?: number | null;
|
|
9248
|
+
height?: number | null;
|
|
9249
|
+
}> | null;
|
|
9250
|
+
} | null;
|
|
9206
9251
|
attributes?: Array<{
|
|
9207
9252
|
__typename?: "MetadataAttribute";
|
|
9208
9253
|
traitType: string;
|
|
@@ -10088,6 +10133,51 @@ export type GetSellersQueryQuery = {
|
|
|
10088
10133
|
schemaUrl: string;
|
|
10089
10134
|
type: MetadataType;
|
|
10090
10135
|
image: string;
|
|
10136
|
+
productOverrides?: {
|
|
10137
|
+
__typename?: "ProductV1ProductOverrides";
|
|
10138
|
+
id: string;
|
|
10139
|
+
version: number;
|
|
10140
|
+
title: string;
|
|
10141
|
+
description: string;
|
|
10142
|
+
identification_sKU?: string | null;
|
|
10143
|
+
identification_productId?: string | null;
|
|
10144
|
+
identification_productIdType?: string | null;
|
|
10145
|
+
productionInformation_brandName: string;
|
|
10146
|
+
productionInformation_manufacturer?: string | null;
|
|
10147
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
10148
|
+
productionInformation_modelNumber?: string | null;
|
|
10149
|
+
productionInformation_materials?: Array<string> | null;
|
|
10150
|
+
packaging_packageQuantity?: string | null;
|
|
10151
|
+
packaging_dimensions_length?: string | null;
|
|
10152
|
+
packaging_dimensions_width?: string | null;
|
|
10153
|
+
packaging_dimensions_height?: string | null;
|
|
10154
|
+
packaging_dimensions_unit?: string | null;
|
|
10155
|
+
packaging_weight_value?: string | null;
|
|
10156
|
+
packaging_weight_unit?: string | null;
|
|
10157
|
+
brand: {
|
|
10158
|
+
__typename?: "ProductV1Brand";
|
|
10159
|
+
id: string;
|
|
10160
|
+
name: string;
|
|
10161
|
+
};
|
|
10162
|
+
visuals_images: Array<{
|
|
10163
|
+
__typename?: "ProductV1Media";
|
|
10164
|
+
id: string;
|
|
10165
|
+
url: string;
|
|
10166
|
+
tag?: string | null;
|
|
10167
|
+
type: ProductV1MediaType;
|
|
10168
|
+
width?: number | null;
|
|
10169
|
+
height?: number | null;
|
|
10170
|
+
}>;
|
|
10171
|
+
visuals_videos?: Array<{
|
|
10172
|
+
__typename?: "ProductV1Media";
|
|
10173
|
+
id: string;
|
|
10174
|
+
url: string;
|
|
10175
|
+
tag?: string | null;
|
|
10176
|
+
type: ProductV1MediaType;
|
|
10177
|
+
width?: number | null;
|
|
10178
|
+
height?: number | null;
|
|
10179
|
+
}> | null;
|
|
10180
|
+
} | null;
|
|
10091
10181
|
attributes?: Array<{
|
|
10092
10182
|
__typename?: "MetadataAttribute";
|
|
10093
10183
|
traitType: string;
|
|
@@ -11464,6 +11554,51 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
11464
11554
|
schemaUrl: string;
|
|
11465
11555
|
type: MetadataType;
|
|
11466
11556
|
image: string;
|
|
11557
|
+
productOverrides?: {
|
|
11558
|
+
__typename?: "ProductV1ProductOverrides";
|
|
11559
|
+
id: string;
|
|
11560
|
+
version: number;
|
|
11561
|
+
title: string;
|
|
11562
|
+
description: string;
|
|
11563
|
+
identification_sKU?: string | null;
|
|
11564
|
+
identification_productId?: string | null;
|
|
11565
|
+
identification_productIdType?: string | null;
|
|
11566
|
+
productionInformation_brandName: string;
|
|
11567
|
+
productionInformation_manufacturer?: string | null;
|
|
11568
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
11569
|
+
productionInformation_modelNumber?: string | null;
|
|
11570
|
+
productionInformation_materials?: Array<string> | null;
|
|
11571
|
+
packaging_packageQuantity?: string | null;
|
|
11572
|
+
packaging_dimensions_length?: string | null;
|
|
11573
|
+
packaging_dimensions_width?: string | null;
|
|
11574
|
+
packaging_dimensions_height?: string | null;
|
|
11575
|
+
packaging_dimensions_unit?: string | null;
|
|
11576
|
+
packaging_weight_value?: string | null;
|
|
11577
|
+
packaging_weight_unit?: string | null;
|
|
11578
|
+
brand: {
|
|
11579
|
+
__typename?: "ProductV1Brand";
|
|
11580
|
+
id: string;
|
|
11581
|
+
name: string;
|
|
11582
|
+
};
|
|
11583
|
+
visuals_images: Array<{
|
|
11584
|
+
__typename?: "ProductV1Media";
|
|
11585
|
+
id: string;
|
|
11586
|
+
url: string;
|
|
11587
|
+
tag?: string | null;
|
|
11588
|
+
type: ProductV1MediaType;
|
|
11589
|
+
width?: number | null;
|
|
11590
|
+
height?: number | null;
|
|
11591
|
+
}>;
|
|
11592
|
+
visuals_videos?: Array<{
|
|
11593
|
+
__typename?: "ProductV1Media";
|
|
11594
|
+
id: string;
|
|
11595
|
+
url: string;
|
|
11596
|
+
tag?: string | null;
|
|
11597
|
+
type: ProductV1MediaType;
|
|
11598
|
+
width?: number | null;
|
|
11599
|
+
height?: number | null;
|
|
11600
|
+
}> | null;
|
|
11601
|
+
} | null;
|
|
11467
11602
|
attributes?: Array<{
|
|
11468
11603
|
__typename?: "MetadataAttribute";
|
|
11469
11604
|
traitType: string;
|
|
@@ -12168,6 +12303,51 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
12168
12303
|
schemaUrl: string;
|
|
12169
12304
|
type: MetadataType;
|
|
12170
12305
|
image: string;
|
|
12306
|
+
productOverrides?: {
|
|
12307
|
+
__typename?: "ProductV1ProductOverrides";
|
|
12308
|
+
id: string;
|
|
12309
|
+
version: number;
|
|
12310
|
+
title: string;
|
|
12311
|
+
description: string;
|
|
12312
|
+
identification_sKU?: string | null;
|
|
12313
|
+
identification_productId?: string | null;
|
|
12314
|
+
identification_productIdType?: string | null;
|
|
12315
|
+
productionInformation_brandName: string;
|
|
12316
|
+
productionInformation_manufacturer?: string | null;
|
|
12317
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
12318
|
+
productionInformation_modelNumber?: string | null;
|
|
12319
|
+
productionInformation_materials?: Array<string> | null;
|
|
12320
|
+
packaging_packageQuantity?: string | null;
|
|
12321
|
+
packaging_dimensions_length?: string | null;
|
|
12322
|
+
packaging_dimensions_width?: string | null;
|
|
12323
|
+
packaging_dimensions_height?: string | null;
|
|
12324
|
+
packaging_dimensions_unit?: string | null;
|
|
12325
|
+
packaging_weight_value?: string | null;
|
|
12326
|
+
packaging_weight_unit?: string | null;
|
|
12327
|
+
brand: {
|
|
12328
|
+
__typename?: "ProductV1Brand";
|
|
12329
|
+
id: string;
|
|
12330
|
+
name: string;
|
|
12331
|
+
};
|
|
12332
|
+
visuals_images: Array<{
|
|
12333
|
+
__typename?: "ProductV1Media";
|
|
12334
|
+
id: string;
|
|
12335
|
+
url: string;
|
|
12336
|
+
tag?: string | null;
|
|
12337
|
+
type: ProductV1MediaType;
|
|
12338
|
+
width?: number | null;
|
|
12339
|
+
height?: number | null;
|
|
12340
|
+
}>;
|
|
12341
|
+
visuals_videos?: Array<{
|
|
12342
|
+
__typename?: "ProductV1Media";
|
|
12343
|
+
id: string;
|
|
12344
|
+
url: string;
|
|
12345
|
+
tag?: string | null;
|
|
12346
|
+
type: ProductV1MediaType;
|
|
12347
|
+
width?: number | null;
|
|
12348
|
+
height?: number | null;
|
|
12349
|
+
}> | null;
|
|
12350
|
+
} | null;
|
|
12171
12351
|
attributes?: Array<{
|
|
12172
12352
|
__typename?: "MetadataAttribute";
|
|
12173
12353
|
traitType: string;
|
|
@@ -12870,6 +13050,51 @@ export type SellerFieldsFragment = {
|
|
|
12870
13050
|
schemaUrl: string;
|
|
12871
13051
|
type: MetadataType;
|
|
12872
13052
|
image: string;
|
|
13053
|
+
productOverrides?: {
|
|
13054
|
+
__typename?: "ProductV1ProductOverrides";
|
|
13055
|
+
id: string;
|
|
13056
|
+
version: number;
|
|
13057
|
+
title: string;
|
|
13058
|
+
description: string;
|
|
13059
|
+
identification_sKU?: string | null;
|
|
13060
|
+
identification_productId?: string | null;
|
|
13061
|
+
identification_productIdType?: string | null;
|
|
13062
|
+
productionInformation_brandName: string;
|
|
13063
|
+
productionInformation_manufacturer?: string | null;
|
|
13064
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
13065
|
+
productionInformation_modelNumber?: string | null;
|
|
13066
|
+
productionInformation_materials?: Array<string> | null;
|
|
13067
|
+
packaging_packageQuantity?: string | null;
|
|
13068
|
+
packaging_dimensions_length?: string | null;
|
|
13069
|
+
packaging_dimensions_width?: string | null;
|
|
13070
|
+
packaging_dimensions_height?: string | null;
|
|
13071
|
+
packaging_dimensions_unit?: string | null;
|
|
13072
|
+
packaging_weight_value?: string | null;
|
|
13073
|
+
packaging_weight_unit?: string | null;
|
|
13074
|
+
brand: {
|
|
13075
|
+
__typename?: "ProductV1Brand";
|
|
13076
|
+
id: string;
|
|
13077
|
+
name: string;
|
|
13078
|
+
};
|
|
13079
|
+
visuals_images: Array<{
|
|
13080
|
+
__typename?: "ProductV1Media";
|
|
13081
|
+
id: string;
|
|
13082
|
+
url: string;
|
|
13083
|
+
tag?: string | null;
|
|
13084
|
+
type: ProductV1MediaType;
|
|
13085
|
+
width?: number | null;
|
|
13086
|
+
height?: number | null;
|
|
13087
|
+
}>;
|
|
13088
|
+
visuals_videos?: Array<{
|
|
13089
|
+
__typename?: "ProductV1Media";
|
|
13090
|
+
id: string;
|
|
13091
|
+
url: string;
|
|
13092
|
+
tag?: string | null;
|
|
13093
|
+
type: ProductV1MediaType;
|
|
13094
|
+
width?: number | null;
|
|
13095
|
+
height?: number | null;
|
|
13096
|
+
}> | null;
|
|
13097
|
+
} | null;
|
|
12873
13098
|
attributes?: Array<{
|
|
12874
13099
|
__typename?: "MetadataAttribute";
|
|
12875
13100
|
traitType: string;
|
|
@@ -14067,16 +14292,9 @@ export type DisputeResolverFieldsFragment = {
|
|
|
14067
14292
|
schemaUrl: string;
|
|
14068
14293
|
type: MetadataType;
|
|
14069
14294
|
image: string;
|
|
14070
|
-
|
|
14071
|
-
__typename?: "
|
|
14072
|
-
traitType: string;
|
|
14073
|
-
value: string;
|
|
14074
|
-
displayType: string;
|
|
14075
|
-
}> | null;
|
|
14076
|
-
product: {
|
|
14077
|
-
__typename?: "ProductV1Product";
|
|
14295
|
+
productOverrides?: {
|
|
14296
|
+
__typename?: "ProductV1ProductOverrides";
|
|
14078
14297
|
id: string;
|
|
14079
|
-
uuid: string;
|
|
14080
14298
|
version: number;
|
|
14081
14299
|
title: string;
|
|
14082
14300
|
description: string;
|
|
@@ -14088,14 +14306,6 @@ export type DisputeResolverFieldsFragment = {
|
|
|
14088
14306
|
productionInformation_manufacturerPartNumber?: string | null;
|
|
14089
14307
|
productionInformation_modelNumber?: string | null;
|
|
14090
14308
|
productionInformation_materials?: Array<string> | null;
|
|
14091
|
-
details_category?: string | null;
|
|
14092
|
-
details_subCategory?: string | null;
|
|
14093
|
-
details_subCategory2?: string | null;
|
|
14094
|
-
details_offerCategory: string;
|
|
14095
|
-
offerCategory: ProductV1OfferCategory;
|
|
14096
|
-
details_tags?: Array<string> | null;
|
|
14097
|
-
details_sections?: Array<string> | null;
|
|
14098
|
-
details_personalisation?: Array<string> | null;
|
|
14099
14309
|
packaging_packageQuantity?: string | null;
|
|
14100
14310
|
packaging_dimensions_length?: string | null;
|
|
14101
14311
|
packaging_dimensions_width?: string | null;
|
|
@@ -14108,22 +14318,82 @@ export type DisputeResolverFieldsFragment = {
|
|
|
14108
14318
|
id: string;
|
|
14109
14319
|
name: string;
|
|
14110
14320
|
};
|
|
14111
|
-
|
|
14112
|
-
__typename?: "
|
|
14113
|
-
id: string;
|
|
14114
|
-
name: string;
|
|
14115
|
-
} | null;
|
|
14116
|
-
subCategory?: {
|
|
14117
|
-
__typename?: "ProductV1Category";
|
|
14321
|
+
visuals_images: Array<{
|
|
14322
|
+
__typename?: "ProductV1Media";
|
|
14118
14323
|
id: string;
|
|
14119
|
-
|
|
14120
|
-
|
|
14121
|
-
|
|
14122
|
-
|
|
14324
|
+
url: string;
|
|
14325
|
+
tag?: string | null;
|
|
14326
|
+
type: ProductV1MediaType;
|
|
14327
|
+
width?: number | null;
|
|
14328
|
+
height?: number | null;
|
|
14329
|
+
}>;
|
|
14330
|
+
visuals_videos?: Array<{
|
|
14331
|
+
__typename?: "ProductV1Media";
|
|
14123
14332
|
id: string;
|
|
14124
|
-
|
|
14125
|
-
|
|
14126
|
-
|
|
14333
|
+
url: string;
|
|
14334
|
+
tag?: string | null;
|
|
14335
|
+
type: ProductV1MediaType;
|
|
14336
|
+
width?: number | null;
|
|
14337
|
+
height?: number | null;
|
|
14338
|
+
}> | null;
|
|
14339
|
+
} | null;
|
|
14340
|
+
attributes?: Array<{
|
|
14341
|
+
__typename?: "MetadataAttribute";
|
|
14342
|
+
traitType: string;
|
|
14343
|
+
value: string;
|
|
14344
|
+
displayType: string;
|
|
14345
|
+
}> | null;
|
|
14346
|
+
product: {
|
|
14347
|
+
__typename?: "ProductV1Product";
|
|
14348
|
+
id: string;
|
|
14349
|
+
uuid: string;
|
|
14350
|
+
version: number;
|
|
14351
|
+
title: string;
|
|
14352
|
+
description: string;
|
|
14353
|
+
identification_sKU?: string | null;
|
|
14354
|
+
identification_productId?: string | null;
|
|
14355
|
+
identification_productIdType?: string | null;
|
|
14356
|
+
productionInformation_brandName: string;
|
|
14357
|
+
productionInformation_manufacturer?: string | null;
|
|
14358
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
14359
|
+
productionInformation_modelNumber?: string | null;
|
|
14360
|
+
productionInformation_materials?: Array<string> | null;
|
|
14361
|
+
details_category?: string | null;
|
|
14362
|
+
details_subCategory?: string | null;
|
|
14363
|
+
details_subCategory2?: string | null;
|
|
14364
|
+
details_offerCategory: string;
|
|
14365
|
+
offerCategory: ProductV1OfferCategory;
|
|
14366
|
+
details_tags?: Array<string> | null;
|
|
14367
|
+
details_sections?: Array<string> | null;
|
|
14368
|
+
details_personalisation?: Array<string> | null;
|
|
14369
|
+
packaging_packageQuantity?: string | null;
|
|
14370
|
+
packaging_dimensions_length?: string | null;
|
|
14371
|
+
packaging_dimensions_width?: string | null;
|
|
14372
|
+
packaging_dimensions_height?: string | null;
|
|
14373
|
+
packaging_dimensions_unit?: string | null;
|
|
14374
|
+
packaging_weight_value?: string | null;
|
|
14375
|
+
packaging_weight_unit?: string | null;
|
|
14376
|
+
brand: {
|
|
14377
|
+
__typename?: "ProductV1Brand";
|
|
14378
|
+
id: string;
|
|
14379
|
+
name: string;
|
|
14380
|
+
};
|
|
14381
|
+
category?: {
|
|
14382
|
+
__typename?: "ProductV1Category";
|
|
14383
|
+
id: string;
|
|
14384
|
+
name: string;
|
|
14385
|
+
} | null;
|
|
14386
|
+
subCategory?: {
|
|
14387
|
+
__typename?: "ProductV1Category";
|
|
14388
|
+
id: string;
|
|
14389
|
+
name: string;
|
|
14390
|
+
} | null;
|
|
14391
|
+
subCategory2?: {
|
|
14392
|
+
__typename?: "ProductV1Category";
|
|
14393
|
+
id: string;
|
|
14394
|
+
name: string;
|
|
14395
|
+
} | null;
|
|
14396
|
+
tags?: Array<{
|
|
14127
14397
|
__typename?: "ProductV1Tag";
|
|
14128
14398
|
id: string;
|
|
14129
14399
|
name: string;
|
|
@@ -15457,6 +15727,51 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
15457
15727
|
schemaUrl: string;
|
|
15458
15728
|
type: MetadataType;
|
|
15459
15729
|
image: string;
|
|
15730
|
+
productOverrides?: {
|
|
15731
|
+
__typename?: "ProductV1ProductOverrides";
|
|
15732
|
+
id: string;
|
|
15733
|
+
version: number;
|
|
15734
|
+
title: string;
|
|
15735
|
+
description: string;
|
|
15736
|
+
identification_sKU?: string | null;
|
|
15737
|
+
identification_productId?: string | null;
|
|
15738
|
+
identification_productIdType?: string | null;
|
|
15739
|
+
productionInformation_brandName: string;
|
|
15740
|
+
productionInformation_manufacturer?: string | null;
|
|
15741
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
15742
|
+
productionInformation_modelNumber?: string | null;
|
|
15743
|
+
productionInformation_materials?: Array<string> | null;
|
|
15744
|
+
packaging_packageQuantity?: string | null;
|
|
15745
|
+
packaging_dimensions_length?: string | null;
|
|
15746
|
+
packaging_dimensions_width?: string | null;
|
|
15747
|
+
packaging_dimensions_height?: string | null;
|
|
15748
|
+
packaging_dimensions_unit?: string | null;
|
|
15749
|
+
packaging_weight_value?: string | null;
|
|
15750
|
+
packaging_weight_unit?: string | null;
|
|
15751
|
+
brand: {
|
|
15752
|
+
__typename?: "ProductV1Brand";
|
|
15753
|
+
id: string;
|
|
15754
|
+
name: string;
|
|
15755
|
+
};
|
|
15756
|
+
visuals_images: Array<{
|
|
15757
|
+
__typename?: "ProductV1Media";
|
|
15758
|
+
id: string;
|
|
15759
|
+
url: string;
|
|
15760
|
+
tag?: string | null;
|
|
15761
|
+
type: ProductV1MediaType;
|
|
15762
|
+
width?: number | null;
|
|
15763
|
+
height?: number | null;
|
|
15764
|
+
}>;
|
|
15765
|
+
visuals_videos?: Array<{
|
|
15766
|
+
__typename?: "ProductV1Media";
|
|
15767
|
+
id: string;
|
|
15768
|
+
url: string;
|
|
15769
|
+
tag?: string | null;
|
|
15770
|
+
type: ProductV1MediaType;
|
|
15771
|
+
width?: number | null;
|
|
15772
|
+
height?: number | null;
|
|
15773
|
+
}> | null;
|
|
15774
|
+
} | null;
|
|
15460
15775
|
attributes?: Array<{
|
|
15461
15776
|
__typename?: "MetadataAttribute";
|
|
15462
15777
|
traitType: string;
|
|
@@ -16036,6 +16351,51 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
16036
16351
|
schemaUrl: string;
|
|
16037
16352
|
type: MetadataType;
|
|
16038
16353
|
image: string;
|
|
16354
|
+
productOverrides?: {
|
|
16355
|
+
__typename?: "ProductV1ProductOverrides";
|
|
16356
|
+
id: string;
|
|
16357
|
+
version: number;
|
|
16358
|
+
title: string;
|
|
16359
|
+
description: string;
|
|
16360
|
+
identification_sKU?: string | null;
|
|
16361
|
+
identification_productId?: string | null;
|
|
16362
|
+
identification_productIdType?: string | null;
|
|
16363
|
+
productionInformation_brandName: string;
|
|
16364
|
+
productionInformation_manufacturer?: string | null;
|
|
16365
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
16366
|
+
productionInformation_modelNumber?: string | null;
|
|
16367
|
+
productionInformation_materials?: Array<string> | null;
|
|
16368
|
+
packaging_packageQuantity?: string | null;
|
|
16369
|
+
packaging_dimensions_length?: string | null;
|
|
16370
|
+
packaging_dimensions_width?: string | null;
|
|
16371
|
+
packaging_dimensions_height?: string | null;
|
|
16372
|
+
packaging_dimensions_unit?: string | null;
|
|
16373
|
+
packaging_weight_value?: string | null;
|
|
16374
|
+
packaging_weight_unit?: string | null;
|
|
16375
|
+
brand: {
|
|
16376
|
+
__typename?: "ProductV1Brand";
|
|
16377
|
+
id: string;
|
|
16378
|
+
name: string;
|
|
16379
|
+
};
|
|
16380
|
+
visuals_images: Array<{
|
|
16381
|
+
__typename?: "ProductV1Media";
|
|
16382
|
+
id: string;
|
|
16383
|
+
url: string;
|
|
16384
|
+
tag?: string | null;
|
|
16385
|
+
type: ProductV1MediaType;
|
|
16386
|
+
width?: number | null;
|
|
16387
|
+
height?: number | null;
|
|
16388
|
+
}>;
|
|
16389
|
+
visuals_videos?: Array<{
|
|
16390
|
+
__typename?: "ProductV1Media";
|
|
16391
|
+
id: string;
|
|
16392
|
+
url: string;
|
|
16393
|
+
tag?: string | null;
|
|
16394
|
+
type: ProductV1MediaType;
|
|
16395
|
+
width?: number | null;
|
|
16396
|
+
height?: number | null;
|
|
16397
|
+
}> | null;
|
|
16398
|
+
} | null;
|
|
16039
16399
|
attributes?: Array<{
|
|
16040
16400
|
__typename?: "MetadataAttribute";
|
|
16041
16401
|
traitType: string;
|
|
@@ -16594,6 +16954,51 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
16594
16954
|
schemaUrl: string;
|
|
16595
16955
|
type: MetadataType;
|
|
16596
16956
|
image: string;
|
|
16957
|
+
productOverrides?: {
|
|
16958
|
+
__typename?: "ProductV1ProductOverrides";
|
|
16959
|
+
id: string;
|
|
16960
|
+
version: number;
|
|
16961
|
+
title: string;
|
|
16962
|
+
description: string;
|
|
16963
|
+
identification_sKU?: string | null;
|
|
16964
|
+
identification_productId?: string | null;
|
|
16965
|
+
identification_productIdType?: string | null;
|
|
16966
|
+
productionInformation_brandName: string;
|
|
16967
|
+
productionInformation_manufacturer?: string | null;
|
|
16968
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
16969
|
+
productionInformation_modelNumber?: string | null;
|
|
16970
|
+
productionInformation_materials?: Array<string> | null;
|
|
16971
|
+
packaging_packageQuantity?: string | null;
|
|
16972
|
+
packaging_dimensions_length?: string | null;
|
|
16973
|
+
packaging_dimensions_width?: string | null;
|
|
16974
|
+
packaging_dimensions_height?: string | null;
|
|
16975
|
+
packaging_dimensions_unit?: string | null;
|
|
16976
|
+
packaging_weight_value?: string | null;
|
|
16977
|
+
packaging_weight_unit?: string | null;
|
|
16978
|
+
brand: {
|
|
16979
|
+
__typename?: "ProductV1Brand";
|
|
16980
|
+
id: string;
|
|
16981
|
+
name: string;
|
|
16982
|
+
};
|
|
16983
|
+
visuals_images: Array<{
|
|
16984
|
+
__typename?: "ProductV1Media";
|
|
16985
|
+
id: string;
|
|
16986
|
+
url: string;
|
|
16987
|
+
tag?: string | null;
|
|
16988
|
+
type: ProductV1MediaType;
|
|
16989
|
+
width?: number | null;
|
|
16990
|
+
height?: number | null;
|
|
16991
|
+
}>;
|
|
16992
|
+
visuals_videos?: Array<{
|
|
16993
|
+
__typename?: "ProductV1Media";
|
|
16994
|
+
id: string;
|
|
16995
|
+
url: string;
|
|
16996
|
+
tag?: string | null;
|
|
16997
|
+
type: ProductV1MediaType;
|
|
16998
|
+
width?: number | null;
|
|
16999
|
+
height?: number | null;
|
|
17000
|
+
}> | null;
|
|
17001
|
+
} | null;
|
|
16597
17002
|
attributes?: Array<{
|
|
16598
17003
|
__typename?: "MetadataAttribute";
|
|
16599
17004
|
traitType: string;
|
|
@@ -17398,6 +17803,51 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
17398
17803
|
schemaUrl: string;
|
|
17399
17804
|
type: MetadataType;
|
|
17400
17805
|
image: string;
|
|
17806
|
+
productOverrides?: {
|
|
17807
|
+
__typename?: "ProductV1ProductOverrides";
|
|
17808
|
+
id: string;
|
|
17809
|
+
version: number;
|
|
17810
|
+
title: string;
|
|
17811
|
+
description: string;
|
|
17812
|
+
identification_sKU?: string | null;
|
|
17813
|
+
identification_productId?: string | null;
|
|
17814
|
+
identification_productIdType?: string | null;
|
|
17815
|
+
productionInformation_brandName: string;
|
|
17816
|
+
productionInformation_manufacturer?: string | null;
|
|
17817
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
17818
|
+
productionInformation_modelNumber?: string | null;
|
|
17819
|
+
productionInformation_materials?: Array<string> | null;
|
|
17820
|
+
packaging_packageQuantity?: string | null;
|
|
17821
|
+
packaging_dimensions_length?: string | null;
|
|
17822
|
+
packaging_dimensions_width?: string | null;
|
|
17823
|
+
packaging_dimensions_height?: string | null;
|
|
17824
|
+
packaging_dimensions_unit?: string | null;
|
|
17825
|
+
packaging_weight_value?: string | null;
|
|
17826
|
+
packaging_weight_unit?: string | null;
|
|
17827
|
+
brand: {
|
|
17828
|
+
__typename?: "ProductV1Brand";
|
|
17829
|
+
id: string;
|
|
17830
|
+
name: string;
|
|
17831
|
+
};
|
|
17832
|
+
visuals_images: Array<{
|
|
17833
|
+
__typename?: "ProductV1Media";
|
|
17834
|
+
id: string;
|
|
17835
|
+
url: string;
|
|
17836
|
+
tag?: string | null;
|
|
17837
|
+
type: ProductV1MediaType;
|
|
17838
|
+
width?: number | null;
|
|
17839
|
+
height?: number | null;
|
|
17840
|
+
}>;
|
|
17841
|
+
visuals_videos?: Array<{
|
|
17842
|
+
__typename?: "ProductV1Media";
|
|
17843
|
+
id: string;
|
|
17844
|
+
url: string;
|
|
17845
|
+
tag?: string | null;
|
|
17846
|
+
type: ProductV1MediaType;
|
|
17847
|
+
width?: number | null;
|
|
17848
|
+
height?: number | null;
|
|
17849
|
+
}> | null;
|
|
17850
|
+
} | null;
|
|
17401
17851
|
attributes?: Array<{
|
|
17402
17852
|
__typename?: "MetadataAttribute";
|
|
17403
17853
|
traitType: string;
|
|
@@ -18059,16 +18509,9 @@ export type GetExchangesQueryQuery = {
|
|
|
18059
18509
|
schemaUrl: string;
|
|
18060
18510
|
type: MetadataType;
|
|
18061
18511
|
image: string;
|
|
18062
|
-
|
|
18063
|
-
__typename?: "
|
|
18064
|
-
traitType: string;
|
|
18065
|
-
value: string;
|
|
18066
|
-
displayType: string;
|
|
18067
|
-
}> | null;
|
|
18068
|
-
product: {
|
|
18069
|
-
__typename?: "ProductV1Product";
|
|
18512
|
+
productOverrides?: {
|
|
18513
|
+
__typename?: "ProductV1ProductOverrides";
|
|
18070
18514
|
id: string;
|
|
18071
|
-
uuid: string;
|
|
18072
18515
|
version: number;
|
|
18073
18516
|
title: string;
|
|
18074
18517
|
description: string;
|
|
@@ -18080,14 +18523,6 @@ export type GetExchangesQueryQuery = {
|
|
|
18080
18523
|
productionInformation_manufacturerPartNumber?: string | null;
|
|
18081
18524
|
productionInformation_modelNumber?: string | null;
|
|
18082
18525
|
productionInformation_materials?: Array<string> | null;
|
|
18083
|
-
details_category?: string | null;
|
|
18084
|
-
details_subCategory?: string | null;
|
|
18085
|
-
details_subCategory2?: string | null;
|
|
18086
|
-
details_offerCategory: string;
|
|
18087
|
-
offerCategory: ProductV1OfferCategory;
|
|
18088
|
-
details_tags?: Array<string> | null;
|
|
18089
|
-
details_sections?: Array<string> | null;
|
|
18090
|
-
details_personalisation?: Array<string> | null;
|
|
18091
18526
|
packaging_packageQuantity?: string | null;
|
|
18092
18527
|
packaging_dimensions_length?: string | null;
|
|
18093
18528
|
packaging_dimensions_width?: string | null;
|
|
@@ -18100,9 +18535,69 @@ export type GetExchangesQueryQuery = {
|
|
|
18100
18535
|
id: string;
|
|
18101
18536
|
name: string;
|
|
18102
18537
|
};
|
|
18103
|
-
|
|
18104
|
-
__typename?: "
|
|
18105
|
-
id: string;
|
|
18538
|
+
visuals_images: Array<{
|
|
18539
|
+
__typename?: "ProductV1Media";
|
|
18540
|
+
id: string;
|
|
18541
|
+
url: string;
|
|
18542
|
+
tag?: string | null;
|
|
18543
|
+
type: ProductV1MediaType;
|
|
18544
|
+
width?: number | null;
|
|
18545
|
+
height?: number | null;
|
|
18546
|
+
}>;
|
|
18547
|
+
visuals_videos?: Array<{
|
|
18548
|
+
__typename?: "ProductV1Media";
|
|
18549
|
+
id: string;
|
|
18550
|
+
url: string;
|
|
18551
|
+
tag?: string | null;
|
|
18552
|
+
type: ProductV1MediaType;
|
|
18553
|
+
width?: number | null;
|
|
18554
|
+
height?: number | null;
|
|
18555
|
+
}> | null;
|
|
18556
|
+
} | null;
|
|
18557
|
+
attributes?: Array<{
|
|
18558
|
+
__typename?: "MetadataAttribute";
|
|
18559
|
+
traitType: string;
|
|
18560
|
+
value: string;
|
|
18561
|
+
displayType: string;
|
|
18562
|
+
}> | null;
|
|
18563
|
+
product: {
|
|
18564
|
+
__typename?: "ProductV1Product";
|
|
18565
|
+
id: string;
|
|
18566
|
+
uuid: string;
|
|
18567
|
+
version: number;
|
|
18568
|
+
title: string;
|
|
18569
|
+
description: string;
|
|
18570
|
+
identification_sKU?: string | null;
|
|
18571
|
+
identification_productId?: string | null;
|
|
18572
|
+
identification_productIdType?: string | null;
|
|
18573
|
+
productionInformation_brandName: string;
|
|
18574
|
+
productionInformation_manufacturer?: string | null;
|
|
18575
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
18576
|
+
productionInformation_modelNumber?: string | null;
|
|
18577
|
+
productionInformation_materials?: Array<string> | null;
|
|
18578
|
+
details_category?: string | null;
|
|
18579
|
+
details_subCategory?: string | null;
|
|
18580
|
+
details_subCategory2?: string | null;
|
|
18581
|
+
details_offerCategory: string;
|
|
18582
|
+
offerCategory: ProductV1OfferCategory;
|
|
18583
|
+
details_tags?: Array<string> | null;
|
|
18584
|
+
details_sections?: Array<string> | null;
|
|
18585
|
+
details_personalisation?: Array<string> | null;
|
|
18586
|
+
packaging_packageQuantity?: string | null;
|
|
18587
|
+
packaging_dimensions_length?: string | null;
|
|
18588
|
+
packaging_dimensions_width?: string | null;
|
|
18589
|
+
packaging_dimensions_height?: string | null;
|
|
18590
|
+
packaging_dimensions_unit?: string | null;
|
|
18591
|
+
packaging_weight_value?: string | null;
|
|
18592
|
+
packaging_weight_unit?: string | null;
|
|
18593
|
+
brand: {
|
|
18594
|
+
__typename?: "ProductV1Brand";
|
|
18595
|
+
id: string;
|
|
18596
|
+
name: string;
|
|
18597
|
+
};
|
|
18598
|
+
category?: {
|
|
18599
|
+
__typename?: "ProductV1Category";
|
|
18600
|
+
id: string;
|
|
18106
18601
|
name: string;
|
|
18107
18602
|
} | null;
|
|
18108
18603
|
subCategory?: {
|
|
@@ -18711,6 +19206,51 @@ export type ExchangeFieldsFragment = {
|
|
|
18711
19206
|
schemaUrl: string;
|
|
18712
19207
|
type: MetadataType;
|
|
18713
19208
|
image: string;
|
|
19209
|
+
productOverrides?: {
|
|
19210
|
+
__typename?: "ProductV1ProductOverrides";
|
|
19211
|
+
id: string;
|
|
19212
|
+
version: number;
|
|
19213
|
+
title: string;
|
|
19214
|
+
description: string;
|
|
19215
|
+
identification_sKU?: string | null;
|
|
19216
|
+
identification_productId?: string | null;
|
|
19217
|
+
identification_productIdType?: string | null;
|
|
19218
|
+
productionInformation_brandName: string;
|
|
19219
|
+
productionInformation_manufacturer?: string | null;
|
|
19220
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
19221
|
+
productionInformation_modelNumber?: string | null;
|
|
19222
|
+
productionInformation_materials?: Array<string> | null;
|
|
19223
|
+
packaging_packageQuantity?: string | null;
|
|
19224
|
+
packaging_dimensions_length?: string | null;
|
|
19225
|
+
packaging_dimensions_width?: string | null;
|
|
19226
|
+
packaging_dimensions_height?: string | null;
|
|
19227
|
+
packaging_dimensions_unit?: string | null;
|
|
19228
|
+
packaging_weight_value?: string | null;
|
|
19229
|
+
packaging_weight_unit?: string | null;
|
|
19230
|
+
brand: {
|
|
19231
|
+
__typename?: "ProductV1Brand";
|
|
19232
|
+
id: string;
|
|
19233
|
+
name: string;
|
|
19234
|
+
};
|
|
19235
|
+
visuals_images: Array<{
|
|
19236
|
+
__typename?: "ProductV1Media";
|
|
19237
|
+
id: string;
|
|
19238
|
+
url: string;
|
|
19239
|
+
tag?: string | null;
|
|
19240
|
+
type: ProductV1MediaType;
|
|
19241
|
+
width?: number | null;
|
|
19242
|
+
height?: number | null;
|
|
19243
|
+
}>;
|
|
19244
|
+
visuals_videos?: Array<{
|
|
19245
|
+
__typename?: "ProductV1Media";
|
|
19246
|
+
id: string;
|
|
19247
|
+
url: string;
|
|
19248
|
+
tag?: string | null;
|
|
19249
|
+
type: ProductV1MediaType;
|
|
19250
|
+
width?: number | null;
|
|
19251
|
+
height?: number | null;
|
|
19252
|
+
}> | null;
|
|
19253
|
+
} | null;
|
|
18714
19254
|
attributes?: Array<{
|
|
18715
19255
|
__typename?: "MetadataAttribute";
|
|
18716
19256
|
traitType: string;
|
|
@@ -19574,6 +20114,51 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
19574
20114
|
schemaUrl: string;
|
|
19575
20115
|
type: MetadataType;
|
|
19576
20116
|
image: string;
|
|
20117
|
+
productOverrides?: {
|
|
20118
|
+
__typename?: "ProductV1ProductOverrides";
|
|
20119
|
+
id: string;
|
|
20120
|
+
version: number;
|
|
20121
|
+
title: string;
|
|
20122
|
+
description: string;
|
|
20123
|
+
identification_sKU?: string | null;
|
|
20124
|
+
identification_productId?: string | null;
|
|
20125
|
+
identification_productIdType?: string | null;
|
|
20126
|
+
productionInformation_brandName: string;
|
|
20127
|
+
productionInformation_manufacturer?: string | null;
|
|
20128
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
20129
|
+
productionInformation_modelNumber?: string | null;
|
|
20130
|
+
productionInformation_materials?: Array<string> | null;
|
|
20131
|
+
packaging_packageQuantity?: string | null;
|
|
20132
|
+
packaging_dimensions_length?: string | null;
|
|
20133
|
+
packaging_dimensions_width?: string | null;
|
|
20134
|
+
packaging_dimensions_height?: string | null;
|
|
20135
|
+
packaging_dimensions_unit?: string | null;
|
|
20136
|
+
packaging_weight_value?: string | null;
|
|
20137
|
+
packaging_weight_unit?: string | null;
|
|
20138
|
+
brand: {
|
|
20139
|
+
__typename?: "ProductV1Brand";
|
|
20140
|
+
id: string;
|
|
20141
|
+
name: string;
|
|
20142
|
+
};
|
|
20143
|
+
visuals_images: Array<{
|
|
20144
|
+
__typename?: "ProductV1Media";
|
|
20145
|
+
id: string;
|
|
20146
|
+
url: string;
|
|
20147
|
+
tag?: string | null;
|
|
20148
|
+
type: ProductV1MediaType;
|
|
20149
|
+
width?: number | null;
|
|
20150
|
+
height?: number | null;
|
|
20151
|
+
}>;
|
|
20152
|
+
visuals_videos?: Array<{
|
|
20153
|
+
__typename?: "ProductV1Media";
|
|
20154
|
+
id: string;
|
|
20155
|
+
url: string;
|
|
20156
|
+
tag?: string | null;
|
|
20157
|
+
type: ProductV1MediaType;
|
|
20158
|
+
width?: number | null;
|
|
20159
|
+
height?: number | null;
|
|
20160
|
+
}> | null;
|
|
20161
|
+
} | null;
|
|
19577
20162
|
attributes?: Array<{
|
|
19578
20163
|
__typename?: "MetadataAttribute";
|
|
19579
20164
|
traitType: string;
|
|
@@ -20240,6 +20825,51 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
20240
20825
|
schemaUrl: string;
|
|
20241
20826
|
type: MetadataType;
|
|
20242
20827
|
image: string;
|
|
20828
|
+
productOverrides?: {
|
|
20829
|
+
__typename?: "ProductV1ProductOverrides";
|
|
20830
|
+
id: string;
|
|
20831
|
+
version: number;
|
|
20832
|
+
title: string;
|
|
20833
|
+
description: string;
|
|
20834
|
+
identification_sKU?: string | null;
|
|
20835
|
+
identification_productId?: string | null;
|
|
20836
|
+
identification_productIdType?: string | null;
|
|
20837
|
+
productionInformation_brandName: string;
|
|
20838
|
+
productionInformation_manufacturer?: string | null;
|
|
20839
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
20840
|
+
productionInformation_modelNumber?: string | null;
|
|
20841
|
+
productionInformation_materials?: Array<string> | null;
|
|
20842
|
+
packaging_packageQuantity?: string | null;
|
|
20843
|
+
packaging_dimensions_length?: string | null;
|
|
20844
|
+
packaging_dimensions_width?: string | null;
|
|
20845
|
+
packaging_dimensions_height?: string | null;
|
|
20846
|
+
packaging_dimensions_unit?: string | null;
|
|
20847
|
+
packaging_weight_value?: string | null;
|
|
20848
|
+
packaging_weight_unit?: string | null;
|
|
20849
|
+
brand: {
|
|
20850
|
+
__typename?: "ProductV1Brand";
|
|
20851
|
+
id: string;
|
|
20852
|
+
name: string;
|
|
20853
|
+
};
|
|
20854
|
+
visuals_images: Array<{
|
|
20855
|
+
__typename?: "ProductV1Media";
|
|
20856
|
+
id: string;
|
|
20857
|
+
url: string;
|
|
20858
|
+
tag?: string | null;
|
|
20859
|
+
type: ProductV1MediaType;
|
|
20860
|
+
width?: number | null;
|
|
20861
|
+
height?: number | null;
|
|
20862
|
+
}>;
|
|
20863
|
+
visuals_videos?: Array<{
|
|
20864
|
+
__typename?: "ProductV1Media";
|
|
20865
|
+
id: string;
|
|
20866
|
+
url: string;
|
|
20867
|
+
tag?: string | null;
|
|
20868
|
+
type: ProductV1MediaType;
|
|
20869
|
+
width?: number | null;
|
|
20870
|
+
height?: number | null;
|
|
20871
|
+
}> | null;
|
|
20872
|
+
} | null;
|
|
20243
20873
|
attributes?: Array<{
|
|
20244
20874
|
__typename?: "MetadataAttribute";
|
|
20245
20875
|
traitType: string;
|
|
@@ -20897,6 +21527,51 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
20897
21527
|
schemaUrl: string;
|
|
20898
21528
|
type: MetadataType;
|
|
20899
21529
|
image: string;
|
|
21530
|
+
productOverrides?: {
|
|
21531
|
+
__typename?: "ProductV1ProductOverrides";
|
|
21532
|
+
id: string;
|
|
21533
|
+
version: number;
|
|
21534
|
+
title: string;
|
|
21535
|
+
description: string;
|
|
21536
|
+
identification_sKU?: string | null;
|
|
21537
|
+
identification_productId?: string | null;
|
|
21538
|
+
identification_productIdType?: string | null;
|
|
21539
|
+
productionInformation_brandName: string;
|
|
21540
|
+
productionInformation_manufacturer?: string | null;
|
|
21541
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
21542
|
+
productionInformation_modelNumber?: string | null;
|
|
21543
|
+
productionInformation_materials?: Array<string> | null;
|
|
21544
|
+
packaging_packageQuantity?: string | null;
|
|
21545
|
+
packaging_dimensions_length?: string | null;
|
|
21546
|
+
packaging_dimensions_width?: string | null;
|
|
21547
|
+
packaging_dimensions_height?: string | null;
|
|
21548
|
+
packaging_dimensions_unit?: string | null;
|
|
21549
|
+
packaging_weight_value?: string | null;
|
|
21550
|
+
packaging_weight_unit?: string | null;
|
|
21551
|
+
brand: {
|
|
21552
|
+
__typename?: "ProductV1Brand";
|
|
21553
|
+
id: string;
|
|
21554
|
+
name: string;
|
|
21555
|
+
};
|
|
21556
|
+
visuals_images: Array<{
|
|
21557
|
+
__typename?: "ProductV1Media";
|
|
21558
|
+
id: string;
|
|
21559
|
+
url: string;
|
|
21560
|
+
tag?: string | null;
|
|
21561
|
+
type: ProductV1MediaType;
|
|
21562
|
+
width?: number | null;
|
|
21563
|
+
height?: number | null;
|
|
21564
|
+
}>;
|
|
21565
|
+
visuals_videos?: Array<{
|
|
21566
|
+
__typename?: "ProductV1Media";
|
|
21567
|
+
id: string;
|
|
21568
|
+
url: string;
|
|
21569
|
+
tag?: string | null;
|
|
21570
|
+
type: ProductV1MediaType;
|
|
21571
|
+
width?: number | null;
|
|
21572
|
+
height?: number | null;
|
|
21573
|
+
}> | null;
|
|
21574
|
+
} | null;
|
|
20900
21575
|
attributes?: Array<{
|
|
20901
21576
|
__typename?: "MetadataAttribute";
|
|
20902
21577
|
traitType: string;
|
|
@@ -21553,16 +22228,9 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
21553
22228
|
schemaUrl: string;
|
|
21554
22229
|
type: MetadataType;
|
|
21555
22230
|
image: string;
|
|
21556
|
-
|
|
21557
|
-
__typename?: "
|
|
21558
|
-
traitType: string;
|
|
21559
|
-
value: string;
|
|
21560
|
-
displayType: string;
|
|
21561
|
-
}> | null;
|
|
21562
|
-
product: {
|
|
21563
|
-
__typename?: "ProductV1Product";
|
|
22231
|
+
productOverrides?: {
|
|
22232
|
+
__typename?: "ProductV1ProductOverrides";
|
|
21564
22233
|
id: string;
|
|
21565
|
-
uuid: string;
|
|
21566
22234
|
version: number;
|
|
21567
22235
|
title: string;
|
|
21568
22236
|
description: string;
|
|
@@ -21574,14 +22242,6 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
21574
22242
|
productionInformation_manufacturerPartNumber?: string | null;
|
|
21575
22243
|
productionInformation_modelNumber?: string | null;
|
|
21576
22244
|
productionInformation_materials?: Array<string> | null;
|
|
21577
|
-
details_category?: string | null;
|
|
21578
|
-
details_subCategory?: string | null;
|
|
21579
|
-
details_subCategory2?: string | null;
|
|
21580
|
-
details_offerCategory: string;
|
|
21581
|
-
offerCategory: ProductV1OfferCategory;
|
|
21582
|
-
details_tags?: Array<string> | null;
|
|
21583
|
-
details_sections?: Array<string> | null;
|
|
21584
|
-
details_personalisation?: Array<string> | null;
|
|
21585
22245
|
packaging_packageQuantity?: string | null;
|
|
21586
22246
|
packaging_dimensions_length?: string | null;
|
|
21587
22247
|
packaging_dimensions_width?: string | null;
|
|
@@ -21594,8 +22254,68 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
21594
22254
|
id: string;
|
|
21595
22255
|
name: string;
|
|
21596
22256
|
};
|
|
21597
|
-
|
|
21598
|
-
__typename?: "
|
|
22257
|
+
visuals_images: Array<{
|
|
22258
|
+
__typename?: "ProductV1Media";
|
|
22259
|
+
id: string;
|
|
22260
|
+
url: string;
|
|
22261
|
+
tag?: string | null;
|
|
22262
|
+
type: ProductV1MediaType;
|
|
22263
|
+
width?: number | null;
|
|
22264
|
+
height?: number | null;
|
|
22265
|
+
}>;
|
|
22266
|
+
visuals_videos?: Array<{
|
|
22267
|
+
__typename?: "ProductV1Media";
|
|
22268
|
+
id: string;
|
|
22269
|
+
url: string;
|
|
22270
|
+
tag?: string | null;
|
|
22271
|
+
type: ProductV1MediaType;
|
|
22272
|
+
width?: number | null;
|
|
22273
|
+
height?: number | null;
|
|
22274
|
+
}> | null;
|
|
22275
|
+
} | null;
|
|
22276
|
+
attributes?: Array<{
|
|
22277
|
+
__typename?: "MetadataAttribute";
|
|
22278
|
+
traitType: string;
|
|
22279
|
+
value: string;
|
|
22280
|
+
displayType: string;
|
|
22281
|
+
}> | null;
|
|
22282
|
+
product: {
|
|
22283
|
+
__typename?: "ProductV1Product";
|
|
22284
|
+
id: string;
|
|
22285
|
+
uuid: string;
|
|
22286
|
+
version: number;
|
|
22287
|
+
title: string;
|
|
22288
|
+
description: string;
|
|
22289
|
+
identification_sKU?: string | null;
|
|
22290
|
+
identification_productId?: string | null;
|
|
22291
|
+
identification_productIdType?: string | null;
|
|
22292
|
+
productionInformation_brandName: string;
|
|
22293
|
+
productionInformation_manufacturer?: string | null;
|
|
22294
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
22295
|
+
productionInformation_modelNumber?: string | null;
|
|
22296
|
+
productionInformation_materials?: Array<string> | null;
|
|
22297
|
+
details_category?: string | null;
|
|
22298
|
+
details_subCategory?: string | null;
|
|
22299
|
+
details_subCategory2?: string | null;
|
|
22300
|
+
details_offerCategory: string;
|
|
22301
|
+
offerCategory: ProductV1OfferCategory;
|
|
22302
|
+
details_tags?: Array<string> | null;
|
|
22303
|
+
details_sections?: Array<string> | null;
|
|
22304
|
+
details_personalisation?: Array<string> | null;
|
|
22305
|
+
packaging_packageQuantity?: string | null;
|
|
22306
|
+
packaging_dimensions_length?: string | null;
|
|
22307
|
+
packaging_dimensions_width?: string | null;
|
|
22308
|
+
packaging_dimensions_height?: string | null;
|
|
22309
|
+
packaging_dimensions_unit?: string | null;
|
|
22310
|
+
packaging_weight_value?: string | null;
|
|
22311
|
+
packaging_weight_unit?: string | null;
|
|
22312
|
+
brand: {
|
|
22313
|
+
__typename?: "ProductV1Brand";
|
|
22314
|
+
id: string;
|
|
22315
|
+
name: string;
|
|
22316
|
+
};
|
|
22317
|
+
category?: {
|
|
22318
|
+
__typename?: "ProductV1Category";
|
|
21599
22319
|
id: string;
|
|
21600
22320
|
name: string;
|
|
21601
22321
|
} | null;
|
|
@@ -22560,6 +23280,51 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
22560
23280
|
schemaUrl: string;
|
|
22561
23281
|
type: MetadataType;
|
|
22562
23282
|
image: string;
|
|
23283
|
+
productOverrides?: {
|
|
23284
|
+
__typename?: "ProductV1ProductOverrides";
|
|
23285
|
+
id: string;
|
|
23286
|
+
version: number;
|
|
23287
|
+
title: string;
|
|
23288
|
+
description: string;
|
|
23289
|
+
identification_sKU?: string | null;
|
|
23290
|
+
identification_productId?: string | null;
|
|
23291
|
+
identification_productIdType?: string | null;
|
|
23292
|
+
productionInformation_brandName: string;
|
|
23293
|
+
productionInformation_manufacturer?: string | null;
|
|
23294
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
23295
|
+
productionInformation_modelNumber?: string | null;
|
|
23296
|
+
productionInformation_materials?: Array<string> | null;
|
|
23297
|
+
packaging_packageQuantity?: string | null;
|
|
23298
|
+
packaging_dimensions_length?: string | null;
|
|
23299
|
+
packaging_dimensions_width?: string | null;
|
|
23300
|
+
packaging_dimensions_height?: string | null;
|
|
23301
|
+
packaging_dimensions_unit?: string | null;
|
|
23302
|
+
packaging_weight_value?: string | null;
|
|
23303
|
+
packaging_weight_unit?: string | null;
|
|
23304
|
+
brand: {
|
|
23305
|
+
__typename?: "ProductV1Brand";
|
|
23306
|
+
id: string;
|
|
23307
|
+
name: string;
|
|
23308
|
+
};
|
|
23309
|
+
visuals_images: Array<{
|
|
23310
|
+
__typename?: "ProductV1Media";
|
|
23311
|
+
id: string;
|
|
23312
|
+
url: string;
|
|
23313
|
+
tag?: string | null;
|
|
23314
|
+
type: ProductV1MediaType;
|
|
23315
|
+
width?: number | null;
|
|
23316
|
+
height?: number | null;
|
|
23317
|
+
}>;
|
|
23318
|
+
visuals_videos?: Array<{
|
|
23319
|
+
__typename?: "ProductV1Media";
|
|
23320
|
+
id: string;
|
|
23321
|
+
url: string;
|
|
23322
|
+
tag?: string | null;
|
|
23323
|
+
type: ProductV1MediaType;
|
|
23324
|
+
width?: number | null;
|
|
23325
|
+
height?: number | null;
|
|
23326
|
+
}> | null;
|
|
23327
|
+
} | null;
|
|
22563
23328
|
attributes?: Array<{
|
|
22564
23329
|
__typename?: "MetadataAttribute";
|
|
22565
23330
|
traitType: string;
|
|
@@ -23439,6 +24204,51 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
23439
24204
|
schemaUrl: string;
|
|
23440
24205
|
type: MetadataType;
|
|
23441
24206
|
image: string;
|
|
24207
|
+
productOverrides?: {
|
|
24208
|
+
__typename?: "ProductV1ProductOverrides";
|
|
24209
|
+
id: string;
|
|
24210
|
+
version: number;
|
|
24211
|
+
title: string;
|
|
24212
|
+
description: string;
|
|
24213
|
+
identification_sKU?: string | null;
|
|
24214
|
+
identification_productId?: string | null;
|
|
24215
|
+
identification_productIdType?: string | null;
|
|
24216
|
+
productionInformation_brandName: string;
|
|
24217
|
+
productionInformation_manufacturer?: string | null;
|
|
24218
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
24219
|
+
productionInformation_modelNumber?: string | null;
|
|
24220
|
+
productionInformation_materials?: Array<string> | null;
|
|
24221
|
+
packaging_packageQuantity?: string | null;
|
|
24222
|
+
packaging_dimensions_length?: string | null;
|
|
24223
|
+
packaging_dimensions_width?: string | null;
|
|
24224
|
+
packaging_dimensions_height?: string | null;
|
|
24225
|
+
packaging_dimensions_unit?: string | null;
|
|
24226
|
+
packaging_weight_value?: string | null;
|
|
24227
|
+
packaging_weight_unit?: string | null;
|
|
24228
|
+
brand: {
|
|
24229
|
+
__typename?: "ProductV1Brand";
|
|
24230
|
+
id: string;
|
|
24231
|
+
name: string;
|
|
24232
|
+
};
|
|
24233
|
+
visuals_images: Array<{
|
|
24234
|
+
__typename?: "ProductV1Media";
|
|
24235
|
+
id: string;
|
|
24236
|
+
url: string;
|
|
24237
|
+
tag?: string | null;
|
|
24238
|
+
type: ProductV1MediaType;
|
|
24239
|
+
width?: number | null;
|
|
24240
|
+
height?: number | null;
|
|
24241
|
+
}>;
|
|
24242
|
+
visuals_videos?: Array<{
|
|
24243
|
+
__typename?: "ProductV1Media";
|
|
24244
|
+
id: string;
|
|
24245
|
+
url: string;
|
|
24246
|
+
tag?: string | null;
|
|
24247
|
+
type: ProductV1MediaType;
|
|
24248
|
+
width?: number | null;
|
|
24249
|
+
height?: number | null;
|
|
24250
|
+
}> | null;
|
|
24251
|
+
} | null;
|
|
23442
24252
|
attributes?: Array<{
|
|
23443
24253
|
__typename?: "MetadataAttribute";
|
|
23444
24254
|
traitType: string;
|
|
@@ -24330,6 +25140,51 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
24330
25140
|
schemaUrl: string;
|
|
24331
25141
|
type: MetadataType;
|
|
24332
25142
|
image: string;
|
|
25143
|
+
productOverrides?: {
|
|
25144
|
+
__typename?: "ProductV1ProductOverrides";
|
|
25145
|
+
id: string;
|
|
25146
|
+
version: number;
|
|
25147
|
+
title: string;
|
|
25148
|
+
description: string;
|
|
25149
|
+
identification_sKU?: string | null;
|
|
25150
|
+
identification_productId?: string | null;
|
|
25151
|
+
identification_productIdType?: string | null;
|
|
25152
|
+
productionInformation_brandName: string;
|
|
25153
|
+
productionInformation_manufacturer?: string | null;
|
|
25154
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
25155
|
+
productionInformation_modelNumber?: string | null;
|
|
25156
|
+
productionInformation_materials?: Array<string> | null;
|
|
25157
|
+
packaging_packageQuantity?: string | null;
|
|
25158
|
+
packaging_dimensions_length?: string | null;
|
|
25159
|
+
packaging_dimensions_width?: string | null;
|
|
25160
|
+
packaging_dimensions_height?: string | null;
|
|
25161
|
+
packaging_dimensions_unit?: string | null;
|
|
25162
|
+
packaging_weight_value?: string | null;
|
|
25163
|
+
packaging_weight_unit?: string | null;
|
|
25164
|
+
brand: {
|
|
25165
|
+
__typename?: "ProductV1Brand";
|
|
25166
|
+
id: string;
|
|
25167
|
+
name: string;
|
|
25168
|
+
};
|
|
25169
|
+
visuals_images: Array<{
|
|
25170
|
+
__typename?: "ProductV1Media";
|
|
25171
|
+
id: string;
|
|
25172
|
+
url: string;
|
|
25173
|
+
tag?: string | null;
|
|
25174
|
+
type: ProductV1MediaType;
|
|
25175
|
+
width?: number | null;
|
|
25176
|
+
height?: number | null;
|
|
25177
|
+
}>;
|
|
25178
|
+
visuals_videos?: Array<{
|
|
25179
|
+
__typename?: "ProductV1Media";
|
|
25180
|
+
id: string;
|
|
25181
|
+
url: string;
|
|
25182
|
+
tag?: string | null;
|
|
25183
|
+
type: ProductV1MediaType;
|
|
25184
|
+
width?: number | null;
|
|
25185
|
+
height?: number | null;
|
|
25186
|
+
}> | null;
|
|
25187
|
+
} | null;
|
|
24333
25188
|
attributes?: Array<{
|
|
24334
25189
|
__typename?: "MetadataAttribute";
|
|
24335
25190
|
traitType: string;
|
|
@@ -25423,6 +26278,51 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
25423
26278
|
schemaUrl: string;
|
|
25424
26279
|
type: MetadataType;
|
|
25425
26280
|
image: string;
|
|
26281
|
+
productOverrides?: {
|
|
26282
|
+
__typename?: "ProductV1ProductOverrides";
|
|
26283
|
+
id: string;
|
|
26284
|
+
version: number;
|
|
26285
|
+
title: string;
|
|
26286
|
+
description: string;
|
|
26287
|
+
identification_sKU?: string | null;
|
|
26288
|
+
identification_productId?: string | null;
|
|
26289
|
+
identification_productIdType?: string | null;
|
|
26290
|
+
productionInformation_brandName: string;
|
|
26291
|
+
productionInformation_manufacturer?: string | null;
|
|
26292
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
26293
|
+
productionInformation_modelNumber?: string | null;
|
|
26294
|
+
productionInformation_materials?: Array<string> | null;
|
|
26295
|
+
packaging_packageQuantity?: string | null;
|
|
26296
|
+
packaging_dimensions_length?: string | null;
|
|
26297
|
+
packaging_dimensions_width?: string | null;
|
|
26298
|
+
packaging_dimensions_height?: string | null;
|
|
26299
|
+
packaging_dimensions_unit?: string | null;
|
|
26300
|
+
packaging_weight_value?: string | null;
|
|
26301
|
+
packaging_weight_unit?: string | null;
|
|
26302
|
+
brand: {
|
|
26303
|
+
__typename?: "ProductV1Brand";
|
|
26304
|
+
id: string;
|
|
26305
|
+
name: string;
|
|
26306
|
+
};
|
|
26307
|
+
visuals_images: Array<{
|
|
26308
|
+
__typename?: "ProductV1Media";
|
|
26309
|
+
id: string;
|
|
26310
|
+
url: string;
|
|
26311
|
+
tag?: string | null;
|
|
26312
|
+
type: ProductV1MediaType;
|
|
26313
|
+
width?: number | null;
|
|
26314
|
+
height?: number | null;
|
|
26315
|
+
}>;
|
|
26316
|
+
visuals_videos?: Array<{
|
|
26317
|
+
__typename?: "ProductV1Media";
|
|
26318
|
+
id: string;
|
|
26319
|
+
url: string;
|
|
26320
|
+
tag?: string | null;
|
|
26321
|
+
type: ProductV1MediaType;
|
|
26322
|
+
width?: number | null;
|
|
26323
|
+
height?: number | null;
|
|
26324
|
+
}> | null;
|
|
26325
|
+
} | null;
|
|
25426
26326
|
attributes?: Array<{
|
|
25427
26327
|
__typename?: "MetadataAttribute";
|
|
25428
26328
|
traitType: string;
|
|
@@ -26507,16 +27407,9 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
26507
27407
|
schemaUrl: string;
|
|
26508
27408
|
type: MetadataType;
|
|
26509
27409
|
image: string;
|
|
26510
|
-
|
|
26511
|
-
__typename?: "
|
|
26512
|
-
traitType: string;
|
|
26513
|
-
value: string;
|
|
26514
|
-
displayType: string;
|
|
26515
|
-
}> | null;
|
|
26516
|
-
product: {
|
|
26517
|
-
__typename?: "ProductV1Product";
|
|
27410
|
+
productOverrides?: {
|
|
27411
|
+
__typename?: "ProductV1ProductOverrides";
|
|
26518
27412
|
id: string;
|
|
26519
|
-
uuid: string;
|
|
26520
27413
|
version: number;
|
|
26521
27414
|
title: string;
|
|
26522
27415
|
description: string;
|
|
@@ -26528,14 +27421,6 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
26528
27421
|
productionInformation_manufacturerPartNumber?: string | null;
|
|
26529
27422
|
productionInformation_modelNumber?: string | null;
|
|
26530
27423
|
productionInformation_materials?: Array<string> | null;
|
|
26531
|
-
details_category?: string | null;
|
|
26532
|
-
details_subCategory?: string | null;
|
|
26533
|
-
details_subCategory2?: string | null;
|
|
26534
|
-
details_offerCategory: string;
|
|
26535
|
-
offerCategory: ProductV1OfferCategory;
|
|
26536
|
-
details_tags?: Array<string> | null;
|
|
26537
|
-
details_sections?: Array<string> | null;
|
|
26538
|
-
details_personalisation?: Array<string> | null;
|
|
26539
27424
|
packaging_packageQuantity?: string | null;
|
|
26540
27425
|
packaging_dimensions_length?: string | null;
|
|
26541
27426
|
packaging_dimensions_width?: string | null;
|
|
@@ -26548,12 +27433,72 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
26548
27433
|
id: string;
|
|
26549
27434
|
name: string;
|
|
26550
27435
|
};
|
|
26551
|
-
|
|
26552
|
-
__typename?: "
|
|
27436
|
+
visuals_images: Array<{
|
|
27437
|
+
__typename?: "ProductV1Media";
|
|
26553
27438
|
id: string;
|
|
26554
|
-
|
|
26555
|
-
|
|
26556
|
-
|
|
27439
|
+
url: string;
|
|
27440
|
+
tag?: string | null;
|
|
27441
|
+
type: ProductV1MediaType;
|
|
27442
|
+
width?: number | null;
|
|
27443
|
+
height?: number | null;
|
|
27444
|
+
}>;
|
|
27445
|
+
visuals_videos?: Array<{
|
|
27446
|
+
__typename?: "ProductV1Media";
|
|
27447
|
+
id: string;
|
|
27448
|
+
url: string;
|
|
27449
|
+
tag?: string | null;
|
|
27450
|
+
type: ProductV1MediaType;
|
|
27451
|
+
width?: number | null;
|
|
27452
|
+
height?: number | null;
|
|
27453
|
+
}> | null;
|
|
27454
|
+
} | null;
|
|
27455
|
+
attributes?: Array<{
|
|
27456
|
+
__typename?: "MetadataAttribute";
|
|
27457
|
+
traitType: string;
|
|
27458
|
+
value: string;
|
|
27459
|
+
displayType: string;
|
|
27460
|
+
}> | null;
|
|
27461
|
+
product: {
|
|
27462
|
+
__typename?: "ProductV1Product";
|
|
27463
|
+
id: string;
|
|
27464
|
+
uuid: string;
|
|
27465
|
+
version: number;
|
|
27466
|
+
title: string;
|
|
27467
|
+
description: string;
|
|
27468
|
+
identification_sKU?: string | null;
|
|
27469
|
+
identification_productId?: string | null;
|
|
27470
|
+
identification_productIdType?: string | null;
|
|
27471
|
+
productionInformation_brandName: string;
|
|
27472
|
+
productionInformation_manufacturer?: string | null;
|
|
27473
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
27474
|
+
productionInformation_modelNumber?: string | null;
|
|
27475
|
+
productionInformation_materials?: Array<string> | null;
|
|
27476
|
+
details_category?: string | null;
|
|
27477
|
+
details_subCategory?: string | null;
|
|
27478
|
+
details_subCategory2?: string | null;
|
|
27479
|
+
details_offerCategory: string;
|
|
27480
|
+
offerCategory: ProductV1OfferCategory;
|
|
27481
|
+
details_tags?: Array<string> | null;
|
|
27482
|
+
details_sections?: Array<string> | null;
|
|
27483
|
+
details_personalisation?: Array<string> | null;
|
|
27484
|
+
packaging_packageQuantity?: string | null;
|
|
27485
|
+
packaging_dimensions_length?: string | null;
|
|
27486
|
+
packaging_dimensions_width?: string | null;
|
|
27487
|
+
packaging_dimensions_height?: string | null;
|
|
27488
|
+
packaging_dimensions_unit?: string | null;
|
|
27489
|
+
packaging_weight_value?: string | null;
|
|
27490
|
+
packaging_weight_unit?: string | null;
|
|
27491
|
+
brand: {
|
|
27492
|
+
__typename?: "ProductV1Brand";
|
|
27493
|
+
id: string;
|
|
27494
|
+
name: string;
|
|
27495
|
+
};
|
|
27496
|
+
category?: {
|
|
27497
|
+
__typename?: "ProductV1Category";
|
|
27498
|
+
id: string;
|
|
27499
|
+
name: string;
|
|
27500
|
+
} | null;
|
|
27501
|
+
subCategory?: {
|
|
26557
27502
|
__typename?: "ProductV1Category";
|
|
26558
27503
|
id: string;
|
|
26559
27504
|
name: string;
|
|
@@ -27590,6 +28535,51 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
27590
28535
|
schemaUrl: string;
|
|
27591
28536
|
type: MetadataType;
|
|
27592
28537
|
image: string;
|
|
28538
|
+
productOverrides?: {
|
|
28539
|
+
__typename?: "ProductV1ProductOverrides";
|
|
28540
|
+
id: string;
|
|
28541
|
+
version: number;
|
|
28542
|
+
title: string;
|
|
28543
|
+
description: string;
|
|
28544
|
+
identification_sKU?: string | null;
|
|
28545
|
+
identification_productId?: string | null;
|
|
28546
|
+
identification_productIdType?: string | null;
|
|
28547
|
+
productionInformation_brandName: string;
|
|
28548
|
+
productionInformation_manufacturer?: string | null;
|
|
28549
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
28550
|
+
productionInformation_modelNumber?: string | null;
|
|
28551
|
+
productionInformation_materials?: Array<string> | null;
|
|
28552
|
+
packaging_packageQuantity?: string | null;
|
|
28553
|
+
packaging_dimensions_length?: string | null;
|
|
28554
|
+
packaging_dimensions_width?: string | null;
|
|
28555
|
+
packaging_dimensions_height?: string | null;
|
|
28556
|
+
packaging_dimensions_unit?: string | null;
|
|
28557
|
+
packaging_weight_value?: string | null;
|
|
28558
|
+
packaging_weight_unit?: string | null;
|
|
28559
|
+
brand: {
|
|
28560
|
+
__typename?: "ProductV1Brand";
|
|
28561
|
+
id: string;
|
|
28562
|
+
name: string;
|
|
28563
|
+
};
|
|
28564
|
+
visuals_images: Array<{
|
|
28565
|
+
__typename?: "ProductV1Media";
|
|
28566
|
+
id: string;
|
|
28567
|
+
url: string;
|
|
28568
|
+
tag?: string | null;
|
|
28569
|
+
type: ProductV1MediaType;
|
|
28570
|
+
width?: number | null;
|
|
28571
|
+
height?: number | null;
|
|
28572
|
+
}>;
|
|
28573
|
+
visuals_videos?: Array<{
|
|
28574
|
+
__typename?: "ProductV1Media";
|
|
28575
|
+
id: string;
|
|
28576
|
+
url: string;
|
|
28577
|
+
tag?: string | null;
|
|
28578
|
+
type: ProductV1MediaType;
|
|
28579
|
+
width?: number | null;
|
|
28580
|
+
height?: number | null;
|
|
28581
|
+
}> | null;
|
|
28582
|
+
} | null;
|
|
27593
28583
|
attributes?: Array<{
|
|
27594
28584
|
__typename?: "MetadataAttribute";
|
|
27595
28585
|
traitType: string;
|
|
@@ -28888,6 +29878,51 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
28888
29878
|
schemaUrl: string;
|
|
28889
29879
|
type: MetadataType;
|
|
28890
29880
|
image: string;
|
|
29881
|
+
productOverrides?: {
|
|
29882
|
+
__typename?: "ProductV1ProductOverrides";
|
|
29883
|
+
id: string;
|
|
29884
|
+
version: number;
|
|
29885
|
+
title: string;
|
|
29886
|
+
description: string;
|
|
29887
|
+
identification_sKU?: string | null;
|
|
29888
|
+
identification_productId?: string | null;
|
|
29889
|
+
identification_productIdType?: string | null;
|
|
29890
|
+
productionInformation_brandName: string;
|
|
29891
|
+
productionInformation_manufacturer?: string | null;
|
|
29892
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
29893
|
+
productionInformation_modelNumber?: string | null;
|
|
29894
|
+
productionInformation_materials?: Array<string> | null;
|
|
29895
|
+
packaging_packageQuantity?: string | null;
|
|
29896
|
+
packaging_dimensions_length?: string | null;
|
|
29897
|
+
packaging_dimensions_width?: string | null;
|
|
29898
|
+
packaging_dimensions_height?: string | null;
|
|
29899
|
+
packaging_dimensions_unit?: string | null;
|
|
29900
|
+
packaging_weight_value?: string | null;
|
|
29901
|
+
packaging_weight_unit?: string | null;
|
|
29902
|
+
brand: {
|
|
29903
|
+
__typename?: "ProductV1Brand";
|
|
29904
|
+
id: string;
|
|
29905
|
+
name: string;
|
|
29906
|
+
};
|
|
29907
|
+
visuals_images: Array<{
|
|
29908
|
+
__typename?: "ProductV1Media";
|
|
29909
|
+
id: string;
|
|
29910
|
+
url: string;
|
|
29911
|
+
tag?: string | null;
|
|
29912
|
+
type: ProductV1MediaType;
|
|
29913
|
+
width?: number | null;
|
|
29914
|
+
height?: number | null;
|
|
29915
|
+
}>;
|
|
29916
|
+
visuals_videos?: Array<{
|
|
29917
|
+
__typename?: "ProductV1Media";
|
|
29918
|
+
id: string;
|
|
29919
|
+
url: string;
|
|
29920
|
+
tag?: string | null;
|
|
29921
|
+
type: ProductV1MediaType;
|
|
29922
|
+
width?: number | null;
|
|
29923
|
+
height?: number | null;
|
|
29924
|
+
}> | null;
|
|
29925
|
+
} | null;
|
|
28891
29926
|
attributes?: Array<{
|
|
28892
29927
|
__typename?: "MetadataAttribute";
|
|
28893
29928
|
traitType: string;
|
|
@@ -29757,6 +30792,51 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
29757
30792
|
schemaUrl: string;
|
|
29758
30793
|
type: MetadataType;
|
|
29759
30794
|
image: string;
|
|
30795
|
+
productOverrides?: {
|
|
30796
|
+
__typename?: "ProductV1ProductOverrides";
|
|
30797
|
+
id: string;
|
|
30798
|
+
version: number;
|
|
30799
|
+
title: string;
|
|
30800
|
+
description: string;
|
|
30801
|
+
identification_sKU?: string | null;
|
|
30802
|
+
identification_productId?: string | null;
|
|
30803
|
+
identification_productIdType?: string | null;
|
|
30804
|
+
productionInformation_brandName: string;
|
|
30805
|
+
productionInformation_manufacturer?: string | null;
|
|
30806
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
30807
|
+
productionInformation_modelNumber?: string | null;
|
|
30808
|
+
productionInformation_materials?: Array<string> | null;
|
|
30809
|
+
packaging_packageQuantity?: string | null;
|
|
30810
|
+
packaging_dimensions_length?: string | null;
|
|
30811
|
+
packaging_dimensions_width?: string | null;
|
|
30812
|
+
packaging_dimensions_height?: string | null;
|
|
30813
|
+
packaging_dimensions_unit?: string | null;
|
|
30814
|
+
packaging_weight_value?: string | null;
|
|
30815
|
+
packaging_weight_unit?: string | null;
|
|
30816
|
+
brand: {
|
|
30817
|
+
__typename?: "ProductV1Brand";
|
|
30818
|
+
id: string;
|
|
30819
|
+
name: string;
|
|
30820
|
+
};
|
|
30821
|
+
visuals_images: Array<{
|
|
30822
|
+
__typename?: "ProductV1Media";
|
|
30823
|
+
id: string;
|
|
30824
|
+
url: string;
|
|
30825
|
+
tag?: string | null;
|
|
30826
|
+
type: ProductV1MediaType;
|
|
30827
|
+
width?: number | null;
|
|
30828
|
+
height?: number | null;
|
|
30829
|
+
}>;
|
|
30830
|
+
visuals_videos?: Array<{
|
|
30831
|
+
__typename?: "ProductV1Media";
|
|
30832
|
+
id: string;
|
|
30833
|
+
url: string;
|
|
30834
|
+
tag?: string | null;
|
|
30835
|
+
type: ProductV1MediaType;
|
|
30836
|
+
width?: number | null;
|
|
30837
|
+
height?: number | null;
|
|
30838
|
+
}> | null;
|
|
30839
|
+
} | null;
|
|
29760
30840
|
attributes?: Array<{
|
|
29761
30841
|
__typename?: "MetadataAttribute";
|
|
29762
30842
|
traitType: string;
|
|
@@ -30819,6 +31899,51 @@ export type GetOfferByIdQueryQuery = {
|
|
|
30819
31899
|
schemaUrl: string;
|
|
30820
31900
|
type: MetadataType;
|
|
30821
31901
|
image: string;
|
|
31902
|
+
productOverrides?: {
|
|
31903
|
+
__typename?: "ProductV1ProductOverrides";
|
|
31904
|
+
id: string;
|
|
31905
|
+
version: number;
|
|
31906
|
+
title: string;
|
|
31907
|
+
description: string;
|
|
31908
|
+
identification_sKU?: string | null;
|
|
31909
|
+
identification_productId?: string | null;
|
|
31910
|
+
identification_productIdType?: string | null;
|
|
31911
|
+
productionInformation_brandName: string;
|
|
31912
|
+
productionInformation_manufacturer?: string | null;
|
|
31913
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
31914
|
+
productionInformation_modelNumber?: string | null;
|
|
31915
|
+
productionInformation_materials?: Array<string> | null;
|
|
31916
|
+
packaging_packageQuantity?: string | null;
|
|
31917
|
+
packaging_dimensions_length?: string | null;
|
|
31918
|
+
packaging_dimensions_width?: string | null;
|
|
31919
|
+
packaging_dimensions_height?: string | null;
|
|
31920
|
+
packaging_dimensions_unit?: string | null;
|
|
31921
|
+
packaging_weight_value?: string | null;
|
|
31922
|
+
packaging_weight_unit?: string | null;
|
|
31923
|
+
brand: {
|
|
31924
|
+
__typename?: "ProductV1Brand";
|
|
31925
|
+
id: string;
|
|
31926
|
+
name: string;
|
|
31927
|
+
};
|
|
31928
|
+
visuals_images: Array<{
|
|
31929
|
+
__typename?: "ProductV1Media";
|
|
31930
|
+
id: string;
|
|
31931
|
+
url: string;
|
|
31932
|
+
tag?: string | null;
|
|
31933
|
+
type: ProductV1MediaType;
|
|
31934
|
+
width?: number | null;
|
|
31935
|
+
height?: number | null;
|
|
31936
|
+
}>;
|
|
31937
|
+
visuals_videos?: Array<{
|
|
31938
|
+
__typename?: "ProductV1Media";
|
|
31939
|
+
id: string;
|
|
31940
|
+
url: string;
|
|
31941
|
+
tag?: string | null;
|
|
31942
|
+
type: ProductV1MediaType;
|
|
31943
|
+
width?: number | null;
|
|
31944
|
+
height?: number | null;
|
|
31945
|
+
}> | null;
|
|
31946
|
+
} | null;
|
|
30822
31947
|
attributes?: Array<{
|
|
30823
31948
|
__typename?: "MetadataAttribute";
|
|
30824
31949
|
traitType: string;
|
|
@@ -31486,6 +32611,51 @@ export type GetOffersQueryQuery = {
|
|
|
31486
32611
|
schemaUrl: string;
|
|
31487
32612
|
type: MetadataType;
|
|
31488
32613
|
image: string;
|
|
32614
|
+
productOverrides?: {
|
|
32615
|
+
__typename?: "ProductV1ProductOverrides";
|
|
32616
|
+
id: string;
|
|
32617
|
+
version: number;
|
|
32618
|
+
title: string;
|
|
32619
|
+
description: string;
|
|
32620
|
+
identification_sKU?: string | null;
|
|
32621
|
+
identification_productId?: string | null;
|
|
32622
|
+
identification_productIdType?: string | null;
|
|
32623
|
+
productionInformation_brandName: string;
|
|
32624
|
+
productionInformation_manufacturer?: string | null;
|
|
32625
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
32626
|
+
productionInformation_modelNumber?: string | null;
|
|
32627
|
+
productionInformation_materials?: Array<string> | null;
|
|
32628
|
+
packaging_packageQuantity?: string | null;
|
|
32629
|
+
packaging_dimensions_length?: string | null;
|
|
32630
|
+
packaging_dimensions_width?: string | null;
|
|
32631
|
+
packaging_dimensions_height?: string | null;
|
|
32632
|
+
packaging_dimensions_unit?: string | null;
|
|
32633
|
+
packaging_weight_value?: string | null;
|
|
32634
|
+
packaging_weight_unit?: string | null;
|
|
32635
|
+
brand: {
|
|
32636
|
+
__typename?: "ProductV1Brand";
|
|
32637
|
+
id: string;
|
|
32638
|
+
name: string;
|
|
32639
|
+
};
|
|
32640
|
+
visuals_images: Array<{
|
|
32641
|
+
__typename?: "ProductV1Media";
|
|
32642
|
+
id: string;
|
|
32643
|
+
url: string;
|
|
32644
|
+
tag?: string | null;
|
|
32645
|
+
type: ProductV1MediaType;
|
|
32646
|
+
width?: number | null;
|
|
32647
|
+
height?: number | null;
|
|
32648
|
+
}>;
|
|
32649
|
+
visuals_videos?: Array<{
|
|
32650
|
+
__typename?: "ProductV1Media";
|
|
32651
|
+
id: string;
|
|
32652
|
+
url: string;
|
|
32653
|
+
tag?: string | null;
|
|
32654
|
+
type: ProductV1MediaType;
|
|
32655
|
+
width?: number | null;
|
|
32656
|
+
height?: number | null;
|
|
32657
|
+
}> | null;
|
|
32658
|
+
} | null;
|
|
31489
32659
|
attributes?: Array<{
|
|
31490
32660
|
__typename?: "MetadataAttribute";
|
|
31491
32661
|
traitType: string;
|
|
@@ -31841,6 +33011,66 @@ export type GetOffersQueryQuery = {
|
|
|
31841
33011
|
} | null;
|
|
31842
33012
|
}>;
|
|
31843
33013
|
};
|
|
33014
|
+
export type GetOffersMediaQueryQueryVariables = Exact<{
|
|
33015
|
+
offersSkip?: InputMaybe<Scalars["Int"]>;
|
|
33016
|
+
offersFirst?: InputMaybe<Scalars["Int"]>;
|
|
33017
|
+
offersOrderBy?: InputMaybe<Offer_OrderBy>;
|
|
33018
|
+
offersOrderDirection?: InputMaybe<OrderDirection>;
|
|
33019
|
+
offersFilter?: InputMaybe<Offer_Filter>;
|
|
33020
|
+
exchangesSkip?: InputMaybe<Scalars["Int"]>;
|
|
33021
|
+
exchangesFirst?: InputMaybe<Scalars["Int"]>;
|
|
33022
|
+
exchangesOrderBy?: InputMaybe<Exchange_OrderBy>;
|
|
33023
|
+
exchangesOrderDirection?: InputMaybe<OrderDirection>;
|
|
33024
|
+
exchangesFilter?: InputMaybe<Exchange_Filter>;
|
|
33025
|
+
includeExchanges?: InputMaybe<Scalars["Boolean"]>;
|
|
33026
|
+
}>;
|
|
33027
|
+
export type GetOffersMediaQueryQuery = {
|
|
33028
|
+
__typename?: "Query";
|
|
33029
|
+
offers: Array<{
|
|
33030
|
+
__typename?: "Offer";
|
|
33031
|
+
id: string;
|
|
33032
|
+
metadata?: {
|
|
33033
|
+
__typename?: "BaseMetadataEntity";
|
|
33034
|
+
type: MetadataType;
|
|
33035
|
+
animationUrl?: string | null;
|
|
33036
|
+
image: string;
|
|
33037
|
+
} | {
|
|
33038
|
+
__typename?: "ProductV1MetadataEntity";
|
|
33039
|
+
type: MetadataType;
|
|
33040
|
+
animationUrl?: string | null;
|
|
33041
|
+
image: string;
|
|
33042
|
+
productOverrides?: {
|
|
33043
|
+
__typename?: "ProductV1ProductOverrides";
|
|
33044
|
+
visuals_images: Array<{
|
|
33045
|
+
__typename?: "ProductV1Media";
|
|
33046
|
+
url: string;
|
|
33047
|
+
}>;
|
|
33048
|
+
visuals_videos?: Array<{
|
|
33049
|
+
__typename?: "ProductV1Media";
|
|
33050
|
+
url: string;
|
|
33051
|
+
}> | null;
|
|
33052
|
+
} | null;
|
|
33053
|
+
product: {
|
|
33054
|
+
__typename?: "ProductV1Product";
|
|
33055
|
+
visuals_images: Array<{
|
|
33056
|
+
__typename?: "ProductV1Media";
|
|
33057
|
+
url: string;
|
|
33058
|
+
}>;
|
|
33059
|
+
visuals_videos?: Array<{
|
|
33060
|
+
__typename?: "ProductV1Media";
|
|
33061
|
+
url: string;
|
|
33062
|
+
}> | null;
|
|
33063
|
+
};
|
|
33064
|
+
productV1Seller: {
|
|
33065
|
+
__typename?: "ProductV1Seller";
|
|
33066
|
+
images?: Array<{
|
|
33067
|
+
__typename?: "ProductV1Media";
|
|
33068
|
+
url: string;
|
|
33069
|
+
}> | null;
|
|
33070
|
+
};
|
|
33071
|
+
} | null;
|
|
33072
|
+
}>;
|
|
33073
|
+
};
|
|
31844
33074
|
export type OfferFieldsFragment = {
|
|
31845
33075
|
__typename?: "Offer";
|
|
31846
33076
|
id: string;
|
|
@@ -32138,6 +33368,51 @@ export type OfferFieldsFragment = {
|
|
|
32138
33368
|
schemaUrl: string;
|
|
32139
33369
|
type: MetadataType;
|
|
32140
33370
|
image: string;
|
|
33371
|
+
productOverrides?: {
|
|
33372
|
+
__typename?: "ProductV1ProductOverrides";
|
|
33373
|
+
id: string;
|
|
33374
|
+
version: number;
|
|
33375
|
+
title: string;
|
|
33376
|
+
description: string;
|
|
33377
|
+
identification_sKU?: string | null;
|
|
33378
|
+
identification_productId?: string | null;
|
|
33379
|
+
identification_productIdType?: string | null;
|
|
33380
|
+
productionInformation_brandName: string;
|
|
33381
|
+
productionInformation_manufacturer?: string | null;
|
|
33382
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
33383
|
+
productionInformation_modelNumber?: string | null;
|
|
33384
|
+
productionInformation_materials?: Array<string> | null;
|
|
33385
|
+
packaging_packageQuantity?: string | null;
|
|
33386
|
+
packaging_dimensions_length?: string | null;
|
|
33387
|
+
packaging_dimensions_width?: string | null;
|
|
33388
|
+
packaging_dimensions_height?: string | null;
|
|
33389
|
+
packaging_dimensions_unit?: string | null;
|
|
33390
|
+
packaging_weight_value?: string | null;
|
|
33391
|
+
packaging_weight_unit?: string | null;
|
|
33392
|
+
brand: {
|
|
33393
|
+
__typename?: "ProductV1Brand";
|
|
33394
|
+
id: string;
|
|
33395
|
+
name: string;
|
|
33396
|
+
};
|
|
33397
|
+
visuals_images: Array<{
|
|
33398
|
+
__typename?: "ProductV1Media";
|
|
33399
|
+
id: string;
|
|
33400
|
+
url: string;
|
|
33401
|
+
tag?: string | null;
|
|
33402
|
+
type: ProductV1MediaType;
|
|
33403
|
+
width?: number | null;
|
|
33404
|
+
height?: number | null;
|
|
33405
|
+
}>;
|
|
33406
|
+
visuals_videos?: Array<{
|
|
33407
|
+
__typename?: "ProductV1Media";
|
|
33408
|
+
id: string;
|
|
33409
|
+
url: string;
|
|
33410
|
+
tag?: string | null;
|
|
33411
|
+
type: ProductV1MediaType;
|
|
33412
|
+
width?: number | null;
|
|
33413
|
+
height?: number | null;
|
|
33414
|
+
}> | null;
|
|
33415
|
+
} | null;
|
|
32141
33416
|
attributes?: Array<{
|
|
32142
33417
|
__typename?: "MetadataAttribute";
|
|
32143
33418
|
traitType: string;
|
|
@@ -32681,6 +33956,51 @@ export type BaseOfferFieldsFragment = {
|
|
|
32681
33956
|
schemaUrl: string;
|
|
32682
33957
|
type: MetadataType;
|
|
32683
33958
|
image: string;
|
|
33959
|
+
productOverrides?: {
|
|
33960
|
+
__typename?: "ProductV1ProductOverrides";
|
|
33961
|
+
id: string;
|
|
33962
|
+
version: number;
|
|
33963
|
+
title: string;
|
|
33964
|
+
description: string;
|
|
33965
|
+
identification_sKU?: string | null;
|
|
33966
|
+
identification_productId?: string | null;
|
|
33967
|
+
identification_productIdType?: string | null;
|
|
33968
|
+
productionInformation_brandName: string;
|
|
33969
|
+
productionInformation_manufacturer?: string | null;
|
|
33970
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
33971
|
+
productionInformation_modelNumber?: string | null;
|
|
33972
|
+
productionInformation_materials?: Array<string> | null;
|
|
33973
|
+
packaging_packageQuantity?: string | null;
|
|
33974
|
+
packaging_dimensions_length?: string | null;
|
|
33975
|
+
packaging_dimensions_width?: string | null;
|
|
33976
|
+
packaging_dimensions_height?: string | null;
|
|
33977
|
+
packaging_dimensions_unit?: string | null;
|
|
33978
|
+
packaging_weight_value?: string | null;
|
|
33979
|
+
packaging_weight_unit?: string | null;
|
|
33980
|
+
brand: {
|
|
33981
|
+
__typename?: "ProductV1Brand";
|
|
33982
|
+
id: string;
|
|
33983
|
+
name: string;
|
|
33984
|
+
};
|
|
33985
|
+
visuals_images: Array<{
|
|
33986
|
+
__typename?: "ProductV1Media";
|
|
33987
|
+
id: string;
|
|
33988
|
+
url: string;
|
|
33989
|
+
tag?: string | null;
|
|
33990
|
+
type: ProductV1MediaType;
|
|
33991
|
+
width?: number | null;
|
|
33992
|
+
height?: number | null;
|
|
33993
|
+
}>;
|
|
33994
|
+
visuals_videos?: Array<{
|
|
33995
|
+
__typename?: "ProductV1Media";
|
|
33996
|
+
id: string;
|
|
33997
|
+
url: string;
|
|
33998
|
+
tag?: string | null;
|
|
33999
|
+
type: ProductV1MediaType;
|
|
34000
|
+
width?: number | null;
|
|
34001
|
+
height?: number | null;
|
|
34002
|
+
}> | null;
|
|
34003
|
+
} | null;
|
|
32684
34004
|
attributes?: Array<{
|
|
32685
34005
|
__typename?: "MetadataAttribute";
|
|
32686
34006
|
traitType: string;
|
|
@@ -33057,11 +34377,12 @@ export declare const BaseDisputeResolverFieldsFragmentDoc: string;
|
|
|
33057
34377
|
export declare const BaseDisputeResolutionTermsEntityFieldsFragmentDoc: string;
|
|
33058
34378
|
export declare const BaseAnimationMetadataFieldsFragmentDoc: string;
|
|
33059
34379
|
export declare const BaseProductV1BrandFieldsFragmentDoc: string;
|
|
34380
|
+
export declare const BaseProductV1MediaFieldsFragmentDoc: string;
|
|
34381
|
+
export declare const BaseProductV1ProductOverridesFieldsFragmentDoc: string;
|
|
33060
34382
|
export declare const BaseProductV1CategoryFieldsFragmentDoc: string;
|
|
33061
34383
|
export declare const BaseProductV1TagFieldsFragmentDoc: string;
|
|
33062
34384
|
export declare const BaseProductV1SectionFieldsFragmentDoc: string;
|
|
33063
34385
|
export declare const BaseProductV1PersonalisationFieldsFragmentDoc: string;
|
|
33064
|
-
export declare const BaseProductV1MediaFieldsFragmentDoc: string;
|
|
33065
34386
|
export declare const BaseProductV1SellerContactLinkFieldsFragmentDoc: string;
|
|
33066
34387
|
export declare const BaseProductV1SellerFieldsFragmentDoc: string;
|
|
33067
34388
|
export declare const BaseProductV1ProductFieldsFragmentDoc: string;
|
|
@@ -33088,7 +34409,6 @@ export declare const BaseProductV1MetadataEntityFieldsFragmentDoc: string;
|
|
|
33088
34409
|
export declare const ProductV1MetadataEntityFieldsFragmentDoc: string;
|
|
33089
34410
|
export declare const BaseProductV1ProductWithVariantsFieldsFragmentDoc: string;
|
|
33090
34411
|
export declare const BaseProductV1ProductWithNotVoidedVariantsFieldsFragmentDoc: string;
|
|
33091
|
-
export declare const BaseProductV1ProductOverridesFieldsFragmentDoc: string;
|
|
33092
34412
|
export declare const OfferFieldsFragmentDoc: string;
|
|
33093
34413
|
export declare const GetSellerByIdQueryDocument: string;
|
|
33094
34414
|
export declare const GetSellersQueryDocument: string;
|
|
@@ -33116,8 +34436,8 @@ export declare const GetProductV1MetadataEntityByIdQueryDocument: string;
|
|
|
33116
34436
|
export declare const GetProductV1MetadataEntitiesQueryDocument: string;
|
|
33117
34437
|
export declare const GetOfferByIdQueryDocument: string;
|
|
33118
34438
|
export declare const GetOffersQueryDocument: string;
|
|
34439
|
+
export declare const GetOffersMediaQueryDocument: string;
|
|
33119
34440
|
export type SdkFunctionWrapper = <T>(action: (requestHeaders?: Record<string, string>) => Promise<T>, operationName: string, operationType?: string) => Promise<T>;
|
|
33120
|
-
export declare const defaultWrapper: SdkFunctionWrapper;
|
|
33121
34441
|
export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionWrapper): {
|
|
33122
34442
|
getSellerByIdQuery(variables: GetSellerByIdQueryQueryVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<GetSellerByIdQueryQuery>;
|
|
33123
34443
|
getSellersQuery(variables?: GetSellersQueryQueryVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<GetSellersQueryQuery>;
|
|
@@ -33145,6 +34465,7 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
33145
34465
|
getProductV1MetadataEntitiesQuery(variables?: GetProductV1MetadataEntitiesQueryQueryVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<GetProductV1MetadataEntitiesQueryQuery>;
|
|
33146
34466
|
getOfferByIdQuery(variables: GetOfferByIdQueryQueryVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<GetOfferByIdQueryQuery>;
|
|
33147
34467
|
getOffersQuery(variables?: GetOffersQueryQueryVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<GetOffersQueryQuery>;
|
|
34468
|
+
getOffersMediaQuery(variables?: GetOffersMediaQueryQueryVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<GetOffersMediaQueryQuery>;
|
|
33148
34469
|
};
|
|
33149
34470
|
export type Sdk = ReturnType<typeof getSdk>;
|
|
33150
34471
|
export {};
|