@bosonprotocol/core-sdk 1.12.0-alpha.7 → 1.12.0-alpha.9

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.
Files changed (53) hide show
  1. package/dist/cjs/core-sdk.d.ts +5 -5
  2. package/dist/cjs/core-sdk.d.ts.map +1 -1
  3. package/dist/cjs/core-sdk.js +20 -10
  4. package/dist/cjs/core-sdk.js.map +1 -1
  5. package/dist/cjs/offers/index.d.ts +1 -0
  6. package/dist/cjs/offers/index.d.ts.map +1 -1
  7. package/dist/cjs/offers/index.js +1 -0
  8. package/dist/cjs/offers/index.js.map +1 -1
  9. package/dist/cjs/offers/renderContractualAgreement.d.ts +41 -0
  10. package/dist/cjs/offers/renderContractualAgreement.d.ts.map +1 -0
  11. package/dist/cjs/offers/renderContractualAgreement.js +156 -0
  12. package/dist/cjs/offers/renderContractualAgreement.js.map +1 -0
  13. package/dist/cjs/offers/subgraph.d.ts.map +1 -1
  14. package/dist/cjs/offers/subgraph.js.map +1 -1
  15. package/dist/cjs/subgraph.d.ts +3782 -54
  16. package/dist/cjs/subgraph.d.ts.map +1 -1
  17. package/dist/cjs/subgraph.js +207 -169
  18. package/dist/cjs/subgraph.js.map +1 -1
  19. package/dist/cjs/utils/tokenInfoManager.d.ts +16 -0
  20. package/dist/cjs/utils/tokenInfoManager.d.ts.map +1 -0
  21. package/dist/cjs/utils/tokenInfoManager.js +97 -0
  22. package/dist/cjs/utils/tokenInfoManager.js.map +1 -0
  23. package/dist/esm/core-sdk.d.ts +5 -5
  24. package/dist/esm/core-sdk.d.ts.map +1 -1
  25. package/dist/esm/core-sdk.js +17 -10
  26. package/dist/esm/core-sdk.js.map +1 -1
  27. package/dist/esm/offers/index.d.ts +1 -0
  28. package/dist/esm/offers/index.d.ts.map +1 -1
  29. package/dist/esm/offers/index.js +1 -0
  30. package/dist/esm/offers/index.js.map +1 -1
  31. package/dist/esm/offers/renderContractualAgreement.d.ts +41 -0
  32. package/dist/esm/offers/renderContractualAgreement.d.ts.map +1 -0
  33. package/dist/esm/offers/renderContractualAgreement.js +132 -0
  34. package/dist/esm/offers/renderContractualAgreement.js.map +1 -0
  35. package/dist/esm/offers/subgraph.d.ts.map +1 -1
  36. package/dist/esm/offers/subgraph.js.map +1 -1
  37. package/dist/esm/subgraph.d.ts +3782 -54
  38. package/dist/esm/subgraph.d.ts.map +1 -1
  39. package/dist/esm/subgraph.js +205 -167
  40. package/dist/esm/subgraph.js.map +1 -1
  41. package/dist/esm/utils/tokenInfoManager.d.ts +16 -0
  42. package/dist/esm/utils/tokenInfoManager.d.ts.map +1 -0
  43. package/dist/esm/utils/tokenInfoManager.js +83 -0
  44. package/dist/esm/utils/tokenInfoManager.js.map +1 -0
  45. package/package.json +5 -4
  46. package/src/core-sdk.ts +34 -15
  47. package/src/metadata/product-v1.graphql +3 -0
  48. package/src/offers/index.ts +1 -0
  49. package/src/offers/queries.graphql +29 -0
  50. package/src/offers/renderContractualAgreement.ts +203 -0
  51. package/src/offers/subgraph.ts +0 -1
  52. package/src/subgraph.ts +3885 -167
  53. package/src/utils/tokenInfoManager.ts +97 -0
@@ -5614,11 +5614,165 @@ export declare type GetSellerByIdQueryQuery = {
5614
5614
  type: MetadataType;
5615
5615
  } | {
5616
5616
  __typename?: "ProductV1MetadataEntity";
5617
+ image: string;
5618
+ createdAt: string;
5619
+ voided: boolean;
5620
+ validFromDate: string;
5621
+ validUntilDate: string;
5622
+ quantityAvailable: string;
5623
+ uuid: string;
5617
5624
  name: string;
5618
5625
  description: string;
5619
5626
  externalUrl: string;
5620
5627
  schemaUrl: string;
5621
5628
  type: MetadataType;
5629
+ attributes?: Array<{
5630
+ __typename?: "MetadataAttribute";
5631
+ traitType: string;
5632
+ value: string;
5633
+ displayType: string;
5634
+ }> | null;
5635
+ product: {
5636
+ __typename?: "ProductV1Product";
5637
+ id: string;
5638
+ uuid: string;
5639
+ version: number;
5640
+ title: string;
5641
+ description: string;
5642
+ identification_sKU?: string | null;
5643
+ identification_productId?: string | null;
5644
+ identification_productIdType?: string | null;
5645
+ productionInformation_brandName: string;
5646
+ productionInformation_manufacturer?: string | null;
5647
+ productionInformation_manufacturerPartNumber?: string | null;
5648
+ productionInformation_modelNumber?: string | null;
5649
+ productionInformation_materials?: Array<string> | null;
5650
+ details_category?: string | null;
5651
+ details_subCategory?: string | null;
5652
+ details_subCategory2?: string | null;
5653
+ details_offerCategory: string;
5654
+ offerCategory: ProductV1OfferCategory;
5655
+ details_tags?: Array<string> | null;
5656
+ details_sections?: Array<string> | null;
5657
+ details_personalisation?: Array<string> | null;
5658
+ packaging_packageQuantity?: string | null;
5659
+ packaging_dimensions_length?: string | null;
5660
+ packaging_dimensions_width?: string | null;
5661
+ packaging_dimensions_height?: string | null;
5662
+ packaging_dimensions_unit?: string | null;
5663
+ packaging_weight_value?: string | null;
5664
+ packaging_weight_unit?: string | null;
5665
+ brand: {
5666
+ __typename?: "ProductV1Brand";
5667
+ id: string;
5668
+ name: string;
5669
+ };
5670
+ category?: {
5671
+ __typename?: "ProductV1Category";
5672
+ id: string;
5673
+ name: string;
5674
+ } | null;
5675
+ subCategory?: {
5676
+ __typename?: "ProductV1Category";
5677
+ id: string;
5678
+ name: string;
5679
+ } | null;
5680
+ subCategory2?: {
5681
+ __typename?: "ProductV1Category";
5682
+ id: string;
5683
+ name: string;
5684
+ } | null;
5685
+ tags?: Array<{
5686
+ __typename?: "ProductV1Tag";
5687
+ id: string;
5688
+ name: string;
5689
+ }> | null;
5690
+ sections?: Array<{
5691
+ __typename?: "ProductV1Section";
5692
+ id: string;
5693
+ name: string;
5694
+ }> | null;
5695
+ personalisation?: Array<{
5696
+ __typename?: "ProductV1Personalisation";
5697
+ id: string;
5698
+ name: string;
5699
+ }> | null;
5700
+ visuals_images: Array<{
5701
+ __typename?: "ProductV1Media";
5702
+ id: string;
5703
+ url: string;
5704
+ tag?: string | null;
5705
+ type: ProductV1MediaType;
5706
+ }>;
5707
+ visuals_videos?: Array<{
5708
+ __typename?: "ProductV1Media";
5709
+ id: string;
5710
+ url: string;
5711
+ tag?: string | null;
5712
+ type: ProductV1MediaType;
5713
+ }> | null;
5714
+ };
5715
+ variations?: Array<{
5716
+ __typename?: "ProductV1Variation";
5717
+ id: string;
5718
+ type: string;
5719
+ option: string;
5720
+ }> | null;
5721
+ productV1Seller: {
5722
+ __typename?: "ProductV1Seller";
5723
+ id: string;
5724
+ defaultVersion?: number | null;
5725
+ name?: string | null;
5726
+ description?: string | null;
5727
+ externalUrl?: string | null;
5728
+ tokenId?: string | null;
5729
+ images?: Array<{
5730
+ __typename?: "ProductV1Media";
5731
+ id: string;
5732
+ url: string;
5733
+ tag?: string | null;
5734
+ type: ProductV1MediaType;
5735
+ }> | null;
5736
+ contactLinks?: Array<{
5737
+ __typename?: "ProductV1SellerContactLink";
5738
+ id: string;
5739
+ url: string;
5740
+ tag: string;
5741
+ }> | null;
5742
+ seller: {
5743
+ __typename?: "Seller";
5744
+ id: string;
5745
+ operator: string;
5746
+ admin: string;
5747
+ clerk: string;
5748
+ treasury: string;
5749
+ authTokenId: string;
5750
+ authTokenType: number;
5751
+ voucherCloneAddress: string;
5752
+ active: boolean;
5753
+ };
5754
+ };
5755
+ exchangePolicy: {
5756
+ __typename?: "ProductV1ExchangePolicy";
5757
+ id: string;
5758
+ uuid: string;
5759
+ version: number;
5760
+ label?: string | null;
5761
+ template: string;
5762
+ };
5763
+ shipping?: {
5764
+ __typename?: "ProductV1ShippingOption";
5765
+ id: string;
5766
+ defaultVersion?: number | null;
5767
+ countryOfOrigin?: string | null;
5768
+ redemptionPoint?: string | null;
5769
+ supportedJurisdictions?: Array<{
5770
+ __typename?: "ProductV1ShippingJurisdiction";
5771
+ id: string;
5772
+ label: string;
5773
+ deliveryTime: string;
5774
+ }> | null;
5775
+ } | null;
5622
5776
  } | null;
5623
5777
  }>;
5624
5778
  exchanges?: Array<{
@@ -5776,11 +5930,165 @@ export declare type GetSellersQueryQuery = {
5776
5930
  type: MetadataType;
5777
5931
  } | {
5778
5932
  __typename?: "ProductV1MetadataEntity";
5933
+ image: string;
5934
+ createdAt: string;
5935
+ voided: boolean;
5936
+ validFromDate: string;
5937
+ validUntilDate: string;
5938
+ quantityAvailable: string;
5939
+ uuid: string;
5779
5940
  name: string;
5780
5941
  description: string;
5781
5942
  externalUrl: string;
5782
5943
  schemaUrl: string;
5783
5944
  type: MetadataType;
5945
+ attributes?: Array<{
5946
+ __typename?: "MetadataAttribute";
5947
+ traitType: string;
5948
+ value: string;
5949
+ displayType: string;
5950
+ }> | null;
5951
+ product: {
5952
+ __typename?: "ProductV1Product";
5953
+ id: string;
5954
+ uuid: string;
5955
+ version: number;
5956
+ title: string;
5957
+ description: string;
5958
+ identification_sKU?: string | null;
5959
+ identification_productId?: string | null;
5960
+ identification_productIdType?: string | null;
5961
+ productionInformation_brandName: string;
5962
+ productionInformation_manufacturer?: string | null;
5963
+ productionInformation_manufacturerPartNumber?: string | null;
5964
+ productionInformation_modelNumber?: string | null;
5965
+ productionInformation_materials?: Array<string> | null;
5966
+ details_category?: string | null;
5967
+ details_subCategory?: string | null;
5968
+ details_subCategory2?: string | null;
5969
+ details_offerCategory: string;
5970
+ offerCategory: ProductV1OfferCategory;
5971
+ details_tags?: Array<string> | null;
5972
+ details_sections?: Array<string> | null;
5973
+ details_personalisation?: Array<string> | null;
5974
+ packaging_packageQuantity?: string | null;
5975
+ packaging_dimensions_length?: string | null;
5976
+ packaging_dimensions_width?: string | null;
5977
+ packaging_dimensions_height?: string | null;
5978
+ packaging_dimensions_unit?: string | null;
5979
+ packaging_weight_value?: string | null;
5980
+ packaging_weight_unit?: string | null;
5981
+ brand: {
5982
+ __typename?: "ProductV1Brand";
5983
+ id: string;
5984
+ name: string;
5985
+ };
5986
+ category?: {
5987
+ __typename?: "ProductV1Category";
5988
+ id: string;
5989
+ name: string;
5990
+ } | null;
5991
+ subCategory?: {
5992
+ __typename?: "ProductV1Category";
5993
+ id: string;
5994
+ name: string;
5995
+ } | null;
5996
+ subCategory2?: {
5997
+ __typename?: "ProductV1Category";
5998
+ id: string;
5999
+ name: string;
6000
+ } | null;
6001
+ tags?: Array<{
6002
+ __typename?: "ProductV1Tag";
6003
+ id: string;
6004
+ name: string;
6005
+ }> | null;
6006
+ sections?: Array<{
6007
+ __typename?: "ProductV1Section";
6008
+ id: string;
6009
+ name: string;
6010
+ }> | null;
6011
+ personalisation?: Array<{
6012
+ __typename?: "ProductV1Personalisation";
6013
+ id: string;
6014
+ name: string;
6015
+ }> | null;
6016
+ visuals_images: Array<{
6017
+ __typename?: "ProductV1Media";
6018
+ id: string;
6019
+ url: string;
6020
+ tag?: string | null;
6021
+ type: ProductV1MediaType;
6022
+ }>;
6023
+ visuals_videos?: Array<{
6024
+ __typename?: "ProductV1Media";
6025
+ id: string;
6026
+ url: string;
6027
+ tag?: string | null;
6028
+ type: ProductV1MediaType;
6029
+ }> | null;
6030
+ };
6031
+ variations?: Array<{
6032
+ __typename?: "ProductV1Variation";
6033
+ id: string;
6034
+ type: string;
6035
+ option: string;
6036
+ }> | null;
6037
+ productV1Seller: {
6038
+ __typename?: "ProductV1Seller";
6039
+ id: string;
6040
+ defaultVersion?: number | null;
6041
+ name?: string | null;
6042
+ description?: string | null;
6043
+ externalUrl?: string | null;
6044
+ tokenId?: string | null;
6045
+ images?: Array<{
6046
+ __typename?: "ProductV1Media";
6047
+ id: string;
6048
+ url: string;
6049
+ tag?: string | null;
6050
+ type: ProductV1MediaType;
6051
+ }> | null;
6052
+ contactLinks?: Array<{
6053
+ __typename?: "ProductV1SellerContactLink";
6054
+ id: string;
6055
+ url: string;
6056
+ tag: string;
6057
+ }> | null;
6058
+ seller: {
6059
+ __typename?: "Seller";
6060
+ id: string;
6061
+ operator: string;
6062
+ admin: string;
6063
+ clerk: string;
6064
+ treasury: string;
6065
+ authTokenId: string;
6066
+ authTokenType: number;
6067
+ voucherCloneAddress: string;
6068
+ active: boolean;
6069
+ };
6070
+ };
6071
+ exchangePolicy: {
6072
+ __typename?: "ProductV1ExchangePolicy";
6073
+ id: string;
6074
+ uuid: string;
6075
+ version: number;
6076
+ label?: string | null;
6077
+ template: string;
6078
+ };
6079
+ shipping?: {
6080
+ __typename?: "ProductV1ShippingOption";
6081
+ id: string;
6082
+ defaultVersion?: number | null;
6083
+ countryOfOrigin?: string | null;
6084
+ redemptionPoint?: string | null;
6085
+ supportedJurisdictions?: Array<{
6086
+ __typename?: "ProductV1ShippingJurisdiction";
6087
+ id: string;
6088
+ label: string;
6089
+ deliveryTime: string;
6090
+ }> | null;
6091
+ } | null;
5784
6092
  } | null;
5785
6093
  }>;
5786
6094
  exchanges?: Array<{
@@ -6022,11 +6330,165 @@ export declare type GetDisputeResolverByIdQueryQuery = {
6022
6330
  type: MetadataType;
6023
6331
  } | {
6024
6332
  __typename?: "ProductV1MetadataEntity";
6333
+ image: string;
6334
+ createdAt: string;
6335
+ voided: boolean;
6336
+ validFromDate: string;
6337
+ validUntilDate: string;
6338
+ quantityAvailable: string;
6339
+ uuid: string;
6025
6340
  name: string;
6026
6341
  description: string;
6027
6342
  externalUrl: string;
6028
6343
  schemaUrl: string;
6029
6344
  type: MetadataType;
6345
+ attributes?: Array<{
6346
+ __typename?: "MetadataAttribute";
6347
+ traitType: string;
6348
+ value: string;
6349
+ displayType: string;
6350
+ }> | null;
6351
+ product: {
6352
+ __typename?: "ProductV1Product";
6353
+ id: string;
6354
+ uuid: string;
6355
+ version: number;
6356
+ title: string;
6357
+ description: string;
6358
+ identification_sKU?: string | null;
6359
+ identification_productId?: string | null;
6360
+ identification_productIdType?: string | null;
6361
+ productionInformation_brandName: string;
6362
+ productionInformation_manufacturer?: string | null;
6363
+ productionInformation_manufacturerPartNumber?: string | null;
6364
+ productionInformation_modelNumber?: string | null;
6365
+ productionInformation_materials?: Array<string> | null;
6366
+ details_category?: string | null;
6367
+ details_subCategory?: string | null;
6368
+ details_subCategory2?: string | null;
6369
+ details_offerCategory: string;
6370
+ offerCategory: ProductV1OfferCategory;
6371
+ details_tags?: Array<string> | null;
6372
+ details_sections?: Array<string> | null;
6373
+ details_personalisation?: Array<string> | null;
6374
+ packaging_packageQuantity?: string | null;
6375
+ packaging_dimensions_length?: string | null;
6376
+ packaging_dimensions_width?: string | null;
6377
+ packaging_dimensions_height?: string | null;
6378
+ packaging_dimensions_unit?: string | null;
6379
+ packaging_weight_value?: string | null;
6380
+ packaging_weight_unit?: string | null;
6381
+ brand: {
6382
+ __typename?: "ProductV1Brand";
6383
+ id: string;
6384
+ name: string;
6385
+ };
6386
+ category?: {
6387
+ __typename?: "ProductV1Category";
6388
+ id: string;
6389
+ name: string;
6390
+ } | null;
6391
+ subCategory?: {
6392
+ __typename?: "ProductV1Category";
6393
+ id: string;
6394
+ name: string;
6395
+ } | null;
6396
+ subCategory2?: {
6397
+ __typename?: "ProductV1Category";
6398
+ id: string;
6399
+ name: string;
6400
+ } | null;
6401
+ tags?: Array<{
6402
+ __typename?: "ProductV1Tag";
6403
+ id: string;
6404
+ name: string;
6405
+ }> | null;
6406
+ sections?: Array<{
6407
+ __typename?: "ProductV1Section";
6408
+ id: string;
6409
+ name: string;
6410
+ }> | null;
6411
+ personalisation?: Array<{
6412
+ __typename?: "ProductV1Personalisation";
6413
+ id: string;
6414
+ name: string;
6415
+ }> | null;
6416
+ visuals_images: Array<{
6417
+ __typename?: "ProductV1Media";
6418
+ id: string;
6419
+ url: string;
6420
+ tag?: string | null;
6421
+ type: ProductV1MediaType;
6422
+ }>;
6423
+ visuals_videos?: Array<{
6424
+ __typename?: "ProductV1Media";
6425
+ id: string;
6426
+ url: string;
6427
+ tag?: string | null;
6428
+ type: ProductV1MediaType;
6429
+ }> | null;
6430
+ };
6431
+ variations?: Array<{
6432
+ __typename?: "ProductV1Variation";
6433
+ id: string;
6434
+ type: string;
6435
+ option: string;
6436
+ }> | null;
6437
+ productV1Seller: {
6438
+ __typename?: "ProductV1Seller";
6439
+ id: string;
6440
+ defaultVersion?: number | null;
6441
+ name?: string | null;
6442
+ description?: string | null;
6443
+ externalUrl?: string | null;
6444
+ tokenId?: string | null;
6445
+ images?: Array<{
6446
+ __typename?: "ProductV1Media";
6447
+ id: string;
6448
+ url: string;
6449
+ tag?: string | null;
6450
+ type: ProductV1MediaType;
6451
+ }> | null;
6452
+ contactLinks?: Array<{
6453
+ __typename?: "ProductV1SellerContactLink";
6454
+ id: string;
6455
+ url: string;
6456
+ tag: string;
6457
+ }> | null;
6458
+ seller: {
6459
+ __typename?: "Seller";
6460
+ id: string;
6461
+ operator: string;
6462
+ admin: string;
6463
+ clerk: string;
6464
+ treasury: string;
6465
+ authTokenId: string;
6466
+ authTokenType: number;
6467
+ voucherCloneAddress: string;
6468
+ active: boolean;
6469
+ };
6470
+ };
6471
+ exchangePolicy: {
6472
+ __typename?: "ProductV1ExchangePolicy";
6473
+ id: string;
6474
+ uuid: string;
6475
+ version: number;
6476
+ label?: string | null;
6477
+ template: string;
6478
+ };
6479
+ shipping?: {
6480
+ __typename?: "ProductV1ShippingOption";
6481
+ id: string;
6482
+ defaultVersion?: number | null;
6483
+ countryOfOrigin?: string | null;
6484
+ redemptionPoint?: string | null;
6485
+ supportedJurisdictions?: Array<{
6486
+ __typename?: "ProductV1ShippingJurisdiction";
6487
+ id: string;
6488
+ label: string;
6489
+ deliveryTime: string;
6490
+ }> | null;
6491
+ } | null;
6030
6492
  } | null;
6031
6493
  }>;
