@bosonprotocol/core-sdk 1.30.1-alpha.0 → 1.31.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/subgraph.d.ts +1416 -95
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +107 -48
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/cjs/utils/graphql.d.ts +13 -0
- package/dist/cjs/utils/graphql.d.ts.map +1 -1
- package/dist/esm/subgraph.d.ts +1416 -95
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +105 -45
- package/dist/esm/subgraph.js.map +1 -1
- package/dist/esm/utils/graphql.d.ts +13 -0
- package/dist/esm/utils/graphql.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/offers/queries.graphql +55 -0
- package/src/subgraph.ts +1406 -57
package/src/subgraph.ts
CHANGED
|
@@ -9884,6 +9884,51 @@ export type GetSellerByIdQueryQuery = {
|
|
|
9884
9884
|
schemaUrl: string;
|
|
9885
9885
|
type: MetadataType;
|
|
9886
9886
|
image: string;
|
|
9887
|
+
productOverrides?: {
|
|
9888
|
+
__typename?: "ProductV1ProductOverrides";
|
|
9889
|
+
id: string;
|
|
9890
|
+
version: number;
|
|
9891
|
+
title: string;
|
|
9892
|
+
description: string;
|
|
9893
|
+
identification_sKU?: string | null;
|
|
9894
|
+
identification_productId?: string | null;
|
|
9895
|
+
identification_productIdType?: string | null;
|
|
9896
|
+
productionInformation_brandName: string;
|
|
9897
|
+
productionInformation_manufacturer?: string | null;
|
|
9898
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
9899
|
+
productionInformation_modelNumber?: string | null;
|
|
9900
|
+
productionInformation_materials?: Array<string> | null;
|
|
9901
|
+
packaging_packageQuantity?: string | null;
|
|
9902
|
+
packaging_dimensions_length?: string | null;
|
|
9903
|
+
packaging_dimensions_width?: string | null;
|
|
9904
|
+
packaging_dimensions_height?: string | null;
|
|
9905
|
+
packaging_dimensions_unit?: string | null;
|
|
9906
|
+
packaging_weight_value?: string | null;
|
|
9907
|
+
packaging_weight_unit?: string | null;
|
|
9908
|
+
brand: {
|
|
9909
|
+
__typename?: "ProductV1Brand";
|
|
9910
|
+
id: string;
|
|
9911
|
+
name: string;
|
|
9912
|
+
};
|
|
9913
|
+
visuals_images: Array<{
|
|
9914
|
+
__typename?: "ProductV1Media";
|
|
9915
|
+
id: string;
|
|
9916
|
+
url: string;
|
|
9917
|
+
tag?: string | null;
|
|
9918
|
+
type: ProductV1MediaType;
|
|
9919
|
+
width?: number | null;
|
|
9920
|
+
height?: number | null;
|
|
9921
|
+
}>;
|
|
9922
|
+
visuals_videos?: Array<{
|
|
9923
|
+
__typename?: "ProductV1Media";
|
|
9924
|
+
id: string;
|
|
9925
|
+
url: string;
|
|
9926
|
+
tag?: string | null;
|
|
9927
|
+
type: ProductV1MediaType;
|
|
9928
|
+
width?: number | null;
|
|
9929
|
+
height?: number | null;
|
|
9930
|
+
}> | null;
|
|
9931
|
+
} | null;
|
|
9887
9932
|
attributes?: Array<{
|
|
9888
9933
|
__typename?: "MetadataAttribute";
|
|
9889
9934
|
traitType: string;
|
|
@@ -10738,6 +10783,51 @@ export type GetSellersQueryQuery = {
|
|
|
10738
10783
|
schemaUrl: string;
|
|
10739
10784
|
type: MetadataType;
|
|
10740
10785
|
image: string;
|
|
10786
|
+
productOverrides?: {
|
|
10787
|
+
__typename?: "ProductV1ProductOverrides";
|
|
10788
|
+
id: string;
|
|
10789
|
+
version: number;
|
|
10790
|
+
title: string;
|
|
10791
|
+
description: string;
|
|
10792
|
+
identification_sKU?: string | null;
|
|
10793
|
+
identification_productId?: string | null;
|
|
10794
|
+
identification_productIdType?: string | null;
|
|
10795
|
+
productionInformation_brandName: string;
|
|
10796
|
+
productionInformation_manufacturer?: string | null;
|
|
10797
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
10798
|
+
productionInformation_modelNumber?: string | null;
|
|
10799
|
+
productionInformation_materials?: Array<string> | null;
|
|
10800
|
+
packaging_packageQuantity?: string | null;
|
|
10801
|
+
packaging_dimensions_length?: string | null;
|
|
10802
|
+
packaging_dimensions_width?: string | null;
|
|
10803
|
+
packaging_dimensions_height?: string | null;
|
|
10804
|
+
packaging_dimensions_unit?: string | null;
|
|
10805
|
+
packaging_weight_value?: string | null;
|
|
10806
|
+
packaging_weight_unit?: string | null;
|
|
10807
|
+
brand: {
|
|
10808
|
+
__typename?: "ProductV1Brand";
|
|
10809
|
+
id: string;
|
|
10810
|
+
name: string;
|
|
10811
|
+
};
|
|
10812
|
+
visuals_images: Array<{
|
|
10813
|
+
__typename?: "ProductV1Media";
|
|
10814
|
+
id: string;
|
|
10815
|
+
url: string;
|
|
10816
|
+
tag?: string | null;
|
|
10817
|
+
type: ProductV1MediaType;
|
|
10818
|
+
width?: number | null;
|
|
10819
|
+
height?: number | null;
|
|
10820
|
+
}>;
|
|
10821
|
+
visuals_videos?: Array<{
|
|
10822
|
+
__typename?: "ProductV1Media";
|
|
10823
|
+
id: string;
|
|
10824
|
+
url: string;
|
|
10825
|
+
tag?: string | null;
|
|
10826
|
+
type: ProductV1MediaType;
|
|
10827
|
+
width?: number | null;
|
|
10828
|
+
height?: number | null;
|
|
10829
|
+
}> | null;
|
|
10830
|
+
} | null;
|
|
10741
10831
|
attributes?: Array<{
|
|
10742
10832
|
__typename?: "MetadataAttribute";
|
|
10743
10833
|
traitType: string;
|
|
@@ -12015,6 +12105,51 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
12015
12105
|
schemaUrl: string;
|
|
12016
12106
|
type: MetadataType;
|
|
12017
12107
|
image: string;
|
|
12108
|
+
productOverrides?: {
|
|
12109
|
+
__typename?: "ProductV1ProductOverrides";
|
|
12110
|
+
id: string;
|
|
12111
|
+
version: number;
|
|
12112
|
+
title: string;
|
|
12113
|
+
description: string;
|
|
12114
|
+
identification_sKU?: string | null;
|
|
12115
|
+
identification_productId?: string | null;
|
|
12116
|
+
identification_productIdType?: string | null;
|
|
12117
|
+
productionInformation_brandName: string;
|
|
12118
|
+
productionInformation_manufacturer?: string | null;
|
|
12119
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
12120
|
+
productionInformation_modelNumber?: string | null;
|
|
12121
|
+
productionInformation_materials?: Array<string> | null;
|
|
12122
|
+
packaging_packageQuantity?: string | null;
|
|
12123
|
+
packaging_dimensions_length?: string | null;
|
|
12124
|
+
packaging_dimensions_width?: string | null;
|
|
12125
|
+
packaging_dimensions_height?: string | null;
|
|
12126
|
+
packaging_dimensions_unit?: string | null;
|
|
12127
|
+
packaging_weight_value?: string | null;
|
|
12128
|
+
packaging_weight_unit?: string | null;
|
|
12129
|
+
brand: {
|
|
12130
|
+
__typename?: "ProductV1Brand";
|
|
12131
|
+
id: string;
|
|
12132
|
+
name: string;
|
|
12133
|
+
};
|
|
12134
|
+
visuals_images: Array<{
|
|
12135
|
+
__typename?: "ProductV1Media";
|
|
12136
|
+
id: string;
|
|
12137
|
+
url: string;
|
|
12138
|
+
tag?: string | null;
|
|
12139
|
+
type: ProductV1MediaType;
|
|
12140
|
+
width?: number | null;
|
|
12141
|
+
height?: number | null;
|
|
12142
|
+
}>;
|
|
12143
|
+
visuals_videos?: Array<{
|
|
12144
|
+
__typename?: "ProductV1Media";
|
|
12145
|
+
id: string;
|
|
12146
|
+
url: string;
|
|
12147
|
+
tag?: string | null;
|
|
12148
|
+
type: ProductV1MediaType;
|
|
12149
|
+
width?: number | null;
|
|
12150
|
+
height?: number | null;
|
|
12151
|
+
}> | null;
|
|
12152
|
+
} | null;
|
|
12018
12153
|
attributes?: Array<{
|
|
12019
12154
|
__typename?: "MetadataAttribute";
|
|
12020
12155
|
traitType: string;
|
|
@@ -12688,6 +12823,51 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
12688
12823
|
schemaUrl: string;
|
|
12689
12824
|
type: MetadataType;
|
|
12690
12825
|
image: string;
|
|
12826
|
+
productOverrides?: {
|
|
12827
|
+
__typename?: "ProductV1ProductOverrides";
|
|
12828
|
+
id: string;
|
|
12829
|
+
version: number;
|
|
12830
|
+
title: string;
|
|
12831
|
+
description: string;
|
|
12832
|
+
identification_sKU?: string | null;
|
|
12833
|
+
identification_productId?: string | null;
|
|
12834
|
+
identification_productIdType?: string | null;
|
|
12835
|
+
productionInformation_brandName: string;
|
|
12836
|
+
productionInformation_manufacturer?: string | null;
|
|
12837
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
12838
|
+
productionInformation_modelNumber?: string | null;
|
|
12839
|
+
productionInformation_materials?: Array<string> | null;
|
|
12840
|
+
packaging_packageQuantity?: string | null;
|
|
12841
|
+
packaging_dimensions_length?: string | null;
|
|
12842
|
+
packaging_dimensions_width?: string | null;
|
|
12843
|
+
packaging_dimensions_height?: string | null;
|
|
12844
|
+
packaging_dimensions_unit?: string | null;
|
|
12845
|
+
packaging_weight_value?: string | null;
|
|
12846
|
+
packaging_weight_unit?: string | null;
|
|
12847
|
+
brand: {
|
|
12848
|
+
__typename?: "ProductV1Brand";
|
|
12849
|
+
id: string;
|
|
12850
|
+
name: string;
|
|
12851
|
+
};
|
|
12852
|
+
visuals_images: Array<{
|
|
12853
|
+
__typename?: "ProductV1Media";
|
|
12854
|
+
id: string;
|
|
12855
|
+
url: string;
|
|
12856
|
+
tag?: string | null;
|
|
12857
|
+
type: ProductV1MediaType;
|
|
12858
|
+
width?: number | null;
|
|
12859
|
+
height?: number | null;
|
|
12860
|
+
}>;
|
|
12861
|
+
visuals_videos?: Array<{
|
|
12862
|
+
__typename?: "ProductV1Media";
|
|
12863
|
+
id: string;
|
|
12864
|
+
url: string;
|
|
12865
|
+
tag?: string | null;
|
|
12866
|
+
type: ProductV1MediaType;
|
|
12867
|
+
width?: number | null;
|
|
12868
|
+
height?: number | null;
|
|
12869
|
+
}> | null;
|
|
12870
|
+
} | null;
|
|
12691
12871
|
attributes?: Array<{
|
|
12692
12872
|
__typename?: "MetadataAttribute";
|
|
12693
12873
|
traitType: string;
|
|
@@ -13358,6 +13538,47 @@ export type SellerFieldsFragment = {
|
|
|
13358
13538
|
schemaUrl: string;
|
|
13359
13539
|
type: MetadataType;
|
|
13360
13540
|
image: string;
|
|
13541
|
+
productOverrides?: {
|
|
13542
|
+
__typename?: "ProductV1ProductOverrides";
|
|
13543
|
+
id: string;
|
|
13544
|
+
version: number;
|
|
13545
|
+
title: string;
|
|
13546
|
+
description: string;
|
|
13547
|
+
identification_sKU?: string | null;
|
|
13548
|
+
identification_productId?: string | null;
|
|
13549
|
+
identification_productIdType?: string | null;
|
|
13550
|
+
productionInformation_brandName: string;
|
|
13551
|
+
productionInformation_manufacturer?: string | null;
|
|
13552
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
13553
|
+
productionInformation_modelNumber?: string | null;
|
|
13554
|
+
productionInformation_materials?: Array<string> | null;
|
|
13555
|
+
packaging_packageQuantity?: string | null;
|
|
13556
|
+
packaging_dimensions_length?: string | null;
|
|
13557
|
+
packaging_dimensions_width?: string | null;
|
|
13558
|
+
packaging_dimensions_height?: string | null;
|
|
13559
|
+
packaging_dimensions_unit?: string | null;
|
|
13560
|
+
packaging_weight_value?: string | null;
|
|
13561
|
+
packaging_weight_unit?: string | null;
|
|
13562
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
13563
|
+
visuals_images: Array<{
|
|
13564
|
+
__typename?: "ProductV1Media";
|
|
13565
|
+
id: string;
|
|
13566
|
+
url: string;
|
|
13567
|
+
tag?: string | null;
|
|
13568
|
+
type: ProductV1MediaType;
|
|
13569
|
+
width?: number | null;
|
|
13570
|
+
height?: number | null;
|
|
13571
|
+
}>;
|
|
13572
|
+
visuals_videos?: Array<{
|
|
13573
|
+
__typename?: "ProductV1Media";
|
|
13574
|
+
id: string;
|
|
13575
|
+
url: string;
|
|
13576
|
+
tag?: string | null;
|
|
13577
|
+
type: ProductV1MediaType;
|
|
13578
|
+
width?: number | null;
|
|
13579
|
+
height?: number | null;
|
|
13580
|
+
}> | null;
|
|
13581
|
+
} | null;
|
|
13361
13582
|
attributes?: Array<{
|
|
13362
13583
|
__typename?: "MetadataAttribute";
|
|
13363
13584
|
traitType: string;
|
|
@@ -14491,6 +14712,47 @@ export type DisputeResolverFieldsFragment = {
|
|
|
14491
14712
|
schemaUrl: string;
|
|
14492
14713
|
type: MetadataType;
|
|
14493
14714
|
image: string;
|
|
14715
|
+
productOverrides?: {
|
|
14716
|
+
__typename?: "ProductV1ProductOverrides";
|
|
14717
|
+
id: string;
|
|
14718
|
+
version: number;
|
|
14719
|
+
title: string;
|
|
14720
|
+
description: string;
|
|
14721
|
+
identification_sKU?: string | null;
|
|
14722
|
+
identification_productId?: string | null;
|
|
14723
|
+
identification_productIdType?: string | null;
|
|
14724
|
+
productionInformation_brandName: string;
|
|
14725
|
+
productionInformation_manufacturer?: string | null;
|
|
14726
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
14727
|
+
productionInformation_modelNumber?: string | null;
|
|
14728
|
+
productionInformation_materials?: Array<string> | null;
|
|
14729
|
+
packaging_packageQuantity?: string | null;
|
|
14730
|
+
packaging_dimensions_length?: string | null;
|
|
14731
|
+
packaging_dimensions_width?: string | null;
|
|
14732
|
+
packaging_dimensions_height?: string | null;
|
|
14733
|
+
packaging_dimensions_unit?: string | null;
|
|
14734
|
+
packaging_weight_value?: string | null;
|
|
14735
|
+
packaging_weight_unit?: string | null;
|
|
14736
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
14737
|
+
visuals_images: Array<{
|
|
14738
|
+
__typename?: "ProductV1Media";
|
|
14739
|
+
id: string;
|
|
14740
|
+
url: string;
|
|
14741
|
+
tag?: string | null;
|
|
14742
|
+
type: ProductV1MediaType;
|
|
14743
|
+
width?: number | null;
|
|
14744
|
+
height?: number | null;
|
|
14745
|
+
}>;
|
|
14746
|
+
visuals_videos?: Array<{
|
|
14747
|
+
__typename?: "ProductV1Media";
|
|
14748
|
+
id: string;
|
|
14749
|
+
url: string;
|
|
14750
|
+
tag?: string | null;
|
|
14751
|
+
type: ProductV1MediaType;
|
|
14752
|
+
width?: number | null;
|
|
14753
|
+
height?: number | null;
|
|
14754
|
+
}> | null;
|
|
14755
|
+
} | null;
|
|
14494
14756
|
attributes?: Array<{
|
|
14495
14757
|
__typename?: "MetadataAttribute";
|
|
14496
14758
|
traitType: string;
|
|
@@ -15851,12 +16113,57 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
15851
16113
|
schemaUrl: string;
|
|
15852
16114
|
type: MetadataType;
|
|
15853
16115
|
image: string;
|
|
15854
|
-
|
|
15855
|
-
__typename?: "
|
|
15856
|
-
|
|
15857
|
-
|
|
15858
|
-
|
|
15859
|
-
|
|
16116
|
+
productOverrides?: {
|
|
16117
|
+
__typename?: "ProductV1ProductOverrides";
|
|
16118
|
+
id: string;
|
|
16119
|
+
version: number;
|
|
16120
|
+
title: string;
|
|
16121
|
+
description: string;
|
|
16122
|
+
identification_sKU?: string | null;
|
|
16123
|
+
identification_productId?: string | null;
|
|
16124
|
+
identification_productIdType?: string | null;
|
|
16125
|
+
productionInformation_brandName: string;
|
|
16126
|
+
productionInformation_manufacturer?: string | null;
|
|
16127
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
16128
|
+
productionInformation_modelNumber?: string | null;
|
|
16129
|
+
productionInformation_materials?: Array<string> | null;
|
|
16130
|
+
packaging_packageQuantity?: string | null;
|
|
16131
|
+
packaging_dimensions_length?: string | null;
|
|
16132
|
+
packaging_dimensions_width?: string | null;
|
|
16133
|
+
packaging_dimensions_height?: string | null;
|
|
16134
|
+
packaging_dimensions_unit?: string | null;
|
|
16135
|
+
packaging_weight_value?: string | null;
|
|
16136
|
+
packaging_weight_unit?: string | null;
|
|
16137
|
+
brand: {
|
|
16138
|
+
__typename?: "ProductV1Brand";
|
|
16139
|
+
id: string;
|
|
16140
|
+
name: string;
|
|
16141
|
+
};
|
|
16142
|
+
visuals_images: Array<{
|
|
16143
|
+
__typename?: "ProductV1Media";
|
|
16144
|
+
id: string;
|
|
16145
|
+
url: string;
|
|
16146
|
+
tag?: string | null;
|
|
16147
|
+
type: ProductV1MediaType;
|
|
16148
|
+
width?: number | null;
|
|
16149
|
+
height?: number | null;
|
|
16150
|
+
}>;
|
|
16151
|
+
visuals_videos?: Array<{
|
|
16152
|
+
__typename?: "ProductV1Media";
|
|
16153
|
+
id: string;
|
|
16154
|
+
url: string;
|
|
16155
|
+
tag?: string | null;
|
|
16156
|
+
type: ProductV1MediaType;
|
|
16157
|
+
width?: number | null;
|
|
16158
|
+
height?: number | null;
|
|
16159
|
+
}> | null;
|
|
16160
|
+
} | null;
|
|
16161
|
+
attributes?: Array<{
|
|
16162
|
+
__typename?: "MetadataAttribute";
|
|
16163
|
+
traitType: string;
|
|
16164
|
+
value: string;
|
|
16165
|
+
displayType: string;
|
|
16166
|
+
}> | null;
|
|
15860
16167
|
product: {
|
|
15861
16168
|
__typename?: "ProductV1Product";
|
|
15862
16169
|
id: string;
|
|
@@ -16435,6 +16742,51 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
16435
16742
|
schemaUrl: string;
|
|
16436
16743
|
type: MetadataType;
|
|
16437
16744
|
image: string;
|
|
16745
|
+
productOverrides?: {
|
|
16746
|
+
__typename?: "ProductV1ProductOverrides";
|
|
16747
|
+
id: string;
|
|
16748
|
+
version: number;
|
|
16749
|
+
title: string;
|
|
16750
|
+
description: string;
|
|
16751
|
+
identification_sKU?: string | null;
|
|
16752
|
+
identification_productId?: string | null;
|
|
16753
|
+
identification_productIdType?: string | null;
|
|
16754
|
+
productionInformation_brandName: string;
|
|
16755
|
+
productionInformation_manufacturer?: string | null;
|
|
16756
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
16757
|
+
productionInformation_modelNumber?: string | null;
|
|
16758
|
+
productionInformation_materials?: Array<string> | null;
|
|
16759
|
+
packaging_packageQuantity?: string | null;
|
|
16760
|
+
packaging_dimensions_length?: string | null;
|
|
16761
|
+
packaging_dimensions_width?: string | null;
|
|
16762
|
+
packaging_dimensions_height?: string | null;
|
|
16763
|
+
packaging_dimensions_unit?: string | null;
|
|
16764
|
+
packaging_weight_value?: string | null;
|
|
16765
|
+
packaging_weight_unit?: string | null;
|
|
16766
|
+
brand: {
|
|
16767
|
+
__typename?: "ProductV1Brand";
|
|
16768
|
+
id: string;
|
|
16769
|
+
name: string;
|
|
16770
|
+
};
|
|
16771
|
+
visuals_images: Array<{
|
|
16772
|
+
__typename?: "ProductV1Media";
|
|
16773
|
+
id: string;
|
|
16774
|
+
url: string;
|
|
16775
|
+
tag?: string | null;
|
|
16776
|
+
type: ProductV1MediaType;
|
|
16777
|
+
width?: number | null;
|
|
16778
|
+
height?: number | null;
|
|
16779
|
+
}>;
|
|
16780
|
+
visuals_videos?: Array<{
|
|
16781
|
+
__typename?: "ProductV1Media";
|
|
16782
|
+
id: string;
|
|
16783
|
+
url: string;
|
|
16784
|
+
tag?: string | null;
|
|
16785
|
+
type: ProductV1MediaType;
|
|
16786
|
+
width?: number | null;
|
|
16787
|
+
height?: number | null;
|
|
16788
|
+
}> | null;
|
|
16789
|
+
} | null;
|
|
16438
16790
|
attributes?: Array<{
|
|
16439
16791
|
__typename?: "MetadataAttribute";
|
|
16440
16792
|
traitType: string;
|
|
@@ -16997,6 +17349,47 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
16997
17349
|
schemaUrl: string;
|
|
16998
17350
|
type: MetadataType;
|
|
16999
17351
|
image: string;
|
|
17352
|
+
productOverrides?: {
|
|
17353
|
+
__typename?: "ProductV1ProductOverrides";
|
|
17354
|
+
id: string;
|
|
17355
|
+
version: number;
|
|
17356
|
+
title: string;
|
|
17357
|
+
description: string;
|
|
17358
|
+
identification_sKU?: string | null;
|
|
17359
|
+
identification_productId?: string | null;
|
|
17360
|
+
identification_productIdType?: string | null;
|
|
17361
|
+
productionInformation_brandName: string;
|
|
17362
|
+
productionInformation_manufacturer?: string | null;
|
|
17363
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
17364
|
+
productionInformation_modelNumber?: string | null;
|
|
17365
|
+
productionInformation_materials?: Array<string> | null;
|
|
17366
|
+
packaging_packageQuantity?: string | null;
|
|
17367
|
+
packaging_dimensions_length?: string | null;
|
|
17368
|
+
packaging_dimensions_width?: string | null;
|
|
17369
|
+
packaging_dimensions_height?: string | null;
|
|
17370
|
+
packaging_dimensions_unit?: string | null;
|
|
17371
|
+
packaging_weight_value?: string | null;
|
|
17372
|
+
packaging_weight_unit?: string | null;
|
|
17373
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
17374
|
+
visuals_images: Array<{
|
|
17375
|
+
__typename?: "ProductV1Media";
|
|
17376
|
+
id: string;
|
|
17377
|
+
url: string;
|
|
17378
|
+
tag?: string | null;
|
|
17379
|
+
type: ProductV1MediaType;
|
|
17380
|
+
width?: number | null;
|
|
17381
|
+
height?: number | null;
|
|
17382
|
+
}>;
|
|
17383
|
+
visuals_videos?: Array<{
|
|
17384
|
+
__typename?: "ProductV1Media";
|
|
17385
|
+
id: string;
|
|
17386
|
+
url: string;
|
|
17387
|
+
tag?: string | null;
|
|
17388
|
+
type: ProductV1MediaType;
|
|
17389
|
+
width?: number | null;
|
|
17390
|
+
height?: number | null;
|
|
17391
|
+
}> | null;
|
|
17392
|
+
} | null;
|
|
17000
17393
|
attributes?: Array<{
|
|
17001
17394
|
__typename?: "MetadataAttribute";
|
|
17002
17395
|
traitType: string;
|
|
@@ -17738,6 +18131,51 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
17738
18131
|
schemaUrl: string;
|
|
17739
18132
|
type: MetadataType;
|
|
17740
18133
|
image: string;
|
|
18134
|
+
productOverrides?: {
|
|
18135
|
+
__typename?: "ProductV1ProductOverrides";
|
|
18136
|
+
id: string;
|
|
18137
|
+
version: number;
|
|
18138
|
+
title: string;
|
|
18139
|
+
description: string;
|
|
18140
|
+
identification_sKU?: string | null;
|
|
18141
|
+
identification_productId?: string | null;
|
|
18142
|
+
identification_productIdType?: string | null;
|
|
18143
|
+
productionInformation_brandName: string;
|
|
18144
|
+
productionInformation_manufacturer?: string | null;
|
|
18145
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
18146
|
+
productionInformation_modelNumber?: string | null;
|
|
18147
|
+
productionInformation_materials?: Array<string> | null;
|
|
18148
|
+
packaging_packageQuantity?: string | null;
|
|
18149
|
+
packaging_dimensions_length?: string | null;
|
|
18150
|
+
packaging_dimensions_width?: string | null;
|
|
18151
|
+
packaging_dimensions_height?: string | null;
|
|
18152
|
+
packaging_dimensions_unit?: string | null;
|
|
18153
|
+
packaging_weight_value?: string | null;
|
|
18154
|
+
packaging_weight_unit?: string | null;
|
|
18155
|
+
brand: {
|
|
18156
|
+
__typename?: "ProductV1Brand";
|
|
18157
|
+
id: string;
|
|
18158
|
+
name: string;
|
|
18159
|
+
};
|
|
18160
|
+
visuals_images: Array<{
|
|
18161
|
+
__typename?: "ProductV1Media";
|
|
18162
|
+
id: string;
|
|
18163
|
+
url: string;
|
|
18164
|
+
tag?: string | null;
|
|
18165
|
+
type: ProductV1MediaType;
|
|
18166
|
+
width?: number | null;
|
|
18167
|
+
height?: number | null;
|
|
18168
|
+
}>;
|
|
18169
|
+
visuals_videos?: Array<{
|
|
18170
|
+
__typename?: "ProductV1Media";
|
|
18171
|
+
id: string;
|
|
18172
|
+
url: string;
|
|
18173
|
+
tag?: string | null;
|
|
18174
|
+
type: ProductV1MediaType;
|
|
18175
|
+
width?: number | null;
|
|
18176
|
+
height?: number | null;
|
|
18177
|
+
}> | null;
|
|
18178
|
+
} | null;
|
|
17741
18179
|
attributes?: Array<{
|
|
17742
18180
|
__typename?: "MetadataAttribute";
|
|
17743
18181
|
traitType: string;
|
|
@@ -18404,6 +18842,51 @@ export type GetExchangesQueryQuery = {
|
|
|
18404
18842
|
schemaUrl: string;
|
|
18405
18843
|
type: MetadataType;
|
|
18406
18844
|
image: string;
|
|
18845
|
+
productOverrides?: {
|
|
18846
|
+
__typename?: "ProductV1ProductOverrides";
|
|
18847
|
+
id: string;
|
|
18848
|
+
version: number;
|
|
18849
|
+
title: string;
|
|
18850
|
+
description: string;
|
|
18851
|
+
identification_sKU?: string | null;
|
|
18852
|
+
identification_productId?: string | null;
|
|
18853
|
+
identification_productIdType?: string | null;
|
|
18854
|
+
productionInformation_brandName: string;
|
|
18855
|
+
productionInformation_manufacturer?: string | null;
|
|
18856
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
18857
|
+
productionInformation_modelNumber?: string | null;
|
|
18858
|
+
productionInformation_materials?: Array<string> | null;
|
|
18859
|
+
packaging_packageQuantity?: string | null;
|
|
18860
|
+
packaging_dimensions_length?: string | null;
|
|
18861
|
+
packaging_dimensions_width?: string | null;
|
|
18862
|
+
packaging_dimensions_height?: string | null;
|
|
18863
|
+
packaging_dimensions_unit?: string | null;
|
|
18864
|
+
packaging_weight_value?: string | null;
|
|
18865
|
+
packaging_weight_unit?: string | null;
|
|
18866
|
+
brand: {
|
|
18867
|
+
__typename?: "ProductV1Brand";
|
|
18868
|
+
id: string;
|
|
18869
|
+
name: string;
|
|
18870
|
+
};
|
|
18871
|
+
visuals_images: Array<{
|
|
18872
|
+
__typename?: "ProductV1Media";
|
|
18873
|
+
id: string;
|
|
18874
|
+
url: string;
|
|
18875
|
+
tag?: string | null;
|
|
18876
|
+
type: ProductV1MediaType;
|
|
18877
|
+
width?: number | null;
|
|
18878
|
+
height?: number | null;
|
|
18879
|
+
}>;
|
|
18880
|
+
visuals_videos?: Array<{
|
|
18881
|
+
__typename?: "ProductV1Media";
|
|
18882
|
+
id: string;
|
|
18883
|
+
url: string;
|
|
18884
|
+
tag?: string | null;
|
|
18885
|
+
type: ProductV1MediaType;
|
|
18886
|
+
width?: number | null;
|
|
18887
|
+
height?: number | null;
|
|
18888
|
+
}> | null;
|
|
18889
|
+
} | null;
|
|
18407
18890
|
attributes?: Array<{
|
|
18408
18891
|
__typename?: "MetadataAttribute";
|
|
18409
18892
|
traitType: string;
|
|
@@ -19060,6 +19543,47 @@ export type ExchangeFieldsFragment = {
|
|
|
19060
19543
|
schemaUrl: string;
|
|
19061
19544
|
type: MetadataType;
|
|
19062
19545
|
image: string;
|
|
19546
|
+
productOverrides?: {
|
|
19547
|
+
__typename?: "ProductV1ProductOverrides";
|
|
19548
|
+
id: string;
|
|
19549
|
+
version: number;
|
|
19550
|
+
title: string;
|
|
19551
|
+
description: string;
|
|
19552
|
+
identification_sKU?: string | null;
|
|
19553
|
+
identification_productId?: string | null;
|
|
19554
|
+
identification_productIdType?: string | null;
|
|
19555
|
+
productionInformation_brandName: string;
|
|
19556
|
+
productionInformation_manufacturer?: string | null;
|
|
19557
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
19558
|
+
productionInformation_modelNumber?: string | null;
|
|
19559
|
+
productionInformation_materials?: Array<string> | null;
|
|
19560
|
+
packaging_packageQuantity?: string | null;
|
|
19561
|
+
packaging_dimensions_length?: string | null;
|
|
19562
|
+
packaging_dimensions_width?: string | null;
|
|
19563
|
+
packaging_dimensions_height?: string | null;
|
|
19564
|
+
packaging_dimensions_unit?: string | null;
|
|
19565
|
+
packaging_weight_value?: string | null;
|
|
19566
|
+
packaging_weight_unit?: string | null;
|
|
19567
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
19568
|
+
visuals_images: Array<{
|
|
19569
|
+
__typename?: "ProductV1Media";
|
|
19570
|
+
id: string;
|
|
19571
|
+
url: string;
|
|
19572
|
+
tag?: string | null;
|
|
19573
|
+
type: ProductV1MediaType;
|
|
19574
|
+
width?: number | null;
|
|
19575
|
+
height?: number | null;
|
|
19576
|
+
}>;
|
|
19577
|
+
visuals_videos?: Array<{
|
|
19578
|
+
__typename?: "ProductV1Media";
|
|
19579
|
+
id: string;
|
|
19580
|
+
url: string;
|
|
19581
|
+
tag?: string | null;
|
|
19582
|
+
type: ProductV1MediaType;
|
|
19583
|
+
width?: number | null;
|
|
19584
|
+
height?: number | null;
|
|
19585
|
+
}> | null;
|
|
19586
|
+
} | null;
|
|
19063
19587
|
attributes?: Array<{
|
|
19064
19588
|
__typename?: "MetadataAttribute";
|
|
19065
19589
|
traitType: string;
|
|
@@ -19922,6 +20446,51 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
19922
20446
|
schemaUrl: string;
|
|
19923
20447
|
type: MetadataType;
|
|
19924
20448
|
image: string;
|
|
20449
|
+
productOverrides?: {
|
|
20450
|
+
__typename?: "ProductV1ProductOverrides";
|
|
20451
|
+
id: string;
|
|
20452
|
+
version: number;
|
|
20453
|
+
title: string;
|
|
20454
|
+
description: string;
|
|
20455
|
+
identification_sKU?: string | null;
|
|
20456
|
+
identification_productId?: string | null;
|
|
20457
|
+
identification_productIdType?: string | null;
|
|
20458
|
+
productionInformation_brandName: string;
|
|
20459
|
+
productionInformation_manufacturer?: string | null;
|
|
20460
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
20461
|
+
productionInformation_modelNumber?: string | null;
|
|
20462
|
+
productionInformation_materials?: Array<string> | null;
|
|
20463
|
+
packaging_packageQuantity?: string | null;
|
|
20464
|
+
packaging_dimensions_length?: string | null;
|
|
20465
|
+
packaging_dimensions_width?: string | null;
|
|
20466
|
+
packaging_dimensions_height?: string | null;
|
|
20467
|
+
packaging_dimensions_unit?: string | null;
|
|
20468
|
+
packaging_weight_value?: string | null;
|
|
20469
|
+
packaging_weight_unit?: string | null;
|
|
20470
|
+
brand: {
|
|
20471
|
+
__typename?: "ProductV1Brand";
|
|
20472
|
+
id: string;
|
|
20473
|
+
name: string;
|
|
20474
|
+
};
|
|
20475
|
+
visuals_images: Array<{
|
|
20476
|
+
__typename?: "ProductV1Media";
|
|
20477
|
+
id: string;
|
|
20478
|
+
url: string;
|
|
20479
|
+
tag?: string | null;
|
|
20480
|
+
type: ProductV1MediaType;
|
|
20481
|
+
width?: number | null;
|
|
20482
|
+
height?: number | null;
|
|
20483
|
+
}>;
|
|
20484
|
+
visuals_videos?: Array<{
|
|
20485
|
+
__typename?: "ProductV1Media";
|
|
20486
|
+
id: string;
|
|
20487
|
+
url: string;
|
|
20488
|
+
tag?: string | null;
|
|
20489
|
+
type: ProductV1MediaType;
|
|
20490
|
+
width?: number | null;
|
|
20491
|
+
height?: number | null;
|
|
20492
|
+
}> | null;
|
|
20493
|
+
} | null;
|
|
19925
20494
|
attributes?: Array<{
|
|
19926
20495
|
__typename?: "MetadataAttribute";
|
|
19927
20496
|
traitType: string;
|
|
@@ -20593,6 +21162,51 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
20593
21162
|
schemaUrl: string;
|
|
20594
21163
|
type: MetadataType;
|
|
20595
21164
|
image: string;
|
|
21165
|
+
productOverrides?: {
|
|
21166
|
+
__typename?: "ProductV1ProductOverrides";
|
|
21167
|
+
id: string;
|
|
21168
|
+
version: number;
|
|
21169
|
+
title: string;
|
|
21170
|
+
description: string;
|
|
21171
|
+
identification_sKU?: string | null;
|
|
21172
|
+
identification_productId?: string | null;
|
|
21173
|
+
identification_productIdType?: string | null;
|
|
21174
|
+
productionInformation_brandName: string;
|
|
21175
|
+
productionInformation_manufacturer?: string | null;
|
|
21176
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
21177
|
+
productionInformation_modelNumber?: string | null;
|
|
21178
|
+
productionInformation_materials?: Array<string> | null;
|
|
21179
|
+
packaging_packageQuantity?: string | null;
|
|
21180
|
+
packaging_dimensions_length?: string | null;
|
|
21181
|
+
packaging_dimensions_width?: string | null;
|
|
21182
|
+
packaging_dimensions_height?: string | null;
|
|
21183
|
+
packaging_dimensions_unit?: string | null;
|
|
21184
|
+
packaging_weight_value?: string | null;
|
|
21185
|
+
packaging_weight_unit?: string | null;
|
|
21186
|
+
brand: {
|
|
21187
|
+
__typename?: "ProductV1Brand";
|
|
21188
|
+
id: string;
|
|
21189
|
+
name: string;
|
|
21190
|
+
};
|
|
21191
|
+
visuals_images: Array<{
|
|
21192
|
+
__typename?: "ProductV1Media";
|
|
21193
|
+
id: string;
|
|
21194
|
+
url: string;
|
|
21195
|
+
tag?: string | null;
|
|
21196
|
+
type: ProductV1MediaType;
|
|
21197
|
+
width?: number | null;
|
|
21198
|
+
height?: number | null;
|
|
21199
|
+
}>;
|
|
21200
|
+
visuals_videos?: Array<{
|
|
21201
|
+
__typename?: "ProductV1Media";
|
|
21202
|
+
id: string;
|
|
21203
|
+
url: string;
|
|
21204
|
+
tag?: string | null;
|
|
21205
|
+
type: ProductV1MediaType;
|
|
21206
|
+
width?: number | null;
|
|
21207
|
+
height?: number | null;
|
|
21208
|
+
}> | null;
|
|
21209
|
+
} | null;
|
|
20596
21210
|
attributes?: Array<{
|
|
20597
21211
|
__typename?: "MetadataAttribute";
|
|
20598
21212
|
traitType: string;
|
|
@@ -21254,6 +21868,47 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
21254
21868
|
schemaUrl: string;
|
|
21255
21869
|
type: MetadataType;
|
|
21256
21870
|
image: string;
|
|
21871
|
+
productOverrides?: {
|
|
21872
|
+
__typename?: "ProductV1ProductOverrides";
|
|
21873
|
+
id: string;
|
|
21874
|
+
version: number;
|
|
21875
|
+
title: string;
|
|
21876
|
+
description: string;
|
|
21877
|
+
identification_sKU?: string | null;
|
|
21878
|
+
identification_productId?: string | null;
|
|
21879
|
+
identification_productIdType?: string | null;
|
|
21880
|
+
productionInformation_brandName: string;
|
|
21881
|
+
productionInformation_manufacturer?: string | null;
|
|
21882
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
21883
|
+
productionInformation_modelNumber?: string | null;
|
|
21884
|
+
productionInformation_materials?: Array<string> | null;
|
|
21885
|
+
packaging_packageQuantity?: string | null;
|
|
21886
|
+
packaging_dimensions_length?: string | null;
|
|
21887
|
+
packaging_dimensions_width?: string | null;
|
|
21888
|
+
packaging_dimensions_height?: string | null;
|
|
21889
|
+
packaging_dimensions_unit?: string | null;
|
|
21890
|
+
packaging_weight_value?: string | null;
|
|
21891
|
+
packaging_weight_unit?: string | null;
|
|
21892
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
21893
|
+
visuals_images: Array<{
|
|
21894
|
+
__typename?: "ProductV1Media";
|
|
21895
|
+
id: string;
|
|
21896
|
+
url: string;
|
|
21897
|
+
tag?: string | null;
|
|
21898
|
+
type: ProductV1MediaType;
|
|
21899
|
+
width?: number | null;
|
|
21900
|
+
height?: number | null;
|
|
21901
|
+
}>;
|
|
21902
|
+
visuals_videos?: Array<{
|
|
21903
|
+
__typename?: "ProductV1Media";
|
|
21904
|
+
id: string;
|
|
21905
|
+
url: string;
|
|
21906
|
+
tag?: string | null;
|
|
21907
|
+
type: ProductV1MediaType;
|
|
21908
|
+
width?: number | null;
|
|
21909
|
+
height?: number | null;
|
|
21910
|
+
}> | null;
|
|
21911
|
+
} | null;
|
|
21257
21912
|
attributes?: Array<{
|
|
21258
21913
|
__typename?: "MetadataAttribute";
|
|
21259
21914
|
traitType: string;
|
|
@@ -21910,6 +22565,47 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
21910
22565
|
schemaUrl: string;
|
|
21911
22566
|
type: MetadataType;
|
|
21912
22567
|
image: string;
|
|
22568
|
+
productOverrides?: {
|
|
22569
|
+
__typename?: "ProductV1ProductOverrides";
|
|
22570
|
+
id: string;
|
|
22571
|
+
version: number;
|
|
22572
|
+
title: string;
|
|
22573
|
+
description: string;
|
|
22574
|
+
identification_sKU?: string | null;
|
|
22575
|
+
identification_productId?: string | null;
|
|
22576
|
+
identification_productIdType?: string | null;
|
|
22577
|
+
productionInformation_brandName: string;
|
|
22578
|
+
productionInformation_manufacturer?: string | null;
|
|
22579
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
22580
|
+
productionInformation_modelNumber?: string | null;
|
|
22581
|
+
productionInformation_materials?: Array<string> | null;
|
|
22582
|
+
packaging_packageQuantity?: string | null;
|
|
22583
|
+
packaging_dimensions_length?: string | null;
|
|
22584
|
+
packaging_dimensions_width?: string | null;
|
|
22585
|
+
packaging_dimensions_height?: string | null;
|
|
22586
|
+
packaging_dimensions_unit?: string | null;
|
|
22587
|
+
packaging_weight_value?: string | null;
|
|
22588
|
+
packaging_weight_unit?: string | null;
|
|
22589
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
22590
|
+
visuals_images: Array<{
|
|
22591
|
+
__typename?: "ProductV1Media";
|
|
22592
|
+
id: string;
|
|
22593
|
+
url: string;
|
|
22594
|
+
tag?: string | null;
|
|
22595
|
+
type: ProductV1MediaType;
|
|
22596
|
+
width?: number | null;
|
|
22597
|
+
height?: number | null;
|
|
22598
|
+
}>;
|
|
22599
|
+
visuals_videos?: Array<{
|
|
22600
|
+
__typename?: "ProductV1Media";
|
|
22601
|
+
id: string;
|
|
22602
|
+
url: string;
|
|
22603
|
+
tag?: string | null;
|
|
22604
|
+
type: ProductV1MediaType;
|
|
22605
|
+
width?: number | null;
|
|
22606
|
+
height?: number | null;
|
|
22607
|
+
}> | null;
|
|
22608
|
+
} | null;
|
|
21913
22609
|
attributes?: Array<{
|
|
21914
22610
|
__typename?: "MetadataAttribute";
|
|
21915
22611
|
traitType: string;
|
|
@@ -22918,6 +23614,51 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
22918
23614
|
schemaUrl: string;
|
|
22919
23615
|
type: MetadataType;
|
|
22920
23616
|
image: string;
|
|
23617
|
+
productOverrides?: {
|
|
23618
|
+
__typename?: "ProductV1ProductOverrides";
|
|
23619
|
+
id: string;
|
|
23620
|
+
version: number;
|
|
23621
|
+
title: string;
|
|
23622
|
+
description: string;
|
|
23623
|
+
identification_sKU?: string | null;
|
|
23624
|
+
identification_productId?: string | null;
|
|
23625
|
+
identification_productIdType?: string | null;
|
|
23626
|
+
productionInformation_brandName: string;
|
|
23627
|
+
productionInformation_manufacturer?: string | null;
|
|
23628
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
23629
|
+
productionInformation_modelNumber?: string | null;
|
|
23630
|
+
productionInformation_materials?: Array<string> | null;
|
|
23631
|
+
packaging_packageQuantity?: string | null;
|
|
23632
|
+
packaging_dimensions_length?: string | null;
|
|
23633
|
+
packaging_dimensions_width?: string | null;
|
|
23634
|
+
packaging_dimensions_height?: string | null;
|
|
23635
|
+
packaging_dimensions_unit?: string | null;
|
|
23636
|
+
packaging_weight_value?: string | null;
|
|
23637
|
+
packaging_weight_unit?: string | null;
|
|
23638
|
+
brand: {
|
|
23639
|
+
__typename?: "ProductV1Brand";
|
|
23640
|
+
id: string;
|
|
23641
|
+
name: string;
|
|
23642
|
+
};
|
|
23643
|
+
visuals_images: Array<{
|
|
23644
|
+
__typename?: "ProductV1Media";
|
|
23645
|
+
id: string;
|
|
23646
|
+
url: string;
|
|
23647
|
+
tag?: string | null;
|
|
23648
|
+
type: ProductV1MediaType;
|
|
23649
|
+
width?: number | null;
|
|
23650
|
+
height?: number | null;
|
|
23651
|
+
}>;
|
|
23652
|
+
visuals_videos?: Array<{
|
|
23653
|
+
__typename?: "ProductV1Media";
|
|
23654
|
+
id: string;
|
|
23655
|
+
url: string;
|
|
23656
|
+
tag?: string | null;
|
|
23657
|
+
type: ProductV1MediaType;
|
|
23658
|
+
width?: number | null;
|
|
23659
|
+
height?: number | null;
|
|
23660
|
+
}> | null;
|
|
23661
|
+
} | null;
|
|
22921
23662
|
attributes?: Array<{
|
|
22922
23663
|
__typename?: "MetadataAttribute";
|
|
22923
23664
|
traitType: string;
|
|
@@ -23798,6 +24539,51 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
23798
24539
|
schemaUrl: string;
|
|
23799
24540
|
type: MetadataType;
|
|
23800
24541
|
image: string;
|
|
24542
|
+
productOverrides?: {
|
|
24543
|
+
__typename?: "ProductV1ProductOverrides";
|
|
24544
|
+
id: string;
|
|
24545
|
+
version: number;
|
|
24546
|
+
title: string;
|
|
24547
|
+
description: string;
|
|
24548
|
+
identification_sKU?: string | null;
|
|
24549
|
+
identification_productId?: string | null;
|
|
24550
|
+
identification_productIdType?: string | null;
|
|
24551
|
+
productionInformation_brandName: string;
|
|
24552
|
+
productionInformation_manufacturer?: string | null;
|
|
24553
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
24554
|
+
productionInformation_modelNumber?: string | null;
|
|
24555
|
+
productionInformation_materials?: Array<string> | null;
|
|
24556
|
+
packaging_packageQuantity?: string | null;
|
|
24557
|
+
packaging_dimensions_length?: string | null;
|
|
24558
|
+
packaging_dimensions_width?: string | null;
|
|
24559
|
+
packaging_dimensions_height?: string | null;
|
|
24560
|
+
packaging_dimensions_unit?: string | null;
|
|
24561
|
+
packaging_weight_value?: string | null;
|
|
24562
|
+
packaging_weight_unit?: string | null;
|
|
24563
|
+
brand: {
|
|
24564
|
+
__typename?: "ProductV1Brand";
|
|
24565
|
+
id: string;
|
|
24566
|
+
name: string;
|
|
24567
|
+
};
|
|
24568
|
+
visuals_images: Array<{
|
|
24569
|
+
__typename?: "ProductV1Media";
|
|
24570
|
+
id: string;
|
|
24571
|
+
url: string;
|
|
24572
|
+
tag?: string | null;
|
|
24573
|
+
type: ProductV1MediaType;
|
|
24574
|
+
width?: number | null;
|
|
24575
|
+
height?: number | null;
|
|
24576
|
+
}>;
|
|
24577
|
+
visuals_videos?: Array<{
|
|
24578
|
+
__typename?: "ProductV1Media";
|
|
24579
|
+
id: string;
|
|
24580
|
+
url: string;
|
|
24581
|
+
tag?: string | null;
|
|
24582
|
+
type: ProductV1MediaType;
|
|
24583
|
+
width?: number | null;
|
|
24584
|
+
height?: number | null;
|
|
24585
|
+
}> | null;
|
|
24586
|
+
} | null;
|
|
23801
24587
|
attributes?: Array<{
|
|
23802
24588
|
__typename?: "MetadataAttribute";
|
|
23803
24589
|
traitType: string;
|
|
@@ -24692,12 +25478,57 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
24692
25478
|
schemaUrl: string;
|
|
24693
25479
|
type: MetadataType;
|
|
24694
25480
|
image: string;
|
|
24695
|
-
|
|
24696
|
-
__typename?: "
|
|
24697
|
-
|
|
24698
|
-
|
|
24699
|
-
|
|
24700
|
-
|
|
25481
|
+
productOverrides?: {
|
|
25482
|
+
__typename?: "ProductV1ProductOverrides";
|
|
25483
|
+
id: string;
|
|
25484
|
+
version: number;
|
|
25485
|
+
title: string;
|
|
25486
|
+
description: string;
|
|
25487
|
+
identification_sKU?: string | null;
|
|
25488
|
+
identification_productId?: string | null;
|
|
25489
|
+
identification_productIdType?: string | null;
|
|
25490
|
+
productionInformation_brandName: string;
|
|
25491
|
+
productionInformation_manufacturer?: string | null;
|
|
25492
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
25493
|
+
productionInformation_modelNumber?: string | null;
|
|
25494
|
+
productionInformation_materials?: Array<string> | null;
|
|
25495
|
+
packaging_packageQuantity?: string | null;
|
|
25496
|
+
packaging_dimensions_length?: string | null;
|
|
25497
|
+
packaging_dimensions_width?: string | null;
|
|
25498
|
+
packaging_dimensions_height?: string | null;
|
|
25499
|
+
packaging_dimensions_unit?: string | null;
|
|
25500
|
+
packaging_weight_value?: string | null;
|
|
25501
|
+
packaging_weight_unit?: string | null;
|
|
25502
|
+
brand: {
|
|
25503
|
+
__typename?: "ProductV1Brand";
|
|
25504
|
+
id: string;
|
|
25505
|
+
name: string;
|
|
25506
|
+
};
|
|
25507
|
+
visuals_images: Array<{
|
|
25508
|
+
__typename?: "ProductV1Media";
|
|
25509
|
+
id: string;
|
|
25510
|
+
url: string;
|
|
25511
|
+
tag?: string | null;
|
|
25512
|
+
type: ProductV1MediaType;
|
|
25513
|
+
width?: number | null;
|
|
25514
|
+
height?: number | null;
|
|
25515
|
+
}>;
|
|
25516
|
+
visuals_videos?: Array<{
|
|
25517
|
+
__typename?: "ProductV1Media";
|
|
25518
|
+
id: string;
|
|
25519
|
+
url: string;
|
|
25520
|
+
tag?: string | null;
|
|
25521
|
+
type: ProductV1MediaType;
|
|
25522
|
+
width?: number | null;
|
|
25523
|
+
height?: number | null;
|
|
25524
|
+
}> | null;
|
|
25525
|
+
} | null;
|
|
25526
|
+
attributes?: Array<{
|
|
25527
|
+
__typename?: "MetadataAttribute";
|
|
25528
|
+
traitType: string;
|
|
25529
|
+
value: string;
|
|
25530
|
+
displayType: string;
|
|
25531
|
+
}> | null;
|
|
24701
25532
|
product: {
|
|
24702
25533
|
__typename?: "ProductV1Product";
|
|
24703
25534
|
id: string;
|
|
@@ -25786,6 +26617,51 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
25786
26617
|
schemaUrl: string;
|
|
25787
26618
|
type: MetadataType;
|
|
25788
26619
|
image: string;
|
|
26620
|
+
productOverrides?: {
|
|
26621
|
+
__typename?: "ProductV1ProductOverrides";
|
|
26622
|
+
id: string;
|
|
26623
|
+
version: number;
|
|
26624
|
+
title: string;
|
|
26625
|
+
description: string;
|
|
26626
|
+
identification_sKU?: string | null;
|
|
26627
|
+
identification_productId?: string | null;
|
|
26628
|
+
identification_productIdType?: string | null;
|
|
26629
|
+
productionInformation_brandName: string;
|
|
26630
|
+
productionInformation_manufacturer?: string | null;
|
|
26631
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
26632
|
+
productionInformation_modelNumber?: string | null;
|
|
26633
|
+
productionInformation_materials?: Array<string> | null;
|
|
26634
|
+
packaging_packageQuantity?: string | null;
|
|
26635
|
+
packaging_dimensions_length?: string | null;
|
|
26636
|
+
packaging_dimensions_width?: string | null;
|
|
26637
|
+
packaging_dimensions_height?: string | null;
|
|
26638
|
+
packaging_dimensions_unit?: string | null;
|
|
26639
|
+
packaging_weight_value?: string | null;
|
|
26640
|
+
packaging_weight_unit?: string | null;
|
|
26641
|
+
brand: {
|
|
26642
|
+
__typename?: "ProductV1Brand";
|
|
26643
|
+
id: string;
|
|
26644
|
+
name: string;
|
|
26645
|
+
};
|
|
26646
|
+
visuals_images: Array<{
|
|
26647
|
+
__typename?: "ProductV1Media";
|
|
26648
|
+
id: string;
|
|
26649
|
+
url: string;
|
|
26650
|
+
tag?: string | null;
|
|
26651
|
+
type: ProductV1MediaType;
|
|
26652
|
+
width?: number | null;
|
|
26653
|
+
height?: number | null;
|
|
26654
|
+
}>;
|
|
26655
|
+
visuals_videos?: Array<{
|
|
26656
|
+
__typename?: "ProductV1Media";
|
|
26657
|
+
id: string;
|
|
26658
|
+
url: string;
|
|
26659
|
+
tag?: string | null;
|
|
26660
|
+
type: ProductV1MediaType;
|
|
26661
|
+
width?: number | null;
|
|
26662
|
+
height?: number | null;
|
|
26663
|
+
}> | null;
|
|
26664
|
+
} | null;
|
|
25789
26665
|
attributes?: Array<{
|
|
25790
26666
|
__typename?: "MetadataAttribute";
|
|
25791
26667
|
traitType: string;
|
|
@@ -26870,6 +27746,47 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
26870
27746
|
schemaUrl: string;
|
|
26871
27747
|
type: MetadataType;
|
|
26872
27748
|
image: string;
|
|
27749
|
+
productOverrides?: {
|
|
27750
|
+
__typename?: "ProductV1ProductOverrides";
|
|
27751
|
+
id: string;
|
|
27752
|
+
version: number;
|
|
27753
|
+
title: string;
|
|
27754
|
+
description: string;
|
|
27755
|
+
identification_sKU?: string | null;
|
|
27756
|
+
identification_productId?: string | null;
|
|
27757
|
+
identification_productIdType?: string | null;
|
|
27758
|
+
productionInformation_brandName: string;
|
|
27759
|
+
productionInformation_manufacturer?: string | null;
|
|
27760
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
27761
|
+
productionInformation_modelNumber?: string | null;
|
|
27762
|
+
productionInformation_materials?: Array<string> | null;
|
|
27763
|
+
packaging_packageQuantity?: string | null;
|
|
27764
|
+
packaging_dimensions_length?: string | null;
|
|
27765
|
+
packaging_dimensions_width?: string | null;
|
|
27766
|
+
packaging_dimensions_height?: string | null;
|
|
27767
|
+
packaging_dimensions_unit?: string | null;
|
|
27768
|
+
packaging_weight_value?: string | null;
|
|
27769
|
+
packaging_weight_unit?: string | null;
|
|
27770
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
27771
|
+
visuals_images: Array<{
|
|
27772
|
+
__typename?: "ProductV1Media";
|
|
27773
|
+
id: string;
|
|
27774
|
+
url: string;
|
|
27775
|
+
tag?: string | null;
|
|
27776
|
+
type: ProductV1MediaType;
|
|
27777
|
+
width?: number | null;
|
|
27778
|
+
height?: number | null;
|
|
27779
|
+
}>;
|
|
27780
|
+
visuals_videos?: Array<{
|
|
27781
|
+
__typename?: "ProductV1Media";
|
|
27782
|
+
id: string;
|
|
27783
|
+
url: string;
|
|
27784
|
+
tag?: string | null;
|
|
27785
|
+
type: ProductV1MediaType;
|
|
27786
|
+
width?: number | null;
|
|
27787
|
+
height?: number | null;
|
|
27788
|
+
}> | null;
|
|
27789
|
+
} | null;
|
|
26873
27790
|
attributes?: Array<{
|
|
26874
27791
|
__typename?: "MetadataAttribute";
|
|
26875
27792
|
traitType: string;
|
|
@@ -27949,6 +28866,47 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
27949
28866
|
schemaUrl: string;
|
|
27950
28867
|
type: MetadataType;
|
|
27951
28868
|
image: string;
|
|
28869
|
+
productOverrides?: {
|
|
28870
|
+
__typename?: "ProductV1ProductOverrides";
|
|
28871
|
+
id: string;
|
|
28872
|
+
version: number;
|
|
28873
|
+
title: string;
|
|
28874
|
+
description: string;
|
|
28875
|
+
identification_sKU?: string | null;
|
|
28876
|
+
identification_productId?: string | null;
|
|
28877
|
+
identification_productIdType?: string | null;
|
|
28878
|
+
productionInformation_brandName: string;
|
|
28879
|
+
productionInformation_manufacturer?: string | null;
|
|
28880
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
28881
|
+
productionInformation_modelNumber?: string | null;
|
|
28882
|
+
productionInformation_materials?: Array<string> | null;
|
|
28883
|
+
packaging_packageQuantity?: string | null;
|
|
28884
|
+
packaging_dimensions_length?: string | null;
|
|
28885
|
+
packaging_dimensions_width?: string | null;
|
|
28886
|
+
packaging_dimensions_height?: string | null;
|
|
28887
|
+
packaging_dimensions_unit?: string | null;
|
|
28888
|
+
packaging_weight_value?: string | null;
|
|
28889
|
+
packaging_weight_unit?: string | null;
|
|
28890
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
28891
|
+
visuals_images: Array<{
|
|
28892
|
+
__typename?: "ProductV1Media";
|
|
28893
|
+
id: string;
|
|
28894
|
+
url: string;
|
|
28895
|
+
tag?: string | null;
|
|
28896
|
+
type: ProductV1MediaType;
|
|
28897
|
+
width?: number | null;
|
|
28898
|
+
height?: number | null;
|
|
28899
|
+
}>;
|
|
28900
|
+
visuals_videos?: Array<{
|
|
28901
|
+
__typename?: "ProductV1Media";
|
|
28902
|
+
id: string;
|
|
28903
|
+
url: string;
|
|
28904
|
+
tag?: string | null;
|
|
28905
|
+
type: ProductV1MediaType;
|
|
28906
|
+
width?: number | null;
|
|
28907
|
+
height?: number | null;
|
|
28908
|
+
}> | null;
|
|
28909
|
+
} | null;
|
|
27952
28910
|
attributes?: Array<{
|
|
27953
28911
|
__typename?: "MetadataAttribute";
|
|
27954
28912
|
traitType: string;
|
|
@@ -29241,6 +30199,51 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
29241
30199
|
schemaUrl: string;
|
|
29242
30200
|
type: MetadataType;
|
|
29243
30201
|
image: string;
|
|
30202
|
+
productOverrides?: {
|
|
30203
|
+
__typename?: "ProductV1ProductOverrides";
|
|
30204
|
+
id: string;
|
|
30205
|
+
version: number;
|
|
30206
|
+
title: string;
|
|
30207
|
+
description: string;
|
|
30208
|
+
identification_sKU?: string | null;
|
|
30209
|
+
identification_productId?: string | null;
|
|
30210
|
+
identification_productIdType?: string | null;
|
|
30211
|
+
productionInformation_brandName: string;
|
|
30212
|
+
productionInformation_manufacturer?: string | null;
|
|
30213
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
30214
|
+
productionInformation_modelNumber?: string | null;
|
|
30215
|
+
productionInformation_materials?: Array<string> | null;
|
|
30216
|
+
packaging_packageQuantity?: string | null;
|
|
30217
|
+
packaging_dimensions_length?: string | null;
|
|
30218
|
+
packaging_dimensions_width?: string | null;
|
|
30219
|
+
packaging_dimensions_height?: string | null;
|
|
30220
|
+
packaging_dimensions_unit?: string | null;
|
|
30221
|
+
packaging_weight_value?: string | null;
|
|
30222
|
+
packaging_weight_unit?: string | null;
|
|
30223
|
+
brand: {
|
|
30224
|
+
__typename?: "ProductV1Brand";
|
|
30225
|
+
id: string;
|
|
30226
|
+
name: string;
|
|
30227
|
+
};
|
|
30228
|
+
visuals_images: Array<{
|
|
30229
|
+
__typename?: "ProductV1Media";
|
|
30230
|
+
id: string;
|
|
30231
|
+
url: string;
|
|
30232
|
+
tag?: string | null;
|
|
30233
|
+
type: ProductV1MediaType;
|
|
30234
|
+
width?: number | null;
|
|
30235
|
+
height?: number | null;
|
|
30236
|
+
}>;
|
|
30237
|
+
visuals_videos?: Array<{
|
|
30238
|
+
__typename?: "ProductV1Media";
|
|
30239
|
+
id: string;
|
|
30240
|
+
url: string;
|
|
30241
|
+
tag?: string | null;
|
|
30242
|
+
type: ProductV1MediaType;
|
|
30243
|
+
width?: number | null;
|
|
30244
|
+
height?: number | null;
|
|
30245
|
+
}> | null;
|
|
30246
|
+
} | null;
|
|
29244
30247
|
attributes?: Array<{
|
|
29245
30248
|
__typename?: "MetadataAttribute";
|
|
29246
30249
|
traitType: string;
|
|
@@ -30110,6 +31113,51 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
30110
31113
|
schemaUrl: string;
|
|
30111
31114
|
type: MetadataType;
|
|
30112
31115
|
image: string;
|
|
31116
|
+
productOverrides?: {
|
|
31117
|
+
__typename?: "ProductV1ProductOverrides";
|
|
31118
|
+
id: string;
|
|
31119
|
+
version: number;
|
|
31120
|
+
title: string;
|
|
31121
|
+
description: string;
|
|
31122
|
+
identification_sKU?: string | null;
|
|
31123
|
+
identification_productId?: string | null;
|
|
31124
|
+
identification_productIdType?: string | null;
|
|
31125
|
+
productionInformation_brandName: string;
|
|
31126
|
+
productionInformation_manufacturer?: string | null;
|
|
31127
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
31128
|
+
productionInformation_modelNumber?: string | null;
|
|
31129
|
+
productionInformation_materials?: Array<string> | null;
|
|
31130
|
+
packaging_packageQuantity?: string | null;
|
|
31131
|
+
packaging_dimensions_length?: string | null;
|
|
31132
|
+
packaging_dimensions_width?: string | null;
|
|
31133
|
+
packaging_dimensions_height?: string | null;
|
|
31134
|
+
packaging_dimensions_unit?: string | null;
|
|
31135
|
+
packaging_weight_value?: string | null;
|
|
31136
|
+
packaging_weight_unit?: string | null;
|
|
31137
|
+
brand: {
|
|
31138
|
+
__typename?: "ProductV1Brand";
|
|
31139
|
+
id: string;
|
|
31140
|
+
name: string;
|
|
31141
|
+
};
|
|
31142
|
+
visuals_images: Array<{
|
|
31143
|
+
__typename?: "ProductV1Media";
|
|
31144
|
+
id: string;
|
|
31145
|
+
url: string;
|
|
31146
|
+
tag?: string | null;
|
|
31147
|
+
type: ProductV1MediaType;
|
|
31148
|
+
width?: number | null;
|
|
31149
|
+
height?: number | null;
|
|
31150
|
+
}>;
|
|
31151
|
+
visuals_videos?: Array<{
|
|
31152
|
+
__typename?: "ProductV1Media";
|
|
31153
|
+
id: string;
|
|
31154
|
+
url: string;
|
|
31155
|
+
tag?: string | null;
|
|
31156
|
+
type: ProductV1MediaType;
|
|
31157
|
+
width?: number | null;
|
|
31158
|
+
height?: number | null;
|
|
31159
|
+
}> | null;
|
|
31160
|
+
} | null;
|
|
30113
31161
|
attributes?: Array<{
|
|
30114
31162
|
__typename?: "MetadataAttribute";
|
|
30115
31163
|
traitType: string;
|
|
@@ -31182,6 +32230,47 @@ export type GetOfferByIdQueryQuery = {
|
|
|
31182
32230
|
schemaUrl: string;
|
|
31183
32231
|
type: MetadataType;
|
|
31184
32232
|
image: string;
|
|
32233
|
+
productOverrides?: {
|
|
32234
|
+
__typename?: "ProductV1ProductOverrides";
|
|
32235
|
+
id: string;
|
|
32236
|
+
version: number;
|
|
32237
|
+
title: string;
|
|
32238
|
+
description: string;
|
|
32239
|
+
identification_sKU?: string | null;
|
|
32240
|
+
identification_productId?: string | null;
|
|
32241
|
+
identification_productIdType?: string | null;
|
|
32242
|
+
productionInformation_brandName: string;
|
|
32243
|
+
productionInformation_manufacturer?: string | null;
|
|
32244
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
32245
|
+
productionInformation_modelNumber?: string | null;
|
|
32246
|
+
productionInformation_materials?: Array<string> | null;
|
|
32247
|
+
packaging_packageQuantity?: string | null;
|
|
32248
|
+
packaging_dimensions_length?: string | null;
|
|
32249
|
+
packaging_dimensions_width?: string | null;
|
|
32250
|
+
packaging_dimensions_height?: string | null;
|
|
32251
|
+
packaging_dimensions_unit?: string | null;
|
|
32252
|
+
packaging_weight_value?: string | null;
|
|
32253
|
+
packaging_weight_unit?: string | null;
|
|
32254
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
32255
|
+
visuals_images: Array<{
|
|
32256
|
+
__typename?: "ProductV1Media";
|
|
32257
|
+
id: string;
|
|
32258
|
+
url: string;
|
|
32259
|
+
tag?: string | null;
|
|
32260
|
+
type: ProductV1MediaType;
|
|
32261
|
+
width?: number | null;
|
|
32262
|
+
height?: number | null;
|
|
32263
|
+
}>;
|
|
32264
|
+
visuals_videos?: Array<{
|
|
32265
|
+
__typename?: "ProductV1Media";
|
|
32266
|
+
id: string;
|
|
32267
|
+
url: string;
|
|
32268
|
+
tag?: string | null;
|
|
32269
|
+
type: ProductV1MediaType;
|
|
32270
|
+
width?: number | null;
|
|
32271
|
+
height?: number | null;
|
|
32272
|
+
}> | null;
|
|
32273
|
+
} | null;
|
|
31185
32274
|
attributes?: Array<{
|
|
31186
32275
|
__typename?: "MetadataAttribute";
|
|
31187
32276
|
traitType: string;
|
|
@@ -31850,6 +32939,47 @@ export type GetOffersQueryQuery = {
|
|
|
31850
32939
|
schemaUrl: string;
|
|
31851
32940
|
type: MetadataType;
|
|
31852
32941
|
image: string;
|
|
32942
|
+
productOverrides?: {
|
|
32943
|
+
__typename?: "ProductV1ProductOverrides";
|
|
32944
|
+
id: string;
|
|
32945
|
+
version: number;
|
|
32946
|
+
title: string;
|
|
32947
|
+
description: string;
|
|
32948
|
+
identification_sKU?: string | null;
|
|
32949
|
+
identification_productId?: string | null;
|
|
32950
|
+
identification_productIdType?: string | null;
|
|
32951
|
+
productionInformation_brandName: string;
|
|
32952
|
+
productionInformation_manufacturer?: string | null;
|
|
32953
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
32954
|
+
productionInformation_modelNumber?: string | null;
|
|
32955
|
+
productionInformation_materials?: Array<string> | null;
|
|
32956
|
+
packaging_packageQuantity?: string | null;
|
|
32957
|
+
packaging_dimensions_length?: string | null;
|
|
32958
|
+
packaging_dimensions_width?: string | null;
|
|
32959
|
+
packaging_dimensions_height?: string | null;
|
|
32960
|
+
packaging_dimensions_unit?: string | null;
|
|
32961
|
+
packaging_weight_value?: string | null;
|
|
32962
|
+
packaging_weight_unit?: string | null;
|
|
32963
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
32964
|
+
visuals_images: Array<{
|
|
32965
|
+
__typename?: "ProductV1Media";
|
|
32966
|
+
id: string;
|
|
32967
|
+
url: string;
|
|
32968
|
+
tag?: string | null;
|
|
32969
|
+
type: ProductV1MediaType;
|
|
32970
|
+
width?: number | null;
|
|
32971
|
+
height?: number | null;
|
|
32972
|
+
}>;
|
|
32973
|
+
visuals_videos?: Array<{
|
|
32974
|
+
__typename?: "ProductV1Media";
|
|
32975
|
+
id: string;
|
|
32976
|
+
url: string;
|
|
32977
|
+
tag?: string | null;
|
|
32978
|
+
type: ProductV1MediaType;
|
|
32979
|
+
width?: number | null;
|
|
32980
|
+
height?: number | null;
|
|
32981
|
+
}> | null;
|
|
32982
|
+
} | null;
|
|
31853
32983
|
attributes?: Array<{
|
|
31854
32984
|
__typename?: "MetadataAttribute";
|
|
31855
32985
|
traitType: string;
|
|
@@ -32203,6 +33333,71 @@ export type GetOffersQueryQuery = {
|
|
|
32203
33333
|
}>;
|
|
32204
33334
|
};
|
|
32205
33335
|
|
|
33336
|
+
export type GetOffersMediaQueryQueryVariables = Exact<{
|
|
33337
|
+
offersSkip?: InputMaybe<Scalars["Int"]>;
|
|
33338
|
+
offersFirst?: InputMaybe<Scalars["Int"]>;
|
|
33339
|
+
offersOrderBy?: InputMaybe<Offer_OrderBy>;
|
|
33340
|
+
offersOrderDirection?: InputMaybe<OrderDirection>;
|
|
33341
|
+
offersFilter?: InputMaybe<Offer_Filter>;
|
|
33342
|
+
exchangesSkip?: InputMaybe<Scalars["Int"]>;
|
|
33343
|
+
exchangesFirst?: InputMaybe<Scalars["Int"]>;
|
|
33344
|
+
exchangesOrderBy?: InputMaybe<Exchange_OrderBy>;
|
|
33345
|
+
exchangesOrderDirection?: InputMaybe<OrderDirection>;
|
|
33346
|
+
exchangesFilter?: InputMaybe<Exchange_Filter>;
|
|
33347
|
+
includeExchanges?: InputMaybe<Scalars["Boolean"]>;
|
|
33348
|
+
}>;
|
|
33349
|
+
|
|
33350
|
+
export type GetOffersMediaQueryQuery = {
|
|
33351
|
+
__typename?: "Query";
|
|
33352
|
+
offers: Array<{
|
|
33353
|
+
__typename?: "Offer";
|
|
33354
|
+
id: string;
|
|
33355
|
+
metadata?:
|
|
33356
|
+
| {
|
|
33357
|
+
__typename?: "BaseMetadataEntity";
|
|
33358
|
+
type: MetadataType;
|
|
33359
|
+
animationUrl?: string | null;
|
|
33360
|
+
image: string;
|
|
33361
|
+
}
|
|
33362
|
+
| {
|
|
33363
|
+
__typename?: "ProductV1MetadataEntity";
|
|
33364
|
+
type: MetadataType;
|
|
33365
|
+
animationUrl?: string | null;
|
|
33366
|
+
image: string;
|
|
33367
|
+
productOverrides?: {
|
|
33368
|
+
__typename?: "ProductV1ProductOverrides";
|
|
33369
|
+
visuals_images: Array<{
|
|
33370
|
+
__typename?: "ProductV1Media";
|
|
33371
|
+
url: string;
|
|
33372
|
+
}>;
|
|
33373
|
+
visuals_videos?: Array<{
|
|
33374
|
+
__typename?: "ProductV1Media";
|
|
33375
|
+
url: string;
|
|
33376
|
+
}> | null;
|
|
33377
|
+
} | null;
|
|
33378
|
+
product: {
|
|
33379
|
+
__typename?: "ProductV1Product";
|
|
33380
|
+
visuals_images: Array<{
|
|
33381
|
+
__typename?: "ProductV1Media";
|
|
33382
|
+
url: string;
|
|
33383
|
+
}>;
|
|
33384
|
+
visuals_videos?: Array<{
|
|
33385
|
+
__typename?: "ProductV1Media";
|
|
33386
|
+
url: string;
|
|
33387
|
+
}> | null;
|
|
33388
|
+
};
|
|
33389
|
+
productV1Seller: {
|
|
33390
|
+
__typename?: "ProductV1Seller";
|
|
33391
|
+
images?: Array<{
|
|
33392
|
+
__typename?: "ProductV1Media";
|
|
33393
|
+
url: string;
|
|
33394
|
+
}> | null;
|
|
33395
|
+
};
|
|
33396
|
+
}
|
|
33397
|
+
| null;
|
|
33398
|
+
}>;
|
|
33399
|
+
};
|
|
33400
|
+
|
|
32206
33401
|
export type OfferFieldsFragment = {
|
|
32207
33402
|
__typename?: "Offer";
|
|
32208
33403
|
id: string;
|
|
@@ -32502,6 +33697,47 @@ export type OfferFieldsFragment = {
|
|
|
32502
33697
|
schemaUrl: string;
|
|
32503
33698
|
type: MetadataType;
|
|
32504
33699
|
image: string;
|
|
33700
|
+
productOverrides?: {
|
|
33701
|
+
__typename?: "ProductV1ProductOverrides";
|
|
33702
|
+
id: string;
|
|
33703
|
+
version: number;
|
|
33704
|
+
title: string;
|
|
33705
|
+
description: string;
|
|
33706
|
+
identification_sKU?: string | null;
|
|
33707
|
+
identification_productId?: string | null;
|
|
33708
|
+
identification_productIdType?: string | null;
|
|
33709
|
+
productionInformation_brandName: string;
|
|
33710
|
+
productionInformation_manufacturer?: string | null;
|
|
33711
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
33712
|
+
productionInformation_modelNumber?: string | null;
|
|
33713
|
+
productionInformation_materials?: Array<string> | null;
|
|
33714
|
+
packaging_packageQuantity?: string | null;
|
|
33715
|
+
packaging_dimensions_length?: string | null;
|
|
33716
|
+
packaging_dimensions_width?: string | null;
|
|
33717
|
+
packaging_dimensions_height?: string | null;
|
|
33718
|
+
packaging_dimensions_unit?: string | null;
|
|
33719
|
+
packaging_weight_value?: string | null;
|
|
33720
|
+
packaging_weight_unit?: string | null;
|
|
33721
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
33722
|
+
visuals_images: Array<{
|
|
33723
|
+
__typename?: "ProductV1Media";
|
|
33724
|
+
id: string;
|
|
33725
|
+
url: string;
|
|
33726
|
+
tag?: string | null;
|
|
33727
|
+
type: ProductV1MediaType;
|
|
33728
|
+
width?: number | null;
|
|
33729
|
+
height?: number | null;
|
|
33730
|
+
}>;
|
|
33731
|
+
visuals_videos?: Array<{
|
|
33732
|
+
__typename?: "ProductV1Media";
|
|
33733
|
+
id: string;
|
|
33734
|
+
url: string;
|
|
33735
|
+
tag?: string | null;
|
|
33736
|
+
type: ProductV1MediaType;
|
|
33737
|
+
width?: number | null;
|
|
33738
|
+
height?: number | null;
|
|
33739
|
+
}> | null;
|
|
33740
|
+
} | null;
|
|
32505
33741
|
attributes?: Array<{
|
|
32506
33742
|
__typename?: "MetadataAttribute";
|
|
32507
33743
|
traitType: string;
|
|
@@ -33045,6 +34281,47 @@ export type BaseOfferFieldsFragment = {
|
|
|
33045
34281
|
schemaUrl: string;
|
|
33046
34282
|
type: MetadataType;
|
|
33047
34283
|
image: string;
|
|
34284
|
+
productOverrides?: {
|
|
34285
|
+
__typename?: "ProductV1ProductOverrides";
|
|
34286
|
+
id: string;
|
|
34287
|
+
version: number;
|
|
34288
|
+
title: string;
|
|
34289
|
+
description: string;
|
|
34290
|
+
identification_sKU?: string | null;
|
|
34291
|
+
identification_productId?: string | null;
|
|
34292
|
+
identification_productIdType?: string | null;
|
|
34293
|
+
productionInformation_brandName: string;
|
|
34294
|
+
productionInformation_manufacturer?: string | null;
|
|
34295
|
+
productionInformation_manufacturerPartNumber?: string | null;
|
|
34296
|
+
productionInformation_modelNumber?: string | null;
|
|
34297
|
+
productionInformation_materials?: Array<string> | null;
|
|
34298
|
+
packaging_packageQuantity?: string | null;
|
|
34299
|
+
packaging_dimensions_length?: string | null;
|
|
34300
|
+
packaging_dimensions_width?: string | null;
|
|
34301
|
+
packaging_dimensions_height?: string | null;
|
|
34302
|
+
packaging_dimensions_unit?: string | null;
|
|
34303
|
+
packaging_weight_value?: string | null;
|
|
34304
|
+
packaging_weight_unit?: string | null;
|
|
34305
|
+
brand: { __typename?: "ProductV1Brand"; id: string; name: string };
|
|
34306
|
+
visuals_images: Array<{
|
|
34307
|
+
__typename?: "ProductV1Media";
|
|
34308
|
+
id: string;
|
|
34309
|
+
url: string;
|
|
34310
|
+
tag?: string | null;
|
|
34311
|
+
type: ProductV1MediaType;
|
|
34312
|
+
width?: number | null;
|
|
34313
|
+
height?: number | null;
|
|
34314
|
+
}>;
|
|
34315
|
+
visuals_videos?: Array<{
|
|
34316
|
+
__typename?: "ProductV1Media";
|
|
34317
|
+
id: string;
|
|
34318
|
+
url: string;
|
|
34319
|
+
tag?: string | null;
|
|
34320
|
+
type: ProductV1MediaType;
|
|
34321
|
+
width?: number | null;
|
|
34322
|
+
height?: number | null;
|
|
34323
|
+
}> | null;
|
|
34324
|
+
} | null;
|
|
33048
34325
|
attributes?: Array<{
|
|
33049
34326
|
__typename?: "MetadataAttribute";
|
|
33050
34327
|
traitType: string;
|
|
@@ -33595,6 +34872,50 @@ export const BaseProductV1BrandFieldsFragmentDoc = gql`
|
|
|
33595
34872
|
name
|
|
33596
34873
|
}
|
|
33597
34874
|
`;
|
|
34875
|
+
export const BaseProductV1MediaFieldsFragmentDoc = gql`
|
|
34876
|
+
fragment BaseProductV1MediaFields on ProductV1Media {
|
|
34877
|
+
id
|
|
34878
|
+
url
|
|
34879
|
+
tag
|
|
34880
|
+
type
|
|
34881
|
+
width
|
|
34882
|
+
height
|
|
34883
|
+
}
|
|
34884
|
+
`;
|
|
34885
|
+
export const BaseProductV1ProductOverridesFieldsFragmentDoc = gql`
|
|
34886
|
+
fragment BaseProductV1ProductOverridesFields on ProductV1ProductOverrides {
|
|
34887
|
+
id
|
|
34888
|
+
version
|
|
34889
|
+
title
|
|
34890
|
+
description
|
|
34891
|
+
identification_sKU
|
|
34892
|
+
identification_productId
|
|
34893
|
+
identification_productIdType
|
|
34894
|
+
productionInformation_brandName
|
|
34895
|
+
brand {
|
|
34896
|
+
...BaseProductV1BrandFields
|
|
34897
|
+
}
|
|
34898
|
+
productionInformation_manufacturer
|
|
34899
|
+
productionInformation_manufacturerPartNumber
|
|
34900
|
+
productionInformation_modelNumber
|
|
34901
|
+
productionInformation_materials
|
|
34902
|
+
visuals_images {
|
|
34903
|
+
...BaseProductV1MediaFields
|
|
34904
|
+
}
|
|
34905
|
+
visuals_videos {
|
|
34906
|
+
...BaseProductV1MediaFields
|
|
34907
|
+
}
|
|
34908
|
+
packaging_packageQuantity
|
|
34909
|
+
packaging_dimensions_length
|
|
34910
|
+
packaging_dimensions_width
|
|
34911
|
+
packaging_dimensions_height
|
|
34912
|
+
packaging_dimensions_unit
|
|
34913
|
+
packaging_weight_value
|
|
34914
|
+
packaging_weight_unit
|
|
34915
|
+
}
|
|
34916
|
+
${BaseProductV1BrandFieldsFragmentDoc}
|
|
34917
|
+
${BaseProductV1MediaFieldsFragmentDoc}
|
|
34918
|
+
`;
|
|
33598
34919
|
export const BaseProductV1CategoryFieldsFragmentDoc = gql`
|
|
33599
34920
|
fragment BaseProductV1CategoryFields on ProductV1Category {
|
|
33600
34921
|
id
|
|
@@ -33619,16 +34940,6 @@ export const BaseProductV1PersonalisationFieldsFragmentDoc = gql`
|
|
|
33619
34940
|
name
|
|
33620
34941
|
}
|
|
33621
34942
|
`;
|
|
33622
|
-
export const BaseProductV1MediaFieldsFragmentDoc = gql`
|
|
33623
|
-
fragment BaseProductV1MediaFields on ProductV1Media {
|
|
33624
|
-
id
|
|
33625
|
-
url
|
|
33626
|
-
tag
|
|
33627
|
-
type
|
|
33628
|
-
width
|
|
33629
|
-
height
|
|
33630
|
-
}
|
|
33631
|
-
`;
|
|
33632
34943
|
export const BaseProductV1SellerContactLinkFieldsFragmentDoc = gql`
|
|
33633
34944
|
fragment BaseProductV1SellerContactLinkFields on ProductV1SellerContactLink {
|
|
33634
34945
|
id
|
|
@@ -33835,6 +35146,9 @@ export const BaseOfferFieldsFragmentDoc = gql`
|
|
|
33835
35146
|
type
|
|
33836
35147
|
image
|
|
33837
35148
|
... on ProductV1MetadataEntity {
|
|
35149
|
+
productOverrides {
|
|
35150
|
+
...BaseProductV1ProductOverridesFields
|
|
35151
|
+
}
|
|
33838
35152
|
attributes {
|
|
33839
35153
|
traitType
|
|
33840
35154
|
value
|
|
@@ -33873,6 +35187,7 @@ export const BaseOfferFieldsFragmentDoc = gql`
|
|
|
33873
35187
|
${BaseDisputeResolverFieldsFragmentDoc}
|
|
33874
35188
|
${BaseDisputeResolutionTermsEntityFieldsFragmentDoc}
|
|
33875
35189
|
${BaseAnimationMetadataFieldsFragmentDoc}
|
|
35190
|
+
${BaseProductV1ProductOverridesFieldsFragmentDoc}
|
|
33876
35191
|
${BaseProductV1ProductFieldsFragmentDoc}
|
|
33877
35192
|
${BaseProductV1VariationFieldsFragmentDoc}
|
|
33878
35193
|
${BaseProductV1SellerFieldsFragmentDoc}
|
|
@@ -34310,40 +35625,6 @@ export const BaseProductV1ProductWithNotVoidedVariantsFieldsFragmentDoc = gql`
|
|
|
34310
35625
|
${BaseExchangeFieldsFragmentDoc}
|
|
34311
35626
|
${BaseProductV1VariationFieldsFragmentDoc}
|
|
34312
35627
|
`;
|
|
34313
|
-
export const BaseProductV1ProductOverridesFieldsFragmentDoc = gql`
|
|
34314
|
-
fragment BaseProductV1ProductOverridesFields on ProductV1ProductOverrides {
|
|
34315
|
-
id
|
|
34316
|
-
version
|
|
34317
|
-
title
|
|
34318
|
-
description
|
|
34319
|
-
identification_sKU
|
|
34320
|
-
identification_productId
|
|
34321
|
-
identification_productIdType
|
|
34322
|
-
productionInformation_brandName
|
|
34323
|
-
brand {
|
|
34324
|
-
...BaseProductV1BrandFields
|
|
34325
|
-
}
|
|
34326
|
-
productionInformation_manufacturer
|
|
34327
|
-
productionInformation_manufacturerPartNumber
|
|
34328
|
-
productionInformation_modelNumber
|
|
34329
|
-
productionInformation_materials
|
|
34330
|
-
visuals_images {
|
|
34331
|
-
...BaseProductV1MediaFields
|
|
34332
|
-
}
|
|
34333
|
-
visuals_videos {
|
|
34334
|
-
...BaseProductV1MediaFields
|
|
34335
|
-
}
|
|
34336
|
-
packaging_packageQuantity
|
|
34337
|
-
packaging_dimensions_length
|
|
34338
|
-
packaging_dimensions_width
|
|
34339
|
-
packaging_dimensions_height
|
|
34340
|
-
packaging_dimensions_unit
|
|
34341
|
-
packaging_weight_value
|
|
34342
|
-
packaging_weight_unit
|
|
34343
|
-
}
|
|
34344
|
-
${BaseProductV1BrandFieldsFragmentDoc}
|
|
34345
|
-
${BaseProductV1MediaFieldsFragmentDoc}
|
|
34346
|
-
`;
|
|
34347
35628
|
export const OfferFieldsFragmentDoc = gql`
|
|
34348
35629
|
fragment OfferFields on Offer {
|
|
34349
35630
|
...BaseOfferFields
|
|
@@ -34947,6 +36228,59 @@ export const GetOffersQueryDocument = gql`
|
|
|
34947
36228
|
}
|
|
34948
36229
|
${OfferFieldsFragmentDoc}
|
|
34949
36230
|
`;
|
|
36231
|
+
export const GetOffersMediaQueryDocument = gql`
|
|
36232
|
+
query getOffersMediaQuery(
|
|
36233
|
+
$offersSkip: Int
|
|
36234
|
+
$offersFirst: Int
|
|
36235
|
+
$offersOrderBy: Offer_orderBy
|
|
36236
|
+
$offersOrderDirection: OrderDirection
|
|
36237
|
+
$offersFilter: Offer_filter
|
|
36238
|
+
$exchangesSkip: Int
|
|
36239
|
+
$exchangesFirst: Int
|
|
36240
|
+
$exchangesOrderBy: Exchange_orderBy
|
|
36241
|
+
$exchangesOrderDirection: OrderDirection
|
|
36242
|
+
$exchangesFilter: Exchange_filter
|
|
36243
|
+
$includeExchanges: Boolean = false
|
|
36244
|
+
) {
|
|
36245
|
+
offers(
|
|
36246
|
+
skip: $offersSkip
|
|
36247
|
+
first: $offersFirst
|
|
36248
|
+
orderBy: $offersOrderBy
|
|
36249
|
+
orderDirection: $offersOrderDirection
|
|
36250
|
+
where: $offersFilter
|
|
36251
|
+
) {
|
|
36252
|
+
id
|
|
36253
|
+
metadata {
|
|
36254
|
+
type
|
|
36255
|
+
animationUrl
|
|
36256
|
+
image
|
|
36257
|
+
... on ProductV1MetadataEntity {
|
|
36258
|
+
productOverrides {
|
|
36259
|
+
visuals_images {
|
|
36260
|
+
url
|
|
36261
|
+
}
|
|
36262
|
+
visuals_videos {
|
|
36263
|
+
url
|
|
36264
|
+
}
|
|
36265
|
+
}
|
|
36266
|
+
product {
|
|
36267
|
+
visuals_images {
|
|
36268
|
+
url
|
|
36269
|
+
}
|
|
36270
|
+
visuals_videos {
|
|
36271
|
+
url
|
|
36272
|
+
}
|
|
36273
|
+
}
|
|
36274
|
+
productV1Seller {
|
|
36275
|
+
images {
|
|
36276
|
+
url
|
|
36277
|
+
}
|
|
36278
|
+
}
|
|
36279
|
+
}
|
|
36280
|
+
}
|
|
36281
|
+
}
|
|
36282
|
+
}
|
|
36283
|
+
`;
|
|
34950
36284
|
|
|
34951
36285
|
export type SdkFunctionWrapper = <T>(
|
|
34952
36286
|
action: (requestHeaders?: Record<string, string>) => Promise<T>,
|
|
@@ -34954,7 +36288,7 @@ export type SdkFunctionWrapper = <T>(
|
|
|
34954
36288
|
operationType?: string
|
|
34955
36289
|
) => Promise<T>;
|
|
34956
36290
|
|
|
34957
|
-
|
|
36291
|
+
const defaultWrapper: SdkFunctionWrapper = (
|
|
34958
36292
|
action,
|
|
34959
36293
|
_operationName,
|
|
34960
36294
|
_operationType
|
|
@@ -35352,6 +36686,21 @@ export function getSdk(
|
|
|
35352
36686
|
"getOffersQuery",
|
|
35353
36687
|
"query"
|
|
35354
36688
|
);
|
|
36689
|
+
},
|
|
36690
|
+
getOffersMediaQuery(
|
|
36691
|
+
variables?: GetOffersMediaQueryQueryVariables,
|
|
36692
|
+
requestHeaders?: Dom.RequestInit["headers"]
|
|
36693
|
+
): Promise<GetOffersMediaQueryQuery> {
|
|
36694
|
+
return withWrapper(
|
|
36695
|
+
(wrappedRequestHeaders) =>
|
|
36696
|
+
client.request<GetOffersMediaQueryQuery>(
|
|
36697
|
+
GetOffersMediaQueryDocument,
|
|
36698
|
+
variables,
|
|
36699
|
+
{ ...requestHeaders, ...wrappedRequestHeaders }
|
|
36700
|
+
),
|
|
36701
|
+
"getOffersMediaQuery",
|
|
36702
|
+
"query"
|
|
36703
|
+
);
|
|
35355
36704
|
}
|
|
35356
36705
|
};
|
|
35357
36706
|
}
|