@bosonprotocol/core-sdk 1.12.0-alpha.6 → 1.12.0-alpha.8
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/core-sdk.d.ts +5 -5
- package/dist/cjs/core-sdk.d.ts.map +1 -1
- package/dist/cjs/core-sdk.js +20 -10
- package/dist/cjs/core-sdk.js.map +1 -1
- package/dist/cjs/offers/index.d.ts +1 -0
- package/dist/cjs/offers/index.d.ts.map +1 -1
- package/dist/cjs/offers/index.js +1 -0
- package/dist/cjs/offers/index.js.map +1 -1
- package/dist/cjs/offers/renderContractualAgreement.d.ts +41 -0
- package/dist/cjs/offers/renderContractualAgreement.d.ts.map +1 -0
- package/dist/cjs/offers/renderContractualAgreement.js +156 -0
- package/dist/cjs/offers/renderContractualAgreement.js.map +1 -0
- package/dist/cjs/offers/subgraph.d.ts.map +1 -1
- package/dist/cjs/offers/subgraph.js.map +1 -1
- package/dist/cjs/subgraph.d.ts +3783 -55
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +207 -169
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/cjs/utils/tokenInfoManager.d.ts +16 -0
- package/dist/cjs/utils/tokenInfoManager.d.ts.map +1 -0
- package/dist/cjs/utils/tokenInfoManager.js +97 -0
- package/dist/cjs/utils/tokenInfoManager.js.map +1 -0
- package/dist/esm/core-sdk.d.ts +5 -5
- package/dist/esm/core-sdk.d.ts.map +1 -1
- package/dist/esm/core-sdk.js +17 -10
- package/dist/esm/core-sdk.js.map +1 -1
- package/dist/esm/offers/index.d.ts +1 -0
- package/dist/esm/offers/index.d.ts.map +1 -1
- package/dist/esm/offers/index.js +1 -0
- package/dist/esm/offers/index.js.map +1 -1
- package/dist/esm/offers/renderContractualAgreement.d.ts +41 -0
- package/dist/esm/offers/renderContractualAgreement.d.ts.map +1 -0
- package/dist/esm/offers/renderContractualAgreement.js +132 -0
- package/dist/esm/offers/renderContractualAgreement.js.map +1 -0
- package/dist/esm/offers/subgraph.d.ts.map +1 -1
- package/dist/esm/offers/subgraph.js.map +1 -1
- package/dist/esm/subgraph.d.ts +3783 -55
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +205 -167
- package/dist/esm/subgraph.js.map +1 -1
- package/dist/esm/utils/tokenInfoManager.d.ts +16 -0
- package/dist/esm/utils/tokenInfoManager.d.ts.map +1 -0
- package/dist/esm/utils/tokenInfoManager.js +83 -0
- package/dist/esm/utils/tokenInfoManager.js.map +1 -0
- package/package.json +5 -4
- package/src/core-sdk.ts +34 -15
- package/src/metadata/product-v1.graphql +3 -0
- package/src/offers/index.ts +1 -0
- package/src/offers/queries.graphql +29 -0
- package/src/offers/renderContractualAgreement.ts +203 -0
- package/src/offers/subgraph.ts +0 -1
- package/src/subgraph.ts +3886 -168
- package/src/utils/tokenInfoManager.ts +97 -0
package/src/subgraph.ts
CHANGED
|
@@ -2361,7 +2361,7 @@ export type ProductV1MetadataEntity = MetadataInterface & {
|
|
|
2361
2361
|
quantityAvailable: Scalars["BigInt"];
|
|
2362
2362
|
schemaUrl: Scalars["String"];
|
|
2363
2363
|
seller: Seller;
|
|
2364
|
-
shipping
|
|
2364
|
+
shipping?: Maybe<ProductV1ShippingOption>;
|
|
2365
2365
|
/** MetadataType.PRODUCT_V1 */
|
|
2366
2366
|
type: MetadataType;
|
|
2367
2367
|
/**
|
|
@@ -6148,11 +6148,165 @@ export type GetSellerByIdQueryQuery = {
|
|
|
6148
6148
|
}
|
|
6149
6149
|
| {
|
|
6150
6150
|
__typename?: "ProductV1MetadataEntity";
|
|
6151
|
+
image: string;
|
|
6152
|
+
createdAt: string;
|
|
6153
|
+
voided: boolean;
|
|
6154
|
+
validFromDate: string;
|
|
6155
|
+
validUntilDate: string;
|
|
6156
|
+
quantityAvailable: string;
|
|
6157
|
+
uuid: string;
|
|
6151
6158
|
name: string;
|
|
6152
6159
|
description: string;
|
|
6153
6160
|
externalUrl: string;
|
|
6154
6161
|
schemaUrl: string;
|
|
6155
6162
|
type: MetadataType;
|
|
6163
|
+
attributes?: Array<{
|
|
6164
|
+
__typename?: "MetadataAttribute";
|
|
6165
|
+
traitType: string;
|
|
6166
|
+
value: string;
|
|
6167
|
+
displayType: string;
|
|
6168
|
+
}> | null;
|
|
6169
|
+
product: {
|
|
6170
|
+
__typename?: "ProductV1Product";
|
|
6171
|
+
id: string;
|
|
6172
|
+
uuid: string;
|
|
6173
|
+
version: number;
|
|
6174
|
+
title: string;
|
|
6175
|
+
description: string;
|
|
6176
|
+
identification_sKU?: string | null;
|
|
6177
|
+
identification_productId?: string | null;
|
|
6178
|
+
identification_productIdType?: string | null;
|
|
6179
|
+
productionInformation_brandName: string;
|
|
6180
|
+
productionInformation_manufacturer?: string | null;
|
|
6181
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
6182
|
+
productionInformation_modelNumber?: string | null;
|
|
6183
|
+
productionInformation_materials?: Array<string> | null;
|
|
6184
|
+
details_category?: string | null;
|
|
6185
|
+
details_subCategory?: string | null;
|
|
6186
|
+
details_subCategory2?: string | null;
|
|
6187
|
+
details_offerCategory: string;
|
|
6188
|
+
offerCategory: ProductV1OfferCategory;
|
|
6189
|
+
details_tags?: Array<string> | null;
|
|
6190
|
+
details_sections?: Array<string> | null;
|
|
6191
|
+
details_personalisation?: Array<string> | null;
|
|
6192
|
+
packaging_packageQuantity?: string | null;
|
|
6193
|
+
packaging_dimensions_length?: string | null;
|
|
6194
|
+
packaging_dimensions_width?: string | null;
|
|
6195
|
+
packaging_dimensions_height?: string | null;
|
|
6196
|
+
packaging_dimensions_unit?: string | null;
|
|
6197
|
+
packaging_weight_value?: string | null;
|
|
6198
|
+
packaging_weight_unit?: string | null;
|
|
6199
|
+
brand: {
|
|
6200
|
+
__typename?: "ProductV1Brand";
|
|
6201
|
+
id: string;
|
|
6202
|
+
name: string;
|
|
6203
|
+
};
|
|
6204
|
+
category?: {
|
|
6205
|
+
__typename?: "ProductV1Category";
|
|
6206
|
+
id: string;
|
|
6207
|
+
name: string;
|
|
6208
|
+
} | null;
|
|
6209
|
+
subCategory?: {
|
|
6210
|
+
__typename?: "ProductV1Category";
|
|
6211
|
+
id: string;
|
|
6212
|
+
name: string;
|
|
6213
|
+
} | null;
|
|
6214
|
+
subCategory2?: {
|
|
6215
|
+
__typename?: "ProductV1Category";
|
|
6216
|
+
id: string;
|
|
6217
|
+
name: string;
|
|
6218
|
+
} | null;
|
|
6219
|
+
tags?: Array<{
|
|
6220
|
+
__typename?: "ProductV1Tag";
|
|
6221
|
+
id: string;
|
|
6222
|
+
name: string;
|
|
6223
|
+
}> | null;
|
|
6224
|
+
sections?: Array<{
|
|
6225
|
+
__typename?: "ProductV1Section";
|
|
6226
|
+
id: string;
|
|
6227
|
+
name: string;
|
|
6228
|
+
}> | null;
|
|
6229
|
+
personalisation?: Array<{
|
|
6230
|
+
__typename?: "ProductV1Personalisation";
|
|
6231
|
+
id: string;
|
|
6232
|
+
name: string;
|
|
6233
|
+
}> | null;
|
|
6234
|
+
visuals_images: Array<{
|
|
6235
|
+
__typename?: "ProductV1Media";
|
|
6236
|
+
id: string;
|
|
6237
|
+
url: string;
|
|
6238
|
+
tag?: string | null;
|
|
6239
|
+
type: ProductV1MediaType;
|
|
6240
|
+
}>;
|
|
6241
|
+
visuals_videos?: Array<{
|
|
6242
|
+
__typename?: "ProductV1Media";
|
|
6243
|
+
id: string;
|
|
6244
|
+
url: string;
|
|
6245
|
+
tag?: string | null;
|
|
6246
|
+
type: ProductV1MediaType;
|
|
6247
|
+
}> | null;
|
|
6248
|
+
};
|
|
6249
|
+
variations?: Array<{
|
|
6250
|
+
__typename?: "ProductV1Variation";
|
|
6251
|
+
id: string;
|
|
6252
|
+
type: string;
|
|
6253
|
+
option: string;
|
|
6254
|
+
}> | null;
|
|
6255
|
+
productV1Seller: {
|
|
6256
|
+
__typename?: "ProductV1Seller";
|
|
6257
|
+
id: string;
|
|
6258
|
+
defaultVersion?: number | null;
|
|
6259
|
+
name?: string | null;
|
|
6260
|
+
description?: string | null;
|
|
6261
|
+
externalUrl?: string | null;
|
|
6262
|
+
tokenId?: string | null;
|
|
6263
|
+
images?: Array<{
|
|
6264
|
+
__typename?: "ProductV1Media";
|
|
6265
|
+
id: string;
|
|
6266
|
+
url: string;
|
|
6267
|
+
tag?: string | null;
|
|
6268
|
+
type: ProductV1MediaType;
|
|
6269
|
+
}> | null;
|
|
6270
|
+
contactLinks?: Array<{
|
|
6271
|
+
__typename?: "ProductV1SellerContactLink";
|
|
6272
|
+
id: string;
|
|
6273
|
+
url: string;
|
|
6274
|
+
tag: string;
|
|
6275
|
+
}> | null;
|
|
6276
|
+
seller: {
|
|
6277
|
+
__typename?: "Seller";
|
|
6278
|
+
id: string;
|
|
6279
|
+
operator: string;
|
|
6280
|
+
admin: string;
|
|
6281
|
+
clerk: string;
|
|
6282
|
+
treasury: string;
|
|
6283
|
+
authTokenId: string;
|
|
6284
|
+
authTokenType: number;
|
|
6285
|
+
voucherCloneAddress: string;
|
|
6286
|
+
active: boolean;
|
|
6287
|
+
};
|
|
6288
|
+
};
|
|
6289
|
+
exchangePolicy: {
|
|
6290
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
6291
|
+
id: string;
|
|
6292
|
+
uuid: string;
|
|
6293
|
+
version: number;
|
|
6294
|
+
label?: string | null;
|
|
6295
|
+
template: string;
|
|
6296
|
+
};
|
|
6297
|
+
shipping?: {
|
|
6298
|
+
__typename?: "ProductV1ShippingOption";
|
|
6299
|
+
id: string;
|
|
6300
|
+
defaultVersion?: number | null;
|
|
6301
|
+
countryOfOrigin?: string | null;
|
|
6302
|
+
redemptionPoint?: string | null;
|
|
6303
|
+
supportedJurisdictions?: Array<{
|
|
6304
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
6305
|
+
id: string;
|
|
6306
|
+
label: string;
|
|
6307
|
+
deliveryTime: string;
|
|
6308
|
+
}> | null;
|
|
6309
|
+
} | null;
|
|
6156
6310
|
}
|
|
6157
6311
|
| null;
|
|
6158
6312
|
}>;
|
|
@@ -6315,11 +6469,165 @@ export type GetSellersQueryQuery = {
|
|
|
6315
6469
|
}
|
|
6316
6470
|
| {
|
|
6317
6471
|
__typename?: "ProductV1MetadataEntity";
|
|
6472
|
+
image: string;
|
|
6473
|
+
createdAt: string;
|
|
6474
|
+
voided: boolean;
|
|
6475
|
+
validFromDate: string;
|
|
6476
|
+
validUntilDate: string;
|
|
6477
|
+
quantityAvailable: string;
|
|
6478
|
+
uuid: string;
|
|
6318
6479
|
name: string;
|
|
6319
6480
|
description: string;
|
|
6320
6481
|
externalUrl: string;
|
|
6321
6482
|
schemaUrl: string;
|
|
6322
6483
|
type: MetadataType;
|
|
6484
|
+
attributes?: Array<{
|
|
6485
|
+
__typename?: "MetadataAttribute";
|
|
6486
|
+
traitType: string;
|
|
6487
|
+
value: string;
|
|
6488
|
+
displayType: string;
|
|
6489
|
+
}> | null;
|
|
6490
|
+
product: {
|
|
6491
|
+
__typename?: "ProductV1Product";
|
|
6492
|
+
id: string;
|
|
6493
|
+
uuid: string;
|
|
6494
|
+
version: number;
|
|
6495
|
+
title: string;
|
|
6496
|
+
description: string;
|
|
6497
|
+
identification_sKU?: string | null;
|
|
6498
|
+
identification_productId?: string | null;
|
|
6499
|
+
identification_productIdType?: string | null;
|
|
6500
|
+
productionInformation_brandName: string;
|
|
6501
|
+
productionInformation_manufacturer?: string | null;
|
|
6502
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
6503
|
+
productionInformation_modelNumber?: string | null;
|
|
6504
|
+
productionInformation_materials?: Array<string> | null;
|
|
6505
|
+
details_category?: string | null;
|
|
6506
|
+
details_subCategory?: string | null;
|
|
6507
|
+
details_subCategory2?: string | null;
|
|
6508
|
+
details_offerCategory: string;
|
|
6509
|
+
offerCategory: ProductV1OfferCategory;
|
|
6510
|
+
details_tags?: Array<string> | null;
|
|
6511
|
+
details_sections?: Array<string> | null;
|
|
6512
|
+
details_personalisation?: Array<string> | null;
|
|
6513
|
+
packaging_packageQuantity?: string | null;
|
|
6514
|
+
packaging_dimensions_length?: string | null;
|
|
6515
|
+
packaging_dimensions_width?: string | null;
|
|
6516
|
+
packaging_dimensions_height?: string | null;
|
|
6517
|
+
packaging_dimensions_unit?: string | null;
|
|
6518
|
+
packaging_weight_value?: string | null;
|
|
6519
|
+
packaging_weight_unit?: string | null;
|
|
6520
|
+
brand: {
|
|
6521
|
+
__typename?: "ProductV1Brand";
|
|
6522
|
+
id: string;
|
|
6523
|
+
name: string;
|
|
6524
|
+
};
|
|
6525
|
+
category?: {
|
|
6526
|
+
__typename?: "ProductV1Category";
|
|
6527
|
+
id: string;
|
|
6528
|
+
name: string;
|
|
6529
|
+
} | null;
|
|
6530
|
+
subCategory?: {
|
|
6531
|
+
__typename?: "ProductV1Category";
|
|
6532
|
+
id: string;
|
|
6533
|
+
name: string;
|
|
6534
|
+
} | null;
|
|
6535
|
+
subCategory2?: {
|
|
6536
|
+
__typename?: "ProductV1Category";
|
|
6537
|
+
id: string;
|
|
6538
|
+
name: string;
|
|
6539
|
+
} | null;
|
|
6540
|
+
tags?: Array<{
|
|
6541
|
+
__typename?: "ProductV1Tag";
|
|
6542
|
+
id: string;
|
|
6543
|
+
name: string;
|
|
6544
|
+
}> | null;
|
|
6545
|
+
sections?: Array<{
|
|
6546
|
+
__typename?: "ProductV1Section";
|
|
6547
|
+
id: string;
|
|
6548
|
+
name: string;
|
|
6549
|
+
}> | null;
|
|
6550
|
+
personalisation?: Array<{
|
|
6551
|
+
__typename?: "ProductV1Personalisation";
|
|
6552
|
+
id: string;
|
|
6553
|
+
name: string;
|
|
6554
|
+
}> | null;
|
|
6555
|
+
visuals_images: Array<{
|
|
6556
|
+
__typename?: "ProductV1Media";
|
|
6557
|
+
id: string;
|
|
6558
|
+
url: string;
|
|
6559
|
+
tag?: string | null;
|
|
6560
|
+
type: ProductV1MediaType;
|
|
6561
|
+
}>;
|
|
6562
|
+
visuals_videos?: Array<{
|
|
6563
|
+
__typename?: "ProductV1Media";
|
|
6564
|
+
id: string;
|
|
6565
|
+
url: string;
|
|
6566
|
+
tag?: string | null;
|
|
6567
|
+
type: ProductV1MediaType;
|
|
6568
|
+
}> | null;
|
|
6569
|
+
};
|
|
6570
|
+
variations?: Array<{
|
|
6571
|
+
__typename?: "ProductV1Variation";
|
|
6572
|
+
id: string;
|
|
6573
|
+
type: string;
|
|
6574
|
+
option: string;
|
|
6575
|
+
}> | null;
|
|
6576
|
+
productV1Seller: {
|
|
6577
|
+
__typename?: "ProductV1Seller";
|
|
6578
|
+
id: string;
|
|
6579
|
+
defaultVersion?: number | null;
|
|
6580
|
+
name?: string | null;
|
|
6581
|
+
description?: string | null;
|
|
6582
|
+
externalUrl?: string | null;
|
|
6583
|
+
tokenId?: string | null;
|
|
6584
|
+
images?: Array<{
|
|
6585
|
+
__typename?: "ProductV1Media";
|
|
6586
|
+
id: string;
|
|
6587
|
+
url: string;
|
|
6588
|
+
tag?: string | null;
|
|
6589
|
+
type: ProductV1MediaType;
|
|
6590
|
+
}> | null;
|
|
6591
|
+
contactLinks?: Array<{
|
|
6592
|
+
__typename?: "ProductV1SellerContactLink";
|
|
6593
|
+
id: string;
|
|
6594
|
+
url: string;
|
|
6595
|
+
tag: string;
|
|
6596
|
+
}> | null;
|
|
6597
|
+
seller: {
|
|
6598
|
+
__typename?: "Seller";
|
|
6599
|
+
id: string;
|
|
6600
|
+
operator: string;
|
|
6601
|
+
admin: string;
|
|
6602
|
+
clerk: string;
|
|
6603
|
+
treasury: string;
|
|
6604
|
+
authTokenId: string;
|
|
6605
|
+
authTokenType: number;
|
|
6606
|
+
voucherCloneAddress: string;
|
|
6607
|
+
active: boolean;
|
|
6608
|
+
};
|
|
6609
|
+
};
|
|
6610
|
+
exchangePolicy: {
|
|
6611
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
6612
|
+
id: string;
|
|
6613
|
+
uuid: string;
|
|
6614
|
+
version: number;
|
|
6615
|
+
label?: string | null;
|
|
6616
|
+
template: string;
|
|
6617
|
+
};
|
|
6618
|
+
shipping?: {
|
|
6619
|
+
__typename?: "ProductV1ShippingOption";
|
|
6620
|
+
id: string;
|
|
6621
|
+
defaultVersion?: number | null;
|
|
6622
|
+
countryOfOrigin?: string | null;
|
|
6623
|
+
redemptionPoint?: string | null;
|
|
6624
|
+
supportedJurisdictions?: Array<{
|
|
6625
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
6626
|
+
id: string;
|
|
6627
|
+
label: string;
|
|
6628
|
+
deliveryTime: string;
|
|
6629
|
+
}> | null;
|
|
6630
|
+
} | null;
|
|
6323
6631
|
}
|
|
6324
6632
|
| null;
|
|
6325
6633
|
}>;
|
|
@@ -6570,11 +6878,165 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
6570
6878
|
}
|
|
6571
6879
|
| {
|
|
6572
6880
|
__typename?: "ProductV1MetadataEntity";
|
|
6881
|
+
image: string;
|
|
6882
|
+
createdAt: string;
|
|
6883
|
+
voided: boolean;
|
|
6884
|
+
validFromDate: string;
|
|
6885
|
+
validUntilDate: string;
|
|
6886
|
+
quantityAvailable: string;
|
|
6887
|
+
uuid: string;
|
|
6573
6888
|
name: string;
|
|
6574
6889
|
description: string;
|
|
6575
6890
|
externalUrl: string;
|
|
6576
6891
|
schemaUrl: string;
|
|
6577
6892
|
type: MetadataType;
|
|
6893
|
+
attributes?: Array<{
|
|
6894
|
+
__typename?: "MetadataAttribute";
|
|
6895
|
+
traitType: string;
|
|
6896
|
+
value: string;
|
|
6897
|
+
displayType: string;
|
|
6898
|
+
}> | null;
|
|
6899
|
+
product: {
|
|
6900
|
+
__typename?: "ProductV1Product";
|
|
6901
|
+
id: string;
|
|
6902
|
+
uuid: string;
|
|
6903
|
+
version: number;
|
|
6904
|
+
title: string;
|
|
6905
|
+
description: string;
|
|
6906
|
+
identification_sKU?: string | null;
|
|
6907
|
+
identification_productId?: string | null;
|
|
6908
|
+
identification_productIdType?: string | null;
|
|
6909
|
+
productionInformation_brandName: string;
|
|
6910
|
+
productionInformation_manufacturer?: string | null;
|
|
6911
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
6912
|
+
productionInformation_modelNumber?: string | null;
|
|
6913
|
+
productionInformation_materials?: Array<string> | null;
|
|
6914
|
+
details_category?: string | null;
|
|
6915
|
+
details_subCategory?: string | null;
|
|
6916
|
+
details_subCategory2?: string | null;
|
|
6917
|
+
details_offerCategory: string;
|
|
6918
|
+
offerCategory: ProductV1OfferCategory;
|
|
6919
|
+
details_tags?: Array<string> | null;
|
|
6920
|
+
details_sections?: Array<string> | null;
|
|
6921
|
+
details_personalisation?: Array<string> | null;
|
|
6922
|
+
packaging_packageQuantity?: string | null;
|
|
6923
|
+
packaging_dimensions_length?: string | null;
|
|
6924
|
+
packaging_dimensions_width?: string | null;
|
|
6925
|
+
packaging_dimensions_height?: string | null;
|
|
6926
|
+
packaging_dimensions_unit?: string | null;
|
|
6927
|
+
packaging_weight_value?: string | null;
|
|
6928
|
+
packaging_weight_unit?: string | null;
|
|
6929
|
+
brand: {
|
|
6930
|
+
__typename?: "ProductV1Brand";
|
|
6931
|
+
id: string;
|
|
6932
|
+
name: string;
|
|
6933
|
+
};
|
|
6934
|
+
category?: {
|
|
6935
|
+
__typename?: "ProductV1Category";
|
|
6936
|
+
id: string;
|
|
6937
|
+
name: string;
|
|
6938
|
+
} | null;
|
|
6939
|
+
subCategory?: {
|
|
6940
|
+
__typename?: "ProductV1Category";
|
|
6941
|
+
id: string;
|
|
6942
|
+
name: string;
|
|
6943
|
+
} | null;
|
|
6944
|
+
subCategory2?: {
|
|
6945
|
+
__typename?: "ProductV1Category";
|
|
6946
|
+
id: string;
|
|
6947
|
+
name: string;
|
|
6948
|
+
} | null;
|
|
6949
|
+
tags?: Array<{
|
|
6950
|
+
__typename?: "ProductV1Tag";
|
|
6951
|
+
id: string;
|
|
6952
|
+
name: string;
|
|
6953
|
+
}> | null;
|
|
6954
|
+
sections?: Array<{
|
|
6955
|
+
__typename?: "ProductV1Section";
|
|
6956
|
+
id: string;
|
|
6957
|
+
name: string;
|
|
6958
|
+
}> | null;
|
|
6959
|
+
personalisation?: Array<{
|
|
6960
|
+
__typename?: "ProductV1Personalisation";
|
|
6961
|
+
id: string;
|
|
6962
|
+
name: string;
|
|
6963
|
+
}> | null;
|
|
6964
|
+
visuals_images: Array<{
|
|
6965
|
+
__typename?: "ProductV1Media";
|
|
6966
|
+
id: string;
|
|
6967
|
+
url: string;
|
|
6968
|
+
tag?: string | null;
|
|
6969
|
+
type: ProductV1MediaType;
|
|
6970
|
+
}>;
|
|
6971
|
+
visuals_videos?: Array<{
|
|
6972
|
+
__typename?: "ProductV1Media";
|
|
6973
|
+
id: string;
|
|
6974
|
+
url: string;
|
|
6975
|
+
tag?: string | null;
|
|
6976
|
+
type: ProductV1MediaType;
|
|
6977
|
+
}> | null;
|
|
6978
|
+
};
|
|
6979
|
+
variations?: Array<{
|
|
6980
|
+
__typename?: "ProductV1Variation";
|
|
6981
|
+
id: string;
|
|
6982
|
+
type: string;
|
|
6983
|
+
option: string;
|
|
6984
|
+
}> | null;
|
|
6985
|
+
productV1Seller: {
|
|
6986
|
+
__typename?: "ProductV1Seller";
|
|
6987
|
+
id: string;
|
|
6988
|
+
defaultVersion?: number | null;
|
|
6989
|
+
name?: string | null;
|
|
6990
|
+
description?: string | null;
|
|
6991
|
+
externalUrl?: string | null;
|
|
6992
|
+
tokenId?: string | null;
|
|
6993
|
+
images?: Array<{
|
|
6994
|
+
__typename?: "ProductV1Media";
|
|
6995
|
+
id: string;
|
|
6996
|
+
url: string;
|
|
6997
|
+
tag?: string | null;
|
|
6998
|
+
type: ProductV1MediaType;
|
|
6999
|
+
}> | null;
|
|
7000
|
+
contactLinks?: Array<{
|
|
7001
|
+
__typename?: "ProductV1SellerContactLink";
|
|
7002
|
+
id: string;
|
|
7003
|
+
url: string;
|
|
7004
|
+
tag: string;
|
|
7005
|
+
}> | null;
|
|
7006
|
+
seller: {
|
|
7007
|
+
__typename?: "Seller";
|
|
7008
|
+
id: string;
|
|
7009
|
+
operator: string;
|
|
7010
|
+
admin: string;
|
|
7011
|
+
clerk: string;
|
|
7012
|
+
treasury: string;
|
|
7013
|
+
authTokenId: string;
|
|
7014
|
+
authTokenType: number;
|
|
7015
|
+
voucherCloneAddress: string;
|
|
7016
|
+
active: boolean;
|
|
7017
|
+
};
|
|
7018
|
+
};
|
|
7019
|
+
exchangePolicy: {
|
|
7020
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
7021
|
+
id: string;
|
|
7022
|
+
uuid: string;
|
|
7023
|
+
version: number;
|
|
7024
|
+
label?: string | null;
|
|
7025
|
+
template: string;
|
|
7026
|
+
};
|
|
7027
|
+
shipping?: {
|
|
7028
|
+
__typename?: "ProductV1ShippingOption";
|
|
7029
|
+
id: string;
|
|
7030
|
+
defaultVersion?: number | null;
|
|
7031
|
+
countryOfOrigin?: string | null;
|
|
7032
|
+
redemptionPoint?: string | null;
|
|
7033
|
+
supportedJurisdictions?: Array<{
|
|
7034
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
7035
|
+
id: string;
|
|
7036
|
+
label: string;
|
|
7037
|
+
deliveryTime: string;
|
|
7038
|
+
}> | null;
|
|
7039
|
+
} | null;
|
|
6578
7040
|
}
|
|
6579
7041
|
| null;
|
|
6580
7042
|
}>;
|
|
@@ -6712,11 +7174,165 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
6712
7174
|
}
|
|
6713
7175
|
| {
|
|
6714
7176
|
__typename?: "ProductV1MetadataEntity";
|
|
7177
|
+
image: string;
|
|
7178
|
+
createdAt: string;
|
|
7179
|
+
voided: boolean;
|
|
7180
|
+
validFromDate: string;
|
|
7181
|
+
validUntilDate: string;
|
|
7182
|
+
quantityAvailable: string;
|
|
7183
|
+
uuid: string;
|
|
6715
7184
|
name: string;
|
|
6716
7185
|
description: string;
|
|
6717
7186
|
externalUrl: string;
|
|
6718
7187
|
schemaUrl: string;
|
|
6719
7188
|
type: MetadataType;
|
|
7189
|
+
attributes?: Array<{
|
|
7190
|
+
__typename?: "MetadataAttribute";
|
|
7191
|
+
traitType: string;
|
|
7192
|
+
value: string;
|
|
7193
|
+
displayType: string;
|
|
7194
|
+
}> | null;
|
|
7195
|
+
product: {
|
|
7196
|
+
__typename?: "ProductV1Product";
|
|
7197
|
+
id: string;
|
|
7198
|
+
uuid: string;
|
|
7199
|
+
version: number;
|
|
7200
|
+
title: string;
|
|
7201
|
+
description: string;
|
|
7202
|
+
identification_sKU?: string | null;
|
|
7203
|
+
identification_productId?: string | null;
|
|
7204
|
+
identification_productIdType?: string | null;
|
|
7205
|
+
productionInformation_brandName: string;
|
|
7206
|
+
productionInformation_manufacturer?: string | null;
|
|
7207
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
7208
|
+
productionInformation_modelNumber?: string | null;
|
|
7209
|
+
productionInformation_materials?: Array<string> | null;
|
|
7210
|
+
details_category?: string | null;
|
|
7211
|
+
details_subCategory?: string | null;
|
|
7212
|
+
details_subCategory2?: string | null;
|
|
7213
|
+
details_offerCategory: string;
|
|
7214
|
+
offerCategory: ProductV1OfferCategory;
|
|
7215
|
+
details_tags?: Array<string> | null;
|
|
7216
|
+
details_sections?: Array<string> | null;
|
|
7217
|
+
details_personalisation?: Array<string> | null;
|
|
7218
|
+
packaging_packageQuantity?: string | null;
|
|
7219
|
+
packaging_dimensions_length?: string | null;
|
|
7220
|
+
packaging_dimensions_width?: string | null;
|
|
7221
|
+
packaging_dimensions_height?: string | null;
|
|
7222
|
+
packaging_dimensions_unit?: string | null;
|
|
7223
|
+
packaging_weight_value?: string | null;
|
|
7224
|
+
packaging_weight_unit?: string | null;
|
|
7225
|
+
brand: {
|
|
7226
|
+
__typename?: "ProductV1Brand";
|
|
7227
|
+
id: string;
|
|
7228
|
+
name: string;
|
|
7229
|
+
};
|
|
7230
|
+
category?: {
|
|
7231
|
+
__typename?: "ProductV1Category";
|
|
7232
|
+
id: string;
|
|
7233
|
+
name: string;
|
|
7234
|
+
} | null;
|
|
7235
|
+
subCategory?: {
|
|
7236
|
+
__typename?: "ProductV1Category";
|
|
7237
|
+
id: string;
|
|
7238
|
+
name: string;
|
|
7239
|
+
} | null;
|
|
7240
|
+
subCategory2?: {
|
|
7241
|
+
__typename?: "ProductV1Category";
|
|
7242
|
+
id: string;
|
|
7243
|
+
name: string;
|
|
7244
|
+
} | null;
|
|
7245
|
+
tags?: Array<{
|
|
7246
|
+
__typename?: "ProductV1Tag";
|
|
7247
|
+
id: string;
|
|
7248
|
+
name: string;
|
|
7249
|
+
}> | null;
|
|
7250
|
+
sections?: Array<{
|
|
7251
|
+
__typename?: "ProductV1Section";
|
|
7252
|
+
id: string;
|
|
7253
|
+
name: string;
|
|
7254
|
+
}> | null;
|
|
7255
|
+
personalisation?: Array<{
|
|
7256
|
+
__typename?: "ProductV1Personalisation";
|
|
7257
|
+
id: string;
|
|
7258
|
+
name: string;
|
|
7259
|
+
}> | null;
|
|
7260
|
+
visuals_images: Array<{
|
|
7261
|
+
__typename?: "ProductV1Media";
|
|
7262
|
+
id: string;
|
|
7263
|
+
url: string;
|
|
7264
|
+
tag?: string | null;
|
|
7265
|
+
type: ProductV1MediaType;
|
|
7266
|
+
}>;
|
|
7267
|
+
visuals_videos?: Array<{
|
|
7268
|
+
__typename?: "ProductV1Media";
|
|
7269
|
+
id: string;
|
|
7270
|
+
url: string;
|
|
7271
|
+
tag?: string | null;
|
|
7272
|
+
type: ProductV1MediaType;
|
|
7273
|
+
}> | null;
|
|
7274
|
+
};
|
|
7275
|
+
variations?: Array<{
|
|
7276
|
+
__typename?: "ProductV1Variation";
|
|
7277
|
+
id: string;
|
|
7278
|
+
type: string;
|
|
7279
|
+
option: string;
|
|
7280
|
+
}> | null;
|
|
7281
|
+
productV1Seller: {
|
|
7282
|
+
__typename?: "ProductV1Seller";
|
|
7283
|
+
id: string;
|
|
7284
|
+
defaultVersion?: number | null;
|
|
7285
|
+
name?: string | null;
|
|
7286
|
+
description?: string | null;
|
|
7287
|
+
externalUrl?: string | null;
|
|
7288
|
+
tokenId?: string | null;
|
|
7289
|
+
images?: Array<{
|
|
7290
|
+
__typename?: "ProductV1Media";
|
|
7291
|
+
id: string;
|
|
7292
|
+
url: string;
|
|
7293
|
+
tag?: string | null;
|
|
7294
|
+
type: ProductV1MediaType;
|
|
7295
|
+
}> | null;
|
|
7296
|
+
contactLinks?: Array<{
|
|
7297
|
+
__typename?: "ProductV1SellerContactLink";
|
|
7298
|
+
id: string;
|
|
7299
|
+
url: string;
|
|
7300
|
+
tag: string;
|
|
7301
|
+
}> | null;
|
|
7302
|
+
seller: {
|
|
7303
|
+
__typename?: "Seller";
|
|
7304
|
+
id: string;
|
|
7305
|
+
operator: string;
|
|
7306
|
+
admin: string;
|
|
7307
|
+
clerk: string;
|
|
7308
|
+
treasury: string;
|
|
7309
|
+
authTokenId: string;
|
|
7310
|
+
authTokenType: number;
|
|
7311
|
+
voucherCloneAddress: string;
|
|
7312
|
+
active: boolean;
|
|
7313
|
+
};
|
|
7314
|
+
};
|
|
7315
|
+
exchangePolicy: {
|
|
7316
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
7317
|
+
id: string;
|
|
7318
|
+
uuid: string;
|
|
7319
|
+
version: number;
|
|
7320
|
+
label?: string | null;
|
|
7321
|
+
template: string;
|
|
7322
|
+
};
|
|
7323
|
+
shipping?: {
|
|
7324
|
+
__typename?: "ProductV1ShippingOption";
|
|
7325
|
+
id: string;
|
|
7326
|
+
defaultVersion?: number | null;
|
|
7327
|
+
countryOfOrigin?: string | null;
|
|
7328
|
+
redemptionPoint?: string | null;
|
|
7329
|
+
supportedJurisdictions?: Array<{
|
|
7330
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
7331
|
+
id: string;
|
|
7332
|
+
label: string;
|
|
7333
|
+
deliveryTime: string;
|
|
7334
|
+
}> | null;
|
|
7335
|
+
} | null;
|
|
6720
7336
|
}
|
|
6721
7337
|
| null;
|
|
6722
7338
|
}>;
|
|
@@ -6852,11 +7468,161 @@ export type SellerFieldsFragment = {
|
|
|
6852
7468
|
}
|
|
6853
7469
|
| {
|
|
6854
7470
|
__typename?: "ProductV1MetadataEntity";
|
|
7471
|
+
image: string;
|
|
7472
|
+
createdAt: string;
|
|
7473
|
+
voided: boolean;
|
|
7474
|
+
validFromDate: string;
|
|
7475
|
+
validUntilDate: string;
|
|
7476
|
+
quantityAvailable: string;
|
|
7477
|
+
uuid: string;
|
|
6855
7478
|
name: string;
|
|
6856
7479
|
description: string;
|
|
6857
7480
|
externalUrl: string;
|
|
6858
7481
|
schemaUrl: string;
|
|
6859
7482
|
type: MetadataType;
|
|
7483
|
+
attributes?: Array<{
|
|
7484
|
+
__typename?: "MetadataAttribute";
|
|
7485
|
+
traitType: string;
|
|
7486
|
+
value: string;
|
|
7487
|
+
displayType: string;
|
|
7488
|
+
}> | null;
|
|
7489
|
+
product: {
|
|
7490
|
+
__typename?: "ProductV1Product";
|
|
7491
|
+
id: string;
|
|
7492
|
+
uuid: string;
|
|
7493
|
+
version: number;
|
|
7494
|
+
title: string;
|
|
7495
|
+
description: string;
|
|
7496
|
+
identification_sKU?: string | null;
|
|
7497
|
+
identification_productId?: string | null;
|
|
7498
|
+
identification_productIdType?: string | null;
|
|
7499
|
+
productionInformation_brandName: string;
|
|
7500
|
+
productionInformation_manufacturer?: string | null;
|
|
7501
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
7502
|
+
productionInformation_modelNumber?: string | null;
|
|
7503
|
+
productionInformation_materials?: Array<string> | null;
|
|
7504
|
+
details_category?: string | null;
|
|
7505
|
+
details_subCategory?: string | null;
|
|
7506
|
+
details_subCategory2?: string | null;
|
|
7507
|
+
details_offerCategory: string;
|
|
7508
|
+
offerCategory: ProductV1OfferCategory;
|
|
7509
|
+
details_tags?: Array<string> | null;
|
|
7510
|
+
details_sections?: Array<string> | null;
|
|
7511
|
+
details_personalisation?: Array<string> | null;
|
|
7512
|
+
packaging_packageQuantity?: string | null;
|
|
7513
|
+
packaging_dimensions_length?: string | null;
|
|
7514
|
+
packaging_dimensions_width?: string | null;
|
|
7515
|
+
packaging_dimensions_height?: string | null;
|
|
7516
|
+
packaging_dimensions_unit?: string | null;
|
|
7517
|
+
packaging_weight_value?: string | null;
|
|
7518
|
+
packaging_weight_unit?: string | null;
|
|
7519
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
7520
|
+
category?: {
|
|
7521
|
+
__typename?: "ProductV1Category";
|
|
7522
|
+
id: string;
|
|
7523
|
+
name: string;
|
|
7524
|
+
} | null;
|
|
7525
|
+
subCategory?: {
|
|
7526
|
+
__typename?: "ProductV1Category";
|
|
7527
|
+
id: string;
|
|
7528
|
+
name: string;
|
|
7529
|
+
} | null;
|
|
7530
|
+
subCategory2?: {
|
|
7531
|
+
__typename?: "ProductV1Category";
|
|
7532
|
+
id: string;
|
|
7533
|
+
name: string;
|
|
7534
|
+
} | null;
|
|
7535
|
+
tags?: Array<{
|
|
7536
|
+
__typename?: "ProductV1Tag";
|
|
7537
|
+
id: string;
|
|
7538
|
+
name: string;
|
|
7539
|
+
}> | null;
|
|
7540
|
+
sections?: Array<{
|
|
7541
|
+
__typename?: "ProductV1Section";
|
|
7542
|
+
id: string;
|
|
7543
|
+
name: string;
|
|
7544
|
+
}> | null;
|
|
7545
|
+
personalisation?: Array<{
|
|
7546
|
+
__typename?: "ProductV1Personalisation";
|
|
7547
|
+
id: string;
|
|
7548
|
+
name: string;
|
|
7549
|
+
}> | null;
|
|
7550
|
+
visuals_images: Array<{
|
|
7551
|
+
__typename?: "ProductV1Media";
|
|
7552
|
+
id: string;
|
|
7553
|
+
url: string;
|
|
7554
|
+
tag?: string | null;
|
|
7555
|
+
type: ProductV1MediaType;
|
|
7556
|
+
}>;
|
|
7557
|
+
visuals_videos?: Array<{
|
|
7558
|
+
__typename?: "ProductV1Media";
|
|
7559
|
+
id: string;
|
|
7560
|
+
url: string;
|
|
7561
|
+
tag?: string | null;
|
|
7562
|
+
type: ProductV1MediaType;
|
|
7563
|
+
}> | null;
|
|
7564
|
+
};
|
|
7565
|
+
variations?: Array<{
|
|
7566
|
+
__typename?: "ProductV1Variation";
|
|
7567
|
+
id: string;
|
|
7568
|
+
type: string;
|
|
7569
|
+
option: string;
|
|
7570
|
+
}> | null;
|
|
7571
|
+
productV1Seller: {
|
|
7572
|
+
__typename?: "ProductV1Seller";
|
|
7573
|
+
id: string;
|
|
7574
|
+
defaultVersion?: number | null;
|
|
7575
|
+
name?: string | null;
|
|
7576
|
+
description?: string | null;
|
|
7577
|
+
externalUrl?: string | null;
|
|
7578
|
+
tokenId?: string | null;
|
|
7579
|
+
images?: Array<{
|
|
7580
|
+
__typename?: "ProductV1Media";
|
|
7581
|
+
id: string;
|
|
7582
|
+
url: string;
|
|
7583
|
+
tag?: string | null;
|
|
7584
|
+
type: ProductV1MediaType;
|
|
7585
|
+
}> | null;
|
|
7586
|
+
contactLinks?: Array<{
|
|
7587
|
+
__typename?: "ProductV1SellerContactLink";
|
|
7588
|
+
id: string;
|
|
7589
|
+
url: string;
|
|
7590
|
+
tag: string;
|
|
7591
|
+
}> | null;
|
|
7592
|
+
seller: {
|
|
7593
|
+
__typename?: "Seller";
|
|
7594
|
+
id: string;
|
|
7595
|
+
operator: string;
|
|
7596
|
+
admin: string;
|
|
7597
|
+
clerk: string;
|
|
7598
|
+
treasury: string;
|
|
7599
|
+
authTokenId: string;
|
|
7600
|
+
authTokenType: number;
|
|
7601
|
+
voucherCloneAddress: string;
|
|
7602
|
+
active: boolean;
|
|
7603
|
+
};
|
|
7604
|
+
};
|
|
7605
|
+
exchangePolicy: {
|
|
7606
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
7607
|
+
id: string;
|
|
7608
|
+
uuid: string;
|
|
7609
|
+
version: number;
|
|
7610
|
+
label?: string | null;
|
|
7611
|
+
template: string;
|
|
7612
|
+
};
|
|
7613
|
+
shipping?: {
|
|
7614
|
+
__typename?: "ProductV1ShippingOption";
|
|
7615
|
+
id: string;
|
|
7616
|
+
defaultVersion?: number | null;
|
|
7617
|
+
countryOfOrigin?: string | null;
|
|
7618
|
+
redemptionPoint?: string | null;
|
|
7619
|
+
supportedJurisdictions?: Array<{
|
|
7620
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
7621
|
+
id: string;
|
|
7622
|
+
label: string;
|
|
7623
|
+
deliveryTime: string;
|
|
7624
|
+
}> | null;
|
|
7625
|
+
} | null;
|
|
6860
7626
|
}
|
|
6861
7627
|
| null;
|
|
6862
7628
|
}>;
|
|
@@ -7031,11 +7797,161 @@ export type DisputeResolverFieldsFragment = {
|
|
|
7031
7797
|
}
|
|
7032
7798
|
| {
|
|
7033
7799
|
__typename?: "ProductV1MetadataEntity";
|
|
7800
|
+
image: string;
|
|
7801
|
+
createdAt: string;
|
|
7802
|
+
voided: boolean;
|
|
7803
|
+
validFromDate: string;
|
|
7804
|
+
validUntilDate: string;
|
|
7805
|
+
quantityAvailable: string;
|
|
7806
|
+
uuid: string;
|
|
7034
7807
|
name: string;
|
|
7035
7808
|
description: string;
|
|
7036
7809
|
externalUrl: string;
|
|
7037
7810
|
schemaUrl: string;
|
|
7038
7811
|
type: MetadataType;
|
|
7812
|
+
attributes?: Array<{
|
|
7813
|
+
__typename?: "MetadataAttribute";
|
|
7814
|
+
traitType: string;
|
|
7815
|
+
value: string;
|
|
7816
|
+
displayType: string;
|
|
7817
|
+
}> | null;
|
|
7818
|
+
product: {
|
|
7819
|
+
__typename?: "ProductV1Product";
|
|
7820
|
+
id: string;
|
|
7821
|
+
uuid: string;
|
|
7822
|
+
version: number;
|
|
7823
|
+
title: string;
|
|
7824
|
+
description: string;
|
|
7825
|
+
identification_sKU?: string | null;
|
|
7826
|
+
identification_productId?: string | null;
|
|
7827
|
+
identification_productIdType?: string | null;
|
|
7828
|
+
productionInformation_brandName: string;
|
|
7829
|
+
productionInformation_manufacturer?: string | null;
|
|
7830
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
7831
|
+
productionInformation_modelNumber?: string | null;
|
|
7832
|
+
productionInformation_materials?: Array<string> | null;
|
|
7833
|
+
details_category?: string | null;
|
|
7834
|
+
details_subCategory?: string | null;
|
|
7835
|
+
details_subCategory2?: string | null;
|
|
7836
|
+
details_offerCategory: string;
|
|
7837
|
+
offerCategory: ProductV1OfferCategory;
|
|
7838
|
+
details_tags?: Array<string> | null;
|
|
7839
|
+
details_sections?: Array<string> | null;
|
|
7840
|
+
details_personalisation?: Array<string> | null;
|
|
7841
|
+
packaging_packageQuantity?: string | null;
|
|
7842
|
+
packaging_dimensions_length?: string | null;
|
|
7843
|
+
packaging_dimensions_width?: string | null;
|
|
7844
|
+
packaging_dimensions_height?: string | null;
|
|
7845
|
+
packaging_dimensions_unit?: string | null;
|
|
7846
|
+
packaging_weight_value?: string | null;
|
|
7847
|
+
packaging_weight_unit?: string | null;
|
|
7848
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
7849
|
+
category?: {
|
|
7850
|
+
__typename?: "ProductV1Category";
|
|
7851
|
+
id: string;
|
|
7852
|
+
name: string;
|
|
7853
|
+
} | null;
|
|
7854
|
+
subCategory?: {
|
|
7855
|
+
__typename?: "ProductV1Category";
|
|
7856
|
+
id: string;
|
|
7857
|
+
name: string;
|
|
7858
|
+
} | null;
|
|
7859
|
+
subCategory2?: {
|
|
7860
|
+
__typename?: "ProductV1Category";
|
|
7861
|
+
id: string;
|
|
7862
|
+
name: string;
|
|
7863
|
+
} | null;
|
|
7864
|
+
tags?: Array<{
|
|
7865
|
+
__typename?: "ProductV1Tag";
|
|
7866
|
+
id: string;
|
|
7867
|
+
name: string;
|
|
7868
|
+
}> | null;
|
|
7869
|
+
sections?: Array<{
|
|
7870
|
+
__typename?: "ProductV1Section";
|
|
7871
|
+
id: string;
|
|
7872
|
+
name: string;
|
|
7873
|
+
}> | null;
|
|
7874
|
+
personalisation?: Array<{
|
|
7875
|
+
__typename?: "ProductV1Personalisation";
|
|
7876
|
+
id: string;
|
|
7877
|
+
name: string;
|
|
7878
|
+
}> | null;
|
|
7879
|
+
visuals_images: Array<{
|
|
7880
|
+
__typename?: "ProductV1Media";
|
|
7881
|
+
id: string;
|
|
7882
|
+
url: string;
|
|
7883
|
+
tag?: string | null;
|
|
7884
|
+
type: ProductV1MediaType;
|
|
7885
|
+
}>;
|
|
7886
|
+
visuals_videos?: Array<{
|
|
7887
|
+
__typename?: "ProductV1Media";
|
|
7888
|
+
id: string;
|
|
7889
|
+
url: string;
|
|
7890
|
+
tag?: string | null;
|
|
7891
|
+
type: ProductV1MediaType;
|
|
7892
|
+
}> | null;
|
|
7893
|
+
};
|
|
7894
|
+
variations?: Array<{
|
|
7895
|
+
__typename?: "ProductV1Variation";
|
|
7896
|
+
id: string;
|
|
7897
|
+
type: string;
|
|
7898
|
+
option: string;
|
|
7899
|
+
}> | null;
|
|
7900
|
+
productV1Seller: {
|
|
7901
|
+
__typename?: "ProductV1Seller";
|
|
7902
|
+
id: string;
|
|
7903
|
+
defaultVersion?: number | null;
|
|
7904
|
+
name?: string | null;
|
|
7905
|
+
description?: string | null;
|
|
7906
|
+
externalUrl?: string | null;
|
|
7907
|
+
tokenId?: string | null;
|
|
7908
|
+
images?: Array<{
|
|
7909
|
+
__typename?: "ProductV1Media";
|
|
7910
|
+
id: string;
|
|
7911
|
+
url: string;
|
|
7912
|
+
tag?: string | null;
|
|
7913
|
+
type: ProductV1MediaType;
|
|
7914
|
+
}> | null;
|
|
7915
|
+
contactLinks?: Array<{
|
|
7916
|
+
__typename?: "ProductV1SellerContactLink";
|
|
7917
|
+
id: string;
|
|
7918
|
+
url: string;
|
|
7919
|
+
tag: string;
|
|
7920
|
+
}> | null;
|
|
7921
|
+
seller: {
|
|
7922
|
+
__typename?: "Seller";
|
|
7923
|
+
id: string;
|
|
7924
|
+
operator: string;
|
|
7925
|
+
admin: string;
|
|
7926
|
+
clerk: string;
|
|
7927
|
+
treasury: string;
|
|
7928
|
+
authTokenId: string;
|
|
7929
|
+
authTokenType: number;
|
|
7930
|
+
voucherCloneAddress: string;
|
|
7931
|
+
active: boolean;
|
|
7932
|
+
};
|
|
7933
|
+
};
|
|
7934
|
+
exchangePolicy: {
|
|
7935
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
7936
|
+
id: string;
|
|
7937
|
+
uuid: string;
|
|
7938
|
+
version: number;
|
|
7939
|
+
label?: string | null;
|
|
7940
|
+
template: string;
|
|
7941
|
+
};
|
|
7942
|
+
shipping?: {
|
|
7943
|
+
__typename?: "ProductV1ShippingOption";
|
|
7944
|
+
id: string;
|
|
7945
|
+
defaultVersion?: number | null;
|
|
7946
|
+
countryOfOrigin?: string | null;
|
|
7947
|
+
redemptionPoint?: string | null;
|
|
7948
|
+
supportedJurisdictions?: Array<{
|
|
7949
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
7950
|
+
id: string;
|
|
7951
|
+
label: string;
|
|
7952
|
+
deliveryTime: string;
|
|
7953
|
+
}> | null;
|
|
7954
|
+
} | null;
|
|
7039
7955
|
}
|
|
7040
7956
|
| null;
|
|
7041
7957
|
}>;
|
|
@@ -7422,11 +8338,165 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
7422
8338
|
}
|
|
7423
8339
|
| {
|
|
7424
8340
|
__typename?: "ProductV1MetadataEntity";
|
|
8341
|
+
image: string;
|
|
8342
|
+
createdAt: string;
|
|
8343
|
+
voided: boolean;
|
|
8344
|
+
validFromDate: string;
|
|
8345
|
+
validUntilDate: string;
|
|
8346
|
+
quantityAvailable: string;
|
|
8347
|
+
uuid: string;
|
|
7425
8348
|
name: string;
|
|
7426
8349
|
description: string;
|
|
7427
8350
|
externalUrl: string;
|
|
7428
8351
|
schemaUrl: string;
|
|
7429
8352
|
type: MetadataType;
|
|
8353
|
+
attributes?: Array<{
|
|
8354
|
+
__typename?: "MetadataAttribute";
|
|
8355
|
+
traitType: string;
|
|
8356
|
+
value: string;
|
|
8357
|
+
displayType: string;
|
|
8358
|
+
}> | null;
|
|
8359
|
+
product: {
|
|
8360
|
+
__typename?: "ProductV1Product";
|
|
8361
|
+
id: string;
|
|
8362
|
+
uuid: string;
|
|
8363
|
+
version: number;
|
|
8364
|
+
title: string;
|
|
8365
|
+
description: string;
|
|
8366
|
+
identification_sKU?: string | null;
|
|
8367
|
+
identification_productId?: string | null;
|
|
8368
|
+
identification_productIdType?: string | null;
|
|
8369
|
+
productionInformation_brandName: string;
|
|
8370
|
+
productionInformation_manufacturer?: string | null;
|
|
8371
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
8372
|
+
productionInformation_modelNumber?: string | null;
|
|
8373
|
+
productionInformation_materials?: Array<string> | null;
|
|
8374
|
+
details_category?: string | null;
|
|
8375
|
+
details_subCategory?: string | null;
|
|
8376
|
+
details_subCategory2?: string | null;
|
|
8377
|
+
details_offerCategory: string;
|
|
8378
|
+
offerCategory: ProductV1OfferCategory;
|
|
8379
|
+
details_tags?: Array<string> | null;
|
|
8380
|
+
details_sections?: Array<string> | null;
|
|
8381
|
+
details_personalisation?: Array<string> | null;
|
|
8382
|
+
packaging_packageQuantity?: string | null;
|
|
8383
|
+
packaging_dimensions_length?: string | null;
|
|
8384
|
+
packaging_dimensions_width?: string | null;
|
|
8385
|
+
packaging_dimensions_height?: string | null;
|
|
8386
|
+
packaging_dimensions_unit?: string | null;
|
|
8387
|
+
packaging_weight_value?: string | null;
|
|
8388
|
+
packaging_weight_unit?: string | null;
|
|
8389
|
+
brand: {
|
|
8390
|
+
__typename?: "ProductV1Brand";
|
|
8391
|
+
id: string;
|
|
8392
|
+
name: string;
|
|
8393
|
+
};
|
|
8394
|
+
category?: {
|
|
8395
|
+
__typename?: "ProductV1Category";
|
|
8396
|
+
id: string;
|
|
8397
|
+
name: string;
|
|
8398
|
+
} | null;
|
|
8399
|
+
subCategory?: {
|
|
8400
|
+
__typename?: "ProductV1Category";
|
|
8401
|
+
id: string;
|
|
8402
|
+
name: string;
|
|
8403
|
+
} | null;
|
|
8404
|
+
subCategory2?: {
|
|
8405
|
+
__typename?: "ProductV1Category";
|
|
8406
|
+
id: string;
|
|
8407
|
+
name: string;
|
|
8408
|
+
} | null;
|
|
8409
|
+
tags?: Array<{
|
|
8410
|
+
__typename?: "ProductV1Tag";
|
|
8411
|
+
id: string;
|
|
8412
|
+
name: string;
|
|
8413
|
+
}> | null;
|
|
8414
|
+
sections?: Array<{
|
|
8415
|
+
__typename?: "ProductV1Section";
|
|
8416
|
+
id: string;
|
|
8417
|
+
name: string;
|
|
8418
|
+
}> | null;
|
|
8419
|
+
personalisation?: Array<{
|
|
8420
|
+
__typename?: "ProductV1Personalisation";
|
|
8421
|
+
id: string;
|
|
8422
|
+
name: string;
|
|
8423
|
+
}> | null;
|
|
8424
|
+
visuals_images: Array<{
|
|
8425
|
+
__typename?: "ProductV1Media";
|
|
8426
|
+
id: string;
|
|
8427
|
+
url: string;
|
|
8428
|
+
tag?: string | null;
|
|
8429
|
+
type: ProductV1MediaType;
|
|
8430
|
+
}>;
|
|
8431
|
+
visuals_videos?: Array<{
|
|
8432
|
+
__typename?: "ProductV1Media";
|
|
8433
|
+
id: string;
|
|
8434
|
+
url: string;
|
|
8435
|
+
tag?: string | null;
|
|
8436
|
+
type: ProductV1MediaType;
|
|
8437
|
+
}> | null;
|
|
8438
|
+
};
|
|
8439
|
+
variations?: Array<{
|
|
8440
|
+
__typename?: "ProductV1Variation";
|
|
8441
|
+
id: string;
|
|
8442
|
+
type: string;
|
|
8443
|
+
option: string;
|
|
8444
|
+
}> | null;
|
|
8445
|
+
productV1Seller: {
|
|
8446
|
+
__typename?: "ProductV1Seller";
|
|
8447
|
+
id: string;
|
|
8448
|
+
defaultVersion?: number | null;
|
|
8449
|
+
name?: string | null;
|
|
8450
|
+
description?: string | null;
|
|
8451
|
+
externalUrl?: string | null;
|
|
8452
|
+
tokenId?: string | null;
|
|
8453
|
+
images?: Array<{
|
|
8454
|
+
__typename?: "ProductV1Media";
|
|
8455
|
+
id: string;
|
|
8456
|
+
url: string;
|
|
8457
|
+
tag?: string | null;
|
|
8458
|
+
type: ProductV1MediaType;
|
|
8459
|
+
}> | null;
|
|
8460
|
+
contactLinks?: Array<{
|
|
8461
|
+
__typename?: "ProductV1SellerContactLink";
|
|
8462
|
+
id: string;
|
|
8463
|
+
url: string;
|
|
8464
|
+
tag: string;
|
|
8465
|
+
}> | null;
|
|
8466
|
+
seller: {
|
|
8467
|
+
__typename?: "Seller";
|
|
8468
|
+
id: string;
|
|
8469
|
+
operator: string;
|
|
8470
|
+
admin: string;
|
|
8471
|
+
clerk: string;
|
|
8472
|
+
treasury: string;
|
|
8473
|
+
authTokenId: string;
|
|
8474
|
+
authTokenType: number;
|
|
8475
|
+
voucherCloneAddress: string;
|
|
8476
|
+
active: boolean;
|
|
8477
|
+
};
|
|
8478
|
+
};
|
|
8479
|
+
exchangePolicy: {
|
|
8480
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
8481
|
+
id: string;
|
|
8482
|
+
uuid: string;
|
|
8483
|
+
version: number;
|
|
8484
|
+
label?: string | null;
|
|
8485
|
+
template: string;
|
|
8486
|
+
};
|
|
8487
|
+
shipping?: {
|
|
8488
|
+
__typename?: "ProductV1ShippingOption";
|
|
8489
|
+
id: string;
|
|
8490
|
+
defaultVersion?: number | null;
|
|
8491
|
+
countryOfOrigin?: string | null;
|
|
8492
|
+
redemptionPoint?: string | null;
|
|
8493
|
+
supportedJurisdictions?: Array<{
|
|
8494
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
8495
|
+
id: string;
|
|
8496
|
+
label: string;
|
|
8497
|
+
deliveryTime: string;
|
|
8498
|
+
}> | null;
|
|
8499
|
+
} | null;
|
|
7430
8500
|
}
|
|
7431
8501
|
| null;
|
|
7432
8502
|
}>;
|
|
@@ -7557,11 +8627,165 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
7557
8627
|
}
|
|
7558
8628
|
| {
|
|
7559
8629
|
__typename?: "ProductV1MetadataEntity";
|
|
8630
|
+
image: string;
|
|
8631
|
+
createdAt: string;
|
|
8632
|
+
voided: boolean;
|
|
8633
|
+
validFromDate: string;
|
|
8634
|
+
validUntilDate: string;
|
|
8635
|
+
quantityAvailable: string;
|
|
8636
|
+
uuid: string;
|
|
7560
8637
|
name: string;
|
|
7561
8638
|
description: string;
|
|
7562
8639
|
externalUrl: string;
|
|
7563
8640
|
schemaUrl: string;
|
|
7564
8641
|
type: MetadataType;
|
|
8642
|
+
attributes?: Array<{
|
|
8643
|
+
__typename?: "MetadataAttribute";
|
|
8644
|
+
traitType: string;
|
|
8645
|
+
value: string;
|
|
8646
|
+
displayType: string;
|
|
8647
|
+
}> | null;
|
|
8648
|
+
product: {
|
|
8649
|
+
__typename?: "ProductV1Product";
|
|
8650
|
+
id: string;
|
|
8651
|
+
uuid: string;
|
|
8652
|
+
version: number;
|
|
8653
|
+
title: string;
|
|
8654
|
+
description: string;
|
|
8655
|
+
identification_sKU?: string | null;
|
|
8656
|
+
identification_productId?: string | null;
|
|
8657
|
+
identification_productIdType?: string | null;
|
|
8658
|
+
productionInformation_brandName: string;
|
|
8659
|
+
productionInformation_manufacturer?: string | null;
|
|
8660
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
8661
|
+
productionInformation_modelNumber?: string | null;
|
|
8662
|
+
productionInformation_materials?: Array<string> | null;
|
|
8663
|
+
details_category?: string | null;
|
|
8664
|
+
details_subCategory?: string | null;
|
|
8665
|
+
details_subCategory2?: string | null;
|
|
8666
|
+
details_offerCategory: string;
|
|
8667
|
+
offerCategory: ProductV1OfferCategory;
|
|
8668
|
+
details_tags?: Array<string> | null;
|
|
8669
|
+
details_sections?: Array<string> | null;
|
|
8670
|
+
details_personalisation?: Array<string> | null;
|
|
8671
|
+
packaging_packageQuantity?: string | null;
|
|
8672
|
+
packaging_dimensions_length?: string | null;
|
|
8673
|
+
packaging_dimensions_width?: string | null;
|
|
8674
|
+
packaging_dimensions_height?: string | null;
|
|
8675
|
+
packaging_dimensions_unit?: string | null;
|
|
8676
|
+
packaging_weight_value?: string | null;
|
|
8677
|
+
packaging_weight_unit?: string | null;
|
|
8678
|
+
brand: {
|
|
8679
|
+
__typename?: "ProductV1Brand";
|
|
8680
|
+
id: string;
|
|
8681
|
+
name: string;
|
|
8682
|
+
};
|
|
8683
|
+
category?: {
|
|
8684
|
+
__typename?: "ProductV1Category";
|
|
8685
|
+
id: string;
|
|
8686
|
+
name: string;
|
|
8687
|
+
} | null;
|
|
8688
|
+
subCategory?: {
|
|
8689
|
+
__typename?: "ProductV1Category";
|
|
8690
|
+
id: string;
|
|
8691
|
+
name: string;
|
|
8692
|
+
} | null;
|
|
8693
|
+
subCategory2?: {
|
|
8694
|
+
__typename?: "ProductV1Category";
|
|
8695
|
+
id: string;
|
|
8696
|
+
name: string;
|
|
8697
|
+
} | null;
|
|
8698
|
+
tags?: Array<{
|
|
8699
|
+
__typename?: "ProductV1Tag";
|
|
8700
|
+
id: string;
|
|
8701
|
+
name: string;
|
|
8702
|
+
}> | null;
|
|
8703
|
+
sections?: Array<{
|
|
8704
|
+
__typename?: "ProductV1Section";
|
|
8705
|
+
id: string;
|
|
8706
|
+
name: string;
|
|
8707
|
+
}> | null;
|
|
8708
|
+
personalisation?: Array<{
|
|
8709
|
+
__typename?: "ProductV1Personalisation";
|
|
8710
|
+
id: string;
|
|
8711
|
+
name: string;
|
|
8712
|
+
}> | null;
|
|
8713
|
+
visuals_images: Array<{
|
|
8714
|
+
__typename?: "ProductV1Media";
|
|
8715
|
+
id: string;
|
|
8716
|
+
url: string;
|
|
8717
|
+
tag?: string | null;
|
|
8718
|
+
type: ProductV1MediaType;
|
|
8719
|
+
}>;
|
|
8720
|
+
visuals_videos?: Array<{
|
|
8721
|
+
__typename?: "ProductV1Media";
|
|
8722
|
+
id: string;
|
|
8723
|
+
url: string;
|
|
8724
|
+
tag?: string | null;
|
|
8725
|
+
type: ProductV1MediaType;
|
|
8726
|
+
}> | null;
|
|
8727
|
+
};
|
|
8728
|
+
variations?: Array<{
|
|
8729
|
+
__typename?: "ProductV1Variation";
|
|
8730
|
+
id: string;
|
|
8731
|
+
type: string;
|
|
8732
|
+
option: string;
|
|
8733
|
+
}> | null;
|
|
8734
|
+
productV1Seller: {
|
|
8735
|
+
__typename?: "ProductV1Seller";
|
|
8736
|
+
id: string;
|
|
8737
|
+
defaultVersion?: number | null;
|
|
8738
|
+
name?: string | null;
|
|
8739
|
+
description?: string | null;
|
|
8740
|
+
externalUrl?: string | null;
|
|
8741
|
+
tokenId?: string | null;
|
|
8742
|
+
images?: Array<{
|
|
8743
|
+
__typename?: "ProductV1Media";
|
|
8744
|
+
id: string;
|
|
8745
|
+
url: string;
|
|
8746
|
+
tag?: string | null;
|
|
8747
|
+
type: ProductV1MediaType;
|
|
8748
|
+
}> | null;
|
|
8749
|
+
contactLinks?: Array<{
|
|
8750
|
+
__typename?: "ProductV1SellerContactLink";
|
|
8751
|
+
id: string;
|
|
8752
|
+
url: string;
|
|
8753
|
+
tag: string;
|
|
8754
|
+
}> | null;
|
|
8755
|
+
seller: {
|
|
8756
|
+
__typename?: "Seller";
|
|
8757
|
+
id: string;
|
|
8758
|
+
operator: string;
|
|
8759
|
+
admin: string;
|
|
8760
|
+
clerk: string;
|
|
8761
|
+
treasury: string;
|
|
8762
|
+
authTokenId: string;
|
|
8763
|
+
authTokenType: number;
|
|
8764
|
+
voucherCloneAddress: string;
|
|
8765
|
+
active: boolean;
|
|
8766
|
+
};
|
|
8767
|
+
};
|
|
8768
|
+
exchangePolicy: {
|
|
8769
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
8770
|
+
id: string;
|
|
8771
|
+
uuid: string;
|
|
8772
|
+
version: number;
|
|
8773
|
+
label?: string | null;
|
|
8774
|
+
template: string;
|
|
8775
|
+
};
|
|
8776
|
+
shipping?: {
|
|
8777
|
+
__typename?: "ProductV1ShippingOption";
|
|
8778
|
+
id: string;
|
|
8779
|
+
defaultVersion?: number | null;
|
|
8780
|
+
countryOfOrigin?: string | null;
|
|
8781
|
+
redemptionPoint?: string | null;
|
|
8782
|
+
supportedJurisdictions?: Array<{
|
|
8783
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
8784
|
+
id: string;
|
|
8785
|
+
label: string;
|
|
8786
|
+
deliveryTime: string;
|
|
8787
|
+
}> | null;
|
|
8788
|
+
} | null;
|
|
7565
8789
|
}
|
|
7566
8790
|
| null;
|
|
7567
8791
|
}>;
|
|
@@ -7670,11 +8894,161 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
7670
8894
|
}
|
|
7671
8895
|
| {
|
|
7672
8896
|
__typename?: "ProductV1MetadataEntity";
|
|
8897
|
+
image: string;
|
|
8898
|
+
createdAt: string;
|
|
8899
|
+
voided: boolean;
|
|
8900
|
+
validFromDate: string;
|
|
8901
|
+
validUntilDate: string;
|
|
8902
|
+
quantityAvailable: string;
|
|
8903
|
+
uuid: string;
|
|
7673
8904
|
name: string;
|
|
7674
8905
|
description: string;
|
|
7675
8906
|
externalUrl: string;
|
|
7676
8907
|
schemaUrl: string;
|
|
7677
8908
|
type: MetadataType;
|
|
8909
|
+
attributes?: Array<{
|
|
8910
|
+
__typename?: "MetadataAttribute";
|
|
8911
|
+
traitType: string;
|
|
8912
|
+
value: string;
|
|
8913
|
+
displayType: string;
|
|
8914
|
+
}> | null;
|
|
8915
|
+
product: {
|
|
8916
|
+
__typename?: "ProductV1Product";
|
|
8917
|
+
id: string;
|
|
8918
|
+
uuid: string;
|
|
8919
|
+
version: number;
|
|
8920
|
+
title: string;
|
|
8921
|
+
description: string;
|
|
8922
|
+
identification_sKU?: string | null;
|
|
8923
|
+
identification_productId?: string | null;
|
|
8924
|
+
identification_productIdType?: string | null;
|
|
8925
|
+
productionInformation_brandName: string;
|
|
8926
|
+
productionInformation_manufacturer?: string | null;
|
|
8927
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
8928
|
+
productionInformation_modelNumber?: string | null;
|
|
8929
|
+
productionInformation_materials?: Array<string> | null;
|
|
8930
|
+
details_category?: string | null;
|
|
8931
|
+
details_subCategory?: string | null;
|
|
8932
|
+
details_subCategory2?: string | null;
|
|
8933
|
+
details_offerCategory: string;
|
|
8934
|
+
offerCategory: ProductV1OfferCategory;
|
|
8935
|
+
details_tags?: Array<string> | null;
|
|
8936
|
+
details_sections?: Array<string> | null;
|
|
8937
|
+
details_personalisation?: Array<string> | null;
|
|
8938
|
+
packaging_packageQuantity?: string | null;
|
|
8939
|
+
packaging_dimensions_length?: string | null;
|
|
8940
|
+
packaging_dimensions_width?: string | null;
|
|
8941
|
+
packaging_dimensions_height?: string | null;
|
|
8942
|
+
packaging_dimensions_unit?: string | null;
|
|
8943
|
+
packaging_weight_value?: string | null;
|
|
8944
|
+
packaging_weight_unit?: string | null;
|
|
8945
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
8946
|
+
category?: {
|
|
8947
|
+
__typename?: "ProductV1Category";
|
|
8948
|
+
id: string;
|
|
8949
|
+
name: string;
|
|
8950
|
+
} | null;
|
|
8951
|
+
subCategory?: {
|
|
8952
|
+
__typename?: "ProductV1Category";
|
|
8953
|
+
id: string;
|
|
8954
|
+
name: string;
|
|
8955
|
+
} | null;
|
|
8956
|
+
subCategory2?: {
|
|
8957
|
+
__typename?: "ProductV1Category";
|
|
8958
|
+
id: string;
|
|
8959
|
+
name: string;
|
|
8960
|
+
} | null;
|
|
8961
|
+
tags?: Array<{
|
|
8962
|
+
__typename?: "ProductV1Tag";
|
|
8963
|
+
id: string;
|
|
8964
|
+
name: string;
|
|
8965
|
+
}> | null;
|
|
8966
|
+
sections?: Array<{
|
|
8967
|
+
__typename?: "ProductV1Section";
|
|
8968
|
+
id: string;
|
|
8969
|
+
name: string;
|
|
8970
|
+
}> | null;
|
|
8971
|
+
personalisation?: Array<{
|
|
8972
|
+
__typename?: "ProductV1Personalisation";
|
|
8973
|
+
id: string;
|
|
8974
|
+
name: string;
|
|
8975
|
+
}> | null;
|
|
8976
|
+
visuals_images: Array<{
|
|
8977
|
+
__typename?: "ProductV1Media";
|
|
8978
|
+
id: string;
|
|
8979
|
+
url: string;
|
|
8980
|
+
tag?: string | null;
|
|
8981
|
+
type: ProductV1MediaType;
|
|
8982
|
+
}>;
|
|
8983
|
+
visuals_videos?: Array<{
|
|
8984
|
+
__typename?: "ProductV1Media";
|
|
8985
|
+
id: string;
|
|
8986
|
+
url: string;
|
|
8987
|
+
tag?: string | null;
|
|
8988
|
+
type: ProductV1MediaType;
|
|
8989
|
+
}> | null;
|
|
8990
|
+
};
|
|
8991
|
+
variations?: Array<{
|
|
8992
|
+
__typename?: "ProductV1Variation";
|
|
8993
|
+
id: string;
|
|
8994
|
+
type: string;
|
|
8995
|
+
option: string;
|
|
8996
|
+
}> | null;
|
|
8997
|
+
productV1Seller: {
|
|
8998
|
+
__typename?: "ProductV1Seller";
|
|
8999
|
+
id: string;
|
|
9000
|
+
defaultVersion?: number | null;
|
|
9001
|
+
name?: string | null;
|
|
9002
|
+
description?: string | null;
|
|
9003
|
+
externalUrl?: string | null;
|
|
9004
|
+
tokenId?: string | null;
|
|
9005
|
+
images?: Array<{
|
|
9006
|
+
__typename?: "ProductV1Media";
|
|
9007
|
+
id: string;
|
|
9008
|
+
url: string;
|
|
9009
|
+
tag?: string | null;
|
|
9010
|
+
type: ProductV1MediaType;
|
|
9011
|
+
}> | null;
|
|
9012
|
+
contactLinks?: Array<{
|
|
9013
|
+
__typename?: "ProductV1SellerContactLink";
|
|
9014
|
+
id: string;
|
|
9015
|
+
url: string;
|
|
9016
|
+
tag: string;
|
|
9017
|
+
}> | null;
|
|
9018
|
+
seller: {
|
|
9019
|
+
__typename?: "Seller";
|
|
9020
|
+
id: string;
|
|
9021
|
+
operator: string;
|
|
9022
|
+
admin: string;
|
|
9023
|
+
clerk: string;
|
|
9024
|
+
treasury: string;
|
|
9025
|
+
authTokenId: string;
|
|
9026
|
+
authTokenType: number;
|
|
9027
|
+
voucherCloneAddress: string;
|
|
9028
|
+
active: boolean;
|
|
9029
|
+
};
|
|
9030
|
+
};
|
|
9031
|
+
exchangePolicy: {
|
|
9032
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
9033
|
+
id: string;
|
|
9034
|
+
uuid: string;
|
|
9035
|
+
version: number;
|
|
9036
|
+
label?: string | null;
|
|
9037
|
+
template: string;
|
|
9038
|
+
};
|
|
9039
|
+
shipping?: {
|
|
9040
|
+
__typename?: "ProductV1ShippingOption";
|
|
9041
|
+
id: string;
|
|
9042
|
+
defaultVersion?: number | null;
|
|
9043
|
+
countryOfOrigin?: string | null;
|
|
9044
|
+
redemptionPoint?: string | null;
|
|
9045
|
+
supportedJurisdictions?: Array<{
|
|
9046
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
9047
|
+
id: string;
|
|
9048
|
+
label: string;
|
|
9049
|
+
deliveryTime: string;
|
|
9050
|
+
}> | null;
|
|
9051
|
+
} | null;
|
|
7678
9052
|
}
|
|
7679
9053
|
| null;
|
|
7680
9054
|
}>;
|
|
@@ -7821,11 +9195,165 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
7821
9195
|
}
|
|
7822
9196
|
| {
|
|
7823
9197
|
__typename?: "ProductV1MetadataEntity";
|
|
9198
|
+
image: string;
|
|
9199
|
+
createdAt: string;
|
|
9200
|
+
voided: boolean;
|
|
9201
|
+
validFromDate: string;
|
|
9202
|
+
validUntilDate: string;
|
|
9203
|
+
quantityAvailable: string;
|
|
9204
|
+
uuid: string;
|
|
7824
9205
|
name: string;
|
|
7825
9206
|
description: string;
|
|
7826
9207
|
externalUrl: string;
|
|
7827
9208
|
schemaUrl: string;
|
|
7828
9209
|
type: MetadataType;
|
|
9210
|
+
attributes?: Array<{
|
|
9211
|
+
__typename?: "MetadataAttribute";
|
|
9212
|
+
traitType: string;
|
|
9213
|
+
value: string;
|
|
9214
|
+
displayType: string;
|
|
9215
|
+
}> | null;
|
|
9216
|
+
product: {
|
|
9217
|
+
__typename?: "ProductV1Product";
|
|
9218
|
+
id: string;
|
|
9219
|
+
uuid: string;
|
|
9220
|
+
version: number;
|
|
9221
|
+
title: string;
|
|
9222
|
+
description: string;
|
|
9223
|
+
identification_sKU?: string | null;
|
|
9224
|
+
identification_productId?: string | null;
|
|
9225
|
+
identification_productIdType?: string | null;
|
|
9226
|
+
productionInformation_brandName: string;
|
|
9227
|
+
productionInformation_manufacturer?: string | null;
|
|
9228
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
9229
|
+
productionInformation_modelNumber?: string | null;
|
|
9230
|
+
productionInformation_materials?: Array<string> | null;
|
|
9231
|
+
details_category?: string | null;
|
|
9232
|
+
details_subCategory?: string | null;
|
|
9233
|
+
details_subCategory2?: string | null;
|
|
9234
|
+
details_offerCategory: string;
|
|
9235
|
+
offerCategory: ProductV1OfferCategory;
|
|
9236
|
+
details_tags?: Array<string> | null;
|
|
9237
|
+
details_sections?: Array<string> | null;
|
|
9238
|
+
details_personalisation?: Array<string> | null;
|
|
9239
|
+
packaging_packageQuantity?: string | null;
|
|
9240
|
+
packaging_dimensions_length?: string | null;
|
|
9241
|
+
packaging_dimensions_width?: string | null;
|
|
9242
|
+
packaging_dimensions_height?: string | null;
|
|
9243
|
+
packaging_dimensions_unit?: string | null;
|
|
9244
|
+
packaging_weight_value?: string | null;
|
|
9245
|
+
packaging_weight_unit?: string | null;
|
|
9246
|
+
brand: {
|
|
9247
|
+
__typename?: "ProductV1Brand";
|
|
9248
|
+
id: string;
|
|
9249
|
+
name: string;
|
|
9250
|
+
};
|
|
9251
|
+
category?: {
|
|
9252
|
+
__typename?: "ProductV1Category";
|
|
9253
|
+
id: string;
|
|
9254
|
+
name: string;
|
|
9255
|
+
} | null;
|
|
9256
|
+
subCategory?: {
|
|
9257
|
+
__typename?: "ProductV1Category";
|
|
9258
|
+
id: string;
|
|
9259
|
+
name: string;
|
|
9260
|
+
} | null;
|
|
9261
|
+
subCategory2?: {
|
|
9262
|
+
__typename?: "ProductV1Category";
|
|
9263
|
+
id: string;
|
|
9264
|
+
name: string;
|
|
9265
|
+
} | null;
|
|
9266
|
+
tags?: Array<{
|
|
9267
|
+
__typename?: "ProductV1Tag";
|
|
9268
|
+
id: string;
|
|
9269
|
+
name: string;
|
|
9270
|
+
}> | null;
|
|
9271
|
+
sections?: Array<{
|
|
9272
|
+
__typename?: "ProductV1Section";
|
|
9273
|
+
id: string;
|
|
9274
|
+
name: string;
|
|
9275
|
+
}> | null;
|
|
9276
|
+
personalisation?: Array<{
|
|
9277
|
+
__typename?: "ProductV1Personalisation";
|
|
9278
|
+
id: string;
|
|
9279
|
+
name: string;
|
|
9280
|
+
}> | null;
|
|
9281
|
+
visuals_images: Array<{
|
|
9282
|
+
__typename?: "ProductV1Media";
|
|
9283
|
+
id: string;
|
|
9284
|
+
url: string;
|
|
9285
|
+
tag?: string | null;
|
|
9286
|
+
type: ProductV1MediaType;
|
|
9287
|
+
}>;
|
|
9288
|
+
visuals_videos?: Array<{
|
|
9289
|
+
__typename?: "ProductV1Media";
|
|
9290
|
+
id: string;
|
|
9291
|
+
url: string;
|
|
9292
|
+
tag?: string | null;
|
|
9293
|
+
type: ProductV1MediaType;
|
|
9294
|
+
}> | null;
|
|
9295
|
+
};
|
|
9296
|
+
variations?: Array<{
|
|
9297
|
+
__typename?: "ProductV1Variation";
|
|
9298
|
+
id: string;
|
|
9299
|
+
type: string;
|
|
9300
|
+
option: string;
|
|
9301
|
+
}> | null;
|
|
9302
|
+
productV1Seller: {
|
|
9303
|
+
__typename?: "ProductV1Seller";
|
|
9304
|
+
id: string;
|
|
9305
|
+
defaultVersion?: number | null;
|
|
9306
|
+
name?: string | null;
|
|
9307
|
+
description?: string | null;
|
|
9308
|
+
externalUrl?: string | null;
|
|
9309
|
+
tokenId?: string | null;
|
|
9310
|
+
images?: Array<{
|
|
9311
|
+
__typename?: "ProductV1Media";
|
|
9312
|
+
id: string;
|
|
9313
|
+
url: string;
|
|
9314
|
+
tag?: string | null;
|
|
9315
|
+
type: ProductV1MediaType;
|
|
9316
|
+
}> | null;
|
|
9317
|
+
contactLinks?: Array<{
|
|
9318
|
+
__typename?: "ProductV1SellerContactLink";
|
|
9319
|
+
id: string;
|
|
9320
|
+
url: string;
|
|
9321
|
+
tag: string;
|
|
9322
|
+
}> | null;
|
|
9323
|
+
seller: {
|
|
9324
|
+
__typename?: "Seller";
|
|
9325
|
+
id: string;
|
|
9326
|
+
operator: string;
|
|
9327
|
+
admin: string;
|
|
9328
|
+
clerk: string;
|
|
9329
|
+
treasury: string;
|
|
9330
|
+
authTokenId: string;
|
|
9331
|
+
authTokenType: number;
|
|
9332
|
+
voucherCloneAddress: string;
|
|
9333
|
+
active: boolean;
|
|
9334
|
+
};
|
|
9335
|
+
};
|
|
9336
|
+
exchangePolicy: {
|
|
9337
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
9338
|
+
id: string;
|
|
9339
|
+
uuid: string;
|
|
9340
|
+
version: number;
|
|
9341
|
+
label?: string | null;
|
|
9342
|
+
template: string;
|
|
9343
|
+
};
|
|
9344
|
+
shipping?: {
|
|
9345
|
+
__typename?: "ProductV1ShippingOption";
|
|
9346
|
+
id: string;
|
|
9347
|
+
defaultVersion?: number | null;
|
|
9348
|
+
countryOfOrigin?: string | null;
|
|
9349
|
+
redemptionPoint?: string | null;
|
|
9350
|
+
supportedJurisdictions?: Array<{
|
|
9351
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
9352
|
+
id: string;
|
|
9353
|
+
label: string;
|
|
9354
|
+
deliveryTime: string;
|
|
9355
|
+
}> | null;
|
|
9356
|
+
} | null;
|
|
7829
9357
|
}
|
|
7830
9358
|
| null;
|
|
7831
9359
|
};
|
|
@@ -7962,11 +9490,165 @@ export type GetExchangesQueryQuery = {
|
|
|
7962
9490
|
}
|
|
7963
9491
|
| {
|
|
7964
9492
|
__typename?: "ProductV1MetadataEntity";
|
|
9493
|
+
image: string;
|
|
9494
|
+
createdAt: string;
|
|
9495
|
+
voided: boolean;
|
|
9496
|
+
validFromDate: string;
|
|
9497
|
+
validUntilDate: string;
|
|
9498
|
+
quantityAvailable: string;
|
|
9499
|
+
uuid: string;
|
|
7965
9500
|
name: string;
|
|
7966
9501
|
description: string;
|
|
7967
9502
|
externalUrl: string;
|
|
7968
9503
|
schemaUrl: string;
|
|
7969
9504
|
type: MetadataType;
|
|
9505
|
+
attributes?: Array<{
|
|
9506
|
+
__typename?: "MetadataAttribute";
|
|
9507
|
+
traitType: string;
|
|
9508
|
+
value: string;
|
|
9509
|
+
displayType: string;
|
|
9510
|
+
}> | null;
|
|
9511
|
+
product: {
|
|
9512
|
+
__typename?: "ProductV1Product";
|
|
9513
|
+
id: string;
|
|
9514
|
+
uuid: string;
|
|
9515
|
+
version: number;
|
|
9516
|
+
title: string;
|
|
9517
|
+
description: string;
|
|
9518
|
+
identification_sKU?: string | null;
|
|
9519
|
+
identification_productId?: string | null;
|
|
9520
|
+
identification_productIdType?: string | null;
|
|
9521
|
+
productionInformation_brandName: string;
|
|
9522
|
+
productionInformation_manufacturer?: string | null;
|
|
9523
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
9524
|
+
productionInformation_modelNumber?: string | null;
|
|
9525
|
+
productionInformation_materials?: Array<string> | null;
|
|
9526
|
+
details_category?: string | null;
|
|
9527
|
+
details_subCategory?: string | null;
|
|
9528
|
+
details_subCategory2?: string | null;
|
|
9529
|
+
details_offerCategory: string;
|
|
9530
|
+
offerCategory: ProductV1OfferCategory;
|
|
9531
|
+
details_tags?: Array<string> | null;
|
|
9532
|
+
details_sections?: Array<string> | null;
|
|
9533
|
+
details_personalisation?: Array<string> | null;
|
|
9534
|
+
packaging_packageQuantity?: string | null;
|
|
9535
|
+
packaging_dimensions_length?: string | null;
|
|
9536
|
+
packaging_dimensions_width?: string | null;
|
|
9537
|
+
packaging_dimensions_height?: string | null;
|
|
9538
|
+
packaging_dimensions_unit?: string | null;
|
|
9539
|
+
packaging_weight_value?: string | null;
|
|
9540
|
+
packaging_weight_unit?: string | null;
|
|
9541
|
+
brand: {
|
|
9542
|
+
__typename?: "ProductV1Brand";
|
|
9543
|
+
id: string;
|
|
9544
|
+
name: string;
|
|
9545
|
+
};
|
|
9546
|
+
category?: {
|
|
9547
|
+
__typename?: "ProductV1Category";
|
|
9548
|
+
id: string;
|
|
9549
|
+
name: string;
|
|
9550
|
+
} | null;
|
|
9551
|
+
subCategory?: {
|
|
9552
|
+
__typename?: "ProductV1Category";
|
|
9553
|
+
id: string;
|
|
9554
|
+
name: string;
|
|
9555
|
+
} | null;
|
|
9556
|
+
subCategory2?: {
|
|
9557
|
+
__typename?: "ProductV1Category";
|
|
9558
|
+
id: string;
|
|
9559
|
+
name: string;
|
|
9560
|
+
} | null;
|
|
9561
|
+
tags?: Array<{
|
|
9562
|
+
__typename?: "ProductV1Tag";
|
|
9563
|
+
id: string;
|
|
9564
|
+
name: string;
|
|
9565
|
+
}> | null;
|
|
9566
|
+
sections?: Array<{
|
|
9567
|
+
__typename?: "ProductV1Section";
|
|
9568
|
+
id: string;
|
|
9569
|
+
name: string;
|
|
9570
|
+
}> | null;
|
|
9571
|
+
personalisation?: Array<{
|
|
9572
|
+
__typename?: "ProductV1Personalisation";
|
|
9573
|
+
id: string;
|
|
9574
|
+
name: string;
|
|
9575
|
+
}> | null;
|
|
9576
|
+
visuals_images: Array<{
|
|
9577
|
+
__typename?: "ProductV1Media";
|
|
9578
|
+
id: string;
|
|
9579
|
+
url: string;
|
|
9580
|
+
tag?: string | null;
|
|
9581
|
+
type: ProductV1MediaType;
|
|
9582
|
+
}>;
|
|
9583
|
+
visuals_videos?: Array<{
|
|
9584
|
+
__typename?: "ProductV1Media";
|
|
9585
|
+
id: string;
|
|
9586
|
+
url: string;
|
|
9587
|
+
tag?: string | null;
|
|
9588
|
+
type: ProductV1MediaType;
|
|
9589
|
+
}> | null;
|
|
9590
|
+
};
|
|
9591
|
+
variations?: Array<{
|
|
9592
|
+
__typename?: "ProductV1Variation";
|
|
9593
|
+
id: string;
|
|
9594
|
+
type: string;
|
|
9595
|
+
option: string;
|
|
9596
|
+
}> | null;
|
|
9597
|
+
productV1Seller: {
|
|
9598
|
+
__typename?: "ProductV1Seller";
|
|
9599
|
+
id: string;
|
|
9600
|
+
defaultVersion?: number | null;
|
|
9601
|
+
name?: string | null;
|
|
9602
|
+
description?: string | null;
|
|
9603
|
+
externalUrl?: string | null;
|
|
9604
|
+
tokenId?: string | null;
|
|
9605
|
+
images?: Array<{
|
|
9606
|
+
__typename?: "ProductV1Media";
|
|
9607
|
+
id: string;
|
|
9608
|
+
url: string;
|
|
9609
|
+
tag?: string | null;
|
|
9610
|
+
type: ProductV1MediaType;
|
|
9611
|
+
}> | null;
|
|
9612
|
+
contactLinks?: Array<{
|
|
9613
|
+
__typename?: "ProductV1SellerContactLink";
|
|
9614
|
+
id: string;
|
|
9615
|
+
url: string;
|
|
9616
|
+
tag: string;
|
|
9617
|
+
}> | null;
|
|
9618
|
+
seller: {
|
|
9619
|
+
__typename?: "Seller";
|
|
9620
|
+
id: string;
|
|
9621
|
+
operator: string;
|
|
9622
|
+
admin: string;
|
|
9623
|
+
clerk: string;
|
|
9624
|
+
treasury: string;
|
|
9625
|
+
authTokenId: string;
|
|
9626
|
+
authTokenType: number;
|
|
9627
|
+
voucherCloneAddress: string;
|
|
9628
|
+
active: boolean;
|
|
9629
|
+
};
|
|
9630
|
+
};
|
|
9631
|
+
exchangePolicy: {
|
|
9632
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
9633
|
+
id: string;
|
|
9634
|
+
uuid: string;
|
|
9635
|
+
version: number;
|
|
9636
|
+
label?: string | null;
|
|
9637
|
+
template: string;
|
|
9638
|
+
};
|
|
9639
|
+
shipping?: {
|
|
9640
|
+
__typename?: "ProductV1ShippingOption";
|
|
9641
|
+
id: string;
|
|
9642
|
+
defaultVersion?: number | null;
|
|
9643
|
+
countryOfOrigin?: string | null;
|
|
9644
|
+
redemptionPoint?: string | null;
|
|
9645
|
+
supportedJurisdictions?: Array<{
|
|
9646
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
9647
|
+
id: string;
|
|
9648
|
+
label: string;
|
|
9649
|
+
deliveryTime: string;
|
|
9650
|
+
}> | null;
|
|
9651
|
+
} | null;
|
|
7970
9652
|
}
|
|
7971
9653
|
| null;
|
|
7972
9654
|
};
|
|
@@ -8088,11 +9770,161 @@ export type ExchangeFieldsFragment = {
|
|
|
8088
9770
|
}
|
|
8089
9771
|
| {
|
|
8090
9772
|
__typename?: "ProductV1MetadataEntity";
|
|
9773
|
+
image: string;
|
|
9774
|
+
createdAt: string;
|
|
9775
|
+
voided: boolean;
|
|
9776
|
+
validFromDate: string;
|
|
9777
|
+
validUntilDate: string;
|
|
9778
|
+
quantityAvailable: string;
|
|
9779
|
+
uuid: string;
|
|
8091
9780
|
name: string;
|
|
8092
9781
|
description: string;
|
|
8093
9782
|
externalUrl: string;
|
|
8094
9783
|
schemaUrl: string;
|
|
8095
9784
|
type: MetadataType;
|
|
9785
|
+
attributes?: Array<{
|
|
9786
|
+
__typename?: "MetadataAttribute";
|
|
9787
|
+
traitType: string;
|
|
9788
|
+
value: string;
|
|
9789
|
+
displayType: string;
|
|
9790
|
+
}> | null;
|
|
9791
|
+
product: {
|
|
9792
|
+
__typename?: "ProductV1Product";
|
|
9793
|
+
id: string;
|
|
9794
|
+
uuid: string;
|
|
9795
|
+
version: number;
|
|
9796
|
+
title: string;
|
|
9797
|
+
description: string;
|
|
9798
|
+
identification_sKU?: string | null;
|
|
9799
|
+
identification_productId?: string | null;
|
|
9800
|
+
identification_productIdType?: string | null;
|
|
9801
|
+
productionInformation_brandName: string;
|
|
9802
|
+
productionInformation_manufacturer?: string | null;
|
|
9803
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
9804
|
+
productionInformation_modelNumber?: string | null;
|
|
9805
|
+
productionInformation_materials?: Array<string> | null;
|
|
9806
|
+
details_category?: string | null;
|
|
9807
|
+
details_subCategory?: string | null;
|
|
9808
|
+
details_subCategory2?: string | null;
|
|
9809
|
+
details_offerCategory: string;
|
|
9810
|
+
offerCategory: ProductV1OfferCategory;
|
|
9811
|
+
details_tags?: Array<string> | null;
|
|
9812
|
+
details_sections?: Array<string> | null;
|
|
9813
|
+
details_personalisation?: Array<string> | null;
|
|
9814
|
+
packaging_packageQuantity?: string | null;
|
|
9815
|
+
packaging_dimensions_length?: string | null;
|
|
9816
|
+
packaging_dimensions_width?: string | null;
|
|
9817
|
+
packaging_dimensions_height?: string | null;
|
|
9818
|
+
packaging_dimensions_unit?: string | null;
|
|
9819
|
+
packaging_weight_value?: string | null;
|
|
9820
|
+
packaging_weight_unit?: string | null;
|
|
9821
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
9822
|
+
category?: {
|
|
9823
|
+
__typename?: "ProductV1Category";
|
|
9824
|
+
id: string;
|
|
9825
|
+
name: string;
|
|
9826
|
+
} | null;
|
|
9827
|
+
subCategory?: {
|
|
9828
|
+
__typename?: "ProductV1Category";
|
|
9829
|
+
id: string;
|
|
9830
|
+
name: string;
|
|
9831
|
+
} | null;
|
|
9832
|
+
subCategory2?: {
|
|
9833
|
+
__typename?: "ProductV1Category";
|
|
9834
|
+
id: string;
|
|
9835
|
+
name: string;
|
|
9836
|
+
} | null;
|
|
9837
|
+
tags?: Array<{
|
|
9838
|
+
__typename?: "ProductV1Tag";
|
|
9839
|
+
id: string;
|
|
9840
|
+
name: string;
|
|
9841
|
+
}> | null;
|
|
9842
|
+
sections?: Array<{
|
|
9843
|
+
__typename?: "ProductV1Section";
|
|
9844
|
+
id: string;
|
|
9845
|
+
name: string;
|
|
9846
|
+
}> | null;
|
|
9847
|
+
personalisation?: Array<{
|
|
9848
|
+
__typename?: "ProductV1Personalisation";
|
|
9849
|
+
id: string;
|
|
9850
|
+
name: string;
|
|
9851
|
+
}> | null;
|
|
9852
|
+
visuals_images: Array<{
|
|
9853
|
+
__typename?: "ProductV1Media";
|
|
9854
|
+
id: string;
|
|
9855
|
+
url: string;
|
|
9856
|
+
tag?: string | null;
|
|
9857
|
+
type: ProductV1MediaType;
|
|
9858
|
+
}>;
|
|
9859
|
+
visuals_videos?: Array<{
|
|
9860
|
+
__typename?: "ProductV1Media";
|
|
9861
|
+
id: string;
|
|
9862
|
+
url: string;
|
|
9863
|
+
tag?: string | null;
|
|
9864
|
+
type: ProductV1MediaType;
|
|
9865
|
+
}> | null;
|
|
9866
|
+
};
|
|
9867
|
+
variations?: Array<{
|
|
9868
|
+
__typename?: "ProductV1Variation";
|
|
9869
|
+
id: string;
|
|
9870
|
+
type: string;
|
|
9871
|
+
option: string;
|
|
9872
|
+
}> | null;
|
|
9873
|
+
productV1Seller: {
|
|
9874
|
+
__typename?: "ProductV1Seller";
|
|
9875
|
+
id: string;
|
|
9876
|
+
defaultVersion?: number | null;
|
|
9877
|
+
name?: string | null;
|
|
9878
|
+
description?: string | null;
|
|
9879
|
+
externalUrl?: string | null;
|
|
9880
|
+
tokenId?: string | null;
|
|
9881
|
+
images?: Array<{
|
|
9882
|
+
__typename?: "ProductV1Media";
|
|
9883
|
+
id: string;
|
|
9884
|
+
url: string;
|
|
9885
|
+
tag?: string | null;
|
|
9886
|
+
type: ProductV1MediaType;
|
|
9887
|
+
}> | null;
|
|
9888
|
+
contactLinks?: Array<{
|
|
9889
|
+
__typename?: "ProductV1SellerContactLink";
|
|
9890
|
+
id: string;
|
|
9891
|
+
url: string;
|
|
9892
|
+
tag: string;
|
|
9893
|
+
}> | null;
|
|
9894
|
+
seller: {
|
|
9895
|
+
__typename?: "Seller";
|
|
9896
|
+
id: string;
|
|
9897
|
+
operator: string;
|
|
9898
|
+
admin: string;
|
|
9899
|
+
clerk: string;
|
|
9900
|
+
treasury: string;
|
|
9901
|
+
authTokenId: string;
|
|
9902
|
+
authTokenType: number;
|
|
9903
|
+
voucherCloneAddress: string;
|
|
9904
|
+
active: boolean;
|
|
9905
|
+
};
|
|
9906
|
+
};
|
|
9907
|
+
exchangePolicy: {
|
|
9908
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
9909
|
+
id: string;
|
|
9910
|
+
uuid: string;
|
|
9911
|
+
version: number;
|
|
9912
|
+
label?: string | null;
|
|
9913
|
+
template: string;
|
|
9914
|
+
};
|
|
9915
|
+
shipping?: {
|
|
9916
|
+
__typename?: "ProductV1ShippingOption";
|
|
9917
|
+
id: string;
|
|
9918
|
+
defaultVersion?: number | null;
|
|
9919
|
+
countryOfOrigin?: string | null;
|
|
9920
|
+
redemptionPoint?: string | null;
|
|
9921
|
+
supportedJurisdictions?: Array<{
|
|
9922
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
9923
|
+
id: string;
|
|
9924
|
+
label: string;
|
|
9925
|
+
deliveryTime: string;
|
|
9926
|
+
}> | null;
|
|
9927
|
+
} | null;
|
|
8096
9928
|
}
|
|
8097
9929
|
| null;
|
|
8098
9930
|
};
|
|
@@ -8303,11 +10135,165 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
8303
10135
|
}
|
|
8304
10136
|
| {
|
|
8305
10137
|
__typename?: "ProductV1MetadataEntity";
|
|
10138
|
+
image: string;
|
|
10139
|
+
createdAt: string;
|
|
10140
|
+
voided: boolean;
|
|
10141
|
+
validFromDate: string;
|
|
10142
|
+
validUntilDate: string;
|
|
10143
|
+
quantityAvailable: string;
|
|
10144
|
+
uuid: string;
|
|
8306
10145
|
name: string;
|
|
8307
10146
|
description: string;
|
|
8308
10147
|
externalUrl: string;
|
|
8309
10148
|
schemaUrl: string;
|
|
8310
10149
|
type: MetadataType;
|
|
10150
|
+
attributes?: Array<{
|
|
10151
|
+
__typename?: "MetadataAttribute";
|
|
10152
|
+
traitType: string;
|
|
10153
|
+
value: string;
|
|
10154
|
+
displayType: string;
|
|
10155
|
+
}> | null;
|
|
10156
|
+
product: {
|
|
10157
|
+
__typename?: "ProductV1Product";
|
|
10158
|
+
id: string;
|
|
10159
|
+
uuid: string;
|
|
10160
|
+
version: number;
|
|
10161
|
+
title: string;
|
|
10162
|
+
description: string;
|
|
10163
|
+
identification_sKU?: string | null;
|
|
10164
|
+
identification_productId?: string | null;
|
|
10165
|
+
identification_productIdType?: string | null;
|
|
10166
|
+
productionInformation_brandName: string;
|
|
10167
|
+
productionInformation_manufacturer?: string | null;
|
|
10168
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
10169
|
+
productionInformation_modelNumber?: string | null;
|
|
10170
|
+
productionInformation_materials?: Array<string> | null;
|
|
10171
|
+
details_category?: string | null;
|
|
10172
|
+
details_subCategory?: string | null;
|
|
10173
|
+
details_subCategory2?: string | null;
|
|
10174
|
+
details_offerCategory: string;
|
|
10175
|
+
offerCategory: ProductV1OfferCategory;
|
|
10176
|
+
details_tags?: Array<string> | null;
|
|
10177
|
+
details_sections?: Array<string> | null;
|
|
10178
|
+
details_personalisation?: Array<string> | null;
|
|
10179
|
+
packaging_packageQuantity?: string | null;
|
|
10180
|
+
packaging_dimensions_length?: string | null;
|
|
10181
|
+
packaging_dimensions_width?: string | null;
|
|
10182
|
+
packaging_dimensions_height?: string | null;
|
|
10183
|
+
packaging_dimensions_unit?: string | null;
|
|
10184
|
+
packaging_weight_value?: string | null;
|
|
10185
|
+
packaging_weight_unit?: string | null;
|
|
10186
|
+
brand: {
|
|
10187
|
+
__typename?: "ProductV1Brand";
|
|
10188
|
+
id: string;
|
|
10189
|
+
name: string;
|
|
10190
|
+
};
|
|
10191
|
+
category?: {
|
|
10192
|
+
__typename?: "ProductV1Category";
|
|
10193
|
+
id: string;
|
|
10194
|
+
name: string;
|
|
10195
|
+
} | null;
|
|
10196
|
+
subCategory?: {
|
|
10197
|
+
__typename?: "ProductV1Category";
|
|
10198
|
+
id: string;
|
|
10199
|
+
name: string;
|
|
10200
|
+
} | null;
|
|
10201
|
+
subCategory2?: {
|
|
10202
|
+
__typename?: "ProductV1Category";
|
|
10203
|
+
id: string;
|
|
10204
|
+
name: string;
|
|
10205
|
+
} | null;
|
|
10206
|
+
tags?: Array<{
|
|
10207
|
+
__typename?: "ProductV1Tag";
|
|
10208
|
+
id: string;
|
|
10209
|
+
name: string;
|
|
10210
|
+
}> | null;
|
|
10211
|
+
sections?: Array<{
|
|
10212
|
+
__typename?: "ProductV1Section";
|
|
10213
|
+
id: string;
|
|
10214
|
+
name: string;
|
|
10215
|
+
}> | null;
|
|
10216
|
+
personalisation?: Array<{
|
|
10217
|
+
__typename?: "ProductV1Personalisation";
|
|
10218
|
+
id: string;
|
|
10219
|
+
name: string;
|
|
10220
|
+
}> | null;
|
|
10221
|
+
visuals_images: Array<{
|
|
10222
|
+
__typename?: "ProductV1Media";
|
|
10223
|
+
id: string;
|
|
10224
|
+
url: string;
|
|
10225
|
+
tag?: string | null;
|
|
10226
|
+
type: ProductV1MediaType;
|
|
10227
|
+
}>;
|
|
10228
|
+
visuals_videos?: Array<{
|
|
10229
|
+
__typename?: "ProductV1Media";
|
|
10230
|
+
id: string;
|
|
10231
|
+
url: string;
|
|
10232
|
+
tag?: string | null;
|
|
10233
|
+
type: ProductV1MediaType;
|
|
10234
|
+
}> | null;
|
|
10235
|
+
};
|
|
10236
|
+
variations?: Array<{
|
|
10237
|
+
__typename?: "ProductV1Variation";
|
|
10238
|
+
id: string;
|
|
10239
|
+
type: string;
|
|
10240
|
+
option: string;
|
|
10241
|
+
}> | null;
|
|
10242
|
+
productV1Seller: {
|
|
10243
|
+
__typename?: "ProductV1Seller";
|
|
10244
|
+
id: string;
|
|
10245
|
+
defaultVersion?: number | null;
|
|
10246
|
+
name?: string | null;
|
|
10247
|
+
description?: string | null;
|
|
10248
|
+
externalUrl?: string | null;
|
|
10249
|
+
tokenId?: string | null;
|
|
10250
|
+
images?: Array<{
|
|
10251
|
+
__typename?: "ProductV1Media";
|
|
10252
|
+
id: string;
|
|
10253
|
+
url: string;
|
|
10254
|
+
tag?: string | null;
|
|
10255
|
+
type: ProductV1MediaType;
|
|
10256
|
+
}> | null;
|
|
10257
|
+
contactLinks?: Array<{
|
|
10258
|
+
__typename?: "ProductV1SellerContactLink";
|
|
10259
|
+
id: string;
|
|
10260
|
+
url: string;
|
|
10261
|
+
tag: string;
|
|
10262
|
+
}> | null;
|
|
10263
|
+
seller: {
|
|
10264
|
+
__typename?: "Seller";
|
|
10265
|
+
id: string;
|
|
10266
|
+
operator: string;
|
|
10267
|
+
admin: string;
|
|
10268
|
+
clerk: string;
|
|
10269
|
+
treasury: string;
|
|
10270
|
+
authTokenId: string;
|
|
10271
|
+
authTokenType: number;
|
|
10272
|
+
voucherCloneAddress: string;
|
|
10273
|
+
active: boolean;
|
|
10274
|
+
};
|
|
10275
|
+
};
|
|
10276
|
+
exchangePolicy: {
|
|
10277
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
10278
|
+
id: string;
|
|
10279
|
+
uuid: string;
|
|
10280
|
+
version: number;
|
|
10281
|
+
label?: string | null;
|
|
10282
|
+
template: string;
|
|
10283
|
+
};
|
|
10284
|
+
shipping?: {
|
|
10285
|
+
__typename?: "ProductV1ShippingOption";
|
|
10286
|
+
id: string;
|
|
10287
|
+
defaultVersion?: number | null;
|
|
10288
|
+
countryOfOrigin?: string | null;
|
|
10289
|
+
redemptionPoint?: string | null;
|
|
10290
|
+
supportedJurisdictions?: Array<{
|
|
10291
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
10292
|
+
id: string;
|
|
10293
|
+
label: string;
|
|
10294
|
+
deliveryTime: string;
|
|
10295
|
+
}> | null;
|
|
10296
|
+
} | null;
|
|
8311
10297
|
}
|
|
8312
10298
|
| null;
|
|
8313
10299
|
};
|
|
@@ -8453,11 +10439,165 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
8453
10439
|
}
|
|
8454
10440
|
| {
|
|
8455
10441
|
__typename?: "ProductV1MetadataEntity";
|
|
10442
|
+
image: string;
|
|
10443
|
+
createdAt: string;
|
|
10444
|
+
voided: boolean;
|
|
10445
|
+
validFromDate: string;
|
|
10446
|
+
validUntilDate: string;
|
|
10447
|
+
quantityAvailable: string;
|
|
10448
|
+
uuid: string;
|
|
8456
10449
|
name: string;
|
|
8457
10450
|
description: string;
|
|
8458
10451
|
externalUrl: string;
|
|
8459
10452
|
schemaUrl: string;
|
|
8460
10453
|
type: MetadataType;
|
|
10454
|
+
attributes?: Array<{
|
|
10455
|
+
__typename?: "MetadataAttribute";
|
|
10456
|
+
traitType: string;
|
|
10457
|
+
value: string;
|
|
10458
|
+
displayType: string;
|
|
10459
|
+
}> | null;
|
|
10460
|
+
product: {
|
|
10461
|
+
__typename?: "ProductV1Product";
|
|
10462
|
+
id: string;
|
|
10463
|
+
uuid: string;
|
|
10464
|
+
version: number;
|
|
10465
|
+
title: string;
|
|
10466
|
+
description: string;
|
|
10467
|
+
identification_sKU?: string | null;
|
|
10468
|
+
identification_productId?: string | null;
|
|
10469
|
+
identification_productIdType?: string | null;
|
|
10470
|
+
productionInformation_brandName: string;
|
|
10471
|
+
productionInformation_manufacturer?: string | null;
|
|
10472
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
10473
|
+
productionInformation_modelNumber?: string | null;
|
|
10474
|
+
productionInformation_materials?: Array<string> | null;
|
|
10475
|
+
details_category?: string | null;
|
|
10476
|
+
details_subCategory?: string | null;
|
|
10477
|
+
details_subCategory2?: string | null;
|
|
10478
|
+
details_offerCategory: string;
|
|
10479
|
+
offerCategory: ProductV1OfferCategory;
|
|
10480
|
+
details_tags?: Array<string> | null;
|
|
10481
|
+
details_sections?: Array<string> | null;
|
|
10482
|
+
details_personalisation?: Array<string> | null;
|
|
10483
|
+
packaging_packageQuantity?: string | null;
|
|
10484
|
+
packaging_dimensions_length?: string | null;
|
|
10485
|
+
packaging_dimensions_width?: string | null;
|
|
10486
|
+
packaging_dimensions_height?: string | null;
|
|
10487
|
+
packaging_dimensions_unit?: string | null;
|
|
10488
|
+
packaging_weight_value?: string | null;
|
|
10489
|
+
packaging_weight_unit?: string | null;
|
|
10490
|
+
brand: {
|
|
10491
|
+
__typename?: "ProductV1Brand";
|
|
10492
|
+
id: string;
|
|
10493
|
+
name: string;
|
|
10494
|
+
};
|
|
10495
|
+
category?: {
|
|
10496
|
+
__typename?: "ProductV1Category";
|
|
10497
|
+
id: string;
|
|
10498
|
+
name: string;
|
|
10499
|
+
} | null;
|
|
10500
|
+
subCategory?: {
|
|
10501
|
+
__typename?: "ProductV1Category";
|
|
10502
|
+
id: string;
|
|
10503
|
+
name: string;
|
|
10504
|
+
} | null;
|
|
10505
|
+
subCategory2?: {
|
|
10506
|
+
__typename?: "ProductV1Category";
|
|
10507
|
+
id: string;
|
|
10508
|
+
name: string;
|
|
10509
|
+
} | null;
|
|
10510
|
+
tags?: Array<{
|
|
10511
|
+
__typename?: "ProductV1Tag";
|
|
10512
|
+
id: string;
|
|
10513
|
+
name: string;
|
|
10514
|
+
}> | null;
|
|
10515
|
+
sections?: Array<{
|
|
10516
|
+
__typename?: "ProductV1Section";
|
|
10517
|
+
id: string;
|
|
10518
|
+
name: string;
|
|
10519
|
+
}> | null;
|
|
10520
|
+
personalisation?: Array<{
|
|
10521
|
+
__typename?: "ProductV1Personalisation";
|
|
10522
|
+
id: string;
|
|
10523
|
+
name: string;
|
|
10524
|
+
}> | null;
|
|
10525
|
+
visuals_images: Array<{
|
|
10526
|
+
__typename?: "ProductV1Media";
|
|
10527
|
+
id: string;
|
|
10528
|
+
url: string;
|
|
10529
|
+
tag?: string | null;
|
|
10530
|
+
type: ProductV1MediaType;
|
|
10531
|
+
}>;
|
|
10532
|
+
visuals_videos?: Array<{
|
|
10533
|
+
__typename?: "ProductV1Media";
|
|
10534
|
+
id: string;
|
|
10535
|
+
url: string;
|
|
10536
|
+
tag?: string | null;
|
|
10537
|
+
type: ProductV1MediaType;
|
|
10538
|
+
}> | null;
|
|
10539
|
+
};
|
|
10540
|
+
variations?: Array<{
|
|
10541
|
+
__typename?: "ProductV1Variation";
|
|
10542
|
+
id: string;
|
|
10543
|
+
type: string;
|
|
10544
|
+
option: string;
|
|
10545
|
+
}> | null;
|
|
10546
|
+
productV1Seller: {
|
|
10547
|
+
__typename?: "ProductV1Seller";
|
|
10548
|
+
id: string;
|
|
10549
|
+
defaultVersion?: number | null;
|
|
10550
|
+
name?: string | null;
|
|
10551
|
+
description?: string | null;
|
|
10552
|
+
externalUrl?: string | null;
|
|
10553
|
+
tokenId?: string | null;
|
|
10554
|
+
images?: Array<{
|
|
10555
|
+
__typename?: "ProductV1Media";
|
|
10556
|
+
id: string;
|
|
10557
|
+
url: string;
|
|
10558
|
+
tag?: string | null;
|
|
10559
|
+
type: ProductV1MediaType;
|
|
10560
|
+
}> | null;
|
|
10561
|
+
contactLinks?: Array<{
|
|
10562
|
+
__typename?: "ProductV1SellerContactLink";
|
|
10563
|
+
id: string;
|
|
10564
|
+
url: string;
|
|
10565
|
+
tag: string;
|
|
10566
|
+
}> | null;
|
|
10567
|
+
seller: {
|
|
10568
|
+
__typename?: "Seller";
|
|
10569
|
+
id: string;
|
|
10570
|
+
operator: string;
|
|
10571
|
+
admin: string;
|
|
10572
|
+
clerk: string;
|
|
10573
|
+
treasury: string;
|
|
10574
|
+
authTokenId: string;
|
|
10575
|
+
authTokenType: number;
|
|
10576
|
+
voucherCloneAddress: string;
|
|
10577
|
+
active: boolean;
|
|
10578
|
+
};
|
|
10579
|
+
};
|
|
10580
|
+
exchangePolicy: {
|
|
10581
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
10582
|
+
id: string;
|
|
10583
|
+
uuid: string;
|
|
10584
|
+
version: number;
|
|
10585
|
+
label?: string | null;
|
|
10586
|
+
template: string;
|
|
10587
|
+
};
|
|
10588
|
+
shipping?: {
|
|
10589
|
+
__typename?: "ProductV1ShippingOption";
|
|
10590
|
+
id: string;
|
|
10591
|
+
defaultVersion?: number | null;
|
|
10592
|
+
countryOfOrigin?: string | null;
|
|
10593
|
+
redemptionPoint?: string | null;
|
|
10594
|
+
supportedJurisdictions?: Array<{
|
|
10595
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
10596
|
+
id: string;
|
|
10597
|
+
label: string;
|
|
10598
|
+
deliveryTime: string;
|
|
10599
|
+
}> | null;
|
|
10600
|
+
} | null;
|
|
8461
10601
|
}
|
|
8462
10602
|
| null;
|
|
8463
10603
|
};
|
|
@@ -8593,11 +10733,161 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
8593
10733
|
}
|
|
8594
10734
|
| {
|
|
8595
10735
|
__typename?: "ProductV1MetadataEntity";
|
|
10736
|
+
image: string;
|
|
10737
|
+
createdAt: string;
|
|
10738
|
+
voided: boolean;
|
|
10739
|
+
validFromDate: string;
|
|
10740
|
+
validUntilDate: string;
|
|
10741
|
+
quantityAvailable: string;
|
|
10742
|
+
uuid: string;
|
|
8596
10743
|
name: string;
|
|
8597
10744
|
description: string;
|
|
8598
10745
|
externalUrl: string;
|
|
8599
10746
|
schemaUrl: string;
|
|
8600
10747
|
type: MetadataType;
|
|
10748
|
+
attributes?: Array<{
|
|
10749
|
+
__typename?: "MetadataAttribute";
|
|
10750
|
+
traitType: string;
|
|
10751
|
+
value: string;
|
|
10752
|
+
displayType: string;
|
|
10753
|
+
}> | null;
|
|
10754
|
+
product: {
|
|
10755
|
+
__typename?: "ProductV1Product";
|
|
10756
|
+
id: string;
|
|
10757
|
+
uuid: string;
|
|
10758
|
+
version: number;
|
|
10759
|
+
title: string;
|
|
10760
|
+
description: string;
|
|
10761
|
+
identification_sKU?: string | null;
|
|
10762
|
+
identification_productId?: string | null;
|
|
10763
|
+
identification_productIdType?: string | null;
|
|
10764
|
+
productionInformation_brandName: string;
|
|
10765
|
+
productionInformation_manufacturer?: string | null;
|
|
10766
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
10767
|
+
productionInformation_modelNumber?: string | null;
|
|
10768
|
+
productionInformation_materials?: Array<string> | null;
|
|
10769
|
+
details_category?: string | null;
|
|
10770
|
+
details_subCategory?: string | null;
|
|
10771
|
+
details_subCategory2?: string | null;
|
|
10772
|
+
details_offerCategory: string;
|
|
10773
|
+
offerCategory: ProductV1OfferCategory;
|
|
10774
|
+
details_tags?: Array<string> | null;
|
|
10775
|
+
details_sections?: Array<string> | null;
|
|
10776
|
+
details_personalisation?: Array<string> | null;
|
|
10777
|
+
packaging_packageQuantity?: string | null;
|
|
10778
|
+
packaging_dimensions_length?: string | null;
|
|
10779
|
+
packaging_dimensions_width?: string | null;
|
|
10780
|
+
packaging_dimensions_height?: string | null;
|
|
10781
|
+
packaging_dimensions_unit?: string | null;
|
|
10782
|
+
packaging_weight_value?: string | null;
|
|
10783
|
+
packaging_weight_unit?: string | null;
|
|
10784
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
10785
|
+
category?: {
|
|
10786
|
+
__typename?: "ProductV1Category";
|
|
10787
|
+
id: string;
|
|
10788
|
+
name: string;
|
|
10789
|
+
} | null;
|
|
10790
|
+
subCategory?: {
|
|
10791
|
+
__typename?: "ProductV1Category";
|
|
10792
|
+
id: string;
|
|
10793
|
+
name: string;
|
|
10794
|
+
} | null;
|
|
10795
|
+
subCategory2?: {
|
|
10796
|
+
__typename?: "ProductV1Category";
|
|
10797
|
+
id: string;
|
|
10798
|
+
name: string;
|
|
10799
|
+
} | null;
|
|
10800
|
+
tags?: Array<{
|
|
10801
|
+
__typename?: "ProductV1Tag";
|
|
10802
|
+
id: string;
|
|
10803
|
+
name: string;
|
|
10804
|
+
}> | null;
|
|
10805
|
+
sections?: Array<{
|
|
10806
|
+
__typename?: "ProductV1Section";
|
|
10807
|
+
id: string;
|
|
10808
|
+
name: string;
|
|
10809
|
+
}> | null;
|
|
10810
|
+
personalisation?: Array<{
|
|
10811
|
+
__typename?: "ProductV1Personalisation";
|
|
10812
|
+
id: string;
|
|
10813
|
+
name: string;
|
|
10814
|
+
}> | null;
|
|
10815
|
+
visuals_images: Array<{
|
|
10816
|
+
__typename?: "ProductV1Media";
|
|
10817
|
+
id: string;
|
|
10818
|
+
url: string;
|
|
10819
|
+
tag?: string | null;
|
|
10820
|
+
type: ProductV1MediaType;
|
|
10821
|
+
}>;
|
|
10822
|
+
visuals_videos?: Array<{
|
|
10823
|
+
__typename?: "ProductV1Media";
|
|
10824
|
+
id: string;
|
|
10825
|
+
url: string;
|
|
10826
|
+
tag?: string | null;
|
|
10827
|
+
type: ProductV1MediaType;
|
|
10828
|
+
}> | null;
|
|
10829
|
+
};
|
|
10830
|
+
variations?: Array<{
|
|
10831
|
+
__typename?: "ProductV1Variation";
|
|
10832
|
+
id: string;
|
|
10833
|
+
type: string;
|
|
10834
|
+
option: string;
|
|
10835
|
+
}> | null;
|
|
10836
|
+
productV1Seller: {
|
|
10837
|
+
__typename?: "ProductV1Seller";
|
|
10838
|
+
id: string;
|
|
10839
|
+
defaultVersion?: number | null;
|
|
10840
|
+
name?: string | null;
|
|
10841
|
+
description?: string | null;
|
|
10842
|
+
externalUrl?: string | null;
|
|
10843
|
+
tokenId?: string | null;
|
|
10844
|
+
images?: Array<{
|
|
10845
|
+
__typename?: "ProductV1Media";
|
|
10846
|
+
id: string;
|
|
10847
|
+
url: string;
|
|
10848
|
+
tag?: string | null;
|
|
10849
|
+
type: ProductV1MediaType;
|
|
10850
|
+
}> | null;
|
|
10851
|
+
contactLinks?: Array<{
|
|
10852
|
+
__typename?: "ProductV1SellerContactLink";
|
|
10853
|
+
id: string;
|
|
10854
|
+
url: string;
|
|
10855
|
+
tag: string;
|
|
10856
|
+
}> | null;
|
|
10857
|
+
seller: {
|
|
10858
|
+
__typename?: "Seller";
|
|
10859
|
+
id: string;
|
|
10860
|
+
operator: string;
|
|
10861
|
+
admin: string;
|
|
10862
|
+
clerk: string;
|
|
10863
|
+
treasury: string;
|
|
10864
|
+
authTokenId: string;
|
|
10865
|
+
authTokenType: number;
|
|
10866
|
+
voucherCloneAddress: string;
|
|
10867
|
+
active: boolean;
|
|
10868
|
+
};
|
|
10869
|
+
};
|
|
10870
|
+
exchangePolicy: {
|
|
10871
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
10872
|
+
id: string;
|
|
10873
|
+
uuid: string;
|
|
10874
|
+
version: number;
|
|
10875
|
+
label?: string | null;
|
|
10876
|
+
template: string;
|
|
10877
|
+
};
|
|
10878
|
+
shipping?: {
|
|
10879
|
+
__typename?: "ProductV1ShippingOption";
|
|
10880
|
+
id: string;
|
|
10881
|
+
defaultVersion?: number | null;
|
|
10882
|
+
countryOfOrigin?: string | null;
|
|
10883
|
+
redemptionPoint?: string | null;
|
|
10884
|
+
supportedJurisdictions?: Array<{
|
|
10885
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
10886
|
+
id: string;
|
|
10887
|
+
label: string;
|
|
10888
|
+
deliveryTime: string;
|
|
10889
|
+
}> | null;
|
|
10890
|
+
} | null;
|
|
8601
10891
|
}
|
|
8602
10892
|
| null;
|
|
8603
10893
|
};
|
|
@@ -8732,11 +11022,161 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
8732
11022
|
}
|
|
8733
11023
|
| {
|
|
8734
11024
|
__typename?: "ProductV1MetadataEntity";
|
|
11025
|
+
image: string;
|
|
11026
|
+
createdAt: string;
|
|
11027
|
+
voided: boolean;
|
|
11028
|
+
validFromDate: string;
|
|
11029
|
+
validUntilDate: string;
|
|
11030
|
+
quantityAvailable: string;
|
|
11031
|
+
uuid: string;
|
|
8735
11032
|
name: string;
|
|
8736
11033
|
description: string;
|
|
8737
11034
|
externalUrl: string;
|
|
8738
11035
|
schemaUrl: string;
|
|
8739
11036
|
type: MetadataType;
|
|
11037
|
+
attributes?: Array<{
|
|
11038
|
+
__typename?: "MetadataAttribute";
|
|
11039
|
+
traitType: string;
|
|
11040
|
+
value: string;
|
|
11041
|
+
displayType: string;
|
|
11042
|
+
}> | null;
|
|
11043
|
+
product: {
|
|
11044
|
+
__typename?: "ProductV1Product";
|
|
11045
|
+
id: string;
|
|
11046
|
+
uuid: string;
|
|
11047
|
+
version: number;
|
|
11048
|
+
title: string;
|
|
11049
|
+
description: string;
|
|
11050
|
+
identification_sKU?: string | null;
|
|
11051
|
+
identification_productId?: string | null;
|
|
11052
|
+
identification_productIdType?: string | null;
|
|
11053
|
+
productionInformation_brandName: string;
|
|
11054
|
+
productionInformation_manufacturer?: string | null;
|
|
11055
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
11056
|
+
productionInformation_modelNumber?: string | null;
|
|
11057
|
+
productionInformation_materials?: Array<string> | null;
|
|
11058
|
+
details_category?: string | null;
|
|
11059
|
+
details_subCategory?: string | null;
|
|
11060
|
+
details_subCategory2?: string | null;
|
|
11061
|
+
details_offerCategory: string;
|
|
11062
|
+
offerCategory: ProductV1OfferCategory;
|
|
11063
|
+
details_tags?: Array<string> | null;
|
|
11064
|
+
details_sections?: Array<string> | null;
|
|
11065
|
+
details_personalisation?: Array<string> | null;
|
|
11066
|
+
packaging_packageQuantity?: string | null;
|
|
11067
|
+
packaging_dimensions_length?: string | null;
|
|
11068
|
+
packaging_dimensions_width?: string | null;
|
|
11069
|
+
packaging_dimensions_height?: string | null;
|
|
11070
|
+
packaging_dimensions_unit?: string | null;
|
|
11071
|
+
packaging_weight_value?: string | null;
|
|
11072
|
+
packaging_weight_unit?: string | null;
|
|
11073
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
11074
|
+
category?: {
|
|
11075
|
+
__typename?: "ProductV1Category";
|
|
11076
|
+
id: string;
|
|
11077
|
+
name: string;
|
|
11078
|
+
} | null;
|
|
11079
|
+
subCategory?: {
|
|
11080
|
+
__typename?: "ProductV1Category";
|
|
11081
|
+
id: string;
|
|
11082
|
+
name: string;
|
|
11083
|
+
} | null;
|
|
11084
|
+
subCategory2?: {
|
|
11085
|
+
__typename?: "ProductV1Category";
|
|
11086
|
+
id: string;
|
|
11087
|
+
name: string;
|
|
11088
|
+
} | null;
|
|
11089
|
+
tags?: Array<{
|
|
11090
|
+
__typename?: "ProductV1Tag";
|
|
11091
|
+
id: string;
|
|
11092
|
+
name: string;
|
|
11093
|
+
}> | null;
|
|
11094
|
+
sections?: Array<{
|
|
11095
|
+
__typename?: "ProductV1Section";
|
|
11096
|
+
id: string;
|
|
11097
|
+
name: string;
|
|
11098
|
+
}> | null;
|
|
11099
|
+
personalisation?: Array<{
|
|
11100
|
+
__typename?: "ProductV1Personalisation";
|
|
11101
|
+
id: string;
|
|
11102
|
+
name: string;
|
|
11103
|
+
}> | null;
|
|
11104
|
+
visuals_images: Array<{
|
|
11105
|
+
__typename?: "ProductV1Media";
|
|
11106
|
+
id: string;
|
|
11107
|
+
url: string;
|
|
11108
|
+
tag?: string | null;
|
|
11109
|
+
type: ProductV1MediaType;
|
|
11110
|
+
}>;
|
|
11111
|
+
visuals_videos?: Array<{
|
|
11112
|
+
__typename?: "ProductV1Media";
|
|
11113
|
+
id: string;
|
|
11114
|
+
url: string;
|
|
11115
|
+
tag?: string | null;
|
|
11116
|
+
type: ProductV1MediaType;
|
|
11117
|
+
}> | null;
|
|
11118
|
+
};
|
|
11119
|
+
variations?: Array<{
|
|
11120
|
+
__typename?: "ProductV1Variation";
|
|
11121
|
+
id: string;
|
|
11122
|
+
type: string;
|
|
11123
|
+
option: string;
|
|
11124
|
+
}> | null;
|
|
11125
|
+
productV1Seller: {
|
|
11126
|
+
__typename?: "ProductV1Seller";
|
|
11127
|
+
id: string;
|
|
11128
|
+
defaultVersion?: number | null;
|
|
11129
|
+
name?: string | null;
|
|
11130
|
+
description?: string | null;
|
|
11131
|
+
externalUrl?: string | null;
|
|
11132
|
+
tokenId?: string | null;
|
|
11133
|
+
images?: Array<{
|
|
11134
|
+
__typename?: "ProductV1Media";
|
|
11135
|
+
id: string;
|
|
11136
|
+
url: string;
|
|
11137
|
+
tag?: string | null;
|
|
11138
|
+
type: ProductV1MediaType;
|
|
11139
|
+
}> | null;
|
|
11140
|
+
contactLinks?: Array<{
|
|
11141
|
+
__typename?: "ProductV1SellerContactLink";
|
|
11142
|
+
id: string;
|
|
11143
|
+
url: string;
|
|
11144
|
+
tag: string;
|
|
11145
|
+
}> | null;
|
|
11146
|
+
seller: {
|
|
11147
|
+
__typename?: "Seller";
|
|
11148
|
+
id: string;
|
|
11149
|
+
operator: string;
|
|
11150
|
+
admin: string;
|
|
11151
|
+
clerk: string;
|
|
11152
|
+
treasury: string;
|
|
11153
|
+
authTokenId: string;
|
|
11154
|
+
authTokenType: number;
|
|
11155
|
+
voucherCloneAddress: string;
|
|
11156
|
+
active: boolean;
|
|
11157
|
+
};
|
|
11158
|
+
};
|
|
11159
|
+
exchangePolicy: {
|
|
11160
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
11161
|
+
id: string;
|
|
11162
|
+
uuid: string;
|
|
11163
|
+
version: number;
|
|
11164
|
+
label?: string | null;
|
|
11165
|
+
template: string;
|
|
11166
|
+
};
|
|
11167
|
+
shipping?: {
|
|
11168
|
+
__typename?: "ProductV1ShippingOption";
|
|
11169
|
+
id: string;
|
|
11170
|
+
defaultVersion?: number | null;
|
|
11171
|
+
countryOfOrigin?: string | null;
|
|
11172
|
+
redemptionPoint?: string | null;
|
|
11173
|
+
supportedJurisdictions?: Array<{
|
|
11174
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
11175
|
+
id: string;
|
|
11176
|
+
label: string;
|
|
11177
|
+
deliveryTime: string;
|
|
11178
|
+
}> | null;
|
|
11179
|
+
} | null;
|
|
8740
11180
|
}
|
|
8741
11181
|
| null;
|
|
8742
11182
|
};
|
|
@@ -8917,11 +11357,165 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
8917
11357
|
}
|
|
8918
11358
|
| {
|
|
8919
11359
|
__typename?: "ProductV1MetadataEntity";
|
|
11360
|
+
image: string;
|
|
11361
|
+
createdAt: string;
|
|
11362
|
+
voided: boolean;
|
|
11363
|
+
validFromDate: string;
|
|
11364
|
+
validUntilDate: string;
|
|
11365
|
+
quantityAvailable: string;
|
|
11366
|
+
uuid: string;
|
|
8920
11367
|
name: string;
|
|
8921
11368
|
description: string;
|
|
8922
11369
|
externalUrl: string;
|
|
8923
11370
|
schemaUrl: string;
|
|
8924
11371
|
type: MetadataType;
|
|
11372
|
+
attributes?: Array<{
|
|
11373
|
+
__typename?: "MetadataAttribute";
|
|
11374
|
+
traitType: string;
|
|
11375
|
+
value: string;
|
|
11376
|
+
displayType: string;
|
|
11377
|
+
}> | null;
|
|
11378
|
+
product: {
|
|
11379
|
+
__typename?: "ProductV1Product";
|
|
11380
|
+
id: string;
|
|
11381
|
+
uuid: string;
|
|
11382
|
+
version: number;
|
|
11383
|
+
title: string;
|
|
11384
|
+
description: string;
|
|
11385
|
+
identification_sKU?: string | null;
|
|
11386
|
+
identification_productId?: string | null;
|
|
11387
|
+
identification_productIdType?: string | null;
|
|
11388
|
+
productionInformation_brandName: string;
|
|
11389
|
+
productionInformation_manufacturer?: string | null;
|
|
11390
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
11391
|
+
productionInformation_modelNumber?: string | null;
|
|
11392
|
+
productionInformation_materials?: Array<string> | null;
|
|
11393
|
+
details_category?: string | null;
|
|
11394
|
+
details_subCategory?: string | null;
|
|
11395
|
+
details_subCategory2?: string | null;
|
|
11396
|
+
details_offerCategory: string;
|
|
11397
|
+
offerCategory: ProductV1OfferCategory;
|
|
11398
|
+
details_tags?: Array<string> | null;
|
|
11399
|
+
details_sections?: Array<string> | null;
|
|
11400
|
+
details_personalisation?: Array<string> | null;
|
|
11401
|
+
packaging_packageQuantity?: string | null;
|
|
11402
|
+
packaging_dimensions_length?: string | null;
|
|
11403
|
+
packaging_dimensions_width?: string | null;
|
|
11404
|
+
packaging_dimensions_height?: string | null;
|
|
11405
|
+
packaging_dimensions_unit?: string | null;
|
|
11406
|
+
packaging_weight_value?: string | null;
|
|
11407
|
+
packaging_weight_unit?: string | null;
|
|
11408
|
+
brand: {
|
|
11409
|
+
__typename?: "ProductV1Brand";
|
|
11410
|
+
id: string;
|
|
11411
|
+
name: string;
|
|
11412
|
+
};
|
|
11413
|
+
category?: {
|
|
11414
|
+
__typename?: "ProductV1Category";
|
|
11415
|
+
id: string;
|
|
11416
|
+
name: string;
|
|
11417
|
+
} | null;
|
|
11418
|
+
subCategory?: {
|
|
11419
|
+
__typename?: "ProductV1Category";
|
|
11420
|
+
id: string;
|
|
11421
|
+
name: string;
|
|
11422
|
+
} | null;
|
|
11423
|
+
subCategory2?: {
|
|
11424
|
+
__typename?: "ProductV1Category";
|
|
11425
|
+
id: string;
|
|
11426
|
+
name: string;
|
|
11427
|
+
} | null;
|
|
11428
|
+
tags?: Array<{
|
|
11429
|
+
__typename?: "ProductV1Tag";
|
|
11430
|
+
id: string;
|
|
11431
|
+
name: string;
|
|
11432
|
+
}> | null;
|
|
11433
|
+
sections?: Array<{
|
|
11434
|
+
__typename?: "ProductV1Section";
|
|
11435
|
+
id: string;
|
|
11436
|
+
name: string;
|
|
11437
|
+
}> | null;
|
|
11438
|
+
personalisation?: Array<{
|
|
11439
|
+
__typename?: "ProductV1Personalisation";
|
|
11440
|
+
id: string;
|
|
11441
|
+
name: string;
|
|
11442
|
+
}> | null;
|
|
11443
|
+
visuals_images: Array<{
|
|
11444
|
+
__typename?: "ProductV1Media";
|
|
11445
|
+
id: string;
|
|
11446
|
+
url: string;
|
|
11447
|
+
tag?: string | null;
|
|
11448
|
+
type: ProductV1MediaType;
|
|
11449
|
+
}>;
|
|
11450
|
+
visuals_videos?: Array<{
|
|
11451
|
+
__typename?: "ProductV1Media";
|
|
11452
|
+
id: string;
|
|
11453
|
+
url: string;
|
|
11454
|
+
tag?: string | null;
|
|
11455
|
+
type: ProductV1MediaType;
|
|
11456
|
+
}> | null;
|
|
11457
|
+
};
|
|
11458
|
+
variations?: Array<{
|
|
11459
|
+
__typename?: "ProductV1Variation";
|
|
11460
|
+
id: string;
|
|
11461
|
+
type: string;
|
|
11462
|
+
option: string;
|
|
11463
|
+
}> | null;
|
|
11464
|
+
productV1Seller: {
|
|
11465
|
+
__typename?: "ProductV1Seller";
|
|
11466
|
+
id: string;
|
|
11467
|
+
defaultVersion?: number | null;
|
|
11468
|
+
name?: string | null;
|
|
11469
|
+
description?: string | null;
|
|
11470
|
+
externalUrl?: string | null;
|
|
11471
|
+
tokenId?: string | null;
|
|
11472
|
+
images?: Array<{
|
|
11473
|
+
__typename?: "ProductV1Media";
|
|
11474
|
+
id: string;
|
|
11475
|
+
url: string;
|
|
11476
|
+
tag?: string | null;
|
|
11477
|
+
type: ProductV1MediaType;
|
|
11478
|
+
}> | null;
|
|
11479
|
+
contactLinks?: Array<{
|
|
11480
|
+
__typename?: "ProductV1SellerContactLink";
|
|
11481
|
+
id: string;
|
|
11482
|
+
url: string;
|
|
11483
|
+
tag: string;
|
|
11484
|
+
}> | null;
|
|
11485
|
+
seller: {
|
|
11486
|
+
__typename?: "Seller";
|
|
11487
|
+
id: string;
|
|
11488
|
+
operator: string;
|
|
11489
|
+
admin: string;
|
|
11490
|
+
clerk: string;
|
|
11491
|
+
treasury: string;
|
|
11492
|
+
authTokenId: string;
|
|
11493
|
+
authTokenType: number;
|
|
11494
|
+
voucherCloneAddress: string;
|
|
11495
|
+
active: boolean;
|
|
11496
|
+
};
|
|
11497
|
+
};
|
|
11498
|
+
exchangePolicy: {
|
|
11499
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
11500
|
+
id: string;
|
|
11501
|
+
uuid: string;
|
|
11502
|
+
version: number;
|
|
11503
|
+
label?: string | null;
|
|
11504
|
+
template: string;
|
|
11505
|
+
};
|
|
11506
|
+
shipping?: {
|
|
11507
|
+
__typename?: "ProductV1ShippingOption";
|
|
11508
|
+
id: string;
|
|
11509
|
+
defaultVersion?: number | null;
|
|
11510
|
+
countryOfOrigin?: string | null;
|
|
11511
|
+
redemptionPoint?: string | null;
|
|
11512
|
+
supportedJurisdictions?: Array<{
|
|
11513
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
11514
|
+
id: string;
|
|
11515
|
+
label: string;
|
|
11516
|
+
deliveryTime: string;
|
|
11517
|
+
}> | null;
|
|
11518
|
+
} | null;
|
|
8925
11519
|
}
|
|
8926
11520
|
| null;
|
|
8927
11521
|
};
|
|
@@ -9061,6 +11655,14 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
9061
11655
|
active: boolean;
|
|
9062
11656
|
};
|
|
9063
11657
|
};
|
|
11658
|
+
exchangePolicy: {
|
|
11659
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
11660
|
+
id: string;
|
|
11661
|
+
uuid: string;
|
|
11662
|
+
version: number;
|
|
11663
|
+
label?: string | null;
|
|
11664
|
+
template: string;
|
|
11665
|
+
};
|
|
9064
11666
|
} | null;
|
|
9065
11667
|
};
|
|
9066
11668
|
|
|
@@ -9184,11 +11786,165 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
9184
11786
|
}
|
|
9185
11787
|
| {
|
|
9186
11788
|
__typename?: "ProductV1MetadataEntity";
|
|
11789
|
+
image: string;
|
|
11790
|
+
createdAt: string;
|
|
11791
|
+
voided: boolean;
|
|
11792
|
+
validFromDate: string;
|
|
11793
|
+
validUntilDate: string;
|
|
11794
|
+
quantityAvailable: string;
|
|
11795
|
+
uuid: string;
|
|
9187
11796
|
name: string;
|
|
9188
11797
|
description: string;
|
|
9189
11798
|
externalUrl: string;
|
|
9190
11799
|
schemaUrl: string;
|
|
9191
11800
|
type: MetadataType;
|
|
11801
|
+
attributes?: Array<{
|
|
11802
|
+
__typename?: "MetadataAttribute";
|
|
11803
|
+
traitType: string;
|
|
11804
|
+
value: string;
|
|
11805
|
+
displayType: string;
|
|
11806
|
+
}> | null;
|
|
11807
|
+
product: {
|
|
11808
|
+
__typename?: "ProductV1Product";
|
|
11809
|
+
id: string;
|
|
11810
|
+
uuid: string;
|
|
11811
|
+
version: number;
|
|
11812
|
+
title: string;
|
|
11813
|
+
description: string;
|
|
11814
|
+
identification_sKU?: string | null;
|
|
11815
|
+
identification_productId?: string | null;
|
|
11816
|
+
identification_productIdType?: string | null;
|
|
11817
|
+
productionInformation_brandName: string;
|
|
11818
|
+
productionInformation_manufacturer?: string | null;
|
|
11819
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
11820
|
+
productionInformation_modelNumber?: string | null;
|
|
11821
|
+
productionInformation_materials?: Array<string> | null;
|
|
11822
|
+
details_category?: string | null;
|
|
11823
|
+
details_subCategory?: string | null;
|
|
11824
|
+
details_subCategory2?: string | null;
|
|
11825
|
+
details_offerCategory: string;
|
|
11826
|
+
offerCategory: ProductV1OfferCategory;
|
|
11827
|
+
details_tags?: Array<string> | null;
|
|
11828
|
+
details_sections?: Array<string> | null;
|
|
11829
|
+
details_personalisation?: Array<string> | null;
|
|
11830
|
+
packaging_packageQuantity?: string | null;
|
|
11831
|
+
packaging_dimensions_length?: string | null;
|
|
11832
|
+
packaging_dimensions_width?: string | null;
|
|
11833
|
+
packaging_dimensions_height?: string | null;
|
|
11834
|
+
packaging_dimensions_unit?: string | null;
|
|
11835
|
+
packaging_weight_value?: string | null;
|
|
11836
|
+
packaging_weight_unit?: string | null;
|
|
11837
|
+
brand: {
|
|
11838
|
+
__typename?: "ProductV1Brand";
|
|
11839
|
+
id: string;
|
|
11840
|
+
name: string;
|
|
11841
|
+
};
|
|
11842
|
+
category?: {
|
|
11843
|
+
__typename?: "ProductV1Category";
|
|
11844
|
+
id: string;
|
|
11845
|
+
name: string;
|
|
11846
|
+
} | null;
|
|
11847
|
+
subCategory?: {
|
|
11848
|
+
__typename?: "ProductV1Category";
|
|
11849
|
+
id: string;
|
|
11850
|
+
name: string;
|
|
11851
|
+
} | null;
|
|
11852
|
+
subCategory2?: {
|
|
11853
|
+
__typename?: "ProductV1Category";
|
|
11854
|
+
id: string;
|
|
11855
|
+
name: string;
|
|
11856
|
+
} | null;
|
|
11857
|
+
tags?: Array<{
|
|
11858
|
+
__typename?: "ProductV1Tag";
|
|
11859
|
+
id: string;
|
|
11860
|
+
name: string;
|
|
11861
|
+
}> | null;
|
|
11862
|
+
sections?: Array<{
|
|
11863
|
+
__typename?: "ProductV1Section";
|
|
11864
|
+
id: string;
|
|
11865
|
+
name: string;
|
|
11866
|
+
}> | null;
|
|
11867
|
+
personalisation?: Array<{
|
|
11868
|
+
__typename?: "ProductV1Personalisation";
|
|
11869
|
+
id: string;
|
|
11870
|
+
name: string;
|
|
11871
|
+
}> | null;
|
|
11872
|
+
visuals_images: Array<{
|
|
11873
|
+
__typename?: "ProductV1Media";
|
|
11874
|
+
id: string;
|
|
11875
|
+
url: string;
|
|
11876
|
+
tag?: string | null;
|
|
11877
|
+
type: ProductV1MediaType;
|
|
11878
|
+
}>;
|
|
11879
|
+
visuals_videos?: Array<{
|
|
11880
|
+
__typename?: "ProductV1Media";
|
|
11881
|
+
id: string;
|
|
11882
|
+
url: string;
|
|
11883
|
+
tag?: string | null;
|
|
11884
|
+
type: ProductV1MediaType;
|
|
11885
|
+
}> | null;
|
|
11886
|
+
};
|
|
11887
|
+
variations?: Array<{
|
|
11888
|
+
__typename?: "ProductV1Variation";
|
|
11889
|
+
id: string;
|
|
11890
|
+
type: string;
|
|
11891
|
+
option: string;
|
|
11892
|
+
}> | null;
|
|
11893
|
+
productV1Seller: {
|
|
11894
|
+
__typename?: "ProductV1Seller";
|
|
11895
|
+
id: string;
|
|
11896
|
+
defaultVersion?: number | null;
|
|
11897
|
+
name?: string | null;
|
|
11898
|
+
description?: string | null;
|
|
11899
|
+
externalUrl?: string | null;
|
|
11900
|
+
tokenId?: string | null;
|
|
11901
|
+
images?: Array<{
|
|
11902
|
+
__typename?: "ProductV1Media";
|
|
11903
|
+
id: string;
|
|
11904
|
+
url: string;
|
|
11905
|
+
tag?: string | null;
|
|
11906
|
+
type: ProductV1MediaType;
|
|
11907
|
+
}> | null;
|
|
11908
|
+
contactLinks?: Array<{
|
|
11909
|
+
__typename?: "ProductV1SellerContactLink";
|
|
11910
|
+
id: string;
|
|
11911
|
+
url: string;
|
|
11912
|
+
tag: string;
|
|
11913
|
+
}> | null;
|
|
11914
|
+
seller: {
|
|
11915
|
+
__typename?: "Seller";
|
|
11916
|
+
id: string;
|
|
11917
|
+
operator: string;
|
|
11918
|
+
admin: string;
|
|
11919
|
+
clerk: string;
|
|
11920
|
+
treasury: string;
|
|
11921
|
+
authTokenId: string;
|
|
11922
|
+
authTokenType: number;
|
|
11923
|
+
voucherCloneAddress: string;
|
|
11924
|
+
active: boolean;
|
|
11925
|
+
};
|
|
11926
|
+
};
|
|
11927
|
+
exchangePolicy: {
|
|
11928
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
11929
|
+
id: string;
|
|
11930
|
+
uuid: string;
|
|
11931
|
+
version: number;
|
|
11932
|
+
label?: string | null;
|
|
11933
|
+
template: string;
|
|
11934
|
+
};
|
|
11935
|
+
shipping?: {
|
|
11936
|
+
__typename?: "ProductV1ShippingOption";
|
|
11937
|
+
id: string;
|
|
11938
|
+
defaultVersion?: number | null;
|
|
11939
|
+
countryOfOrigin?: string | null;
|
|
11940
|
+
redemptionPoint?: string | null;
|
|
11941
|
+
supportedJurisdictions?: Array<{
|
|
11942
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
11943
|
+
id: string;
|
|
11944
|
+
label: string;
|
|
11945
|
+
deliveryTime: string;
|
|
11946
|
+
}> | null;
|
|
11947
|
+
} | null;
|
|
9192
11948
|
}
|
|
9193
11949
|
| null;
|
|
9194
11950
|
};
|
|
@@ -9328,6 +12084,14 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
9328
12084
|
active: boolean;
|
|
9329
12085
|
};
|
|
9330
12086
|
};
|
|
12087
|
+
exchangePolicy: {
|
|
12088
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
12089
|
+
id: string;
|
|
12090
|
+
uuid: string;
|
|
12091
|
+
version: number;
|
|
12092
|
+
label?: string | null;
|
|
12093
|
+
template: string;
|
|
12094
|
+
};
|
|
9331
12095
|
}>;
|
|
9332
12096
|
};
|
|
9333
12097
|
|
|
@@ -9441,11 +12205,161 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
9441
12205
|
}
|
|
9442
12206
|
| {
|
|
9443
12207
|
__typename?: "ProductV1MetadataEntity";
|
|
12208
|
+
image: string;
|
|
12209
|
+
createdAt: string;
|
|
12210
|
+
voided: boolean;
|
|
12211
|
+
validFromDate: string;
|
|
12212
|
+
validUntilDate: string;
|
|
12213
|
+
quantityAvailable: string;
|
|
12214
|
+
uuid: string;
|
|
9444
12215
|
name: string;
|
|
9445
12216
|
description: string;
|
|
9446
12217
|
externalUrl: string;
|
|
9447
12218
|
schemaUrl: string;
|
|
9448
12219
|
type: MetadataType;
|
|
12220
|
+
attributes?: Array<{
|
|
12221
|
+
__typename?: "MetadataAttribute";
|
|
12222
|
+
traitType: string;
|
|
12223
|
+
value: string;
|
|
12224
|
+
displayType: string;
|
|
12225
|
+
}> | null;
|
|
12226
|
+
product: {
|
|
12227
|
+
__typename?: "ProductV1Product";
|
|
12228
|
+
id: string;
|
|
12229
|
+
uuid: string;
|
|
12230
|
+
version: number;
|
|
12231
|
+
title: string;
|
|
12232
|
+
description: string;
|
|
12233
|
+
identification_sKU?: string | null;
|
|
12234
|
+
identification_productId?: string | null;
|
|
12235
|
+
identification_productIdType?: string | null;
|
|
12236
|
+
productionInformation_brandName: string;
|
|
12237
|
+
productionInformation_manufacturer?: string | null;
|
|
12238
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
12239
|
+
productionInformation_modelNumber?: string | null;
|
|
12240
|
+
productionInformation_materials?: Array<string> | null;
|
|
12241
|
+
details_category?: string | null;
|
|
12242
|
+
details_subCategory?: string | null;
|
|
12243
|
+
details_subCategory2?: string | null;
|
|
12244
|
+
details_offerCategory: string;
|
|
12245
|
+
offerCategory: ProductV1OfferCategory;
|
|
12246
|
+
details_tags?: Array<string> | null;
|
|
12247
|
+
details_sections?: Array<string> | null;
|
|
12248
|
+
details_personalisation?: Array<string> | null;
|
|
12249
|
+
packaging_packageQuantity?: string | null;
|
|
12250
|
+
packaging_dimensions_length?: string | null;
|
|
12251
|
+
packaging_dimensions_width?: string | null;
|
|
12252
|
+
packaging_dimensions_height?: string | null;
|
|
12253
|
+
packaging_dimensions_unit?: string | null;
|
|
12254
|
+
packaging_weight_value?: string | null;
|
|
12255
|
+
packaging_weight_unit?: string | null;
|
|
12256
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
12257
|
+
category?: {
|
|
12258
|
+
__typename?: "ProductV1Category";
|
|
12259
|
+
id: string;
|
|
12260
|
+
name: string;
|
|
12261
|
+
} | null;
|
|
12262
|
+
subCategory?: {
|
|
12263
|
+
__typename?: "ProductV1Category";
|
|
12264
|
+
id: string;
|
|
12265
|
+
name: string;
|
|
12266
|
+
} | null;
|
|
12267
|
+
subCategory2?: {
|
|
12268
|
+
__typename?: "ProductV1Category";
|
|
12269
|
+
id: string;
|
|
12270
|
+
name: string;
|
|
12271
|
+
} | null;
|
|
12272
|
+
tags?: Array<{
|
|
12273
|
+
__typename?: "ProductV1Tag";
|
|
12274
|
+
id: string;
|
|
12275
|
+
name: string;
|
|
12276
|
+
}> | null;
|
|
12277
|
+
sections?: Array<{
|
|
12278
|
+
__typename?: "ProductV1Section";
|
|
12279
|
+
id: string;
|
|
12280
|
+
name: string;
|
|
12281
|
+
}> | null;
|
|
12282
|
+
personalisation?: Array<{
|
|
12283
|
+
__typename?: "ProductV1Personalisation";
|
|
12284
|
+
id: string;
|
|
12285
|
+
name: string;
|
|
12286
|
+
}> | null;
|
|
12287
|
+
visuals_images: Array<{
|
|
12288
|
+
__typename?: "ProductV1Media";
|
|
12289
|
+
id: string;
|
|
12290
|
+
url: string;
|
|
12291
|
+
tag?: string | null;
|
|
12292
|
+
type: ProductV1MediaType;
|
|
12293
|
+
}>;
|
|
12294
|
+
visuals_videos?: Array<{
|
|
12295
|
+
__typename?: "ProductV1Media";
|
|
12296
|
+
id: string;
|
|
12297
|
+
url: string;
|
|
12298
|
+
tag?: string | null;
|
|
12299
|
+
type: ProductV1MediaType;
|
|
12300
|
+
}> | null;
|
|
12301
|
+
};
|
|
12302
|
+
variations?: Array<{
|
|
12303
|
+
__typename?: "ProductV1Variation";
|
|
12304
|
+
id: string;
|
|
12305
|
+
type: string;
|
|
12306
|
+
option: string;
|
|
12307
|
+
}> | null;
|
|
12308
|
+
productV1Seller: {
|
|
12309
|
+
__typename?: "ProductV1Seller";
|
|
12310
|
+
id: string;
|
|
12311
|
+
defaultVersion?: number | null;
|
|
12312
|
+
name?: string | null;
|
|
12313
|
+
description?: string | null;
|
|
12314
|
+
externalUrl?: string | null;
|
|
12315
|
+
tokenId?: string | null;
|
|
12316
|
+
images?: Array<{
|
|
12317
|
+
__typename?: "ProductV1Media";
|
|
12318
|
+
id: string;
|
|
12319
|
+
url: string;
|
|
12320
|
+
tag?: string | null;
|
|
12321
|
+
type: ProductV1MediaType;
|
|
12322
|
+
}> | null;
|
|
12323
|
+
contactLinks?: Array<{
|
|
12324
|
+
__typename?: "ProductV1SellerContactLink";
|
|
12325
|
+
id: string;
|
|
12326
|
+
url: string;
|
|
12327
|
+
tag: string;
|
|
12328
|
+
}> | null;
|
|
12329
|
+
seller: {
|
|
12330
|
+
__typename?: "Seller";
|
|
12331
|
+
id: string;
|
|
12332
|
+
operator: string;
|
|
12333
|
+
admin: string;
|
|
12334
|
+
clerk: string;
|
|
12335
|
+
treasury: string;
|
|
12336
|
+
authTokenId: string;
|
|
12337
|
+
authTokenType: number;
|
|
12338
|
+
voucherCloneAddress: string;
|
|
12339
|
+
active: boolean;
|
|
12340
|
+
};
|
|
12341
|
+
};
|
|
12342
|
+
exchangePolicy: {
|
|
12343
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
12344
|
+
id: string;
|
|
12345
|
+
uuid: string;
|
|
12346
|
+
version: number;
|
|
12347
|
+
label?: string | null;
|
|
12348
|
+
template: string;
|
|
12349
|
+
};
|
|
12350
|
+
shipping?: {
|
|
12351
|
+
__typename?: "ProductV1ShippingOption";
|
|
12352
|
+
id: string;
|
|
12353
|
+
defaultVersion?: number | null;
|
|
12354
|
+
countryOfOrigin?: string | null;
|
|
12355
|
+
redemptionPoint?: string | null;
|
|
12356
|
+
supportedJurisdictions?: Array<{
|
|
12357
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
12358
|
+
id: string;
|
|
12359
|
+
label: string;
|
|
12360
|
+
deliveryTime: string;
|
|
12361
|
+
}> | null;
|
|
12362
|
+
} | null;
|
|
9449
12363
|
}
|
|
9450
12364
|
| null;
|
|
9451
12365
|
};
|
|
@@ -9585,6 +12499,14 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
9585
12499
|
active: boolean;
|
|
9586
12500
|
};
|
|
9587
12501
|
};
|
|
12502
|
+
exchangePolicy: {
|
|
12503
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
12504
|
+
id: string;
|
|
12505
|
+
uuid: string;
|
|
12506
|
+
version: number;
|
|
12507
|
+
label?: string | null;
|
|
12508
|
+
template: string;
|
|
12509
|
+
};
|
|
9588
12510
|
};
|
|
9589
12511
|
|
|
9590
12512
|
export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
@@ -9697,11 +12619,161 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
9697
12619
|
}
|
|
9698
12620
|
| {
|
|
9699
12621
|
__typename?: "ProductV1MetadataEntity";
|
|
12622
|
+
image: string;
|
|
12623
|
+
createdAt: string;
|
|
12624
|
+
voided: boolean;
|
|
12625
|
+
validFromDate: string;
|
|
12626
|
+
validUntilDate: string;
|
|
12627
|
+
quantityAvailable: string;
|
|
12628
|
+
uuid: string;
|
|
9700
12629
|
name: string;
|
|
9701
12630
|
description: string;
|
|
9702
12631
|
externalUrl: string;
|
|
9703
12632
|
schemaUrl: string;
|
|
9704
12633
|
type: MetadataType;
|
|
12634
|
+
attributes?: Array<{
|
|
12635
|
+
__typename?: "MetadataAttribute";
|
|
12636
|
+
traitType: string;
|
|
12637
|
+
value: string;
|
|
12638
|
+
displayType: string;
|
|
12639
|
+
}> | null;
|
|
12640
|
+
product: {
|
|
12641
|
+
__typename?: "ProductV1Product";
|
|
12642
|
+
id: string;
|
|
12643
|
+
uuid: string;
|
|
12644
|
+
version: number;
|
|
12645
|
+
title: string;
|
|
12646
|
+
description: string;
|
|
12647
|
+
identification_sKU?: string | null;
|
|
12648
|
+
identification_productId?: string | null;
|
|
12649
|
+
identification_productIdType?: string | null;
|
|
12650
|
+
productionInformation_brandName: string;
|
|
12651
|
+
productionInformation_manufacturer?: string | null;
|
|
12652
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
12653
|
+
productionInformation_modelNumber?: string | null;
|
|
12654
|
+
productionInformation_materials?: Array<string> | null;
|
|
12655
|
+
details_category?: string | null;
|
|
12656
|
+
details_subCategory?: string | null;
|
|
12657
|
+
details_subCategory2?: string | null;
|
|
12658
|
+
details_offerCategory: string;
|
|
12659
|
+
offerCategory: ProductV1OfferCategory;
|
|
12660
|
+
details_tags?: Array<string> | null;
|
|
12661
|
+
details_sections?: Array<string> | null;
|
|
12662
|
+
details_personalisation?: Array<string> | null;
|
|
12663
|
+
packaging_packageQuantity?: string | null;
|
|
12664
|
+
packaging_dimensions_length?: string | null;
|
|
12665
|
+
packaging_dimensions_width?: string | null;
|
|
12666
|
+
packaging_dimensions_height?: string | null;
|
|
12667
|
+
packaging_dimensions_unit?: string | null;
|
|
12668
|
+
packaging_weight_value?: string | null;
|
|
12669
|
+
packaging_weight_unit?: string | null;
|
|
12670
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
12671
|
+
category?: {
|
|
12672
|
+
__typename?: "ProductV1Category";
|
|
12673
|
+
id: string;
|
|
12674
|
+
name: string;
|
|
12675
|
+
} | null;
|
|
12676
|
+
subCategory?: {
|
|
12677
|
+
__typename?: "ProductV1Category";
|
|
12678
|
+
id: string;
|
|
12679
|
+
name: string;
|
|
12680
|
+
} | null;
|
|
12681
|
+
subCategory2?: {
|
|
12682
|
+
__typename?: "ProductV1Category";
|
|
12683
|
+
id: string;
|
|
12684
|
+
name: string;
|
|
12685
|
+
} | null;
|
|
12686
|
+
tags?: Array<{
|
|
12687
|
+
__typename?: "ProductV1Tag";
|
|
12688
|
+
id: string;
|
|
12689
|
+
name: string;
|
|
12690
|
+
}> | null;
|
|
12691
|
+
sections?: Array<{
|
|
12692
|
+
__typename?: "ProductV1Section";
|
|
12693
|
+
id: string;
|
|
12694
|
+
name: string;
|
|
12695
|
+
}> | null;
|
|
12696
|
+
personalisation?: Array<{
|
|
12697
|
+
__typename?: "ProductV1Personalisation";
|
|
12698
|
+
id: string;
|
|
12699
|
+
name: string;
|
|
12700
|
+
}> | null;
|
|
12701
|
+
visuals_images: Array<{
|
|
12702
|
+
__typename?: "ProductV1Media";
|
|
12703
|
+
id: string;
|
|
12704
|
+
url: string;
|
|
12705
|
+
tag?: string | null;
|
|
12706
|
+
type: ProductV1MediaType;
|
|
12707
|
+
}>;
|
|
12708
|
+
visuals_videos?: Array<{
|
|
12709
|
+
__typename?: "ProductV1Media";
|
|
12710
|
+
id: string;
|
|
12711
|
+
url: string;
|
|
12712
|
+
tag?: string | null;
|
|
12713
|
+
type: ProductV1MediaType;
|
|
12714
|
+
}> | null;
|
|
12715
|
+
};
|
|
12716
|
+
variations?: Array<{
|
|
12717
|
+
__typename?: "ProductV1Variation";
|
|
12718
|
+
id: string;
|
|
12719
|
+
type: string;
|
|
12720
|
+
option: string;
|
|
12721
|
+
}> | null;
|
|
12722
|
+
productV1Seller: {
|
|
12723
|
+
__typename?: "ProductV1Seller";
|
|
12724
|
+
id: string;
|
|
12725
|
+
defaultVersion?: number | null;
|
|
12726
|
+
name?: string | null;
|
|
12727
|
+
description?: string | null;
|
|
12728
|
+
externalUrl?: string | null;
|
|
12729
|
+
tokenId?: string | null;
|
|
12730
|
+
images?: Array<{
|
|
12731
|
+
__typename?: "ProductV1Media";
|
|
12732
|
+
id: string;
|
|
12733
|
+
url: string;
|
|
12734
|
+
tag?: string | null;
|
|
12735
|
+
type: ProductV1MediaType;
|
|
12736
|
+
}> | null;
|
|
12737
|
+
contactLinks?: Array<{
|
|
12738
|
+
__typename?: "ProductV1SellerContactLink";
|
|
12739
|
+
id: string;
|
|
12740
|
+
url: string;
|
|
12741
|
+
tag: string;
|
|
12742
|
+
}> | null;
|
|
12743
|
+
seller: {
|
|
12744
|
+
__typename?: "Seller";
|
|
12745
|
+
id: string;
|
|
12746
|
+
operator: string;
|
|
12747
|
+
admin: string;
|
|
12748
|
+
clerk: string;
|
|
12749
|
+
treasury: string;
|
|
12750
|
+
authTokenId: string;
|
|
12751
|
+
authTokenType: number;
|
|
12752
|
+
voucherCloneAddress: string;
|
|
12753
|
+
active: boolean;
|
|
12754
|
+
};
|
|
12755
|
+
};
|
|
12756
|
+
exchangePolicy: {
|
|
12757
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
12758
|
+
id: string;
|
|
12759
|
+
uuid: string;
|
|
12760
|
+
version: number;
|
|
12761
|
+
label?: string | null;
|
|
12762
|
+
template: string;
|
|
12763
|
+
};
|
|
12764
|
+
shipping?: {
|
|
12765
|
+
__typename?: "ProductV1ShippingOption";
|
|
12766
|
+
id: string;
|
|
12767
|
+
defaultVersion?: number | null;
|
|
12768
|
+
countryOfOrigin?: string | null;
|
|
12769
|
+
redemptionPoint?: string | null;
|
|
12770
|
+
supportedJurisdictions?: Array<{
|
|
12771
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
12772
|
+
id: string;
|
|
12773
|
+
label: string;
|
|
12774
|
+
deliveryTime: string;
|
|
12775
|
+
}> | null;
|
|
12776
|
+
} | null;
|
|
9705
12777
|
}
|
|
9706
12778
|
| null;
|
|
9707
12779
|
};
|
|
@@ -9841,6 +12913,14 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
9841
12913
|
active: boolean;
|
|
9842
12914
|
};
|
|
9843
12915
|
};
|
|
12916
|
+
exchangePolicy: {
|
|
12917
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
12918
|
+
id: string;
|
|
12919
|
+
uuid: string;
|
|
12920
|
+
version: number;
|
|
12921
|
+
label?: string | null;
|
|
12922
|
+
template: string;
|
|
12923
|
+
};
|
|
9844
12924
|
};
|
|
9845
12925
|
|
|
9846
12926
|
export type BaseProductV1ProductFieldsFragment = {
|
|
@@ -10190,11 +13270,161 @@ export type GetOfferByIdQueryQuery = {
|
|
|
10190
13270
|
}
|
|
10191
13271
|
| {
|
|
10192
13272
|
__typename?: "ProductV1MetadataEntity";
|
|
13273
|
+
image: string;
|
|
13274
|
+
createdAt: string;
|
|
13275
|
+
voided: boolean;
|
|
13276
|
+
validFromDate: string;
|
|
13277
|
+
validUntilDate: string;
|
|
13278
|
+
quantityAvailable: string;
|
|
13279
|
+
uuid: string;
|
|
10193
13280
|
name: string;
|
|
10194
13281
|
description: string;
|
|
10195
13282
|
externalUrl: string;
|
|
10196
13283
|
schemaUrl: string;
|
|
10197
13284
|
type: MetadataType;
|
|
13285
|
+
attributes?: Array<{
|
|
13286
|
+
__typename?: "MetadataAttribute";
|
|
13287
|
+
traitType: string;
|
|
13288
|
+
value: string;
|
|
13289
|
+
displayType: string;
|
|
13290
|
+
}> | null;
|
|
13291
|
+
product: {
|
|
13292
|
+
__typename?: "ProductV1Product";
|
|
13293
|
+
id: string;
|
|
13294
|
+
uuid: string;
|
|
13295
|
+
version: number;
|
|
13296
|
+
title: string;
|
|
13297
|
+
description: string;
|
|
13298
|
+
identification_sKU?: string | null;
|
|
13299
|
+
identification_productId?: string | null;
|
|
13300
|
+
identification_productIdType?: string | null;
|
|
13301
|
+
productionInformation_brandName: string;
|
|
13302
|
+
productionInformation_manufacturer?: string | null;
|
|
13303
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
13304
|
+
productionInformation_modelNumber?: string | null;
|
|
13305
|
+
productionInformation_materials?: Array<string> | null;
|
|
13306
|
+
details_category?: string | null;
|
|
13307
|
+
details_subCategory?: string | null;
|
|
13308
|
+
details_subCategory2?: string | null;
|
|
13309
|
+
details_offerCategory: string;
|
|
13310
|
+
offerCategory: ProductV1OfferCategory;
|
|
13311
|
+
details_tags?: Array<string> | null;
|
|
13312
|
+
details_sections?: Array<string> | null;
|
|
13313
|
+
details_personalisation?: Array<string> | null;
|
|
13314
|
+
packaging_packageQuantity?: string | null;
|
|
13315
|
+
packaging_dimensions_length?: string | null;
|
|
13316
|
+
packaging_dimensions_width?: string | null;
|
|
13317
|
+
packaging_dimensions_height?: string | null;
|
|
13318
|
+
packaging_dimensions_unit?: string | null;
|
|
13319
|
+
packaging_weight_value?: string | null;
|
|
13320
|
+
packaging_weight_unit?: string | null;
|
|
13321
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
13322
|
+
category?: {
|
|
13323
|
+
__typename?: "ProductV1Category";
|
|
13324
|
+
id: string;
|
|
13325
|
+
name: string;
|
|
13326
|
+
} | null;
|
|
13327
|
+
subCategory?: {
|
|
13328
|
+
__typename?: "ProductV1Category";
|
|
13329
|
+
id: string;
|
|
13330
|
+
name: string;
|
|
13331
|
+
} | null;
|
|
13332
|
+
subCategory2?: {
|
|
13333
|
+
__typename?: "ProductV1Category";
|
|
13334
|
+
id: string;
|
|
13335
|
+
name: string;
|
|
13336
|
+
} | null;
|
|
13337
|
+
tags?: Array<{
|
|
13338
|
+
__typename?: "ProductV1Tag";
|
|
13339
|
+
id: string;
|
|
13340
|
+
name: string;
|
|
13341
|
+
}> | null;
|
|
13342
|
+
sections?: Array<{
|
|
13343
|
+
__typename?: "ProductV1Section";
|
|
13344
|
+
id: string;
|
|
13345
|
+
name: string;
|
|
13346
|
+
}> | null;
|
|
13347
|
+
personalisation?: Array<{
|
|
13348
|
+
__typename?: "ProductV1Personalisation";
|
|
13349
|
+
id: string;
|
|
13350
|
+
name: string;
|
|
13351
|
+
}> | null;
|
|
13352
|
+
visuals_images: Array<{
|
|
13353
|
+
__typename?: "ProductV1Media";
|
|
13354
|
+
id: string;
|
|
13355
|
+
url: string;
|
|
13356
|
+
tag?: string | null;
|
|
13357
|
+
type: ProductV1MediaType;
|
|
13358
|
+
}>;
|
|
13359
|
+
visuals_videos?: Array<{
|
|
13360
|
+
__typename?: "ProductV1Media";
|
|
13361
|
+
id: string;
|
|
13362
|
+
url: string;
|
|
13363
|
+
tag?: string | null;
|
|
13364
|
+
type: ProductV1MediaType;
|
|
13365
|
+
}> | null;
|
|
13366
|
+
};
|
|
13367
|
+
variations?: Array<{
|
|
13368
|
+
__typename?: "ProductV1Variation";
|
|
13369
|
+
id: string;
|
|
13370
|
+
type: string;
|
|
13371
|
+
option: string;
|
|
13372
|
+
}> | null;
|
|
13373
|
+
productV1Seller: {
|
|
13374
|
+
__typename?: "ProductV1Seller";
|
|
13375
|
+
id: string;
|
|
13376
|
+
defaultVersion?: number | null;
|
|
13377
|
+
name?: string | null;
|
|
13378
|
+
description?: string | null;
|
|
13379
|
+
externalUrl?: string | null;
|
|
13380
|
+
tokenId?: string | null;
|
|
13381
|
+
images?: Array<{
|
|
13382
|
+
__typename?: "ProductV1Media";
|
|
13383
|
+
id: string;
|
|
13384
|
+
url: string;
|
|
13385
|
+
tag?: string | null;
|
|
13386
|
+
type: ProductV1MediaType;
|
|
13387
|
+
}> | null;
|
|
13388
|
+
contactLinks?: Array<{
|
|
13389
|
+
__typename?: "ProductV1SellerContactLink";
|
|
13390
|
+
id: string;
|
|
13391
|
+
url: string;
|
|
13392
|
+
tag: string;
|
|
13393
|
+
}> | null;
|
|
13394
|
+
seller: {
|
|
13395
|
+
__typename?: "Seller";
|
|
13396
|
+
id: string;
|
|
13397
|
+
operator: string;
|
|
13398
|
+
admin: string;
|
|
13399
|
+
clerk: string;
|
|
13400
|
+
treasury: string;
|
|
13401
|
+
authTokenId: string;
|
|
13402
|
+
authTokenType: number;
|
|
13403
|
+
voucherCloneAddress: string;
|
|
13404
|
+
active: boolean;
|
|
13405
|
+
};
|
|
13406
|
+
};
|
|
13407
|
+
exchangePolicy: {
|
|
13408
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
13409
|
+
id: string;
|
|
13410
|
+
uuid: string;
|
|
13411
|
+
version: number;
|
|
13412
|
+
label?: string | null;
|
|
13413
|
+
template: string;
|
|
13414
|
+
};
|
|
13415
|
+
shipping?: {
|
|
13416
|
+
__typename?: "ProductV1ShippingOption";
|
|
13417
|
+
id: string;
|
|
13418
|
+
defaultVersion?: number | null;
|
|
13419
|
+
countryOfOrigin?: string | null;
|
|
13420
|
+
redemptionPoint?: string | null;
|
|
13421
|
+
supportedJurisdictions?: Array<{
|
|
13422
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
13423
|
+
id: string;
|
|
13424
|
+
label: string;
|
|
13425
|
+
deliveryTime: string;
|
|
13426
|
+
}> | null;
|
|
13427
|
+
} | null;
|
|
10198
13428
|
}
|
|
10199
13429
|
| null;
|
|
10200
13430
|
} | null;
|
|
@@ -10319,11 +13549,161 @@ export type GetOffersQueryQuery = {
|
|
|
10319
13549
|
}
|
|
10320
13550
|
| {
|
|
10321
13551
|
__typename?: "ProductV1MetadataEntity";
|
|
13552
|
+
image: string;
|
|
13553
|
+
createdAt: string;
|
|
13554
|
+
voided: boolean;
|
|
13555
|
+
validFromDate: string;
|
|
13556
|
+
validUntilDate: string;
|
|
13557
|
+
quantityAvailable: string;
|
|
13558
|
+
uuid: string;
|
|
10322
13559
|
name: string;
|
|
10323
13560
|
description: string;
|
|
10324
13561
|
externalUrl: string;
|
|
10325
13562
|
schemaUrl: string;
|
|
10326
13563
|
type: MetadataType;
|
|
13564
|
+
attributes?: Array<{
|
|
13565
|
+
__typename?: "MetadataAttribute";
|
|
13566
|
+
traitType: string;
|
|
13567
|
+
value: string;
|
|
13568
|
+
displayType: string;
|
|
13569
|
+
}> | null;
|
|
13570
|
+
product: {
|
|
13571
|
+
__typename?: "ProductV1Product";
|
|
13572
|
+
id: string;
|
|
13573
|
+
uuid: string;
|
|
13574
|
+
version: number;
|
|
13575
|
+
title: string;
|
|
13576
|
+
description: string;
|
|
13577
|
+
identification_sKU?: string | null;
|
|
13578
|
+
identification_productId?: string | null;
|
|
13579
|
+
identification_productIdType?: string | null;
|
|
13580
|
+
productionInformation_brandName: string;
|
|
13581
|
+
productionInformation_manufacturer?: string | null;
|
|
13582
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
13583
|
+
productionInformation_modelNumber?: string | null;
|
|
13584
|
+
productionInformation_materials?: Array<string> | null;
|
|
13585
|
+
details_category?: string | null;
|
|
13586
|
+
details_subCategory?: string | null;
|
|
13587
|
+
details_subCategory2?: string | null;
|
|
13588
|
+
details_offerCategory: string;
|
|
13589
|
+
offerCategory: ProductV1OfferCategory;
|
|
13590
|
+
details_tags?: Array<string> | null;
|
|
13591
|
+
details_sections?: Array<string> | null;
|
|
13592
|
+
details_personalisation?: Array<string> | null;
|
|
13593
|
+
packaging_packageQuantity?: string | null;
|
|
13594
|
+
packaging_dimensions_length?: string | null;
|
|
13595
|
+
packaging_dimensions_width?: string | null;
|
|
13596
|
+
packaging_dimensions_height?: string | null;
|
|
13597
|
+
packaging_dimensions_unit?: string | null;
|
|
13598
|
+
packaging_weight_value?: string | null;
|
|
13599
|
+
packaging_weight_unit?: string | null;
|
|
13600
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
13601
|
+
category?: {
|
|
13602
|
+
__typename?: "ProductV1Category";
|
|
13603
|
+
id: string;
|
|
13604
|
+
name: string;
|
|
13605
|
+
} | null;
|
|
13606
|
+
subCategory?: {
|
|
13607
|
+
__typename?: "ProductV1Category";
|
|
13608
|
+
id: string;
|
|
13609
|
+
name: string;
|
|
13610
|
+
} | null;
|
|
13611
|
+
subCategory2?: {
|
|
13612
|
+
__typename?: "ProductV1Category";
|
|
13613
|
+
id: string;
|
|
13614
|
+
name: string;
|
|
13615
|
+
} | null;
|
|
13616
|
+
tags?: Array<{
|
|
13617
|
+
__typename?: "ProductV1Tag";
|
|
13618
|
+
id: string;
|
|
13619
|
+
name: string;
|
|
13620
|
+
}> | null;
|
|
13621
|
+
sections?: Array<{
|
|
13622
|
+
__typename?: "ProductV1Section";
|
|
13623
|
+
id: string;
|
|
13624
|
+
name: string;
|
|
13625
|
+
}> | null;
|
|
13626
|
+
personalisation?: Array<{
|
|
13627
|
+
__typename?: "ProductV1Personalisation";
|
|
13628
|
+
id: string;
|
|
13629
|
+
name: string;
|
|
13630
|
+
}> | null;
|
|
13631
|
+
visuals_images: Array<{
|
|
13632
|
+
__typename?: "ProductV1Media";
|
|
13633
|
+
id: string;
|
|
13634
|
+
url: string;
|
|
13635
|
+
tag?: string | null;
|
|
13636
|
+
type: ProductV1MediaType;
|
|
13637
|
+
}>;
|
|
13638
|
+
visuals_videos?: Array<{
|
|
13639
|
+
__typename?: "ProductV1Media";
|
|
13640
|
+
id: string;
|
|
13641
|
+
url: string;
|
|
13642
|
+
tag?: string | null;
|
|
13643
|
+
type: ProductV1MediaType;
|
|
13644
|
+
}> | null;
|
|
13645
|
+
};
|
|
13646
|
+
variations?: Array<{
|
|
13647
|
+
__typename?: "ProductV1Variation";
|
|
13648
|
+
id: string;
|
|
13649
|
+
type: string;
|
|
13650
|
+
option: string;
|
|
13651
|
+
}> | null;
|
|
13652
|
+
productV1Seller: {
|
|
13653
|
+
__typename?: "ProductV1Seller";
|
|
13654
|
+
id: string;
|
|
13655
|
+
defaultVersion?: number | null;
|
|
13656
|
+
name?: string | null;
|
|
13657
|
+
description?: string | null;
|
|
13658
|
+
externalUrl?: string | null;
|
|
13659
|
+
tokenId?: string | null;
|
|
13660
|
+
images?: Array<{
|
|
13661
|
+
__typename?: "ProductV1Media";
|
|
13662
|
+
id: string;
|
|
13663
|
+
url: string;
|
|
13664
|
+
tag?: string | null;
|
|
13665
|
+
type: ProductV1MediaType;
|
|
13666
|
+
}> | null;
|
|
13667
|
+
contactLinks?: Array<{
|
|
13668
|
+
__typename?: "ProductV1SellerContactLink";
|
|
13669
|
+
id: string;
|
|
13670
|
+
url: string;
|
|
13671
|
+
tag: string;
|
|
13672
|
+
}> | null;
|
|
13673
|
+
seller: {
|
|
13674
|
+
__typename?: "Seller";
|
|
13675
|
+
id: string;
|
|
13676
|
+
operator: string;
|
|
13677
|
+
admin: string;
|
|
13678
|
+
clerk: string;
|
|
13679
|
+
treasury: string;
|
|
13680
|
+
authTokenId: string;
|
|
13681
|
+
authTokenType: number;
|
|
13682
|
+
voucherCloneAddress: string;
|
|
13683
|
+
active: boolean;
|
|
13684
|
+
};
|
|
13685
|
+
};
|
|
13686
|
+
exchangePolicy: {
|
|
13687
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
13688
|
+
id: string;
|
|
13689
|
+
uuid: string;
|
|
13690
|
+
version: number;
|
|
13691
|
+
label?: string | null;
|
|
13692
|
+
template: string;
|
|
13693
|
+
};
|
|
13694
|
+
shipping?: {
|
|
13695
|
+
__typename?: "ProductV1ShippingOption";
|
|
13696
|
+
id: string;
|
|
13697
|
+
defaultVersion?: number | null;
|
|
13698
|
+
countryOfOrigin?: string | null;
|
|
13699
|
+
redemptionPoint?: string | null;
|
|
13700
|
+
supportedJurisdictions?: Array<{
|
|
13701
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
13702
|
+
id: string;
|
|
13703
|
+
label: string;
|
|
13704
|
+
deliveryTime: string;
|
|
13705
|
+
}> | null;
|
|
13706
|
+
} | null;
|
|
10327
13707
|
}
|
|
10328
13708
|
| null;
|
|
10329
13709
|
}>;
|
|
@@ -10432,11 +13812,161 @@ export type OfferFieldsFragment = {
|
|
|
10432
13812
|
}
|
|
10433
13813
|
| {
|
|
10434
13814
|
__typename?: "ProductV1MetadataEntity";
|
|
13815
|
+
image: string;
|
|
13816
|
+
createdAt: string;
|
|
13817
|
+
voided: boolean;
|
|
13818
|
+
validFromDate: string;
|
|
13819
|
+
validUntilDate: string;
|
|
13820
|
+
quantityAvailable: string;
|
|
13821
|
+
uuid: string;
|
|
10435
13822
|
name: string;
|
|
10436
13823
|
description: string;
|
|
10437
13824
|
externalUrl: string;
|
|
10438
13825
|
schemaUrl: string;
|
|
10439
13826
|
type: MetadataType;
|
|
13827
|
+
attributes?: Array<{
|
|
13828
|
+
__typename?: "MetadataAttribute";
|
|
13829
|
+
traitType: string;
|
|
13830
|
+
value: string;
|
|
13831
|
+
displayType: string;
|
|
13832
|
+
}> | null;
|
|
13833
|
+
product: {
|
|
13834
|
+
__typename?: "ProductV1Product";
|
|
13835
|
+
id: string;
|
|
13836
|
+
uuid: string;
|
|
13837
|
+
version: number;
|
|
13838
|
+
title: string;
|
|
13839
|
+
description: string;
|
|
13840
|
+
identification_sKU?: string | null;
|
|
13841
|
+
identification_productId?: string | null;
|
|
13842
|
+
identification_productIdType?: string | null;
|
|
13843
|
+
productionInformation_brandName: string;
|
|
13844
|
+
productionInformation_manufacturer?: string | null;
|
|
13845
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
13846
|
+
productionInformation_modelNumber?: string | null;
|
|
13847
|
+
productionInformation_materials?: Array<string> | null;
|
|
13848
|
+
details_category?: string | null;
|
|
13849
|
+
details_subCategory?: string | null;
|
|
13850
|
+
details_subCategory2?: string | null;
|
|
13851
|
+
details_offerCategory: string;
|
|
13852
|
+
offerCategory: ProductV1OfferCategory;
|
|
13853
|
+
details_tags?: Array<string> | null;
|
|
13854
|
+
details_sections?: Array<string> | null;
|
|
13855
|
+
details_personalisation?: Array<string> | null;
|
|
13856
|
+
packaging_packageQuantity?: string | null;
|
|
13857
|
+
packaging_dimensions_length?: string | null;
|
|
13858
|
+
packaging_dimensions_width?: string | null;
|
|
13859
|
+
packaging_dimensions_height?: string | null;
|
|
13860
|
+
packaging_dimensions_unit?: string | null;
|
|
13861
|
+
packaging_weight_value?: string | null;
|
|
13862
|
+
packaging_weight_unit?: string | null;
|
|
13863
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
13864
|
+
category?: {
|
|
13865
|
+
__typename?: "ProductV1Category";
|
|
13866
|
+
id: string;
|
|
13867
|
+
name: string;
|
|
13868
|
+
} | null;
|
|
13869
|
+
subCategory?: {
|
|
13870
|
+
__typename?: "ProductV1Category";
|
|
13871
|
+
id: string;
|
|
13872
|
+
name: string;
|
|
13873
|
+
} | null;
|
|
13874
|
+
subCategory2?: {
|
|
13875
|
+
__typename?: "ProductV1Category";
|
|
13876
|
+
id: string;
|
|
13877
|
+
name: string;
|
|
13878
|
+
} | null;
|
|
13879
|
+
tags?: Array<{
|
|
13880
|
+
__typename?: "ProductV1Tag";
|
|
13881
|
+
id: string;
|
|
13882
|
+
name: string;
|
|
13883
|
+
}> | null;
|
|
13884
|
+
sections?: Array<{
|
|
13885
|
+
__typename?: "ProductV1Section";
|
|
13886
|
+
id: string;
|
|
13887
|
+
name: string;
|
|
13888
|
+
}> | null;
|
|
13889
|
+
personalisation?: Array<{
|
|
13890
|
+
__typename?: "ProductV1Personalisation";
|
|
13891
|
+
id: string;
|
|
13892
|
+
name: string;
|
|
13893
|
+
}> | null;
|
|
13894
|
+
visuals_images: Array<{
|
|
13895
|
+
__typename?: "ProductV1Media";
|
|
13896
|
+
id: string;
|
|
13897
|
+
url: string;
|
|
13898
|
+
tag?: string | null;
|
|
13899
|
+
type: ProductV1MediaType;
|
|
13900
|
+
}>;
|
|
13901
|
+
visuals_videos?: Array<{
|
|
13902
|
+
__typename?: "ProductV1Media";
|
|
13903
|
+
id: string;
|
|
13904
|
+
url: string;
|
|
13905
|
+
tag?: string | null;
|
|
13906
|
+
type: ProductV1MediaType;
|
|
13907
|
+
}> | null;
|
|
13908
|
+
};
|
|
13909
|
+
variations?: Array<{
|
|
13910
|
+
__typename?: "ProductV1Variation";
|
|
13911
|
+
id: string;
|
|
13912
|
+
type: string;
|
|
13913
|
+
option: string;
|
|
13914
|
+
}> | null;
|
|
13915
|
+
productV1Seller: {
|
|
13916
|
+
__typename?: "ProductV1Seller";
|
|
13917
|
+
id: string;
|
|
13918
|
+
defaultVersion?: number | null;
|
|
13919
|
+
name?: string | null;
|
|
13920
|
+
description?: string | null;
|
|
13921
|
+
externalUrl?: string | null;
|
|
13922
|
+
tokenId?: string | null;
|
|
13923
|
+
images?: Array<{
|
|
13924
|
+
__typename?: "ProductV1Media";
|
|
13925
|
+
id: string;
|
|
13926
|
+
url: string;
|
|
13927
|
+
tag?: string | null;
|
|
13928
|
+
type: ProductV1MediaType;
|
|
13929
|
+
}> | null;
|
|
13930
|
+
contactLinks?: Array<{
|
|
13931
|
+
__typename?: "ProductV1SellerContactLink";
|
|
13932
|
+
id: string;
|
|
13933
|
+
url: string;
|
|
13934
|
+
tag: string;
|
|
13935
|
+
}> | null;
|
|
13936
|
+
seller: {
|
|
13937
|
+
__typename?: "Seller";
|
|
13938
|
+
id: string;
|
|
13939
|
+
operator: string;
|
|
13940
|
+
admin: string;
|
|
13941
|
+
clerk: string;
|
|
13942
|
+
treasury: string;
|
|
13943
|
+
authTokenId: string;
|
|
13944
|
+
authTokenType: number;
|
|
13945
|
+
voucherCloneAddress: string;
|
|
13946
|
+
active: boolean;
|
|
13947
|
+
};
|
|
13948
|
+
};
|
|
13949
|
+
exchangePolicy: {
|
|
13950
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
13951
|
+
id: string;
|
|
13952
|
+
uuid: string;
|
|
13953
|
+
version: number;
|
|
13954
|
+
label?: string | null;
|
|
13955
|
+
template: string;
|
|
13956
|
+
};
|
|
13957
|
+
shipping?: {
|
|
13958
|
+
__typename?: "ProductV1ShippingOption";
|
|
13959
|
+
id: string;
|
|
13960
|
+
defaultVersion?: number | null;
|
|
13961
|
+
countryOfOrigin?: string | null;
|
|
13962
|
+
redemptionPoint?: string | null;
|
|
13963
|
+
supportedJurisdictions?: Array<{
|
|
13964
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
13965
|
+
id: string;
|
|
13966
|
+
label: string;
|
|
13967
|
+
deliveryTime: string;
|
|
13968
|
+
}> | null;
|
|
13969
|
+
} | null;
|
|
10440
13970
|
}
|
|
10441
13971
|
| null;
|
|
10442
13972
|
};
|
|
@@ -10530,11 +14060,161 @@ export type BaseOfferFieldsFragment = {
|
|
|
10530
14060
|
}
|
|
10531
14061
|
| {
|
|
10532
14062
|
__typename?: "ProductV1MetadataEntity";
|
|
14063
|
+
image: string;
|
|
14064
|
+
createdAt: string;
|
|
14065
|
+
voided: boolean;
|
|
14066
|
+
validFromDate: string;
|
|
14067
|
+
validUntilDate: string;
|
|
14068
|
+
quantityAvailable: string;
|
|
14069
|
+
uuid: string;
|
|
10533
14070
|
name: string;
|
|
10534
14071
|
description: string;
|
|
10535
14072
|
externalUrl: string;
|
|
10536
14073
|
schemaUrl: string;
|
|
10537
14074
|
type: MetadataType;
|
|
14075
|
+
attributes?: Array<{
|
|
14076
|
+
__typename?: "MetadataAttribute";
|
|
14077
|
+
traitType: string;
|
|
14078
|
+
value: string;
|
|
14079
|
+
displayType: string;
|
|
14080
|
+
}> | null;
|
|
14081
|
+
product: {
|
|
14082
|
+
__typename?: "ProductV1Product";
|
|
14083
|
+
id: string;
|
|
14084
|
+
uuid: string;
|
|
14085
|
+
version: number;
|
|
14086
|
+
title: string;
|
|
14087
|
+
description: string;
|
|
14088
|
+
identification_sKU?: string | null;
|
|
14089
|
+
identification_productId?: string | null;
|
|
14090
|
+
identification_productIdType?: string | null;
|
|
14091
|
+
productionInformation_brandName: string;
|
|
14092
|
+
productionInformation_manufacturer?: string | null;
|
|
14093
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
14094
|
+
productionInformation_modelNumber?: string | null;
|
|
14095
|
+
productionInformation_materials?: Array<string> | null;
|
|
14096
|
+
details_category?: string | null;
|
|
14097
|
+
details_subCategory?: string | null;
|
|
14098
|
+
details_subCategory2?: string | null;
|
|
14099
|
+
details_offerCategory: string;
|
|
14100
|
+
offerCategory: ProductV1OfferCategory;
|
|
14101
|
+
details_tags?: Array<string> | null;
|
|
14102
|
+
details_sections?: Array<string> | null;
|
|
14103
|
+
details_personalisation?: Array<string> | null;
|
|
14104
|
+
packaging_packageQuantity?: string | null;
|
|
14105
|
+
packaging_dimensions_length?: string | null;
|
|
14106
|
+
packaging_dimensions_width?: string | null;
|
|
14107
|
+
packaging_dimensions_height?: string | null;
|
|
14108
|
+
packaging_dimensions_unit?: string | null;
|
|
14109
|
+
packaging_weight_value?: string | null;
|
|
14110
|
+
packaging_weight_unit?: string | null;
|
|
14111
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
14112
|
+
category?: {
|
|
14113
|
+
__typename?: "ProductV1Category";
|
|
14114
|
+
id: string;
|
|
14115
|
+
name: string;
|
|
14116
|
+
} | null;
|
|
14117
|
+
subCategory?: {
|
|
14118
|
+
__typename?: "ProductV1Category";
|
|
14119
|
+
id: string;
|
|
14120
|
+
name: string;
|
|
14121
|
+
} | null;
|
|
14122
|
+
subCategory2?: {
|
|
14123
|
+
__typename?: "ProductV1Category";
|
|
14124
|
+
id: string;
|
|
14125
|
+
name: string;
|
|
14126
|
+
} | null;
|
|
14127
|
+
tags?: Array<{
|
|
14128
|
+
__typename?: "ProductV1Tag";
|
|
14129
|
+
id: string;
|
|
14130
|
+
name: string;
|
|
14131
|
+
}> | null;
|
|
14132
|
+
sections?: Array<{
|
|
14133
|
+
__typename?: "ProductV1Section";
|
|
14134
|
+
id: string;
|
|
14135
|
+
name: string;
|
|
14136
|
+
}> | null;
|
|
14137
|
+
personalisation?: Array<{
|
|
14138
|
+
__typename?: "ProductV1Personalisation";
|
|
14139
|
+
id: string;
|
|
14140
|
+
name: string;
|
|
14141
|
+
}> | null;
|
|
14142
|
+
visuals_images: Array<{
|
|
14143
|
+
__typename?: "ProductV1Media";
|
|
14144
|
+
id: string;
|
|
14145
|
+
url: string;
|
|
14146
|
+
tag?: string | null;
|
|
14147
|
+
type: ProductV1MediaType;
|
|
14148
|
+
}>;
|
|
14149
|
+
visuals_videos?: Array<{
|
|
14150
|
+
__typename?: "ProductV1Media";
|
|
14151
|
+
id: string;
|
|
14152
|
+
url: string;
|
|
14153
|
+
tag?: string | null;
|
|
14154
|
+
type: ProductV1MediaType;
|
|
14155
|
+
}> | null;
|
|
14156
|
+
};
|
|
14157
|
+
variations?: Array<{
|
|
14158
|
+
__typename?: "ProductV1Variation";
|
|
14159
|
+
id: string;
|
|
14160
|
+
type: string;
|
|
14161
|
+
option: string;
|
|
14162
|
+
}> | null;
|
|
14163
|
+
productV1Seller: {
|
|
14164
|
+
__typename?: "ProductV1Seller";
|
|
14165
|
+
id: string;
|
|
14166
|
+
defaultVersion?: number | null;
|
|
14167
|
+
name?: string | null;
|
|
14168
|
+
description?: string | null;
|
|
14169
|
+
externalUrl?: string | null;
|
|
14170
|
+
tokenId?: string | null;
|
|
14171
|
+
images?: Array<{
|
|
14172
|
+
__typename?: "ProductV1Media";
|
|
14173
|
+
id: string;
|
|
14174
|
+
url: string;
|
|
14175
|
+
tag?: string | null;
|
|
14176
|
+
type: ProductV1MediaType;
|
|
14177
|
+
}> | null;
|
|
14178
|
+
contactLinks?: Array<{
|
|
14179
|
+
__typename?: "ProductV1SellerContactLink";
|
|
14180
|
+
id: string;
|
|
14181
|
+
url: string;
|
|
14182
|
+
tag: string;
|
|
14183
|
+
}> | null;
|
|
14184
|
+
seller: {
|
|
14185
|
+
__typename?: "Seller";
|
|
14186
|
+
id: string;
|
|
14187
|
+
operator: string;
|
|
14188
|
+
admin: string;
|
|
14189
|
+
clerk: string;
|
|
14190
|
+
treasury: string;
|
|
14191
|
+
authTokenId: string;
|
|
14192
|
+
authTokenType: number;
|
|
14193
|
+
voucherCloneAddress: string;
|
|
14194
|
+
active: boolean;
|
|
14195
|
+
};
|
|
14196
|
+
};
|
|
14197
|
+
exchangePolicy: {
|
|
14198
|
+
__typename?: "ProductV1ExchangePolicy";
|
|
14199
|
+
id: string;
|
|
14200
|
+
uuid: string;
|
|
14201
|
+
version: number;
|
|
14202
|
+
label?: string | null;
|
|
14203
|
+
template: string;
|
|
14204
|
+
};
|
|
14205
|
+
shipping?: {
|
|
14206
|
+
__typename?: "ProductV1ShippingOption";
|
|
14207
|
+
id: string;
|
|
14208
|
+
defaultVersion?: number | null;
|
|
14209
|
+
countryOfOrigin?: string | null;
|
|
14210
|
+
redemptionPoint?: string | null;
|
|
14211
|
+
supportedJurisdictions?: Array<{
|
|
14212
|
+
__typename?: "ProductV1ShippingJurisdiction";
|
|
14213
|
+
id: string;
|
|
14214
|
+
label: string;
|
|
14215
|
+
deliveryTime: string;
|
|
14216
|
+
}> | null;
|
|
14217
|
+
} | null;
|
|
10538
14218
|
}
|
|
10539
14219
|
| null;
|
|
10540
14220
|
};
|
|
@@ -10616,6 +14296,173 @@ export const BaseDisputeResolutionTermsEntityFieldsFragmentDoc = gql`
|
|
|
10616
14296
|
buyerEscalationDeposit
|
|
10617
14297
|
}
|
|
10618
14298
|
`;
|
|
14299
|
+
export const BaseProductV1BrandFieldsFragmentDoc = gql`
|
|
14300
|
+
fragment BaseProductV1BrandFields on ProductV1Brand {
|
|
14301
|
+
id
|
|
14302
|
+
name
|
|
14303
|
+
}
|
|
14304
|
+
`;
|
|
14305
|
+
export const BaseProductV1CategoryFieldsFragmentDoc = gql`
|
|
14306
|
+
fragment BaseProductV1CategoryFields on ProductV1Category {
|
|
14307
|
+
id
|
|
14308
|
+
name
|
|
14309
|
+
}
|
|
14310
|
+
`;
|
|
14311
|
+
export const BaseProductV1TagFieldsFragmentDoc = gql`
|
|
14312
|
+
fragment BaseProductV1TagFields on ProductV1Tag {
|
|
14313
|
+
id
|
|
14314
|
+
name
|
|
14315
|
+
}
|
|
14316
|
+
`;
|
|
14317
|
+
export const BaseProductV1SectionFieldsFragmentDoc = gql`
|
|
14318
|
+
fragment BaseProductV1SectionFields on ProductV1Section {
|
|
14319
|
+
id
|
|
14320
|
+
name
|
|
14321
|
+
}
|
|
14322
|
+
`;
|
|
14323
|
+
export const BaseProductV1PersonalisationFieldsFragmentDoc = gql`
|
|
14324
|
+
fragment BaseProductV1PersonalisationFields on ProductV1Personalisation {
|
|
14325
|
+
id
|
|
14326
|
+
name
|
|
14327
|
+
}
|
|
14328
|
+
`;
|
|
14329
|
+
export const BaseProductV1MediaFieldsFragmentDoc = gql`
|
|
14330
|
+
fragment BaseProductV1MediaFields on ProductV1Media {
|
|
14331
|
+
id
|
|
14332
|
+
url
|
|
14333
|
+
tag
|
|
14334
|
+
type
|
|
14335
|
+
}
|
|
14336
|
+
`;
|
|
14337
|
+
export const BaseProductV1ProductFieldsFragmentDoc = gql`
|
|
14338
|
+
fragment BaseProductV1ProductFields on ProductV1Product {
|
|
14339
|
+
id
|
|
14340
|
+
uuid
|
|
14341
|
+
version
|
|
14342
|
+
title
|
|
14343
|
+
description
|
|
14344
|
+
identification_sKU
|
|
14345
|
+
identification_productId
|
|
14346
|
+
identification_productIdType
|
|
14347
|
+
productionInformation_brandName
|
|
14348
|
+
brand {
|
|
14349
|
+
...BaseProductV1BrandFields
|
|
14350
|
+
}
|
|
14351
|
+
productionInformation_manufacturer
|
|
14352
|
+
productionInformation_manufacturerPartNumber
|
|
14353
|
+
productionInformation_modelNumber
|
|
14354
|
+
productionInformation_materials
|
|
14355
|
+
details_category
|
|
14356
|
+
category {
|
|
14357
|
+
...BaseProductV1CategoryFields
|
|
14358
|
+
}
|
|
14359
|
+
details_subCategory
|
|
14360
|
+
subCategory {
|
|
14361
|
+
...BaseProductV1CategoryFields
|
|
14362
|
+
}
|
|
14363
|
+
details_subCategory2
|
|
14364
|
+
subCategory2 {
|
|
14365
|
+
...BaseProductV1CategoryFields
|
|
14366
|
+
}
|
|
14367
|
+
details_offerCategory
|
|
14368
|
+
offerCategory
|
|
14369
|
+
details_tags
|
|
14370
|
+
tags {
|
|
14371
|
+
...BaseProductV1TagFields
|
|
14372
|
+
}
|
|
14373
|
+
details_sections
|
|
14374
|
+
sections {
|
|
14375
|
+
...BaseProductV1SectionFields
|
|
14376
|
+
}
|
|
14377
|
+
details_personalisation
|
|
14378
|
+
personalisation {
|
|
14379
|
+
...BaseProductV1PersonalisationFields
|
|
14380
|
+
}
|
|
14381
|
+
visuals_images {
|
|
14382
|
+
...BaseProductV1MediaFields
|
|
14383
|
+
}
|
|
14384
|
+
visuals_videos {
|
|
14385
|
+
...BaseProductV1MediaFields
|
|
14386
|
+
}
|
|
14387
|
+
packaging_packageQuantity
|
|
14388
|
+
packaging_dimensions_length
|
|
14389
|
+
packaging_dimensions_width
|
|
14390
|
+
packaging_dimensions_height
|
|
14391
|
+
packaging_dimensions_unit
|
|
14392
|
+
packaging_weight_value
|
|
14393
|
+
packaging_weight_unit
|
|
14394
|
+
}
|
|
14395
|
+
${BaseProductV1BrandFieldsFragmentDoc}
|
|
14396
|
+
${BaseProductV1CategoryFieldsFragmentDoc}
|
|
14397
|
+
${BaseProductV1TagFieldsFragmentDoc}
|
|
14398
|
+
${BaseProductV1SectionFieldsFragmentDoc}
|
|
14399
|
+
${BaseProductV1PersonalisationFieldsFragmentDoc}
|
|
14400
|
+
${BaseProductV1MediaFieldsFragmentDoc}
|
|
14401
|
+
`;
|
|
14402
|
+
export const BaseProductV1VariationFieldsFragmentDoc = gql`
|
|
14403
|
+
fragment BaseProductV1VariationFields on ProductV1Variation {
|
|
14404
|
+
id
|
|
14405
|
+
type
|
|
14406
|
+
option
|
|
14407
|
+
}
|
|
14408
|
+
`;
|
|
14409
|
+
export const BaseProductV1SellerContactLinkFieldsFragmentDoc = gql`
|
|
14410
|
+
fragment BaseProductV1SellerContactLinkFields on ProductV1SellerContactLink {
|
|
14411
|
+
id
|
|
14412
|
+
url
|
|
14413
|
+
tag
|
|
14414
|
+
}
|
|
14415
|
+
`;
|
|
14416
|
+
export const BaseProductV1SellerFieldsFragmentDoc = gql`
|
|
14417
|
+
fragment BaseProductV1SellerFields on ProductV1Seller {
|
|
14418
|
+
id
|
|
14419
|
+
defaultVersion
|
|
14420
|
+
name
|
|
14421
|
+
description
|
|
14422
|
+
externalUrl
|
|
14423
|
+
tokenId
|
|
14424
|
+
images {
|
|
14425
|
+
...BaseProductV1MediaFields
|
|
14426
|
+
}
|
|
14427
|
+
contactLinks {
|
|
14428
|
+
...BaseProductV1SellerContactLinkFields
|
|
14429
|
+
}
|
|
14430
|
+
seller {
|
|
14431
|
+
...BaseSellerFields
|
|
14432
|
+
}
|
|
14433
|
+
}
|
|
14434
|
+
${BaseProductV1MediaFieldsFragmentDoc}
|
|
14435
|
+
${BaseProductV1SellerContactLinkFieldsFragmentDoc}
|
|
14436
|
+
${BaseSellerFieldsFragmentDoc}
|
|
14437
|
+
`;
|
|
14438
|
+
export const BaseProductV1ExchangePolicyFieldsFragmentDoc = gql`
|
|
14439
|
+
fragment BaseProductV1ExchangePolicyFields on ProductV1ExchangePolicy {
|
|
14440
|
+
id
|
|
14441
|
+
uuid
|
|
14442
|
+
version
|
|
14443
|
+
label
|
|
14444
|
+
template
|
|
14445
|
+
}
|
|
14446
|
+
`;
|
|
14447
|
+
export const BaseProductV1ShippingJurisdictionFieldsFragmentDoc = gql`
|
|
14448
|
+
fragment BaseProductV1ShippingJurisdictionFields on ProductV1ShippingJurisdiction {
|
|
14449
|
+
id
|
|
14450
|
+
label
|
|
14451
|
+
deliveryTime
|
|
14452
|
+
}
|
|
14453
|
+
`;
|
|
14454
|
+
export const BaseProductV1ShippingOptionFieldsFragmentDoc = gql`
|
|
14455
|
+
fragment BaseProductV1ShippingOptionFields on ProductV1ShippingOption {
|
|
14456
|
+
id
|
|
14457
|
+
defaultVersion
|
|
14458
|
+
countryOfOrigin
|
|
14459
|
+
supportedJurisdictions {
|
|
14460
|
+
...BaseProductV1ShippingJurisdictionFields
|
|
14461
|
+
}
|
|
14462
|
+
redemptionPoint
|
|
14463
|
+
}
|
|
14464
|
+
${BaseProductV1ShippingJurisdictionFieldsFragmentDoc}
|
|
14465
|
+
`;
|
|
10619
14466
|
export const BaseOfferFieldsFragmentDoc = gql`
|
|
10620
14467
|
fragment BaseOfferFields on Offer {
|
|
10621
14468
|
id
|
|
@@ -10657,12 +14504,46 @@ export const BaseOfferFieldsFragmentDoc = gql`
|
|
|
10657
14504
|
externalUrl
|
|
10658
14505
|
schemaUrl
|
|
10659
14506
|
type
|
|
14507
|
+
... on ProductV1MetadataEntity {
|
|
14508
|
+
image
|
|
14509
|
+
attributes {
|
|
14510
|
+
traitType
|
|
14511
|
+
value
|
|
14512
|
+
displayType
|
|
14513
|
+
}
|
|
14514
|
+
createdAt
|
|
14515
|
+
voided
|
|
14516
|
+
validFromDate
|
|
14517
|
+
validUntilDate
|
|
14518
|
+
quantityAvailable
|
|
14519
|
+
uuid
|
|
14520
|
+
product {
|
|
14521
|
+
...BaseProductV1ProductFields
|
|
14522
|
+
}
|
|
14523
|
+
variations {
|
|
14524
|
+
...BaseProductV1VariationFields
|
|
14525
|
+
}
|
|
14526
|
+
productV1Seller {
|
|
14527
|
+
...BaseProductV1SellerFields
|
|
14528
|
+
}
|
|
14529
|
+
exchangePolicy {
|
|
14530
|
+
...BaseProductV1ExchangePolicyFields
|
|
14531
|
+
}
|
|
14532
|
+
shipping {
|
|
14533
|
+
...BaseProductV1ShippingOptionFields
|
|
14534
|
+
}
|
|
14535
|
+
}
|
|
10660
14536
|
}
|
|
10661
14537
|
}
|
|
10662
14538
|
${BaseSellerFieldsFragmentDoc}
|
|
10663
14539
|
${BaseExchangeTokenFieldsFragmentDoc}
|
|
10664
14540
|
${BaseDisputeResolverFieldsFragmentDoc}
|
|
10665
14541
|
${BaseDisputeResolutionTermsEntityFieldsFragmentDoc}
|
|
14542
|
+
${BaseProductV1ProductFieldsFragmentDoc}
|
|
14543
|
+
${BaseProductV1VariationFieldsFragmentDoc}
|
|
14544
|
+
${BaseProductV1SellerFieldsFragmentDoc}
|
|
14545
|
+
${BaseProductV1ExchangePolicyFieldsFragmentDoc}
|
|
14546
|
+
${BaseProductV1ShippingOptionFieldsFragmentDoc}
|
|
10666
14547
|
`;
|
|
10667
14548
|
export const BaseExchangeFieldsFragmentDoc = gql`
|
|
10668
14549
|
fragment BaseExchangeFields on Exchange {
|
|
@@ -10878,145 +14759,6 @@ export const BaseMetadataEntityFieldsFragmentDoc = gql`
|
|
|
10878
14759
|
}
|
|
10879
14760
|
${BaseBaseMetadataEntityFieldsFragmentDoc}
|
|
10880
14761
|
`;
|
|
10881
|
-
export const BaseProductV1BrandFieldsFragmentDoc = gql`
|
|
10882
|
-
fragment BaseProductV1BrandFields on ProductV1Brand {
|
|
10883
|
-
id
|
|
10884
|
-
name
|
|
10885
|
-
}
|
|
10886
|
-
`;
|
|
10887
|
-
export const BaseProductV1CategoryFieldsFragmentDoc = gql`
|
|
10888
|
-
fragment BaseProductV1CategoryFields on ProductV1Category {
|
|
10889
|
-
id
|
|
10890
|
-
name
|
|
10891
|
-
}
|
|
10892
|
-
`;
|
|
10893
|
-
export const BaseProductV1TagFieldsFragmentDoc = gql`
|
|
10894
|
-
fragment BaseProductV1TagFields on ProductV1Tag {
|
|
10895
|
-
id
|
|
10896
|
-
name
|
|
10897
|
-
}
|
|
10898
|
-
`;
|
|
10899
|
-
export const BaseProductV1SectionFieldsFragmentDoc = gql`
|
|
10900
|
-
fragment BaseProductV1SectionFields on ProductV1Section {
|
|
10901
|
-
id
|
|
10902
|
-
name
|
|
10903
|
-
}
|
|
10904
|
-
`;
|
|
10905
|
-
export const BaseProductV1PersonalisationFieldsFragmentDoc = gql`
|
|
10906
|
-
fragment BaseProductV1PersonalisationFields on ProductV1Personalisation {
|
|
10907
|
-
id
|
|
10908
|
-
name
|
|
10909
|
-
}
|
|
10910
|
-
`;
|
|
10911
|
-
export const BaseProductV1MediaFieldsFragmentDoc = gql`
|
|
10912
|
-
fragment BaseProductV1MediaFields on ProductV1Media {
|
|
10913
|
-
id
|
|
10914
|
-
url
|
|
10915
|
-
tag
|
|
10916
|
-
type
|
|
10917
|
-
}
|
|
10918
|
-
`;
|
|
10919
|
-
export const BaseProductV1ProductFieldsFragmentDoc = gql`
|
|
10920
|
-
fragment BaseProductV1ProductFields on ProductV1Product {
|
|
10921
|
-
id
|
|
10922
|
-
uuid
|
|
10923
|
-
version
|
|
10924
|
-
title
|
|
10925
|
-
description
|
|
10926
|
-
identification_sKU
|
|
10927
|
-
identification_productId
|
|
10928
|
-
identification_productIdType
|
|
10929
|
-
productionInformation_brandName
|
|
10930
|
-
brand {
|
|
10931
|
-
...BaseProductV1BrandFields
|
|
10932
|
-
}
|
|
10933
|
-
productionInformation_manufacturer
|
|
10934
|
-
productionInformation_manufacturerPartNumber
|
|
10935
|
-
productionInformation_modelNumber
|
|
10936
|
-
productionInformation_materials
|
|
10937
|
-
details_category
|
|
10938
|
-
category {
|
|
10939
|
-
...BaseProductV1CategoryFields
|
|
10940
|
-
}
|
|
10941
|
-
details_subCategory
|
|
10942
|
-
subCategory {
|
|
10943
|
-
...BaseProductV1CategoryFields
|
|
10944
|
-
}
|
|
10945
|
-
details_subCategory2
|
|
10946
|
-
subCategory2 {
|
|
10947
|
-
...BaseProductV1CategoryFields
|
|
10948
|
-
}
|
|
10949
|
-
details_offerCategory
|
|
10950
|
-
offerCategory
|
|
10951
|
-
details_tags
|
|
10952
|
-
tags {
|
|
10953
|
-
...BaseProductV1TagFields
|
|
10954
|
-
}
|
|
10955
|
-
details_sections
|
|
10956
|
-
sections {
|
|
10957
|
-
...BaseProductV1SectionFields
|
|
10958
|
-
}
|
|
10959
|
-
details_personalisation
|
|
10960
|
-
personalisation {
|
|
10961
|
-
...BaseProductV1PersonalisationFields
|
|
10962
|
-
}
|
|
10963
|
-
visuals_images {
|
|
10964
|
-
...BaseProductV1MediaFields
|
|
10965
|
-
}
|
|
10966
|
-
visuals_videos {
|
|
10967
|
-
...BaseProductV1MediaFields
|
|
10968
|
-
}
|
|
10969
|
-
packaging_packageQuantity
|
|
10970
|
-
packaging_dimensions_length
|
|
10971
|
-
packaging_dimensions_width
|
|
10972
|
-
packaging_dimensions_height
|
|
10973
|
-
packaging_dimensions_unit
|
|
10974
|
-
packaging_weight_value
|
|
10975
|
-
packaging_weight_unit
|
|
10976
|
-
}
|
|
10977
|
-
${BaseProductV1BrandFieldsFragmentDoc}
|
|
10978
|
-
${BaseProductV1CategoryFieldsFragmentDoc}
|
|
10979
|
-
${BaseProductV1TagFieldsFragmentDoc}
|
|
10980
|
-
${BaseProductV1SectionFieldsFragmentDoc}
|
|
10981
|
-
${BaseProductV1PersonalisationFieldsFragmentDoc}
|
|
10982
|
-
${BaseProductV1MediaFieldsFragmentDoc}
|
|
10983
|
-
`;
|
|
10984
|
-
export const BaseProductV1VariationFieldsFragmentDoc = gql`
|
|
10985
|
-
fragment BaseProductV1VariationFields on ProductV1Variation {
|
|
10986
|
-
id
|
|
10987
|
-
type
|
|
10988
|
-
option
|
|
10989
|
-
}
|
|
10990
|
-
`;
|
|
10991
|
-
export const BaseProductV1SellerContactLinkFieldsFragmentDoc = gql`
|
|
10992
|
-
fragment BaseProductV1SellerContactLinkFields on ProductV1SellerContactLink {
|
|
10993
|
-
id
|
|
10994
|
-
url
|
|
10995
|
-
tag
|
|
10996
|
-
}
|
|
10997
|
-
`;
|
|
10998
|
-
export const BaseProductV1SellerFieldsFragmentDoc = gql`
|
|
10999
|
-
fragment BaseProductV1SellerFields on ProductV1Seller {
|
|
11000
|
-
id
|
|
11001
|
-
defaultVersion
|
|
11002
|
-
name
|
|
11003
|
-
description
|
|
11004
|
-
externalUrl
|
|
11005
|
-
tokenId
|
|
11006
|
-
images {
|
|
11007
|
-
...BaseProductV1MediaFields
|
|
11008
|
-
}
|
|
11009
|
-
contactLinks {
|
|
11010
|
-
...BaseProductV1SellerContactLinkFields
|
|
11011
|
-
}
|
|
11012
|
-
seller {
|
|
11013
|
-
...BaseSellerFields
|
|
11014
|
-
}
|
|
11015
|
-
}
|
|
11016
|
-
${BaseProductV1MediaFieldsFragmentDoc}
|
|
11017
|
-
${BaseProductV1SellerContactLinkFieldsFragmentDoc}
|
|
11018
|
-
${BaseSellerFieldsFragmentDoc}
|
|
11019
|
-
`;
|
|
11020
14762
|
export const BaseProductV1MetadataEntityFieldsFragmentDoc = gql`
|
|
11021
14763
|
fragment BaseProductV1MetadataEntityFields on ProductV1MetadataEntity {
|
|
11022
14764
|
id
|
|
@@ -11055,6 +14797,9 @@ export const BaseProductV1MetadataEntityFieldsFragmentDoc = gql`
|
|
|
11055
14797
|
productV1Seller {
|
|
11056
14798
|
...BaseProductV1SellerFields
|
|
11057
14799
|
}
|
|
14800
|
+
exchangePolicy {
|
|
14801
|
+
...BaseProductV1ExchangePolicyFields
|
|
14802
|
+
}
|
|
11058
14803
|
}
|
|
11059
14804
|
${BaseOfferFieldsFragmentDoc}
|
|
11060
14805
|
${BaseSellerFieldsFragmentDoc}
|
|
@@ -11062,6 +14807,7 @@ export const BaseProductV1MetadataEntityFieldsFragmentDoc = gql`
|
|
|
11062
14807
|
${BaseProductV1ProductFieldsFragmentDoc}
|
|
11063
14808
|
${BaseProductV1VariationFieldsFragmentDoc}
|
|
11064
14809
|
${BaseProductV1SellerFieldsFragmentDoc}
|
|
14810
|
+
${BaseProductV1ExchangePolicyFieldsFragmentDoc}
|
|
11065
14811
|
`;
|
|
11066
14812
|
export const ProductV1MetadataEntityFieldsFragmentDoc = gql`
|
|
11067
14813
|
fragment ProductV1MetadataEntityFields on ProductV1MetadataEntity {
|
|
@@ -11069,34 +14815,6 @@ export const ProductV1MetadataEntityFieldsFragmentDoc = gql`
|
|
|
11069
14815
|
}
|
|
11070
14816
|
${BaseProductV1MetadataEntityFieldsFragmentDoc}
|
|
11071
14817
|
`;
|
|
11072
|
-
export const BaseProductV1ShippingJurisdictionFieldsFragmentDoc = gql`
|
|
11073
|
-
fragment BaseProductV1ShippingJurisdictionFields on ProductV1ShippingJurisdiction {
|
|
11074
|
-
id
|
|
11075
|
-
label
|
|
11076
|
-
deliveryTime
|
|
11077
|
-
}
|
|
11078
|
-
`;
|
|
11079
|
-
export const BaseProductV1ShippingOptionFieldsFragmentDoc = gql`
|
|
11080
|
-
fragment BaseProductV1ShippingOptionFields on ProductV1ShippingOption {
|
|
11081
|
-
id
|
|
11082
|
-
defaultVersion
|
|
11083
|
-
countryOfOrigin
|
|
11084
|
-
supportedJurisdictions {
|
|
11085
|
-
...BaseProductV1ShippingJurisdictionFields
|
|
11086
|
-
}
|
|
11087
|
-
redemptionPoint
|
|
11088
|
-
}
|
|
11089
|
-
${BaseProductV1ShippingJurisdictionFieldsFragmentDoc}
|
|
11090
|
-
`;
|
|
11091
|
-
export const BaseProductV1ExchangePolicyFieldsFragmentDoc = gql`
|
|
11092
|
-
fragment BaseProductV1ExchangePolicyFields on ProductV1ExchangePolicy {
|
|
11093
|
-
id
|
|
11094
|
-
uuid
|
|
11095
|
-
version
|
|
11096
|
-
label
|
|
11097
|
-
template
|
|
11098
|
-
}
|
|
11099
|
-
`;
|
|
11100
14818
|
export const BaseProductV1ProductOverridesFieldsFragmentDoc = gql`
|
|
11101
14819
|
fragment BaseProductV1ProductOverridesFields on ProductV1ProductOverrides {
|
|
11102
14820
|
id
|