6032
6494
  fees: Array<{
@@ -6159,11 +6621,165 @@ export declare type GetDisputeResolversQueryQuery = {
6159
6621
  type: MetadataType;
6160
6622
  } | {
6161
6623
  __typename?: "ProductV1MetadataEntity";
6624
+ image: string;
6625
+ createdAt: string;
6626
+ voided: boolean;
6627
+ validFromDate: string;
6628
+ validUntilDate: string;
6629
+ quantityAvailable: string;
6630
+ uuid: string;
6162
6631
  name: string;
6163
6632
  description: string;
6164
6633
  externalUrl: string;
6165
6634
  schemaUrl: string;
6166
6635
  type: MetadataType;
6636
+ attributes?: Array<{
6637
+ __typename?: "MetadataAttribute";
6638
+ traitType: string;
6639
+ value: string;
6640
+ displayType: string;
6641
+ }> | null;
6642
+ product: {
6643
+ __typename?: "ProductV1Product";
6644
+ id: string;
6645
+ uuid: string;
6646
+ version: number;
6647
+ title: string;
6648
+ description: string;
6649
+ identification_sKU?: string | null;
6650
+ identification_productId?: string | null;
6651
+ identification_productIdType?: string | null;
6652
+ productionInformation_brandName: string;
6653
+ productionInformation_manufacturer?: string | null;
6654
+ productionInformation_manufacturerPartNumber?: string | null;
6655
+ productionInformation_modelNumber?: string | null;
6656
+ productionInformation_materials?: Array<string> | null;
6657
+ details_category?: string | null;
6658
+ details_subCategory?: string | null;
6659
+ details_subCategory2?: string | null;
6660
+ details_offerCategory: string;
6661
+ offerCategory: ProductV1OfferCategory;
6662
+ details_tags?: Array<string> | null;
6663
+ details_sections?: Array<string> | null;
6664
+ details_personalisation?: Array<string> | null;
6665
+ packaging_packageQuantity?: string | null;
6666
+ packaging_dimensions_length?: string | null;
6667
+ packaging_dimensions_width?: string | null;
6668
+ packaging_dimensions_height?: string | null;
6669
+ packaging_dimensions_unit?: string | null;
6670
+ packaging_weight_value?: string | null;
6671
+ packaging_weight_unit?: string | null;
6672
+ brand: {
6673
+ __typename?: "ProductV1Brand";
6674
+ id: string;
6675
+ name: string;
6676
+ };
6677
+ category?: {
6678
+ __typename?: "ProductV1Category";
6679
+ id: string;
6680
+ name: string;
6681
+ } | null;
6682
+ subCategory?: {
6683
+ __typename?: "ProductV1Category";
6684
+ id: string;
6685
+ name: string;
6686
+ } | null;
6687
+ subCategory2?: {
6688
+ __typename?: "ProductV1Category";
6689
+ id: string;
6690
+ name: string;
6691
+ } | null;
6692
+ tags?: Array<{
6693
+ __typename?: "ProductV1Tag";
6694
+ id: string;
6695
+ name: string;
6696
+ }> | null;
6697
+ sections?: Array<{
6698
+ __typename?: "ProductV1Section";
6699
+ id: string;
6700
+ name: string;
6701
+ }> | null;
6702
+ personalisation?: Array<{
6703
+ __typename?: "ProductV1Personalisation";
6704
+ id: string;
6705
+ name: string;
6706
+ }> | null;
6707
+ visuals_images: Array<{
6708
+ __typename?: "ProductV1Media";
6709
+ id: string;
6710
+ url: string;
6711
+ tag?: string | null;
6712
+ type: ProductV1MediaType;
6713
+ }>;
6714
+ visuals_videos?: Array<{
6715
+ __typename?: "ProductV1Media";
6716
+ id: string;
6717
+ url: string;
6718
+ tag?: string | null;
6719
+ type: ProductV1MediaType;
6720
+ }> | null;
6721
+ };
6722
+ variations?: Array<{
6723
+ __typename?: "ProductV1Variation";
6724
+ id: string;
6725
+ type: string;
6726
+ option: string;
6727
+ }> | null;
6728
+ productV1Seller: {
6729
+ __typename?: "ProductV1Seller";
6730
+ id: string;
6731
+ defaultVersion?: number | null;
6732
+ name?: string | null;
6733
+ description?: string | null;
6734
+ externalUrl?: string | null;
6735
+ tokenId?: string | null;
6736
+ images?: Array<{
6737
+ __typename?: "ProductV1Media";
6738
+ id: string;
6739
+ url: string;
6740
+ tag?: string | null;
6741
+ type: ProductV1MediaType;
6742
+ }> | null;
6743
+ contactLinks?: Array<{
6744
+ __typename?: "ProductV1SellerContactLink";
6745
+ id: string;
6746
+ url: string;
6747
+ tag: string;
6748
+ }> | null;
6749
+ seller: {
6750
+ __typename?: "Seller";
6751
+ id: string;
6752
+ operator: string;
6753
+ admin: string;
6754
+ clerk: string;
6755
+ treasury: string;
6756
+ authTokenId: string;
6757
+ authTokenType: number;
6758
+ voucherCloneAddress: string;
6759
+ active: boolean;
6760
+ };
6761
+ };
6762
+ exchangePolicy: {
6763
+ __typename?: "ProductV1ExchangePolicy";
6764
+ id: string;
6765
+ uuid: string;
6766
+ version: number;
6767
+ label?: string | null;
6768
+ template: string;
6769
+ };
6770
+ shipping?: {
6771
+ __typename?: "ProductV1ShippingOption";
6772
+ id: string;
6773
+ defaultVersion?: number | null;
6774
+ countryOfOrigin?: string | null;
6775
+ redemptionPoint?: string | null;
6776
+ supportedJurisdictions?: Array<{
6777
+ __typename?: "ProductV1ShippingJurisdiction";
6778
+ id: string;
6779
+ label: string;
6780
+ deliveryTime: string;
6781
+ }> | null;
6782
+ } | null;
6167
6783
  } | null;
6168
6784
  }>;
6169
6785
  fees: Array<{
@@ -6295,11 +6911,165 @@ export declare type SellerFieldsFragment = {
6295
6911
  type: MetadataType;
6296
6912
  } | {
6297
6913
  __typename?: "ProductV1MetadataEntity";
6914
+ image: string;
6915
+ createdAt: string;
6916
+ voided: boolean;
6917
+ validFromDate: string;
6918
+ validUntilDate: string;
6919
+ quantityAvailable: string;
6920
+ uuid: string;
6298
6921
  name: string;
6299
6922
  description: string;
6300
6923
  externalUrl: string;
6301
6924
  schemaUrl: string;
6302
6925
  type: MetadataType;
6926
+ attributes?: Array<{
6927
+ __typename?: "MetadataAttribute";
6928
+ traitType: string;
6929
+ value: string;
6930
+ displayType: string;
6931
+ }> | null;
6932
+ product: {
6933
+ __typename?: "ProductV1Product";
6934
+ id: string;
6935
+ uuid: string;
6936
+ version: number;
6937
+ title: string;
6938
+ description: string;
6939
+ identification_sKU?: string | null;
6940
+ identification_productId?: string | null;
6941
+ identification_productIdType?: string | null;
6942
+ productionInformation_brandName: string;
6943
+ productionInformation_manufacturer?: string | null;
6944
+ productionInformation_manufacturerPartNumber?: string | null;
6945
+ productionInformation_modelNumber?: string | null;
6946
+ productionInformation_materials?: Array<string> | null;
6947
+ details_category?: string | null;
6948
+ details_subCategory?: string | null;
6949
+ details_subCategory2?: string | null;
6950
+ details_offerCategory: string;
6951
+ offerCategory: ProductV1OfferCategory;
6952
+ details_tags?: Array<string> | null;
6953
+ details_sections?: Array<string> | null;
6954
+ details_personalisation?: Array<string> | null;
6955
+ packaging_packageQuantity?: string | null;
6956
+ packaging_dimensions_length?: string | null;
6957
+ packaging_dimensions_width?: string | null;
6958
+ packaging_dimensions_height?: string | null;
6959
+ packaging_dimensions_unit?: string | null;
6960
+ packaging_weight_value?: string | null;
6961
+ packaging_weight_unit?: string | null;
6962
+ brand: {
6963
+ __typename?: "ProductV1Brand";
6964
+ id: string;
6965
+ name: string;
6966
+ };
6967
+ category?: {
6968
+ __typename?: "ProductV1Category";
6969
+ id: string;
6970
+ name: string;
6971
+ } | null;
6972
+ subCategory?: {
6973
+ __typename?: "ProductV1Category";
6974
+ id: string;
6975
+ name: string;
6976
+ } | null;
6977
+ subCategory2?: {
6978
+ __typename?: "ProductV1Category";
6979
+ id: string;
6980
+ name: string;
6981
+ } | null;
6982
+ tags?: Array<{
6983
+ __typename?: "ProductV1Tag";
6984
+ id: string;
6985
+ name: string;
6986
+ }> | null;
6987
+ sections?: Array<{
6988
+ __typename?: "ProductV1Section";
6989
+ id: string;
6990
+ name: string;
6991
+ }> | null;
6992
+ personalisation?: Array<{
6993
+ __typename?: "ProductV1Personalisation";
6994
+ id: string;
6995
+ name: string;
6996
+ }> | null;
6997
+ visuals_images: Array<{
6998
+ __typename?: "ProductV1Media";
6999
+ id: string;
7000
+ url: string;
7001
+ tag?: string | null;
7002
+ type: ProductV1MediaType;
7003
+ }>;
7004
+ visuals_videos?: Array<{
7005
+ __typename?: "ProductV1Media";
7006
+ id: string;
7007
+ url: string;
7008
+ tag?: string | null;
7009
+ type: ProductV1MediaType;
7010
+ }> | null;
7011
+ };
7012
+ variations?: Array<{
7013
+ __typename?: "ProductV1Variation";
7014
+ id: string;
7015
+ type: string;
7016
+ option: string;
7017
+ }> | null;
7018
+ productV1Seller: {
7019
+ __typename?: "ProductV1Seller";
7020
+ id: string;
7021
+ defaultVersion?: number | null;
7022
+ name?: string | null;
7023
+ description?: string | null;
7024
+ externalUrl?: string | null;
7025
+ tokenId?: string | null;
7026
+ images?: Array<{
7027
+ __typename?: "ProductV1Media";
7028
+ id: string;
7029
+ url: string;
7030
+ tag?: string | null;
7031
+ type: ProductV1MediaType;
7032
+ }> | null;
7033
+ contactLinks?: Array<{
7034
+ __typename?: "ProductV1SellerContactLink";
7035
+ id: string;
7036
+ url: string;
7037
+ tag: string;
7038
+ }> | null;
7039
+ seller: {
7040
+ __typename?: "Seller";
7041
+ id: string;
7042
+ operator: string;
7043
+ admin: string;
7044
+ clerk: string;
7045
+ treasury: string;
7046
+ authTokenId: string;
7047
+ authTokenType: number;
7048
+ voucherCloneAddress: string;
7049
+ active: boolean;
7050
+ };
7051
+ };
7052
+ exchangePolicy: {
7053
+ __typename?: "ProductV1ExchangePolicy";
7054
+ id: string;
7055
+ uuid: string;
7056
+ version: number;
7057
+ label?: string | null;
7058
+ template: string;
7059
+ };
7060
+ shipping?: {
7061
+ __typename?: "ProductV1ShippingOption";
7062
+ id: string;
7063
+ defaultVersion?: number | null;
7064
+ countryOfOrigin?: string | null;
7065
+ redemptionPoint?: string | null;
7066
+ supportedJurisdictions?: Array<{
7067
+ __typename?: "ProductV1ShippingJurisdiction";
7068
+ id: string;
7069
+ label: string;
7070
+ deliveryTime: string;
7071
+ }> | null;
7072
+ } | null;
6303
7073
  } | null;
6304
7074
  }>;
6305
7075
  exchanges?: Array<{
@@ -6467,11 +7237,165 @@ export declare type DisputeResolverFieldsFragment = {
6467
7237
  type: MetadataType;
6468
7238
  } | {
6469
7239
  __typename?: "ProductV1MetadataEntity";
7240
+ image: string;
7241
+ createdAt: string;
7242
+ voided: boolean;
7243
+ validFromDate: string;
7244
+ validUntilDate: string;
7245
+ quantityAvailable: string;
7246
+ uuid: string;
6470
7247
  name: string;
6471
7248
  description: string;
6472
7249
  externalUrl: string;
6473
7250
  schemaUrl: string;
6474
7251
  type: MetadataType;
7252
+ attributes?: Array<{
7253
+ __typename?: "MetadataAttribute";
7254
+ traitType: string;
7255
+ value: string;
7256
+ displayType: string;
7257
+ }> | null;
7258
+ product: {
7259
+ __typename?: "ProductV1Product";
7260
+ id: string;
7261
+ uuid: string;
7262
+ version: number;
7263
+ title: string;
7264
+ description: string;
7265
+ identification_sKU?: string | null;
7266
+ identification_productId?: string | null;
7267
+ identification_productIdType?: string | null;
7268
+ productionInformation_brandName: string;
7269
+ productionInformation_manufacturer?: string | null;
7270
+ productionInformation_manufacturerPartNumber?: string | null;
7271
+ productionInformation_modelNumber?: string | null;
7272
+ productionInformation_materials?: Array<string> | null;
7273
+ details_category?: string | null;
7274
+ details_subCategory?: string | null;
7275
+ details_subCategory2?: string | null;
7276
+ details_offerCategory: string;
7277
+ offerCategory: ProductV1OfferCategory;
7278
+ details_tags?: Array<string> | null;
7279
+ details_sections?: Array<string> | null;
7280
+ details_personalisation?: Array<string> | null;
7281
+ packaging_packageQuantity?: string | null;
7282
+ packaging_dimensions_length?: string | null;
7283
+ packaging_dimensions_width?: string | null;
7284
+ packaging_dimensions_height?: string | null;
7285
+ packaging_dimensions_unit?: string | null;
7286
+ packaging_weight_value?: string | null;
7287
+ packaging_weight_unit?: string | null;
7288
+ brand: {
7289
+ __typename?: "ProductV1Brand";
7290
+ id: string;
7291
+ name: string;
7292
+ };
7293
+ category?: {
7294
+ __typename?: "ProductV1Category";
7295
+ id: string;
7296
+ name: string;
7297
+ } | null;
7298
+ subCategory?: {
7299
+ __typename?: "ProductV1Category";
7300
+ id: string;
7301
+ name: string;
7302
+ } | null;
7303
+ subCategory2?: {
7304
+ __typename?: "ProductV1Category";
7305
+ id: string;
7306
+ name: string;
7307
+ } | null;
7308
+ tags?: Array<{
7309
+ __typename?: "ProductV1Tag";
7310
+ id: string;
7311
+ name: string;
7312
+ }> | null;
7313
+ sections?: Array<{
7314
+ __typename?: "ProductV1Section";
7315
+ id: string;
7316
+ name: string;
7317
+ }> | null;
7318
+ personalisation?: Array<{
7319
+ __typename?: "ProductV1Personalisation";
7320
+ id: string;
7321
+ name: string;
7322
+ }> | null;
7323
+ visuals_images: Array<{
7324
+ __typename?: "ProductV1Media";
7325
+ id: string;
7326
+ url: string;
7327
+ tag?: string | null;
7328
+ type: ProductV1MediaType;
7329
+ }>;
7330
+ visuals_videos?: Array<{
7331
+ __typename?: "ProductV1Media";
7332
+ id: string;
7333
+ url: string;
7334
+ tag?: string | null;
7335
+ type: ProductV1MediaType;
7336
+ }> | null;
7337
+ };
7338
+ variations?: Array<{
7339
+ __typename?: "ProductV1Variation";
7340
+ id: string;
7341
+ type: string;
7342
+ option: string;
7343
+ }> | null;
7344
+ productV1Seller: {
7345
+ __typename?: "ProductV1Seller";
7346
+ id: string;
7347
+ defaultVersion?: number | null;
7348
+ name?: string | null;
7349
+ description?: string | null;
7350
+ externalUrl?: string | null;
7351
+ tokenId?: string | null;
7352
+ images?: Array<{
7353
+ __typename?: "ProductV1Media";
7354
+ id: string;
7355
+ url: string;
7356
+ tag?: string | null;
7357
+ type: ProductV1MediaType;
7358
+ }> | null;
7359
+ contactLinks?: Array<{
7360
+ __typename?: "ProductV1SellerContactLink";
7361
+ id: string;
7362
+ url: string;
7363
+ tag: string;
7364
+ }> | null;
7365
+ seller: {
7366
+ __typename?: "Seller";
7367
+ id: string;
7368
+ operator: string;
7369
+ admin: string;
7370
+ clerk: string;
7371
+ treasury: string;
7372
+ authTokenId: string;
7373
+ authTokenType: number;
7374
+ voucherCloneAddress: string;
7375
+ active: boolean;
7376
+ };
7377
+ };
7378
+ exchangePolicy: {
7379
+ __typename?: "ProductV1ExchangePolicy";
7380
+ id: string;
7381
+ uuid: string;
7382
+ version: number;
7383
+ label?: string | null;
7384
+ template: string;
7385
+ };
7386
+ shipping?: {
7387
+ __typename?: "ProductV1ShippingOption";
7388
+ id: string;
7389
+ defaultVersion?: number | null;
7390
+ countryOfOrigin?: string | null;
7391
+ redemptionPoint?: string | null;
7392
+ supportedJurisdictions?: Array<{
7393
+ __typename?: "ProductV1ShippingJurisdiction";
7394
+ id: string;
7395
+ label: string;
7396
+ deliveryTime: string;
7397
+ }> | null;
7398
+ } | null;
6475
7399
  } | null;
6476
7400
  }>;
6477
7401
  fees: Array<{
@@ -6854,11 +7778,165 @@ export declare type GetExchangeTokenByIdQueryQuery = {
6854
7778
  type: MetadataType;
6855
7779
  } | {
6856
7780
  __typename?: "ProductV1MetadataEntity";
7781
+ image: string;
7782
+ createdAt: string;
7783
+ voided: boolean;
7784
+ validFromDate: string;
7785
+ validUntilDate: string;
7786
+ quantityAvailable: string;
7787
+ uuid: string;
6857
7788
  name: string;
6858
7789
  description: string;
6859
7790
  externalUrl: string;
6860
7791
  schemaUrl: string;
6861
7792
  type: MetadataType;
7793
+ attributes?: Array<{
7794
+ __typename?: "MetadataAttribute";
7795
+ traitType: string;
7796
+ value: string;
7797
+ displayType: string;
7798
+ }> | null;
7799
+ product: {
7800
+ __typename?: "ProductV1Product";
7801
+ id: string;
7802
+ uuid: string;
7803
+ version: number;
7804
+ title: string;
7805
+ description: string;
7806
+ identification_sKU?: string | null;
7807
+ identification_productId?: string | null;
7808
+ identification_productIdType?: string | null;
7809
+ productionInformation_brandName: string;
7810
+ productionInformation_manufacturer?: string | null;
7811
+ productionInformation_manufacturerPartNumber?: string | null;
7812
+ productionInformation_modelNumber?: string | null;
7813
+ productionInformation_materials?: Array<string> | null;
7814
+ details_category?: string | null;
7815
+ details_subCategory?: string | null;
7816
+ details_subCategory2?: string | null;
7817
+ details_offerCategory: string;
7818
+ offerCategory: ProductV1OfferCategory;
7819
+ details_tags?: Array<string> | null;
7820
+ details_sections?: Array<string> | null;
7821
+ details_personalisation?: Array<string> | null;
7822
+ packaging_packageQuantity?: string | null;
7823
+ packaging_dimensions_length?: string | null;
7824
+ packaging_dimensions_width?: string | null;
7825
+ packaging_dimensions_height?: string | null;
7826
+ packaging_dimensions_unit?: string | null;
7827
+ packaging_weight_value?: string | null;
7828
+ packaging_weight_unit?: string | null;
7829
+ brand: {
7830
+ __typename?: "ProductV1Brand";
7831
+ id: string;
7832
+ name: string;
7833
+ };
7834
+ category?: {
7835
+ __typename?: "ProductV1Category";
7836
+ id: string;
7837
+ name: string;
7838
+ } | null;
7839
+ subCategory?: {
7840
+ __typename?: "ProductV1Category";
7841
+ id: string;
7842
+ name: string;
7843
+ } | null;
7844
+ subCategory2?: {
7845
+ __typename?: "ProductV1Category";
7846
+ id: string;
7847
+ name: string;
7848
+ } | null;
7849
+ tags?: Array<{
7850
+ __typename?: "ProductV1Tag";
7851
+ id: string;
7852
+ name: string;
7853
+ }> | null;
7854
+ sections?: Array<{
7855
+ __typename?: "ProductV1Section";
7856
+ id: string;
7857
+ name: string;
7858
+ }> | null;
7859
+ personalisation?: Array<{
7860
+ __typename?: "ProductV1Personalisation";
7861
+ id: string;
7862
+ name: string;
7863
+ }> | null;
7864
+ visuals_images: Array<{
7865
+ __typename?: "ProductV1Media";
7866
+ id: string;
7867
+ url: string;
7868
+ tag?: string | null;
7869
+ type: ProductV1MediaType;
7870
+ }>;
7871
+ visuals_videos?: Array<{
7872
+ __typename?: "ProductV1Media";
7873
+ id: string;
7874
+ url: string;
7875
+ tag?: string | null;
7876
+ type: ProductV1MediaType;
7877
+ }> | null;
7878
+ };
7879
+ variations?: Array<{
7880
+ __typename?: "ProductV1Variation";
7881
+ id: string;
7882
+ type: string;
7883
+ option: string;
7884
+ }> | null;
7885
+ productV1Seller: {
7886
+ __typename?: "ProductV1Seller";
7887
+ id: string;
7888
+ defaultVersion?: number | null;
7889
+ name?: string | null;
7890
+ description?: string | null;
7891
+ externalUrl?: string | null;
7892
+ tokenId?: string | null;
7893
+ images?: Array<{
7894
+ __typename?: "ProductV1Media";
7895
+ id: string;
7896
+ url: string;
7897
+ tag?: string | null;
7898
+ type: ProductV1MediaType;
7899
+ }> | null;
7900
+ contactLinks?: Array<{
7901
+ __typename?: "ProductV1SellerContactLink";
7902
+ id: string;
7903
+ url: string;
7904
+ tag: string;
7905
+ }> | null;
7906
+ seller: {
7907
+ __typename?: "Seller";
7908
+ id: string;
7909
+ operator: string;
7910
+ admin: string;
7911
+ clerk: string;
7912
+ treasury: string;
7913
+ authTokenId: string;
7914
+ authTokenType: number;
7915
+ voucherCloneAddress: string;
7916
+ active: boolean;
7917
+ };
7918
+ };
7919
+ exchangePolicy: {
7920
+ __typename?: "ProductV1ExchangePolicy";
7921
+ id: string;
7922
+ uuid: string;
7923
+ version: number;
7924
+ label?: string | null;
7925
+ template: string;
7926
+ };
7927
+ shipping?: {
7928
+ __typename?: "ProductV1ShippingOption";
7929
+ id: string;
7930
+ defaultVersion?: number | null;
7931
+ countryOfOrigin?: string | null;
7932
+ redemptionPoint?: string | null;
7933
+ supportedJurisdictions?: Array<{
7934
+ __typename?: "ProductV1ShippingJurisdiction";
7935
+ id: string;
7936
+ label: string;
7937
+ deliveryTime: string;
7938
+ }> | null;
7939
+ } | null;
6862
7940
  } | null;
6863
7941
  }>;
6864
7942
  funds?: Array<{
@@ -6984,37 +8062,191 @@ export declare type GetExchangeTokensQueryQuery = {
6984
8062
  type: MetadataType;
6985
8063
  } | {
6986
8064
  __typename?: "ProductV1MetadataEntity";
8065
+ image: string;
8066
+ createdAt: string;
8067
+ voided: boolean;
8068
+ validFromDate: string;
8069
+ validUntilDate: string;
8070
+ quantityAvailable: string;
8071
+ uuid: string;
6987
8072
  name: string;
6988
8073
  description: string;
6989
8074
  externalUrl: string;
6990
8075
  schemaUrl: string;
6991
8076
  type: MetadataType;
6992
- } | null;
6993
- }>;
6994
- funds?: Array<{
6995
- __typename?: "FundsEntity";
6996
- id: string;
6997
- availableAmount: string;
6998
- accountId: string;
6999
- }>;
7000
- }>;
7001
- };
7002
- export declare type ExchangeTokenFieldsFragment = {
7003
- __typename?: "ExchangeToken";
7004
- id: string;
7005
- address: string;
7006
- decimals: string;
7007
- symbol: string;
7008
- name: string;
7009
- offers?: Array<{
7010
- __typename?: "Offer";
7011
- id: string;
7012
- createdAt: string;
7013
- price: string;
7014
- sellerDeposit: string;
7015
- protocolFee: string;
7016
- agentFee: string;
7017
- agentId: string;
8077
+ attributes?: Array<{
8078
+ __typename?: "MetadataAttribute";
8079
+ traitType: string;
8080
+ value: string;
8081
+ displayType: string;
8082
+ }> | null;
8083
+ product: {
8084
+ __typename?: "ProductV1Product";
8085
+ id: string;
8086
+ uuid: string;
8087
+ version: number;
8088
+ title: string;
8089
+ description: string;
8090
+ identification_sKU?: string | null;
8091
+ identification_productId?: string | null;
8092
+ identification_productIdType?: string | null;
8093
+ productionInformation_brandName: string;
8094
+ productionInformation_manufacturer?: string | null;
8095
+ productionInformation_manufacturerPartNumber?: string | null;
8096
+ productionInformation_modelNumber?: string | null;
8097
+ productionInformation_materials?: Array<string> | null;
8098
+ details_category?: string | null;
8099
+ details_subCategory?: string | null;
8100
+ details_subCategory2?: string | null;
8101
+ details_offerCategory: string;
8102
+ offerCategory: ProductV1OfferCategory;
8103
+ details_tags?: Array<string> | null;
8104
+ details_sections?: Array<string> | null;
8105
+ details_personalisation?: Array<string> | null;
8106
+ packaging_packageQuantity?: string | null;
8107
+ packaging_dimensions_length?: string | null;
8108
+ packaging_dimensions_width?: string | null;
8109
+ packaging_dimensions_height?: string | null;
8110
+ packaging_dimensions_unit?: string | null;
8111
+ packaging_weight_value?: string | null;
8112
+ packaging_weight_unit?: string | null;
8113
+ brand: {
8114
+ __typename?: "ProductV1Brand";
8115
+ id: string;
8116
+ name: string;
8117
+ };
8118
+ category?: {
8119
+ __typename?: "ProductV1Category";
8120
+ id: string;
8121
+ name: string;
8122
+ } | null;
8123
+ subCategory?: {
8124
+ __typename?: "ProductV1Category";
8125
+ id: string;
8126
+ name: string;
8127
+ } | null;
8128
+ subCategory2?: {
8129
+ __typename?: "ProductV1Category";
8130
+ id: string;
8131
+ name: string;
8132
+ } | null;
8133
+ tags?: Array<{
8134
+ __typename?: "ProductV1Tag";
8135
+ id: string;
8136
+ name: string;
8137
+ }> | null;
8138
+ sections?: Array<{
8139
+ __typename?: "ProductV1Section";
8140
+ id: string;
8141
+ name: string;
8142
+ }> | null;
8143
+ personalisation?: Array<{
8144
+ __typename?: "ProductV1Personalisation";
8145
+ id: string;
8146
+ name: string;
8147
+ }> | null;
8148
+ visuals_images: Array<{
8149
+ __typename?: "ProductV1Media";
8150
+ id: string;
8151
+ url: string;
8152
+ tag?: string | null;
8153
+ type: ProductV1MediaType;
8154
+ }>;
8155
+ visuals_videos?: Array<{
8156
+ __typename?: "ProductV1Media";
8157
+ id: string;
8158
+ url: string;
8159
+ tag?: string | null;
8160
+ type: ProductV1MediaType;
8161
+ }> | null;
8162
+ };
8163
+ variations?: Array<{
8164
+ __typename?: "ProductV1Variation";
8165
+ id: string;
8166
+ type: string;
8167
+ option: string;
8168
+ }> | null;
8169
+ productV1Seller: {
8170
+ __typename?: "ProductV1Seller";
8171
+ id: string;
8172
+ defaultVersion?: number | null;
8173
+ name?: string | null;
8174
+ description?: string | null;
8175
+ externalUrl?: string | null;
8176
+ tokenId?: string | null;
8177
+ images?: Array<{
8178
+ __typename?: "ProductV1Media";
8179
+ id: string;
8180
+ url: string;
8181
+ tag?: string | null;
8182
+ type: ProductV1MediaType;
8183
+ }> | null;
8184
+ contactLinks?: Array<{
8185
+ __typename?: "ProductV1SellerContactLink";
8186
+ id: string;
8187
+ url: string;
8188
+ tag: string;
8189
+ }> | null;
8190
+ seller: {
8191
+ __typename?: "Seller";
8192
+ id: string;
8193
+ operator: string;
8194
+ admin: string;
8195
+ clerk: string;
8196
+ treasury: string;
8197
+ authTokenId: string;
8198
+ authTokenType: number;
8199
+ voucherCloneAddress: string;
8200
+ active: boolean;
8201
+ };
8202
+ };
8203
+ exchangePolicy: {
8204
+ __typename?: "ProductV1ExchangePolicy";
8205
+ id: string;
8206
+ uuid: string;
8207
+ version: number;
8208
+ label?: string | null;
8209
+ template: string;
8210
+ };
8211
+ shipping?: {
8212
+ __typename?: "ProductV1ShippingOption";
8213
+ id: string;
8214
+ defaultVersion?: number | null;
8215
+ countryOfOrigin?: string | null;
8216
+ redemptionPoint?: string | null;
8217
+ supportedJurisdictions?: Array<{
8218
+ __typename?: "ProductV1ShippingJurisdiction";
8219
+ id: string;
8220
+ label: string;
8221
+ deliveryTime: string;
8222
+ }> | null;
8223
+ } | null;
8224
+ } | null;
8225
+ }>;
8226
+ funds?: Array<{
8227
+ __typename?: "FundsEntity";
8228
+ id: string;
8229
+ availableAmount: string;
8230
+ accountId: string;
8231
+ }>;
8232
+ }>;
8233
+ };
8234
+ export declare type ExchangeTokenFieldsFragment = {
8235
+ __typename?: "ExchangeToken";
8236
+ id: string;
8237
+ address: string;
8238
+ decimals: string;
8239
+ symbol: string;
8240
+ name: string;
8241
+ offers?: Array<{
8242
+ __typename?: "Offer";
8243
+ id: string;
8244
+ createdAt: string;
8245
+ price: string;
8246
+ sellerDeposit: string;
8247
+ protocolFee: string;
8248
+ agentFee: string;
8249
+ agentId: string;
7018
8250
  buyerCancelPenalty: string;
7019
8251
  quantityAvailable: string;
7020
8252
  quantityInitial: string;
@@ -7093,11 +8325,165 @@ export declare type ExchangeTokenFieldsFragment = {
7093
8325
  type: MetadataType;
7094
8326
  } | {
7095
8327
  __typename?: "ProductV1MetadataEntity";
8328
+ image: string;
8329
+ createdAt: string;
8330
+ voided: boolean;
8331
+ validFromDate: string;
8332
+ validUntilDate: string;
8333
+ quantityAvailable: string;
8334
+ uuid: string;
7096
8335
  name: string;
7097
8336
  description: string;
7098
8337
  externalUrl: string;
7099
8338
  schemaUrl: string;
7100
8339
  type: MetadataType;
8340
+ attributes?: Array<{
8341
+ __typename?: "MetadataAttribute";
8342
+ traitType: string;
8343
+ value: string;
8344
+ displayType: string;
8345
+ }> | null;
8346
+ product: {
8347
+ __typename?: "ProductV1Product";
8348
+ id: string;
8349
+ uuid: string;
8350
+ version: number;
8351
+ title: string;
8352
+ description: string;
8353
+ identification_sKU?: string | null;
8354
+ identification_productId?: string | null;
8355
+ identification_productIdType?: string | null;
8356
+ productionInformation_brandName: string;
8357
+ productionInformation_manufacturer?: string | null;
8358
+ productionInformation_manufacturerPartNumber?: string | null;
8359
+ productionInformation_modelNumber?: string | null;
8360
+ productionInformation_materials?: Array<string> | null;
8361
+ details_category?: string | null;
8362
+ details_subCategory?: string | null;
8363
+ details_subCategory2?: string | null;
8364
+ details_offerCategory: string;
8365
+ offerCategory: ProductV1OfferCategory;
8366
+ details_tags?: Array<string> | null;
8367
+ details_sections?: Array<string> | null;
8368
+ details_personalisation?: Array<string> | null;
8369
+ packaging_packageQuantity?: string | null;
8370
+ packaging_dimensions_length?: string | null;
8371
+ packaging_dimensions_width?: string | null;
8372
+ packaging_dimensions_height?: string | null;
8373
+ packaging_dimensions_unit?: string | null;
8374
+ packaging_weight_value?: string | null;
8375
+ packaging_weight_unit?: string | null;
8376
+ brand: {
8377
+ __typename?: "ProductV1Brand";
8378
+ id: string;
8379
+ name: string;
8380
+ };
8381
+ category?: {
8382
+ __typename?: "ProductV1Category";
8383
+ id: string;
8384
+ name: string;
8385
+ } | null;
8386
+ subCategory?: {
8387
+ __typename?: "ProductV1Category";
8388
+ id: string;
8389
+ name: string;
8390
+ } | null;
8391
+ subCategory2?: {
8392
+ __typename?: "ProductV1Category";
8393
+ id: string;
8394
+ name: string;
8395
+ } | null;
8396
+ tags?: Array<{
8397
+ __typename?: "ProductV1Tag";
8398
+ id: string;
8399
+ name: string;
8400
+ }> | null;
8401
+ sections?: Array<{
8402
+ __typename?: "ProductV1Section";
8403
+ id: string;
8404
+ name: string;
8405
+ }> | null;
8406
+ personalisation?: Array<{
8407
+ __typename?: "ProductV1Personalisation";
8408
+ id: string;
8409
+ name: string;
8410
+ }> | null;
8411
+ visuals_images: Array<{
8412
+ __typename?: "ProductV1Media";
8413
+ id: string;
8414
+ url: string;
8415
+ tag?: string | null;
8416
+ type: ProductV1MediaType;
8417
+ }>;
8418
+ visuals_videos?: Array<{
8419
+ __typename?: "ProductV1Media";
8420
+ id: string;
8421
+ url: string;
8422
+ tag?: string | null;
8423
+ type: ProductV1MediaType;
8424
+ }> | null;
8425
+ };
8426
+ variations?: Array<{
8427
+ __typename?: "ProductV1Variation";
8428
+ id: string;
8429
+ type: string;
8430
+ option: string;
8431
+ }> | null;
8432
+ productV1Seller: {
8433
+ __typename?: "ProductV1Seller";
8434
+ id: string;
8435
+ defaultVersion?: number | null;
8436
+ name?: string | null;
8437
+ description?: string | null;
8438
+ externalUrl?: string | null;
8439
+ tokenId?: string | null;
8440
+ images?: Array<{
8441
+ __typename?: "ProductV1Media";
8442
+ id: string;
8443
+ url: string;
8444
+ tag?: string | null;
8445
+ type: ProductV1MediaType;
8446
+ }> | null;
8447
+ contactLinks?: Array<{
8448
+ __typename?: "ProductV1SellerContactLink";
8449
+ id: string;
8450
+ url: string;
8451
+ tag: string;
8452
+ }> | null;
8453
+ seller: {
8454
+ __typename?: "Seller";
8455
+ id: string;
8456
+ operator: string;
8457
+ admin: string;
8458
+ clerk: string;
8459
+ treasury: string;
8460
+ authTokenId: string;
8461
+ authTokenType: number;
8462
+ voucherCloneAddress: string;
8463
+ active: boolean;
8464
+ };
8465
+ };
8466
+ exchangePolicy: {
8467
+ __typename?: "ProductV1ExchangePolicy";
8468
+ id: string;
8469
+ uuid: string;
8470
+ version: number;
8471
+ label?: string | null;
8472
+ template: string;
8473
+ };
8474
+ shipping?: {
8475
+ __typename?: "ProductV1ShippingOption";
8476
+ id: string;
8477
+ defaultVersion?: number | null;
8478
+ countryOfOrigin?: string | null;
8479
+ redemptionPoint?: string | null;
8480
+ supportedJurisdictions?: Array<{
8481
+ __typename?: "ProductV1ShippingJurisdiction";
8482
+ id: string;
8483
+ label: string;
8484
+ deliveryTime: string;
8485
+ }> | null;
8486
+ } | null;
7101
8487
  } | null;
7102
8488
  }>;
7103
8489
  funds?: Array<{
@@ -7238,11 +8624,165 @@ export declare type GetExchangeByIdQueryQuery = {
7238
8624
  type: MetadataType;
7239
8625
  } | {
7240
8626
  __typename?: "ProductV1MetadataEntity";
8627
+ image: string;
8628
+ createdAt: string;
8629
+ voided: boolean;
8630
+ validFromDate: string;
8631
+ validUntilDate: string;
8632
+ quantityAvailable: string;
8633
+ uuid: string;
7241
8634
  name: string;
7242
8635
  description: string;
7243
8636
  externalUrl: string;
7244
8637
  schemaUrl: string;
7245
8638
  type: MetadataType;
8639
+ attributes?: Array<{
8640
+ __typename?: "MetadataAttribute";
8641
+ traitType: string;
8642
+ value: string;
8643
+ displayType: string;
8644
+ }> | null;
8645
+ product: {
8646
+ __typename?: "ProductV1Product";
8647
+ id: string;
8648
+ uuid: string;
8649
+ version: number;
8650
+ title: string;
8651
+ description: string;
8652
+ identification_sKU?: string | null;
8653
+ identification_productId?: string | null;
8654
+ identification_productIdType?: string | null;
8655
+ productionInformation_brandName: string;
8656
+ productionInformation_manufacturer?: string | null;
8657
+ productionInformation_manufacturerPartNumber?: string | null;
8658
+ productionInformation_modelNumber?: string | null;
8659
+ productionInformation_materials?: Array<string> | null;
8660
+ details_category?: string | null;
8661
+ details_subCategory?: string | null;
8662
+ details_subCategory2?: string | null;
8663
+ details_offerCategory: string;
8664
+ offerCategory: ProductV1OfferCategory;
8665
+ details_tags?: Array<string> | null;
8666
+ details_sections?: Array<string> | null;
8667
+ details_personalisation?: Array<string> | null;
8668
+ packaging_packageQuantity?: string | null;
8669
+ packaging_dimensions_length?: string | null;
8670
+ packaging_dimensions_width?: string | null;
8671
+ packaging_dimensions_height?: string | null;
8672
+ packaging_dimensions_unit?: string | null;
8673
+ packaging_weight_value?: string | null;
8674
+ packaging_weight_unit?: string | null;
8675
+ brand: {
8676
+ __typename?: "ProductV1Brand";
8677
+ id: string;
8678
+ name: string;
8679
+ };
8680
+ category?: {
8681
+ __typename?: "ProductV1Category";
8682
+ id: string;
8683
+ name: string;
8684
+ } | null;
8685
+ subCategory?: {
8686
+ __typename?: "ProductV1Category";
8687
+ id: string;
8688
+ name: string;
8689
+ } | null;
8690
+ subCategory2?: {
8691
+ __typename?: "ProductV1Category";
8692
+ id: string;
8693
+ name: string;
8694
+ } | null;
8695
+ tags?: Array<{
8696
+ __typename?: "ProductV1Tag";
8697
+ id: string;
8698
+ name: string;
8699
+ }> | null;
8700
+ sections?: Array<{
8701
+ __typename?: "ProductV1Section";
8702
+ id: string;
8703
+ name: string;
8704
+ }> | null;
8705
+ personalisation?: Array<{
8706
+ __typename?: "ProductV1Personalisation";
8707
+ id: string;
8708
+ name: string;
8709
+ }> | null;
8710
+ visuals_images: Array<{
8711
+ __typename?: "ProductV1Media";
8712
+ id: string;
8713
+ url: string;
8714
+ tag?: string | null;
8715
+ type: ProductV1MediaType;
8716
+ }>;
8717
+ visuals_videos?: Array<{
8718
+ __typename?: "ProductV1Media";
8719
+ id: string;
8720
+ url: string;
8721
+ tag?: string | null;
8722
+ type: ProductV1MediaType;
8723
+ }> | null;
8724
+ };
8725
+ variations?: Array<{
8726
+ __typename?: "ProductV1Variation";
8727
+ id: string;
8728
+ type: string;
8729
+ option: string;
8730
+ }> | null;
8731
+ productV1Seller: {
8732
+ __typename?: "ProductV1Seller";
8733
+ id: string;
8734
+ defaultVersion?: number | null;
8735
+ name?: string | null;
8736
+ description?: string | null;
8737
+ externalUrl?: string | null;
8738
+ tokenId?: string | null;
8739
+ images?: Array<{
8740
+ __typename?: "ProductV1Media";
8741
+ id: string;
8742
+ url: string;
8743
+ tag?: string | null;
8744
+ type: ProductV1MediaType;
8745
+ }> | null;
8746
+ contactLinks?: Array<{
8747
+ __typename?: "ProductV1SellerContactLink";
8748
+ id: string;
8749
+ url: string;
8750
+ tag: string;
8751
+ }> | null;
8752
+ seller: {
8753
+ __typename?: "Seller";
8754
+ id: string;
8755
+ operator: string;
8756
+ admin: string;
8757
+ clerk: string;
8758
+ treasury: string;
8759
+ authTokenId: string;
8760
+ authTokenType: number;
8761
+ voucherCloneAddress: string;
8762
+ active: boolean;
8763
+ };
8764
+ };
8765
+ exchangePolicy: {
8766
+ __typename?: "ProductV1ExchangePolicy";
8767
+ id: string;
8768
+ uuid: string;
8769
+ version: number;
8770
+ label?: string | null;
8771
+ template: string;
8772
+ };
8773
+ shipping?: {
8774
+ __typename?: "ProductV1ShippingOption";
8775
+ id: string;
8776
+ defaultVersion?: number | null;
8777
+ countryOfOrigin?: string | null;
8778
+ redemptionPoint?: string | null;
8779
+ supportedJurisdictions?: Array<{
8780
+ __typename?: "ProductV1ShippingJurisdiction";
8781
+ id: string;
8782
+ label: string;
8783
+ deliveryTime: string;
8784
+ }> | null;
8785
+ } | null;
7246
8786
  } | null;
7247
8787
  };
7248
8788
  } | null;
@@ -7374,11 +8914,165 @@ export declare type GetExchangesQueryQuery = {
7374
8914
  type: MetadataType;
7375
8915
  } | {
7376
8916
  __typename?: "ProductV1MetadataEntity";
8917
+ image: string;
8918
+ createdAt: string;
8919
+ voided: boolean;
8920
+ validFromDate: string;
8921
+ validUntilDate: string;
8922
+ quantityAvailable: string;
8923
+ uuid: string;
7377
8924
  name: string;
7378
8925
  description: string;
7379
8926
  externalUrl: string;
7380
8927
  schemaUrl: string;
7381
8928
  type: MetadataType;
8929
+ attributes?: Array<{
8930
+ __typename?: "MetadataAttribute";
8931
+ traitType: string;
8932
+ value: string;
8933
+ displayType: string;
8934
+ }> | null;
8935
+ product: {
8936
+ __typename?: "ProductV1Product";
8937
+ id: string;
8938
+ uuid: string;
8939
+ version: number;
8940
+ title: string;
8941
+ description: string;
8942
+ identification_sKU?: string | null;
8943
+ identification_productId?: string | null;
8944
+ identification_productIdType?: string | null;
8945
+ productionInformation_brandName: string;
8946
+ productionInformation_manufacturer?: string | null;
8947
+ productionInformation_manufacturerPartNumber?: string | null;
8948
+ productionInformation_modelNumber?: string | null;
8949
+ productionInformation_materials?: Array<string> | null;
8950
+ details_category?: string | null;
8951
+ details_subCategory?: string | null;
8952
+ details_subCategory2?: string | null;
8953
+ details_offerCategory: string;
8954
+ offerCategory: ProductV1OfferCategory;
8955
+ details_tags?: Array<string> | null;
8956
+ details_sections?: Array<string> | null;
8957
+ details_personalisation?: Array<string> | null;
8958
+ packaging_packageQuantity?: string | null;
8959
+ packaging_dimensions_length?: string | null;
8960
+ packaging_dimensions_width?: string | null;
8961
+ packaging_dimensions_height?: string | null;
8962
+ packaging_dimensions_unit?: string | null;
8963
+ packaging_weight_value?: string | null;
8964
+ packaging_weight_unit?: string | null;
8965
+ brand: {
8966
+ __typename?: "ProductV1Brand";
8967
+ id: string;
8968
+ name: string;
8969
+ };
8970
+ category?: {
8971
+ __typename?: "ProductV1Category";
8972
+ id: string;
8973
+ name: string;
8974
+ } | null;
8975
+ subCategory?: {
8976
+ __typename?: "ProductV1Category";
8977
+ id: string;
8978
+ name: string;
8979
+ } | null;
8980
+ subCategory2?: {
8981
+ __typename?: "ProductV1Category";
8982
+ id: string;
8983
+ name: string;
8984
+ } | null;
8985
+ tags?: Array<{
8986
+ __typename?: "ProductV1Tag";
8987
+ id: string;
8988
+ name: string;
8989
+ }> | null;
8990
+ sections?: Array<{
8991
+ __typename?: "ProductV1Section";
8992
+ id: string;
8993
+ name: string;
8994
+ }> | null;
8995
+ personalisation?: Array<{
8996
+ __typename?: "ProductV1Personalisation";
8997
+ id: string;
8998
+ name: string;
8999
+ }> | null;
9000
+ visuals_images: Array<{
9001
+ __typename?: "ProductV1Media";
9002
+ id: string;
9003
+ url: string;
9004
+ tag?: string | null;
9005
+ type: ProductV1MediaType;
9006
+ }>;
9007
+ visuals_videos?: Array<{
9008
+ __typename?: "ProductV1Media";
9009
+ id: string;
9010
+ url: string;
9011
+ tag?: string | null;
9012
+ type: ProductV1MediaType;
9013
+ }> | null;
9014
+ };
9015
+ variations?: Array<{
9016
+ __typename?: "ProductV1Variation";
9017
+ id: string;
9018
+ type: string;
9019
+ option: string;
9020
+ }> | null;
9021
+ productV1Seller: {
9022
+ __typename?: "ProductV1Seller";
9023
+ id: string;
9024
+ defaultVersion?: number | null;
9025
+ name?: string | null;
9026
+ description?: string | null;
9027
+ externalUrl?: string | null;
9028
+ tokenId?: string | null;
9029
+ images?: Array<{
9030
+ __typename?: "ProductV1Media";
9031
+ id: string;
9032
+ url: string;
9033
+ tag?: string | null;
9034
+ type: ProductV1MediaType;
9035
+ }> | null;
9036
+ contactLinks?: Array<{
9037
+ __typename?: "ProductV1SellerContactLink";
9038
+ id: string;
9039
+ url: string;
9040
+ tag: string;
9041
+ }> | null;
9042
+ seller: {
9043
+ __typename?: "Seller";
9044
+ id: string;
9045
+ operator: string;
9046
+ admin: string;
9047
+ clerk: string;
9048
+ treasury: string;
9049
+ authTokenId: string;
9050
+ authTokenType: number;
9051
+ voucherCloneAddress: string;
9052
+ active: boolean;
9053
+ };
9054
+ };
9055
+ exchangePolicy: {
9056
+ __typename?: "ProductV1ExchangePolicy";
9057
+ id: string;
9058
+ uuid: string;
9059
+ version: number;
9060
+ label?: string | null;
9061
+ template: string;
9062
+ };
9063
+ shipping?: {
9064
+ __typename?: "ProductV1ShippingOption";
9065
+ id: string;
9066
+ defaultVersion?: number | null;
9067
+ countryOfOrigin?: string | null;
9068
+ redemptionPoint?: string | null;
9069
+ supportedJurisdictions?: Array<{
9070
+ __typename?: "ProductV1ShippingJurisdiction";
9071
+ id: string;
9072
+ label: string;
9073
+ deliveryTime: string;
9074
+ }> | null;
9075
+ } | null;
7382
9076
  } | null;
7383
9077
  };
7384
9078
  }>;
@@ -7501,11 +9195,165 @@ export declare type ExchangeFieldsFragment = {
7501
9195
  type: MetadataType;
7502
9196
  } | {
7503
9197
  __typename?: "ProductV1MetadataEntity";
9198
+ image: string;
9199
+ createdAt: string;
9200
+ voided: boolean;
9201
+ validFromDate: string;
9202
+ validUntilDate: string;
9203
+ quantityAvailable: string;
9204
+ uuid: string;
7504
9205
  name: string;
7505
9206
  description: string;
7506
9207
  externalUrl: string;
7507
9208
  schemaUrl: string;
7508
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;
7509
9357
  } | null;
7510
9358
  };
7511
9359
  };
@@ -7704,11 +9552,165 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
7704
9552
  type: MetadataType;
7705
9553
  } | {
7706
9554
  __typename?: "ProductV1MetadataEntity";
9555
+ image: string;
9556
+ createdAt: string;
9557
+ voided: boolean;
9558
+ validFromDate: string;
9559
+ validUntilDate: string;
9560
+ quantityAvailable: string;
9561
+ uuid: string;
7707
9562
  name: string;
7708
9563
  description: string;
7709
9564
  externalUrl: string;
7710
9565
  schemaUrl: string;
7711
9566
  type: MetadataType;
9567
+ attributes?: Array<{
9568
+ __typename?: "MetadataAttribute";
9569
+ traitType: string;
9570
+ value: string;
9571
+ displayType: string;
9572
+ }> | null;
9573
+ product: {
9574
+ __typename?: "ProductV1Product";
9575
+ id: string;
9576
+ uuid: string;
9577
+ version: number;
9578
+ title: string;
9579
+ description: string;
9580
+ identification_sKU?: string | null;
9581
+ identification_productId?: string | null;
9582
+ identification_productIdType?: string | null;
9583
+ productionInformation_brandName: string;
9584
+ productionInformation_manufacturer?: string | null;
9585
+ productionInformation_manufacturerPartNumber?: string | null;
9586
+ productionInformation_modelNumber?: string | null;
9587
+ productionInformation_materials?: Array<string> | null;
9588
+ details_category?: string | null;
9589
+ details_subCategory?: string | null;
9590
+ details_subCategory2?: string | null;
9591
+ details_offerCategory: string;
9592
+ offerCategory: ProductV1OfferCategory;
9593
+ details_tags?: Array<string> | null;
9594
+ details_sections?: Array<string> | null;
9595
+ details_personalisation?: Array<string> | null;
9596
+ packaging_packageQuantity?: string | null;
9597
+ packaging_dimensions_length?: string | null;
9598
+ packaging_dimensions_width?: string | null;
9599
+ packaging_dimensions_height?: string | null;
9600
+ packaging_dimensions_unit?: string | null;
9601
+ packaging_weight_value?: string | null;
9602
+ packaging_weight_unit?: string | null;
9603
+ brand: {
9604
+ __typename?: "ProductV1Brand";
9605
+ id: string;
9606
+ name: string;
9607
+ };
9608
+ category?: {
9609
+ __typename?: "ProductV1Category";
9610
+ id: string;
9611
+ name: string;
9612
+ } | null;
9613
+ subCategory?: {
9614
+ __typename?: "ProductV1Category";
9615
+ id: string;
9616
+ name: string;
9617
+ } | null;
9618
+ subCategory2?: {
9619
+ __typename?: "ProductV1Category";
9620
+ id: string;
9621
+ name: string;
9622
+ } | null;
9623
+ tags?: Array<{
9624
+ __typename?: "ProductV1Tag";
9625
+ id: string;
9626
+ name: string;
9627
+ }> | null;
9628
+ sections?: Array<{
9629
+ __typename?: "ProductV1Section";
9630
+ id: string;
9631
+ name: string;
9632
+ }> | null;
9633
+ personalisation?: Array<{
9634
+ __typename?: "ProductV1Personalisation";
9635
+ id: string;
9636
+ name: string;
9637
+ }> | null;
9638
+ visuals_images: Array<{
9639
+ __typename?: "ProductV1Media";
9640
+ id: string;
9641
+ url: string;
9642
+ tag?: string | null;
9643
+ type: ProductV1MediaType;
9644
+ }>;
9645
+ visuals_videos?: Array<{
9646
+ __typename?: "ProductV1Media";
9647
+ id: string;
9648
+ url: string;
9649
+ tag?: string | null;
9650
+ type: ProductV1MediaType;
9651
+ }> | null;
9652
+ };
9653
+ variations?: Array<{
9654
+ __typename?: "ProductV1Variation";
9655
+ id: string;
9656
+ type: string;
9657
+ option: string;
9658
+ }> | null;
9659
+ productV1Seller: {
9660
+ __typename?: "ProductV1Seller";
9661
+ id: string;
9662
+ defaultVersion?: number | null;
9663
+ name?: string | null;
9664
+ description?: string | null;
9665
+ externalUrl?: string | null;
9666
+ tokenId?: string | null;
9667
+ images?: Array<{
9668
+ __typename?: "ProductV1Media";
9669
+ id: string;
9670
+ url: string;
9671
+ tag?: string | null;
9672
+ type: ProductV1MediaType;
9673
+ }> | null;
9674
+ contactLinks?: Array<{
9675
+ __typename?: "ProductV1SellerContactLink";
9676
+ id: string;
9677
+ url: string;
9678
+ tag: string;
9679
+ }> | null;
9680
+ seller: {
9681
+ __typename?: "Seller";
9682
+ id: string;
9683
+ operator: string;
9684
+ admin: string;
9685
+ clerk: string;
9686
+ treasury: string;
9687
+ authTokenId: string;
9688
+ authTokenType: number;
9689
+ voucherCloneAddress: string;
9690
+ active: boolean;
9691
+ };
9692
+ };
9693
+ exchangePolicy: {
9694
+ __typename?: "ProductV1ExchangePolicy";
9695
+ id: string;
9696
+ uuid: string;
9697
+ version: number;
9698
+ label?: string | null;
9699
+ template: string;
9700
+ };
9701
+ shipping?: {
9702
+ __typename?: "ProductV1ShippingOption";
9703
+ id: string;
9704
+ defaultVersion?: number | null;
9705
+ countryOfOrigin?: string | null;
9706
+ redemptionPoint?: string | null;
9707
+ supportedJurisdictions?: Array<{
9708
+ __typename?: "ProductV1ShippingJurisdiction";
9709
+ id: string;
9710
+ label: string;
9711
+ deliveryTime: string;
9712
+ }> | null;
9713
+ } | null;
7712
9714
  } | null;
7713
9715
  };
7714
9716
  seller: {
@@ -7849,11 +9851,165 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
7849
9851
  type: MetadataType;
7850
9852
  } | {
7851
9853
  __typename?: "ProductV1MetadataEntity";
9854
+ image: string;
9855
+ createdAt: string;
9856
+ voided: boolean;
9857
+ validFromDate: string;
9858
+ validUntilDate: string;
9859
+ quantityAvailable: string;
9860
+ uuid: string;
7852
9861
  name: string;
7853
9862
  description: string;
7854
9863
  externalUrl: string;
7855
9864
  schemaUrl: string;
7856
9865
  type: MetadataType;
9866
+ attributes?: Array<{
9867
+ __typename?: "MetadataAttribute";
9868
+ traitType: string;
9869
+ value: string;
9870
+ displayType: string;
9871
+ }> | null;
9872
+ product: {
9873
+ __typename?: "ProductV1Product";
9874
+ id: string;
9875
+ uuid: string;
9876
+ version: number;
9877
+ title: string;
9878
+ description: string;
9879
+ identification_sKU?: string | null;
9880
+ identification_productId?: string | null;
9881
+ identification_productIdType?: string | null;
9882
+ productionInformation_brandName: string;
9883
+ productionInformation_manufacturer?: string | null;
9884
+ productionInformation_manufacturerPartNumber?: string | null;
9885
+ productionInformation_modelNumber?: string | null;
9886
+ productionInformation_materials?: Array<string> | null;
9887
+ details_category?: string | null;
9888
+ details_subCategory?: string | null;
9889
+ details_subCategory2?: string | null;
9890
+ details_offerCategory: string;
9891
+ offerCategory: ProductV1OfferCategory;
9892
+ details_tags?: Array<string> | null;
9893
+ details_sections?: Array<string> | null;
9894
+ details_personalisation?: Array<string> | null;
9895
+ packaging_packageQuantity?: string | null;
9896
+ packaging_dimensions_length?: string | null;
9897
+ packaging_dimensions_width?: string | null;
9898
+ packaging_dimensions_height?: string | null;
9899
+ packaging_dimensions_unit?: string | null;
9900
+ packaging_weight_value?: string | null;
9901
+ packaging_weight_unit?: string | null;
9902
+ brand: {
9903
+ __typename?: "ProductV1Brand";
9904
+ id: string;
9905
+ name: string;
9906
+ };
9907
+ category?: {
9908
+ __typename?: "ProductV1Category";
9909
+ id: string;
9910
+ name: string;
9911
+ } | null;
9912
+ subCategory?: {
9913
+ __typename?: "ProductV1Category";
9914
+ id: string;
9915
+ name: string;
9916
+ } | null;
9917
+ subCategory2?: {
9918
+ __typename?: "ProductV1Category";
9919
+ id: string;
9920
+ name: string;
9921
+ } | null;
9922
+ tags?: Array<{
9923
+ __typename?: "ProductV1Tag";
9924
+ id: string;
9925
+ name: string;
9926
+ }> | null;
9927
+ sections?: Array<{
9928
+ __typename?: "ProductV1Section";
9929
+ id: string;
9930
+ name: string;
9931
+ }> | null;
9932
+ personalisation?: Array<{
9933
+ __typename?: "ProductV1Personalisation";
9934
+ id: string;
9935
+ name: string;
9936
+ }> | null;
9937
+ visuals_images: Array<{
9938
+ __typename?: "ProductV1Media";
9939
+ id: string;
9940
+ url: string;
9941
+ tag?: string | null;
9942
+ type: ProductV1MediaType;
9943
+ }>;
9944
+ visuals_videos?: Array<{
9945
+ __typename?: "ProductV1Media";
9946
+ id: string;
9947
+ url: string;
9948
+ tag?: string | null;
9949
+ type: ProductV1MediaType;
9950
+ }> | null;
9951
+ };
9952
+ variations?: Array<{
9953
+ __typename?: "ProductV1Variation";
9954
+ id: string;
9955
+ type: string;
9956
+ option: string;
9957
+ }> | null;
9958
+ productV1Seller: {
9959
+ __typename?: "ProductV1Seller";
9960
+ id: string;
9961
+ defaultVersion?: number | null;
9962
+ name?: string | null;
9963
+ description?: string | null;
9964
+ externalUrl?: string | null;
9965
+ tokenId?: string | null;
9966
+ images?: Array<{
9967
+ __typename?: "ProductV1Media";
9968
+ id: string;
9969
+ url: string;
9970
+ tag?: string | null;
9971
+ type: ProductV1MediaType;
9972
+ }> | null;
9973
+ contactLinks?: Array<{
9974
+ __typename?: "ProductV1SellerContactLink";
9975
+ id: string;
9976
+ url: string;
9977
+ tag: string;
9978
+ }> | null;
9979
+ seller: {
9980
+ __typename?: "Seller";
9981
+ id: string;
9982
+ operator: string;
9983
+ admin: string;
9984
+ clerk: string;
9985
+ treasury: string;
9986
+ authTokenId: string;
9987
+ authTokenType: number;
9988
+ voucherCloneAddress: string;
9989
+ active: boolean;
9990
+ };
9991
+ };
9992
+ exchangePolicy: {
9993
+ __typename?: "ProductV1ExchangePolicy";
9994
+ id: string;
9995
+ uuid: string;
9996
+ version: number;
9997
+ label?: string | null;
9998
+ template: string;
9999
+ };
10000
+ shipping?: {
10001
+ __typename?: "ProductV1ShippingOption";
10002
+ id: string;
10003
+ defaultVersion?: number | null;
10004
+ countryOfOrigin?: string | null;
10005
+ redemptionPoint?: string | null;
10006
+ supportedJurisdictions?: Array<{
10007
+ __typename?: "ProductV1ShippingJurisdiction";
10008
+ id: string;
10009
+ label: string;
10010
+ deliveryTime: string;
10011
+ }> | null;
10012
+ } | null;
7857
10013
  } | null;
7858
10014
  };
7859
10015
  seller: {
@@ -7985,11 +10141,165 @@ export declare type BaseMetadataEntityFieldsFragment = {
7985
10141
  type: MetadataType;
7986
10142
  } | {
7987
10143
  __typename?: "ProductV1MetadataEntity";
10144
+ image: string;
10145
+ createdAt: string;
10146
+ voided: boolean;
10147
+ validFromDate: string;
10148
+ validUntilDate: string;
10149
+ quantityAvailable: string;
10150
+ uuid: string;
7988
10151
  name: string;
7989
10152
  description: string;
7990
10153
  externalUrl: string;
7991
10154
  schemaUrl: string;
7992
10155
  type: MetadataType;
10156
+ attributes?: Array<{
10157
+ __typename?: "MetadataAttribute";
10158
+ traitType: string;
10159
+ value: string;
10160
+ displayType: string;
10161
+ }> | null;
10162
+ product: {
10163
+ __typename?: "ProductV1Product";
10164
+ id: string;
10165
+ uuid: string;
10166
+ version: number;
10167
+ title: string;
10168
+ description: string;
10169
+ identification_sKU?: string | null;
10170
+ identification_productId?: string | null;
10171
+ identification_productIdType?: string | null;
10172
+ productionInformation_brandName: string;
10173
+ productionInformation_manufacturer?: string | null;
10174
+ productionInformation_manufacturerPartNumber?: string | null;
10175
+ productionInformation_modelNumber?: string | null;
10176
+ productionInformation_materials?: Array<string> | null;
10177
+ details_category?: string | null;
10178
+ details_subCategory?: string | null;
10179
+ details_subCategory2?: string | null;
10180
+ details_offerCategory: string;
10181
+ offerCategory: ProductV1OfferCategory;
10182
+ details_tags?: Array<string> | null;
10183
+ details_sections?: Array<string> | null;
10184
+ details_personalisation?: Array<string> | null;
10185
+ packaging_packageQuantity?: string | null;
10186
+ packaging_dimensions_length?: string | null;
10187
+ packaging_dimensions_width?: string | null;
10188
+ packaging_dimensions_height?: string | null;
10189
+ packaging_dimensions_unit?: string | null;
10190
+ packaging_weight_value?: string | null;
10191
+ packaging_weight_unit?: string | null;
10192
+ brand: {
10193
+ __typename?: "ProductV1Brand";
10194
+ id: string;
10195
+ name: string;
10196
+ };
10197
+ category?: {
10198
+ __typename?: "ProductV1Category";
10199
+ id: string;
10200
+ name: string;
10201
+ } | null;
10202
+ subCategory?: {
10203
+ __typename?: "ProductV1Category";
10204
+ id: string;
10205
+ name: string;
10206
+ } | null;
10207
+ subCategory2?: {
10208
+ __typename?: "ProductV1Category";
10209
+ id: string;
10210
+ name: string;
10211
+ } | null;
10212
+ tags?: Array<{
10213
+ __typename?: "ProductV1Tag";
10214
+ id: string;
10215
+ name: string;
10216
+ }> | null;
10217
+ sections?: Array<{
10218
+ __typename?: "ProductV1Section";
10219
+ id: string;
10220
+ name: string;
10221
+ }> | null;
10222
+ personalisation?: Array<{
10223
+ __typename?: "ProductV1Personalisation";
10224
+ id: string;
10225
+ name: string;
10226
+ }> | null;
10227
+ visuals_images: Array<{
10228
+ __typename?: "ProductV1Media";
10229
+ id: string;
10230
+ url: string;
10231
+ tag?: string | null;
10232
+ type: ProductV1MediaType;
10233
+ }>;
10234
+ visuals_videos?: Array<{
10235
+ __typename?: "ProductV1Media";
10236
+ id: string;
10237
+ url: string;
10238
+ tag?: string | null;
10239
+ type: ProductV1MediaType;
10240
+ }> | null;
10241
+ };
10242
+ variations?: Array<{
10243
+ __typename?: "ProductV1Variation";
10244
+ id: string;
10245
+ type: string;
10246
+ option: string;
10247
+ }> | null;
10248
+ productV1Seller: {
10249
+ __typename?: "ProductV1Seller";
10250
+ id: string;
10251
+ defaultVersion?: number | null;
10252
+ name?: string | null;
10253
+ description?: string | null;
10254
+ externalUrl?: string | null;
10255
+ tokenId?: string | null;
10256
+ images?: Array<{
10257
+ __typename?: "ProductV1Media";
10258
+ id: string;
10259
+ url: string;
10260
+ tag?: string | null;
10261
+ type: ProductV1MediaType;
10262
+ }> | null;
10263
+ contactLinks?: Array<{
10264
+ __typename?: "ProductV1SellerContactLink";
10265
+ id: string;
10266
+ url: string;
10267
+ tag: string;
10268
+ }> | null;
10269
+ seller: {
10270
+ __typename?: "Seller";
10271
+ id: string;
10272
+ operator: string;
10273
+ admin: string;
10274
+ clerk: string;
10275
+ treasury: string;
10276
+ authTokenId: string;
10277
+ authTokenType: number;
10278
+ voucherCloneAddress: string;
10279
+ active: boolean;
10280
+ };
10281
+ };
10282
+ exchangePolicy: {
10283
+ __typename?: "ProductV1ExchangePolicy";
10284
+ id: string;
10285
+ uuid: string;
10286
+ version: number;
10287
+ label?: string | null;
10288
+ template: string;
10289
+ };
10290
+ shipping?: {
10291
+ __typename?: "ProductV1ShippingOption";
10292
+ id: string;
10293
+ defaultVersion?: number | null;
10294
+ countryOfOrigin?: string | null;
10295
+ redemptionPoint?: string | null;
10296
+ supportedJurisdictions?: Array<{
10297
+ __typename?: "ProductV1ShippingJurisdiction";
10298
+ id: string;
10299
+ label: string;
10300
+ deliveryTime: string;
10301
+ }> | null;
10302
+ } | null;
7993
10303
  } | null;
7994
10304
  };
7995
10305
  seller: {
@@ -8120,11 +10430,165 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
8120
10430
  type: MetadataType;
8121
10431
  } | {
8122
10432
  __typename?: "ProductV1MetadataEntity";
10433
+ image: string;
10434
+ createdAt: string;
10435
+ voided: boolean;
10436
+ validFromDate: string;
10437
+ validUntilDate: string;
10438
+ quantityAvailable: string;
10439
+ uuid: string;
8123
10440
  name: string;
8124
10441
  description: string;
8125
10442
  externalUrl: string;
8126
10443
  schemaUrl: string;
8127
10444
  type: MetadataType;
10445
+ attributes?: Array<{
10446
+ __typename?: "MetadataAttribute";
10447
+ traitType: string;
10448
+ value: string;
10449
+ displayType: string;
10450
+ }> | null;
10451
+ product: {
10452
+ __typename?: "ProductV1Product";
10453
+ id: string;
10454
+ uuid: string;
10455
+ version: number;
10456
+ title: string;
10457
+ description: string;
10458
+ identification_sKU?: string | null;
10459
+ identification_productId?: string | null;
10460
+ identification_productIdType?: string | null;
10461
+ productionInformation_brandName: string;
10462
+ productionInformation_manufacturer?: string | null;
10463
+ productionInformation_manufacturerPartNumber?: string | null;
10464
+ productionInformation_modelNumber?: string | null;
10465
+ productionInformation_materials?: Array<string> | null;
10466
+ details_category?: string | null;
10467
+ details_subCategory?: string | null;
10468
+ details_subCategory2?: string | null;
10469
+ details_offerCategory: string;
10470
+ offerCategory: ProductV1OfferCategory;
10471
+ details_tags?: Array<string> | null;
10472
+ details_sections?: Array<string> | null;
10473
+ details_personalisation?: Array<string> | null;
10474
+ packaging_packageQuantity?: string | null;
10475
+ packaging_dimensions_length?: string | null;
10476
+ packaging_dimensions_width?: string | null;
10477
+ packaging_dimensions_height?: string | null;
10478
+ packaging_dimensions_unit?: string | null;
10479
+ packaging_weight_value?: string | null;
10480
+ packaging_weight_unit?: string | null;
10481
+ brand: {
10482
+ __typename?: "ProductV1Brand";
10483
+ id: string;
10484
+ name: string;
10485
+ };
10486
+ category?: {
10487
+ __typename?: "ProductV1Category";
10488
+ id: string;
10489
+ name: string;
10490
+ } | null;
10491
+ subCategory?: {
10492
+ __typename?: "ProductV1Category";
10493
+ id: string;
10494
+ name: string;
10495
+ } | null;
10496
+ subCategory2?: {
10497
+ __typename?: "ProductV1Category";
10498
+ id: string;
10499
+ name: string;
10500
+ } | null;
10501
+ tags?: Array<{
10502
+ __typename?: "ProductV1Tag";
10503
+ id: string;
10504
+ name: string;
10505
+ }> | null;
10506
+ sections?: Array<{
10507
+ __typename?: "ProductV1Section";
10508
+ id: string;
10509
+ name: string;
10510
+ }> | null;
10511
+ personalisation?: Array<{
10512
+ __typename?: "ProductV1Personalisation";
10513
+ id: string;
10514
+ name: string;
10515
+ }> | null;
10516
+ visuals_images: Array<{
10517
+ __typename?: "ProductV1Media";
10518
+ id: string;
10519
+ url: string;
10520
+ tag?: string | null;
10521
+ type: ProductV1MediaType;
10522
+ }>;
10523
+ visuals_videos?: Array<{
10524
+ __typename?: "ProductV1Media";
10525
+ id: string;
10526
+ url: string;
10527
+ tag?: string | null;
10528
+ type: ProductV1MediaType;
10529
+ }> | null;
10530
+ };
10531
+ variations?: Array<{
10532
+ __typename?: "ProductV1Variation";
10533
+ id: string;
10534
+ type: string;
10535
+ option: string;
10536
+ }> | null;
10537
+ productV1Seller: {
10538
+ __typename?: "ProductV1Seller";
10539
+ id: string;
10540
+ defaultVersion?: number | null;
10541
+ name?: string | null;
10542
+ description?: string | null;
10543
+ externalUrl?: string | null;
10544
+ tokenId?: string | null;
10545
+ images?: Array<{
10546
+ __typename?: "ProductV1Media";
10547
+ id: string;
10548
+ url: string;
10549
+ tag?: string | null;
10550
+ type: ProductV1MediaType;
10551
+ }> | null;
10552
+ contactLinks?: Array<{
10553
+ __typename?: "ProductV1SellerContactLink";
10554
+ id: string;
10555
+ url: string;
10556
+ tag: string;
10557
+ }> | null;
10558
+ seller: {
10559
+ __typename?: "Seller";
10560
+ id: string;
10561
+ operator: string;
10562
+ admin: string;
10563
+ clerk: string;
10564
+ treasury: string;
10565
+ authTokenId: string;
10566
+ authTokenType: number;
10567
+ voucherCloneAddress: string;
10568
+ active: boolean;
10569
+ };
10570
+ };
10571
+ exchangePolicy: {
10572
+ __typename?: "ProductV1ExchangePolicy";
10573
+ id: string;
10574
+ uuid: string;
10575
+ version: number;
10576
+ label?: string | null;
10577
+ template: string;
10578
+ };
10579
+ shipping?: {
10580
+ __typename?: "ProductV1ShippingOption";
10581
+ id: string;
10582
+ defaultVersion?: number | null;
10583
+ countryOfOrigin?: string | null;
10584
+ redemptionPoint?: string | null;
10585
+ supportedJurisdictions?: Array<{
10586
+ __typename?: "ProductV1ShippingJurisdiction";
10587
+ id: string;
10588
+ label: string;
10589
+ deliveryTime: string;
10590
+ }> | null;
10591
+ } | null;
8128
10592
  } | null;
8129
10593
  };
8130
10594
  seller: {
@@ -8296,11 +10760,165 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
8296
10760
  type: MetadataType;
8297
10761
  } | {
8298
10762
  __typename?: "ProductV1MetadataEntity";
10763
+ image: string;
10764
+ createdAt: string;
10765
+ voided: boolean;
10766
+ validFromDate: string;
10767
+ validUntilDate: string;
10768
+ quantityAvailable: string;
10769
+ uuid: string;
8299
10770
  name: string;
8300
10771
  description: string;
8301
10772
  externalUrl: string;
8302
10773
  schemaUrl: string;
8303
10774
  type: MetadataType;
10775
+ attributes?: Array<{
10776
+ __typename?: "MetadataAttribute";
10777
+ traitType: string;
10778
+ value: string;
10779
+ displayType: string;
10780
+ }> | null;
10781
+ product: {
10782
+ __typename?: "ProductV1Product";
10783
+ id: string;
10784
+ uuid: string;
10785
+ version: number;
10786
+ title: string;
10787
+ description: string;
10788
+ identification_sKU?: string | null;
10789
+ identification_productId?: string | null;
10790
+ identification_productIdType?: string | null;
10791
+ productionInformation_brandName: string;
10792
+ productionInformation_manufacturer?: string | null;
10793
+ productionInformation_manufacturerPartNumber?: string | null;
10794
+ productionInformation_modelNumber?: string | null;
10795
+ productionInformation_materials?: Array<string> | null;
10796
+ details_category?: string | null;
10797
+ details_subCategory?: string | null;
10798
+ details_subCategory2?: string | null;
10799
+ details_offerCategory: string;
10800
+ offerCategory: ProductV1OfferCategory;
10801
+ details_tags?: Array<string> | null;
10802
+ details_sections?: Array<string> | null;
10803
+ details_personalisation?: Array<string> | null;
10804
+ packaging_packageQuantity?: string | null;
10805
+ packaging_dimensions_length?: string | null;
10806
+ packaging_dimensions_width?: string | null;
10807
+ packaging_dimensions_height?: string | null;
10808
+ packaging_dimensions_unit?: string | null;
10809
+ packaging_weight_value?: string | null;
10810
+ packaging_weight_unit?: string | null;
10811
+ brand: {
10812
+ __typename?: "ProductV1Brand";
10813
+ id: string;
10814
+ name: string;
10815
+ };
10816
+ category?: {
10817
+ __typename?: "ProductV1Category";
10818
+ id: string;
10819
+ name: string;
10820
+ } | null;
10821
+ subCategory?: {
10822
+ __typename?: "ProductV1Category";
10823
+ id: string;
10824
+ name: string;
10825
+ } | null;
10826
+ subCategory2?: {
10827
+ __typename?: "ProductV1Category";
10828
+ id: string;
10829
+ name: string;
10830
+ } | null;
10831
+ tags?: Array<{
10832
+ __typename?: "ProductV1Tag";
10833
+ id: string;
10834
+ name: string;
10835
+ }> | null;
10836
+ sections?: Array<{
10837
+ __typename?: "ProductV1Section";
10838
+ id: string;
10839
+ name: string;
10840
+ }> | null;
10841
+ personalisation?: Array<{
10842
+ __typename?: "ProductV1Personalisation";
10843
+ id: string;
10844
+ name: string;
10845
+ }> | null;
10846
+ visuals_images: Array<{
10847
+ __typename?: "ProductV1Media";
10848
+ id: string;
10849
+ url: string;
10850
+ tag?: string | null;
10851
+ type: ProductV1MediaType;
10852
+ }>;
10853
+ visuals_videos?: Array<{
10854
+ __typename?: "ProductV1Media";
10855
+ id: string;
10856
+ url: string;
10857
+ tag?: string | null;
10858
+ type: ProductV1MediaType;
10859
+ }> | null;
10860
+ };
10861
+ variations?: Array<{
10862
+ __typename?: "ProductV1Variation";
10863
+ id: string;
10864
+ type: string;
10865
+ option: string;
10866
+ }> | null;
10867
+ productV1Seller: {
10868
+ __typename?: "ProductV1Seller";
10869
+ id: string;
10870
+ defaultVersion?: number | null;
10871
+ name?: string | null;
10872
+ description?: string | null;
10873
+ externalUrl?: string | null;
10874
+ tokenId?: string | null;
10875
+ images?: Array<{
10876
+ __typename?: "ProductV1Media";
10877
+ id: string;
10878
+ url: string;
10879
+ tag?: string | null;
10880
+ type: ProductV1MediaType;
10881
+ }> | null;
10882
+ contactLinks?: Array<{
10883
+ __typename?: "ProductV1SellerContactLink";
10884
+ id: string;
10885
+ url: string;
10886
+ tag: string;
10887
+ }> | null;
10888
+ seller: {
10889
+ __typename?: "Seller";
10890
+ id: string;
10891
+ operator: string;
10892
+ admin: string;
10893
+ clerk: string;
10894
+ treasury: string;
10895
+ authTokenId: string;
10896
+ authTokenType: number;
10897
+ voucherCloneAddress: string;
10898
+ active: boolean;
10899
+ };
10900
+ };
10901
+ exchangePolicy: {
10902
+ __typename?: "ProductV1ExchangePolicy";
10903
+ id: string;
10904
+ uuid: string;
10905
+ version: number;
10906
+ label?: string | null;
10907
+ template: string;
10908
+ };
10909
+ shipping?: {
10910
+ __typename?: "ProductV1ShippingOption";
10911
+ id: string;
10912
+ defaultVersion?: number | null;
10913
+ countryOfOrigin?: string | null;
10914
+ redemptionPoint?: string | null;
10915
+ supportedJurisdictions?: Array<{
10916
+ __typename?: "ProductV1ShippingJurisdiction";
10917
+ id: string;
10918
+ label: string;
10919
+ deliveryTime: string;
10920
+ }> | null;
10921
+ } | null;
8304
10922
  } | null;
8305
10923
  };
8306
10924
  seller: {
@@ -8443,6 +11061,14 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
8443
11061
  active: boolean;
8444
11062
  };
8445
11063
  };
11064
+ exchangePolicy: {
11065
+ __typename?: "ProductV1ExchangePolicy";
11066
+ id: string;
11067
+ uuid: string;
11068
+ version: number;
11069
+ label?: string | null;
11070
+ template: string;
11071
+ };
8446
11072
  } | null;
8447
11073
  };
8448
11074
  export declare type GetProductV1MetadataEntitiesQueryQueryVariables = Exact<{
@@ -8562,11 +11188,165 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
8562
11188
  type: MetadataType;
8563
11189
  } | {
8564
11190
  __typename?: "ProductV1MetadataEntity";
11191
+ image: string;
11192
+ createdAt: string;
11193
+ voided: boolean;
11194
+ validFromDate: string;
11195
+ validUntilDate: string;
11196
+ quantityAvailable: string;
11197
+ uuid: string;
8565
11198
  name: string;
8566
11199
  description: string;
8567
11200
  externalUrl: string;
8568
11201
  schemaUrl: string;
8569
11202
  type: MetadataType;
11203
+ attributes?: Array<{
11204
+ __typename?: "MetadataAttribute";
11205
+ traitType: string;
11206
+ value: string;
11207
+ displayType: string;
11208
+ }> | null;
11209
+ product: {
11210
+ __typename?: "ProductV1Product";
11211
+ id: string;
11212
+ uuid: string;
11213
+ version: number;
11214
+ title: string;
11215
+ description: string;
11216
+ identification_sKU?: string | null;
11217
+ identification_productId?: string | null;
11218
+ identification_productIdType?: string | null;
11219
+ productionInformation_brandName: string;
11220
+ productionInformation_manufacturer?: string | null;
11221
+ productionInformation_manufacturerPartNumber?: string | null;
11222
+ productionInformation_modelNumber?: string | null;
11223
+ productionInformation_materials?: Array<string> | null;
11224
+ details_category?: string | null;
11225
+ details_subCategory?: string | null;
11226
+ details_subCategory2?: string | null;
11227
+ details_offerCategory: string;
11228
+ offerCategory: ProductV1OfferCategory;
11229
+ details_tags?: Array<string> | null;
11230
+ details_sections?: Array<string> | null;
11231
+ details_personalisation?: Array<string> | null;
11232
+ packaging_packageQuantity?: string | null;
11233
+ packaging_dimensions_length?: string | null;
11234
+ packaging_dimensions_width?: string | null;
11235
+ packaging_dimensions_height?: string | null;
11236
+ packaging_dimensions_unit?: string | null;
11237
+ packaging_weight_value?: string | null;
11238
+ packaging_weight_unit?: string | null;
11239
+ brand: {
11240
+ __typename?: "ProductV1Brand";
11241
+ id: string;
11242
+ name: string;
11243
+ };
11244
+ category?: {
11245
+ __typename?: "ProductV1Category";
11246
+ id: string;
11247
+ name: string;
11248
+ } | null;
11249
+ subCategory?: {
11250
+ __typename?: "ProductV1Category";
11251
+ id: string;
11252
+ name: string;
11253
+ } | null;
11254
+ subCategory2?: {
11255
+ __typename?: "ProductV1Category";
11256
+ id: string;
11257
+ name: string;
11258
+ } | null;
11259
+ tags?: Array<{
11260
+ __typename?: "ProductV1Tag";
11261
+ id: string;
11262
+ name: string;
11263
+ }> | null;
11264
+ sections?: Array<{
11265
+ __typename?: "ProductV1Section";
11266
+ id: string;
11267
+ name: string;
11268
+ }> | null;
11269
+ personalisation?: Array<{
11270
+ __typename?: "ProductV1Personalisation";
11271
+ id: string;
11272
+ name: string;
11273
+ }> | null;
11274
+ visuals_images: Array<{
11275
+ __typename?: "ProductV1Media";
11276
+ id: string;
11277
+ url: string;
11278
+ tag?: string | null;
11279
+ type: ProductV1MediaType;
11280
+ }>;
11281
+ visuals_videos?: Array<{
11282
+ __typename?: "ProductV1Media";
11283
+ id: string;
11284
+ url: string;
11285
+ tag?: string | null;
11286
+ type: ProductV1MediaType;
11287
+ }> | null;
11288
+ };
11289
+ variations?: Array<{
11290
+ __typename?: "ProductV1Variation";
11291
+ id: string;
11292
+ type: string;
11293
+ option: string;
11294
+ }> | null;
11295
+ productV1Seller: {
11296
+ __typename?: "ProductV1Seller";
11297
+ id: string;
11298
+ defaultVersion?: number | null;
11299
+ name?: string | null;
11300
+ description?: string | null;
11301
+ externalUrl?: string | null;
11302
+ tokenId?: string | null;
11303
+ images?: Array<{
11304
+ __typename?: "ProductV1Media";
11305
+ id: string;
11306
+ url: string;
11307
+ tag?: string | null;
11308
+ type: ProductV1MediaType;
11309
+ }> | null;
11310
+ contactLinks?: Array<{
11311
+ __typename?: "ProductV1SellerContactLink";
11312
+ id: string;
11313
+ url: string;
11314
+ tag: string;
11315
+ }> | null;
11316
+ seller: {
11317
+ __typename?: "Seller";
11318
+ id: string;
11319
+ operator: string;
11320
+ admin: string;
11321
+ clerk: string;
11322
+ treasury: string;
11323
+ authTokenId: string;
11324
+ authTokenType: number;
11325
+ voucherCloneAddress: string;
11326
+ active: boolean;
11327
+ };
11328
+ };
11329
+ exchangePolicy: {
11330
+ __typename?: "ProductV1ExchangePolicy";
11331
+ id: string;
11332
+ uuid: string;
11333
+ version: number;
11334
+ label?: string | null;
11335
+ template: string;
11336
+ };
11337
+ shipping?: {
11338
+ __typename?: "ProductV1ShippingOption";
11339
+ id: string;
11340
+ defaultVersion?: number | null;
11341
+ countryOfOrigin?: string | null;
11342
+ redemptionPoint?: string | null;
11343
+ supportedJurisdictions?: Array<{
11344
+ __typename?: "ProductV1ShippingJurisdiction";
11345
+ id: string;
11346
+ label: string;
11347
+ deliveryTime: string;
11348
+ }> | null;
11349
+ } | null;
8570
11350
  } | null;
8571
11351
  };
8572
11352
  seller: {
@@ -8709,6 +11489,14 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
8709
11489
  active: boolean;
8710
11490
  };
8711
11491
  };
11492
+ exchangePolicy: {
11493
+ __typename?: "ProductV1ExchangePolicy";
11494
+ id: string;
11495
+ uuid: string;
11496
+ version: number;
11497
+ label?: string | null;
11498
+ template: string;
11499
+ };
8712
11500
  }>;
8713
11501
  };
8714
11502
  export declare type ProductV1MetadataEntityFieldsFragment = {
@@ -8819,11 +11607,165 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
8819
11607
  type: MetadataType;
8820
11608
  } | {
8821
11609
  __typename?: "ProductV1MetadataEntity";
11610
+ image: string;
11611
+ createdAt: string;
11612
+ voided: boolean;
11613
+ validFromDate: string;
11614
+ validUntilDate: string;
11615
+ quantityAvailable: string;
11616
+ uuid: string;
8822
11617
  name: string;
8823
11618
  description: string;
8824
11619
  externalUrl: string;
8825
11620
  schemaUrl: string;
8826
11621
  type: MetadataType;
11622
+ attributes?: Array<{
11623
+ __typename?: "MetadataAttribute";
11624
+ traitType: string;
11625
+ value: string;
11626
+ displayType: string;
11627
+ }> | null;
11628
+ product: {
11629
+ __typename?: "ProductV1Product";
11630
+ id: string;
11631
+ uuid: string;
11632
+ version: number;
11633
+ title: string;
11634
+ description: string;
11635
+ identification_sKU?: string | null;
11636
+ identification_productId?: string | null;
11637
+ identification_productIdType?: string | null;
11638
+ productionInformation_brandName: string;
11639
+ productionInformation_manufacturer?: string | null;
11640
+ productionInformation_manufacturerPartNumber?: string | null;
11641
+ productionInformation_modelNumber?: string | null;
11642
+ productionInformation_materials?: Array<string> | null;
11643
+ details_category?: string | null;
11644
+ details_subCategory?: string | null;
11645
+ details_subCategory2?: string | null;
11646
+ details_offerCategory: string;
11647
+ offerCategory: ProductV1OfferCategory;
11648
+ details_tags?: Array<string> | null;
11649
+ details_sections?: Array<string> | null;
11650
+ details_personalisation?: Array<string> | null;
11651
+ packaging_packageQuantity?: string | null;
11652
+ packaging_dimensions_length?: string | null;
11653
+ packaging_dimensions_width?: string | null;
11654
+ packaging_dimensions_height?: string | null;
11655
+ packaging_dimensions_unit?: string | null;
11656
+ packaging_weight_value?: string | null;
11657
+ packaging_weight_unit?: string | null;
11658
+ brand: {
11659
+ __typename?: "ProductV1Brand";
11660
+ id: string;
11661
+ name: string;
11662
+ };
11663
+ category?: {
11664
+ __typename?: "ProductV1Category";
11665
+ id: string;
11666
+ name: string;
11667
+ } | null;
11668
+ subCategory?: {
11669
+ __typename?: "ProductV1Category";
11670
+ id: string;
11671
+ name: string;
11672
+ } | null;
11673
+ subCategory2?: {
11674
+ __typename?: "ProductV1Category";
11675
+ id: string;
11676
+ name: string;
11677
+ } | null;
11678
+ tags?: Array<{
11679
+ __typename?: "ProductV1Tag";
11680
+ id: string;
11681
+ name: string;
11682
+ }> | null;
11683
+ sections?: Array<{
11684
+ __typename?: "ProductV1Section";
11685
+ id: string;
11686
+ name: string;
11687
+ }> | null;
11688
+ personalisation?: Array<{
11689
+ __typename?: "ProductV1Personalisation";
11690
+ id: string;
11691
+ name: string;
11692
+ }> | null;
11693
+ visuals_images: Array<{
11694
+ __typename?: "ProductV1Media";
11695
+ id: string;
11696
+ url: string;
11697
+ tag?: string | null;
11698
+ type: ProductV1MediaType;
11699
+ }>;
11700
+ visuals_videos?: Array<{
11701
+ __typename?: "ProductV1Media";
11702
+ id: string;
11703
+ url: string;
11704
+ tag?: string | null;
11705
+ type: ProductV1MediaType;
11706
+ }> | null;
11707
+ };
11708
+ variations?: Array<{
11709
+ __typename?: "ProductV1Variation";
11710
+ id: string;
11711
+ type: string;
11712
+ option: string;
11713
+ }> | null;
11714
+ productV1Seller: {
11715
+ __typename?: "ProductV1Seller";
11716
+ id: string;
11717
+ defaultVersion?: number | null;
11718
+ name?: string | null;
11719
+ description?: string | null;
11720
+ externalUrl?: string | null;
11721
+ tokenId?: string | null;
11722
+ images?: Array<{
11723
+ __typename?: "ProductV1Media";
11724
+ id: string;
11725
+ url: string;
11726
+ tag?: string | null;
11727
+ type: ProductV1MediaType;
11728
+ }> | null;
11729
+ contactLinks?: Array<{
11730
+ __typename?: "ProductV1SellerContactLink";
11731
+ id: string;
11732
+ url: string;
11733
+ tag: string;
11734
+ }> | null;
11735
+ seller: {
11736
+ __typename?: "Seller";
11737
+ id: string;
11738
+ operator: string;
11739
+ admin: string;
11740
+ clerk: string;
11741
+ treasury: string;
11742
+ authTokenId: string;
11743
+ authTokenType: number;
11744
+ voucherCloneAddress: string;
11745
+ active: boolean;
11746
+ };
11747
+ };
11748
+ exchangePolicy: {
11749
+ __typename?: "ProductV1ExchangePolicy";
11750
+ id: string;
11751
+ uuid: string;
11752
+ version: number;
11753
+ label?: string | null;
11754
+ template: string;
11755
+ };
11756
+ shipping?: {
11757
+ __typename?: "ProductV1ShippingOption";
11758
+ id: string;
11759
+ defaultVersion?: number | null;
11760
+ countryOfOrigin?: string | null;
11761
+ redemptionPoint?: string | null;
11762
+ supportedJurisdictions?: Array<{
11763
+ __typename?: "ProductV1ShippingJurisdiction";
11764
+ id: string;
11765
+ label: string;
11766
+ deliveryTime: string;
11767
+ }> | null;
11768
+ } | null;
8827
11769
  } | null;
8828
11770
  };
8829
11771
  seller: {
@@ -8966,6 +11908,14 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
8966
11908
  active: boolean;
8967
11909
  };
8968
11910
  };
11911
+ exchangePolicy: {
11912
+ __typename?: "ProductV1ExchangePolicy";
11913
+ id: string;
11914
+ uuid: string;
11915
+ version: number;
11916
+ label?: string | null;
11917
+ template: string;
11918
+ };
8969
11919
  };
8970
11920
  export declare type BaseProductV1MetadataEntityFieldsFragment = {
8971
11921
  __typename?: "ProductV1MetadataEntity";
@@ -9075,11 +12025,165 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
9075
12025
  type: MetadataType;
9076
12026
  } | {
9077
12027
  __typename?: "ProductV1MetadataEntity";
12028
+ image: string;
12029
+ createdAt: string;
12030
+ voided: boolean;
12031
+ validFromDate: string;
12032
+ validUntilDate: string;
12033
+ quantityAvailable: string;
12034
+ uuid: string;
9078
12035
  name: string;
9079
12036
  description: string;
9080
12037
  externalUrl: string;
9081
12038
  schemaUrl: string;
9082
12039
  type: MetadataType;
12040
+ attributes?: Array<{
12041
+ __typename?: "MetadataAttribute";
12042
+ traitType: string;
12043
+ value: string;
12044
+ displayType: string;
12045
+ }> | null;
12046
+ product: {
12047
+ __typename?: "ProductV1Product";
12048
+ id: string;
12049
+ uuid: string;
12050
+ version: number;
12051
+ title: string;
12052
+ description: string;
12053
+ identification_sKU?: string | null;
12054
+ identification_productId?: string | null;
12055
+ identification_productIdType?: string | null;
12056
+ productionInformation_brandName: string;
12057
+ productionInformation_manufacturer?: string | null;
12058
+ productionInformation_manufacturerPartNumber?: string | null;
12059
+ productionInformation_modelNumber?: string | null;
12060
+ productionInformation_materials?: Array<string> | null;
12061
+ details_category?: string | null;
12062
+ details_subCategory?: string | null;
12063
+ details_subCategory2?: string | null;
12064
+ details_offerCategory: string;
12065
+ offerCategory: ProductV1OfferCategory;
12066
+ details_tags?: Array<string> | null;
12067
+ details_sections?: Array<string> | null;
12068
+ details_personalisation?: Array<string> | null;
12069
+ packaging_packageQuantity?: string | null;
12070
+ packaging_dimensions_length?: string | null;
12071
+ packaging_dimensions_width?: string | null;
12072
+ packaging_dimensions_height?: string | null;
12073
+ packaging_dimensions_unit?: string | null;
12074
+ packaging_weight_value?: string | null;
12075
+ packaging_weight_unit?: string | null;
12076
+ brand: {
12077
+ __typename?: "ProductV1Brand";
12078
+ id: string;
12079
+ name: string;
12080
+ };
12081
+ category?: {
12082
+ __typename?: "ProductV1Category";
12083
+ id: string;
12084
+ name: string;
12085
+ } | null;
12086
+ subCategory?: {
12087
+ __typename?: "ProductV1Category";
12088
+ id: string;
12089
+ name: string;
12090
+ } | null;
12091
+ subCategory2?: {
12092
+ __typename?: "ProductV1Category";
12093
+ id: string;
12094
+ name: string;
12095
+ } | null;
12096
+ tags?: Array<{
12097
+ __typename?: "ProductV1Tag";
12098
+ id: string;
12099
+ name: string;
12100
+ }> | null;
12101
+ sections?: Array<{
12102
+ __typename?: "ProductV1Section";
12103
+ id: string;
12104
+ name: string;
12105
+ }> | null;
12106
+ personalisation?: Array<{
12107
+ __typename?: "ProductV1Personalisation";
12108
+ id: string;
12109
+ name: string;
12110
+ }> | null;
12111
+ visuals_images: Array<{
12112
+ __typename?: "ProductV1Media";
12113
+ id: string;
12114
+ url: string;
12115
+ tag?: string | null;
12116
+ type: ProductV1MediaType;
12117
+ }>;
12118
+ visuals_videos?: Array<{
12119
+ __typename?: "ProductV1Media";
12120
+ id: string;
12121
+ url: string;
12122
+ tag?: string | null;
12123
+ type: ProductV1MediaType;
12124
+ }> | null;
12125
+ };
12126
+ variations?: Array<{
12127
+ __typename?: "ProductV1Variation";
12128
+ id: string;
12129
+ type: string;
12130
+ option: string;
12131
+ }> | null;
12132
+ productV1Seller: {
12133
+ __typename?: "ProductV1Seller";
12134
+ id: string;
12135
+ defaultVersion?: number | null;
12136
+ name?: string | null;
12137
+ description?: string | null;
12138
+ externalUrl?: string | null;
12139
+ tokenId?: string | null;
12140
+ images?: Array<{
12141
+ __typename?: "ProductV1Media";
12142
+ id: string;
12143
+ url: string;
12144
+ tag?: string | null;
12145
+ type: ProductV1MediaType;
12146
+ }> | null;
12147
+ contactLinks?: Array<{
12148
+ __typename?: "ProductV1SellerContactLink";
12149
+ id: string;
12150
+ url: string;
12151
+ tag: string;
12152
+ }> | null;
12153
+ seller: {
12154
+ __typename?: "Seller";
12155
+ id: string;
12156
+ operator: string;
12157
+ admin: string;
12158
+ clerk: string;
12159
+ treasury: string;
12160
+ authTokenId: string;
12161
+ authTokenType: number;
12162
+ voucherCloneAddress: string;
12163
+ active: boolean;
12164
+ };
12165
+ };
12166
+ exchangePolicy: {
12167
+ __typename?: "ProductV1ExchangePolicy";
12168
+ id: string;
12169
+ uuid: string;
12170
+ version: number;
12171
+ label?: string | null;
12172
+ template: string;
12173
+ };
12174
+ shipping?: {
12175
+ __typename?: "ProductV1ShippingOption";
12176
+ id: string;
12177
+ defaultVersion?: number | null;
12178
+ countryOfOrigin?: string | null;
12179
+ redemptionPoint?: string | null;
12180
+ supportedJurisdictions?: Array<{
12181
+ __typename?: "ProductV1ShippingJurisdiction";
12182
+ id: string;
12183
+ label: string;
12184
+ deliveryTime: string;
12185
+ }> | null;
12186
+ } | null;
9083
12187
  } | null;
9084
12188
  };
9085
12189
  seller: {
@@ -9222,6 +12326,14 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
9222
12326
  active: boolean;
9223
12327
  };
9224
12328
  };
12329
+ exchangePolicy: {
12330
+ __typename?: "ProductV1ExchangePolicy";
12331
+ id: string;
12332
+ uuid: string;
12333
+ version: number;
12334
+ label?: string | null;
12335
+ template: string;
12336
+ };
9225
12337
  };
9226
12338
  export declare type BaseProductV1ProductFieldsFragment = {
9227
12339
  __typename?: "ProductV1Product";
@@ -9561,26 +12673,180 @@ export declare type GetOfferByIdQueryQuery = {
9561
12673
  type: MetadataType;
9562
12674
  } | {
9563
12675
  __typename?: "ProductV1MetadataEntity";
12676
+ image: string;
12677
+ createdAt: string;
12678
+ voided: boolean;
12679
+ validFromDate: string;
12680
+ validUntilDate: string;
12681
+ quantityAvailable: string;
12682
+ uuid: string;
9564
12683
  name: string;
9565
12684
  description: string;
9566
12685
  externalUrl: string;
9567
12686
  schemaUrl: string;
9568
12687
  type: MetadataType;
9569
- } | null;
9570
- } | null;
9571
- };
9572
- export declare type GetOffersQueryQueryVariables = Exact<{
9573
- offersSkip?: InputMaybe<Scalars["Int"]>;
9574
- offersFirst?: InputMaybe<Scalars["Int"]>;
9575
- offersOrderBy?: InputMaybe<Offer_OrderBy>;
9576
- offersOrderDirection?: InputMaybe<OrderDirection>;
9577
- offersFilter?: InputMaybe<Offer_Filter>;
9578
- exchangesSkip?: InputMaybe<Scalars["Int"]>;
9579
- exchangesFirst?: InputMaybe<Scalars["Int"]>;
9580
- exchangesOrderBy?: InputMaybe<Exchange_OrderBy>;
9581
- exchangesOrderDirection?: InputMaybe<OrderDirection>;
9582
- exchangesFilter?: InputMaybe<Exchange_Filter>;
9583
- includeExchanges?: InputMaybe<Scalars["Boolean"]>;
12688
+ attributes?: Array<{
12689
+ __typename?: "MetadataAttribute";
12690
+ traitType: string;
12691
+ value: string;
12692
+ displayType: string;
12693
+ }> | null;
12694
+ product: {
12695
+ __typename?: "ProductV1Product";
12696
+ id: string;
12697
+ uuid: string;
12698
+ version: number;
12699
+ title: string;
12700
+ description: string;
12701
+ identification_sKU?: string | null;
12702
+ identification_productId?: string | null;
12703
+ identification_productIdType?: string | null;
12704
+ productionInformation_brandName: string;
12705
+ productionInformation_manufacturer?: string | null;
12706
+ productionInformation_manufacturerPartNumber?: string | null;
12707
+ productionInformation_modelNumber?: string | null;
12708
+ productionInformation_materials?: Array<string> | null;
12709
+ details_category?: string | null;
12710
+ details_subCategory?: string | null;
12711
+ details_subCategory2?: string | null;
12712
+ details_offerCategory: string;
12713
+ offerCategory: ProductV1OfferCategory;
12714
+ details_tags?: Array<string> | null;
12715
+ details_sections?: Array<string> | null;
12716
+ details_personalisation?: Array<string> | null;
12717
+ packaging_packageQuantity?: string | null;
12718
+ packaging_dimensions_length?: string | null;
12719
+ packaging_dimensions_width?: string | null;
12720
+ packaging_dimensions_height?: string | null;
12721
+ packaging_dimensions_unit?: string | null;
12722
+ packaging_weight_value?: string | null;
12723
+ packaging_weight_unit?: string | null;
12724
+ brand: {
12725
+ __typename?: "ProductV1Brand";
12726
+ id: string;
12727
+ name: string;
12728
+ };
12729
+ category?: {
12730
+ __typename?: "ProductV1Category";
12731
+ id: string;
12732
+ name: string;
12733
+ } | null;
12734
+ subCategory?: {
12735
+ __typename?: "ProductV1Category";
12736
+ id: string;
12737
+ name: string;
12738
+ } | null;
12739
+ subCategory2?: {
12740
+ __typename?: "ProductV1Category";
12741
+ id: string;
12742
+ name: string;
12743
+ } | null;
12744
+ tags?: Array<{
12745
+ __typename?: "ProductV1Tag";
12746
+ id: string;
12747
+ name: string;
12748
+ }> | null;
12749
+ sections?: Array<{
12750
+ __typename?: "ProductV1Section";
12751
+ id: string;
12752
+ name: string;
12753
+ }> | null;
12754
+ personalisation?: Array<{
12755
+ __typename?: "ProductV1Personalisation";
12756
+ id: string;
12757
+ name: string;
12758
+ }> | null;
12759
+ visuals_images: Array<{
12760
+ __typename?: "ProductV1Media";
12761
+ id: string;
12762
+ url: string;
12763
+ tag?: string | null;
12764
+ type: ProductV1MediaType;
12765
+ }>;
12766
+ visuals_videos?: Array<{
12767
+ __typename?: "ProductV1Media";
12768
+ id: string;
12769
+ url: string;
12770
+ tag?: string | null;
12771
+ type: ProductV1MediaType;
12772
+ }> | null;
12773
+ };
12774
+ variations?: Array<{
12775
+ __typename?: "ProductV1Variation";
12776
+ id: string;
12777
+ type: string;
12778
+ option: string;
12779
+ }> | null;
12780
+ productV1Seller: {
12781
+ __typename?: "ProductV1Seller";
12782
+ id: string;
12783
+ defaultVersion?: number | null;
12784
+ name?: string | null;
12785
+ description?: string | null;
12786
+ externalUrl?: string | null;
12787
+ tokenId?: string | null;
12788
+ images?: Array<{
12789
+ __typename?: "ProductV1Media";
12790
+ id: string;
12791
+ url: string;
12792
+ tag?: string | null;
12793
+ type: ProductV1MediaType;
12794
+ }> | null;
12795
+ contactLinks?: Array<{
12796
+ __typename?: "ProductV1SellerContactLink";
12797
+ id: string;
12798
+ url: string;
12799
+ tag: string;
12800
+ }> | null;
12801
+ seller: {
12802
+ __typename?: "Seller";
12803
+ id: string;
12804
+ operator: string;
12805
+ admin: string;
12806
+ clerk: string;
12807
+ treasury: string;
12808
+ authTokenId: string;
12809
+ authTokenType: number;
12810
+ voucherCloneAddress: string;
12811
+ active: boolean;
12812
+ };
12813
+ };
12814
+ exchangePolicy: {
12815
+ __typename?: "ProductV1ExchangePolicy";
12816
+ id: string;
12817
+ uuid: string;
12818
+ version: number;
12819
+ label?: string | null;
12820
+ template: string;
12821
+ };
12822
+ shipping?: {
12823
+ __typename?: "ProductV1ShippingOption";
12824
+ id: string;
12825
+ defaultVersion?: number | null;
12826
+ countryOfOrigin?: string | null;
12827
+ redemptionPoint?: string | null;
12828
+ supportedJurisdictions?: Array<{
12829
+ __typename?: "ProductV1ShippingJurisdiction";
12830
+ id: string;
12831
+ label: string;
12832
+ deliveryTime: string;
12833
+ }> | null;
12834
+ } | null;
12835
+ } | null;
12836
+ } | null;
12837
+ };
12838
+ export declare type GetOffersQueryQueryVariables = Exact<{
12839
+ offersSkip?: InputMaybe<Scalars["Int"]>;
12840
+ offersFirst?: InputMaybe<Scalars["Int"]>;
12841
+ offersOrderBy?: InputMaybe<Offer_OrderBy>;
12842
+ offersOrderDirection?: InputMaybe<OrderDirection>;
12843
+ offersFilter?: InputMaybe<Offer_Filter>;
12844
+ exchangesSkip?: InputMaybe<Scalars["Int"]>;
12845
+ exchangesFirst?: InputMaybe<Scalars["Int"]>;
12846
+ exchangesOrderBy?: InputMaybe<Exchange_OrderBy>;
12847
+ exchangesOrderDirection?: InputMaybe<OrderDirection>;
12848
+ exchangesFilter?: InputMaybe<Exchange_Filter>;
12849
+ includeExchanges?: InputMaybe<Scalars["Boolean"]>;
9584
12850
  }>;
9585
12851
  export declare type GetOffersQueryQuery = {
9586
12852
  __typename?: "Query";
@@ -9685,11 +12951,165 @@ export declare type GetOffersQueryQuery = {
9685
12951
  type: MetadataType;
9686
12952
  } | {
9687
12953
  __typename?: "ProductV1MetadataEntity";
12954
+ image: string;
12955
+ createdAt: string;
12956
+ voided: boolean;
12957
+ validFromDate: string;
12958
+ validUntilDate: string;
12959
+ quantityAvailable: string;
12960
+ uuid: string;
9688
12961
  name: string;
9689
12962
  description: string;
9690
12963
  externalUrl: string;
9691
12964
  schemaUrl: string;
9692
12965
  type: MetadataType;
12966
+ attributes?: Array<{
12967
+ __typename?: "MetadataAttribute";
12968
+ traitType: string;
12969
+ value: string;
12970
+ displayType: string;
12971
+ }> | null;
12972
+ product: {
12973
+ __typename?: "ProductV1Product";
12974
+ id: string;
12975
+ uuid: string;
12976
+ version: number;
12977
+ title: string;
12978
+ description: string;
12979
+ identification_sKU?: string | null;
12980
+ identification_productId?: string | null;
12981
+ identification_productIdType?: string | null;
12982
+ productionInformation_brandName: string;
12983
+ productionInformation_manufacturer?: string | null;
12984
+ productionInformation_manufacturerPartNumber?: string | null;
12985
+ productionInformation_modelNumber?: string | null;
12986
+ productionInformation_materials?: Array<string> | null;
12987
+ details_category?: string | null;
12988
+ details_subCategory?: string | null;
12989
+ details_subCategory2?: string | null;
12990
+ details_offerCategory: string;
12991
+ offerCategory: ProductV1OfferCategory;
12992
+ details_tags?: Array<string> | null;
12993
+ details_sections?: Array<string> | null;
12994
+ details_personalisation?: Array<string> | null;
12995
+ packaging_packageQuantity?: string | null;
12996
+ packaging_dimensions_length?: string | null;
12997
+ packaging_dimensions_width?: string | null;
12998
+ packaging_dimensions_height?: string | null;
12999
+ packaging_dimensions_unit?: string | null;
13000
+ packaging_weight_value?: string | null;
13001
+ packaging_weight_unit?: string | null;
13002
+ brand: {
13003
+ __typename?: "ProductV1Brand";
13004
+ id: string;
13005
+ name: string;
13006
+ };
13007
+ category?: {
13008
+ __typename?: "ProductV1Category";
13009
+ id: string;
13010
+ name: string;
13011
+ } | null;
13012
+ subCategory?: {
13013
+ __typename?: "ProductV1Category";
13014
+ id: string;
13015
+ name: string;
13016
+ } | null;
13017
+ subCategory2?: {
13018
+ __typename?: "ProductV1Category";
13019
+ id: string;
13020
+ name: string;
13021
+ } | null;
13022
+ tags?: Array<{
13023
+ __typename?: "ProductV1Tag";
13024
+ id: string;
13025
+ name: string;
13026
+ }> | null;
13027
+ sections?: Array<{
13028
+ __typename?: "ProductV1Section";
13029
+ id: string;
13030
+ name: string;
13031
+ }> | null;
13032
+ personalisation?: Array<{
13033
+ __typename?: "ProductV1Personalisation";
13034
+ id: string;
13035
+ name: string;
13036
+ }> | null;
13037
+ visuals_images: Array<{
13038
+ __typename?: "ProductV1Media";
13039
+ id: string;
13040
+ url: string;
13041
+ tag?: string | null;
13042
+ type: ProductV1MediaType;
13043
+ }>;
13044
+ visuals_videos?: Array<{
13045
+ __typename?: "ProductV1Media";
13046
+ id: string;
13047
+ url: string;
13048
+ tag?: string | null;
13049
+ type: ProductV1MediaType;
13050
+ }> | null;
13051
+ };
13052
+ variations?: Array<{
13053
+ __typename?: "ProductV1Variation";
13054
+ id: string;
13055
+ type: string;
13056
+ option: string;
13057
+ }> | null;
13058
+ productV1Seller: {
13059
+ __typename?: "ProductV1Seller";
13060
+ id: string;
13061
+ defaultVersion?: number | null;
13062
+ name?: string | null;
13063
+ description?: string | null;
13064
+ externalUrl?: string | null;
13065
+ tokenId?: string | null;
13066
+ images?: Array<{
13067
+ __typename?: "ProductV1Media";
13068
+ id: string;
13069
+ url: string;
13070
+ tag?: string | null;
13071
+ type: ProductV1MediaType;
13072
+ }> | null;
13073
+ contactLinks?: Array<{
13074
+ __typename?: "ProductV1SellerContactLink";
13075
+ id: string;
13076
+ url: string;
13077
+ tag: string;
13078
+ }> | null;
13079
+ seller: {
13080
+ __typename?: "Seller";
13081
+ id: string;
13082
+ operator: string;
13083
+ admin: string;
13084
+ clerk: string;
13085
+ treasury: string;
13086
+ authTokenId: string;
13087
+ authTokenType: number;
13088
+ voucherCloneAddress: string;
13089
+ active: boolean;
13090
+ };
13091
+ };
13092
+ exchangePolicy: {
13093
+ __typename?: "ProductV1ExchangePolicy";
13094
+ id: string;
13095
+ uuid: string;
13096
+ version: number;
13097
+ label?: string | null;
13098
+ template: string;
13099
+ };
13100
+ shipping?: {
13101
+ __typename?: "ProductV1ShippingOption";
13102
+ id: string;
13103
+ defaultVersion?: number | null;
13104
+ countryOfOrigin?: string | null;
13105
+ redemptionPoint?: string | null;
13106
+ supportedJurisdictions?: Array<{
13107
+ __typename?: "ProductV1ShippingJurisdiction";
13108
+ id: string;
13109
+ label: string;
13110
+ deliveryTime: string;
13111
+ }> | null;
13112
+ } | null;
9693
13113
  } | null;
9694
13114
  }>;
9695
13115
  };
@@ -9794,11 +13214,165 @@ export declare type OfferFieldsFragment = {
9794
13214
  type: MetadataType;
9795
13215
  } | {
9796
13216
  __typename?: "ProductV1MetadataEntity";
13217
+ image: string;
13218
+ createdAt: string;
13219
+ voided: boolean;
13220
+ validFromDate: string;
13221
+ validUntilDate: string;
13222
+ quantityAvailable: string;
13223
+ uuid: string;
9797
13224
  name: string;
9798
13225
  description: string;
9799
13226
  externalUrl: string;
9800
13227
  schemaUrl: string;
9801
13228
  type: MetadataType;
13229
+ attributes?: Array<{
13230
+ __typename?: "MetadataAttribute";
13231
+ traitType: string;
13232
+ value: string;
13233
+ displayType: string;
13234
+ }> | null;
13235
+ product: {
13236
+ __typename?: "ProductV1Product";
13237
+ id: string;
13238
+ uuid: string;
13239
+ version: number;
13240
+ title: string;
13241
+ description: string;
13242
+ identification_sKU?: string | null;
13243
+ identification_productId?: string | null;
13244
+ identification_productIdType?: string | null;
13245
+ productionInformation_brandName: string;
13246
+ productionInformation_manufacturer?: string | null;
13247
+ productionInformation_manufacturerPartNumber?: string | null;
13248
+ productionInformation_modelNumber?: string | null;
13249
+ productionInformation_materials?: Array<string> | null;
13250
+ details_category?: string | null;
13251
+ details_subCategory?: string | null;
13252
+ details_subCategory2?: string | null;
13253
+ details_offerCategory: string;
13254
+ offerCategory: ProductV1OfferCategory;
13255
+ details_tags?: Array<string> | null;
13256
+ details_sections?: Array<string> | null;
13257
+ details_personalisation?: Array<string> | null;
13258
+ packaging_packageQuantity?: string | null;
13259
+ packaging_dimensions_length?: string | null;
13260
+ packaging_dimensions_width?: string | null;
13261
+ packaging_dimensions_height?: string | null;
13262
+ packaging_dimensions_unit?: string | null;
13263
+ packaging_weight_value?: string | null;
13264
+ packaging_weight_unit?: string | null;
13265
+ brand: {
13266
+ __typename?: "ProductV1Brand";
13267
+ id: string;
13268
+ name: string;
13269
+ };
13270
+ category?: {
13271
+ __typename?: "ProductV1Category";
13272
+ id: string;
13273
+ name: string;
13274
+ } | null;
13275
+ subCategory?: {
13276
+ __typename?: "ProductV1Category";
13277
+ id: string;
13278
+ name: string;
13279
+ } | null;
13280
+ subCategory2?: {
13281
+ __typename?: "ProductV1Category";
13282
+ id: string;
13283
+ name: string;
13284
+ } | null;
13285
+ tags?: Array<{
13286
+ __typename?: "ProductV1Tag";
13287
+ id: string;
13288
+ name: string;
13289
+ }> | null;
13290
+ sections?: Array<{
13291
+ __typename?: "ProductV1Section";
13292
+ id: string;
13293
+ name: string;
13294
+ }> | null;
13295
+ personalisation?: Array<{
13296
+ __typename?: "ProductV1Personalisation";
13297
+ id: string;
13298
+ name: string;
13299
+ }> | null;
13300
+ visuals_images: Array<{
13301
+ __typename?: "ProductV1Media";
13302
+ id: string;
13303
+ url: string;
13304
+ tag?: string | null;
13305
+ type: ProductV1MediaType;
13306
+ }>;
13307
+ visuals_videos?: Array<{
13308
+ __typename?: "ProductV1Media";
13309
+ id: string;
13310
+ url: string;
13311
+ tag?: string | null;
13312
+ type: ProductV1MediaType;
13313
+ }> | null;
13314
+ };
13315
+ variations?: Array<{
13316
+ __typename?: "ProductV1Variation";
13317
+ id: string;
13318
+ type: string;
13319
+ option: string;
13320
+ }> | null;
13321
+ productV1Seller: {
13322
+ __typename?: "ProductV1Seller";
13323
+ id: string;
13324
+ defaultVersion?: number | null;
13325
+ name?: string | null;
13326
+ description?: string | null;
13327
+ externalUrl?: string | null;
13328
+ tokenId?: string | null;
13329
+ images?: Array<{
13330
+ __typename?: "ProductV1Media";
13331
+ id: string;
13332
+ url: string;
13333
+ tag?: string | null;
13334
+ type: ProductV1MediaType;
13335
+ }> | null;
13336
+ contactLinks?: Array<{
13337
+ __typename?: "ProductV1SellerContactLink";
13338
+ id: string;
13339
+ url: string;
13340
+ tag: string;
13341
+ }> | null;
13342
+ seller: {
13343
+ __typename?: "Seller";
13344
+ id: string;
13345
+ operator: string;
13346
+ admin: string;
13347
+ clerk: string;
13348
+ treasury: string;
13349
+ authTokenId: string;
13350
+ authTokenType: number;
13351
+ voucherCloneAddress: string;
13352
+ active: boolean;
13353
+ };
13354
+ };
13355
+ exchangePolicy: {
13356
+ __typename?: "ProductV1ExchangePolicy";
13357
+ id: string;
13358
+ uuid: string;
13359
+ version: number;
13360
+ label?: string | null;
13361
+ template: string;
13362
+ };
13363
+ shipping?: {
13364
+ __typename?: "ProductV1ShippingOption";
13365
+ id: string;
13366
+ defaultVersion?: number | null;
13367
+ countryOfOrigin?: string | null;
13368
+ redemptionPoint?: string | null;
13369
+ supportedJurisdictions?: Array<{
13370
+ __typename?: "ProductV1ShippingJurisdiction";
13371
+ id: string;
13372
+ label: string;
13373
+ deliveryTime: string;
13374
+ }> | null;
13375
+ } | null;
9802
13376
  } | null;
9803
13377
  };
9804
13378
  export declare type BaseOfferFieldsFragment = {
@@ -9888,11 +13462,165 @@ export declare type BaseOfferFieldsFragment = {
9888
13462
  type: MetadataType;
9889
13463
  } | {
9890
13464
  __typename?: "ProductV1MetadataEntity";
13465
+ image: string;
13466
+ createdAt: string;
13467
+ voided: boolean;
13468
+ validFromDate: string;
13469
+ validUntilDate: string;
13470
+ quantityAvailable: string;
13471
+ uuid: string;
9891
13472
  name: string;
9892
13473
  description: string;
9893
13474
  externalUrl: string;
9894
13475
  schemaUrl: string;
9895
13476
  type: MetadataType;
13477
+ attributes?: Array<{
13478
+ __typename?: "MetadataAttribute";
13479
+ traitType: string;
13480
+ value: string;
13481
+ displayType: string;
13482
+ }> | null;
13483
+ product: {
13484
+ __typename?: "ProductV1Product";
13485
+ id: string;
13486
+ uuid: string;
13487
+ version: number;
13488
+ title: string;
13489
+ description: string;
13490
+ identification_sKU?: string | null;
13491
+ identification_productId?: string | null;
13492
+ identification_productIdType?: string | null;
13493
+ productionInformation_brandName: string;
13494
+ productionInformation_manufacturer?: string | null;
13495
+ productionInformation_manufacturerPartNumber?: string | null;
13496
+ productionInformation_modelNumber?: string | null;
13497
+ productionInformation_materials?: Array<string> | null;
13498
+ details_category?: string | null;
13499
+ details_subCategory?: string | null;
13500
+ details_subCategory2?: string | null;
13501
+ details_offerCategory: string;
13502
+ offerCategory: ProductV1OfferCategory;
13503
+ details_tags?: Array<string> | null;
13504
+ details_sections?: Array<string> | null;
13505
+ details_personalisation?: Array<string> | null;
13506
+ packaging_packageQuantity?: string | null;
13507
+ packaging_dimensions_length?: string | null;
13508
+ packaging_dimensions_width?: string | null;
13509
+ packaging_dimensions_height?: string | null;
13510
+ packaging_dimensions_unit?: string | null;
13511
+ packaging_weight_value?: string | null;
13512
+ packaging_weight_unit?: string | null;
13513
+ brand: {
13514
+ __typename?: "ProductV1Brand";
13515
+ id: string;
13516
+ name: string;
13517
+ };
13518
+ category?: {
13519
+ __typename?: "ProductV1Category";
13520
+ id: string;
13521
+ name: string;
13522
+ } | null;
13523
+ subCategory?: {
13524
+ __typename?: "ProductV1Category";
13525
+ id: string;
13526
+ name: string;
13527
+ } | null;
13528
+ subCategory2?: {
13529
+ __typename?: "ProductV1Category";
13530
+ id: string;
13531
+ name: string;
13532
+ } | null;
13533
+ tags?: Array<{
13534
+ __typename?: "ProductV1Tag";
13535
+ id: string;
13536
+ name: string;
13537
+ }> | null;
13538
+ sections?: Array<{
13539
+ __typename?: "ProductV1Section";
13540
+ id: string;
13541
+ name: string;
13542
+ }> | null;
13543
+ personalisation?: Array<{
13544
+ __typename?: "ProductV1Personalisation";
13545
+ id: string;
13546
+ name: string;
13547
+ }> | null;
13548
+ visuals_images: Array<{
13549
+ __typename?: "ProductV1Media";
13550
+ id: string;
13551
+ url: string;
13552
+ tag?: string | null;
13553
+ type: ProductV1MediaType;
13554
+ }>;
13555
+ visuals_videos?: Array<{
13556
+ __typename?: "ProductV1Media";
13557
+ id: string;
13558
+ url: string;
13559
+ tag?: string | null;
13560
+ type: ProductV1MediaType;
13561
+ }> | null;
13562
+ };
13563
+ variations?: Array<{
13564
+ __typename?: "ProductV1Variation";
13565
+ id: string;
13566
+ type: string;
13567
+ option: string;
13568
+ }> | null;
13569
+ productV1Seller: {
13570
+ __typename?: "ProductV1Seller";
13571
+ id: string;
13572
+ defaultVersion?: number | null;
13573
+ name?: string | null;
13574
+ description?: string | null;
13575
+ externalUrl?: string | null;
13576
+ tokenId?: string | null;
13577
+ images?: Array<{
13578
+ __typename?: "ProductV1Media";
13579
+ id: string;
13580
+ url: string;
13581
+ tag?: string | null;
13582
+ type: ProductV1MediaType;
13583
+ }> | null;
13584
+ contactLinks?: Array<{
13585
+ __typename?: "ProductV1SellerContactLink";
13586
+ id: string;
13587
+ url: string;
13588
+ tag: string;
13589
+ }> | null;
13590
+ seller: {
13591
+ __typename?: "Seller";
13592
+ id: string;
13593
+ operator: string;
13594
+ admin: string;
13595
+ clerk: string;
13596
+ treasury: string;
13597
+ authTokenId: string;
13598
+ authTokenType: number;
13599
+ voucherCloneAddress: string;
13600
+ active: boolean;
13601
+ };
13602
+ };
13603
+ exchangePolicy: {
13604
+ __typename?: "ProductV1ExchangePolicy";
13605
+ id: string;
13606
+ uuid: string;
13607
+ version: number;
13608
+ label?: string | null;
13609
+ template: string;
13610
+ };
13611
+ shipping?: {
13612
+ __typename?: "ProductV1ShippingOption";
13613
+ id: string;
13614
+ defaultVersion?: number | null;
13615
+ countryOfOrigin?: string | null;
13616
+ redemptionPoint?: string | null;
13617
+ supportedJurisdictions?: Array<{
13618
+ __typename?: "ProductV1ShippingJurisdiction";
13619
+ id: string;
13620
+ label: string;
13621
+ deliveryTime: string;
13622
+ }> | null;
13623
+ } | null;
9896
13624
  } | null;
9897
13625
  };
9898
13626
  export declare const BaseSellerFieldsFragmentDoc: string;
@@ -9902,6 +13630,19 @@ export declare const FundsEntityFieldsFragmentDoc: string;
9902
13630
  export declare const BaseDisputeResolverFeeFieldsFragmentDoc: string;
9903
13631
  export declare const BaseDisputeResolverFieldsFragmentDoc: string;
9904
13632
  export declare const BaseDisputeResolutionTermsEntityFieldsFragmentDoc: string;
13633
+ export declare const BaseProductV1BrandFieldsFragmentDoc: string;
13634
+ export declare const BaseProductV1CategoryFieldsFragmentDoc: string;
13635
+ export declare const BaseProductV1TagFieldsFragmentDoc: string;
13636
+ export declare const BaseProductV1SectionFieldsFragmentDoc: string;
13637
+ export declare const BaseProductV1PersonalisationFieldsFragmentDoc: string;
13638
+ export declare const BaseProductV1MediaFieldsFragmentDoc: string;
13639
+ export declare const BaseProductV1ProductFieldsFragmentDoc: string;
13640
+ export declare const BaseProductV1VariationFieldsFragmentDoc: string;
13641
+ export declare const BaseProductV1SellerContactLinkFieldsFragmentDoc: string;
13642
+ export declare const BaseProductV1SellerFieldsFragmentDoc: string;
13643
+ export declare const BaseProductV1ExchangePolicyFieldsFragmentDoc: string;
13644
+ export declare const BaseProductV1ShippingJurisdictionFieldsFragmentDoc: string;
13645
+ export declare const BaseProductV1ShippingOptionFieldsFragmentDoc: string;
9905
13646
  export declare const BaseOfferFieldsFragmentDoc: string;
9906
13647
  export declare const BaseExchangeFieldsFragmentDoc: string;
9907
13648
  export declare const SellerFieldsFragmentDoc: string;
@@ -9914,21 +13655,8 @@ export declare const ExchangeTokenFieldsFragmentDoc: string;
9914
13655
  export declare const ExchangeFieldsFragmentDoc: string;
9915
13656
  export declare const BaseBaseMetadataEntityFieldsFragmentDoc: string;
9916
13657
  export declare const BaseMetadataEntityFieldsFragmentDoc: string;
9917
- export declare const BaseProductV1BrandFieldsFragmentDoc: string;
9918
- export declare const BaseProductV1CategoryFieldsFragmentDoc: string;
9919
- export declare const BaseProductV1TagFieldsFragmentDoc: string;
9920
- export declare const BaseProductV1SectionFieldsFragmentDoc: string;
9921
- export declare const BaseProductV1PersonalisationFieldsFragmentDoc: string;
9922
- export declare const BaseProductV1MediaFieldsFragmentDoc: string;
9923
- export declare const BaseProductV1ProductFieldsFragmentDoc: string;
9924
- export declare const BaseProductV1VariationFieldsFragmentDoc: string;
9925
- export declare const BaseProductV1SellerContactLinkFieldsFragmentDoc: string;
9926
- export declare const BaseProductV1SellerFieldsFragmentDoc: string;
9927
13658
  export declare const BaseProductV1MetadataEntityFieldsFragmentDoc: string;
9928
13659
  export declare const ProductV1MetadataEntityFieldsFragmentDoc: string;
9929
- export declare const BaseProductV1ShippingJurisdictionFieldsFragmentDoc: string;
9930
- export declare const BaseProductV1ShippingOptionFieldsFragmentDoc: string;
9931
- export declare const BaseProductV1ExchangePolicyFieldsFragmentDoc: string;
9932
13660
  export declare const BaseProductV1ProductOverridesFieldsFragmentDoc: string;
9933
13661
  export declare const OfferFieldsFragmentDoc: string;
9934
13662
  export declare const GetSellerByIdQueryDocument: string;