@bosonprotocol/core-sdk 1.16.0 → 1.17.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/core-sdk.d.ts +1 -1
- package/dist/cjs/core-sdk.d.ts.map +1 -1
- package/dist/cjs/core-sdk.js +2 -2
- package/dist/cjs/core-sdk.js.map +1 -1
- package/dist/cjs/offers/renderContractualAgreement.d.ts +18 -6
- package/dist/cjs/offers/renderContractualAgreement.d.ts.map +1 -1
- package/dist/cjs/offers/renderContractualAgreement.js +86 -10
- package/dist/cjs/offers/renderContractualAgreement.js.map +1 -1
- package/dist/cjs/subgraph.d.ts +137 -0
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +6 -0
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/esm/core-sdk.d.ts +1 -1
- package/dist/esm/core-sdk.d.ts.map +1 -1
- package/dist/esm/core-sdk.js +2 -2
- package/dist/esm/core-sdk.js.map +1 -1
- package/dist/esm/offers/renderContractualAgreement.d.ts +18 -6
- package/dist/esm/offers/renderContractualAgreement.d.ts.map +1 -1
- package/dist/esm/offers/renderContractualAgreement.js +87 -11
- package/dist/esm/offers/renderContractualAgreement.js.map +1 -1
- package/dist/esm/subgraph.d.ts +137 -0
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +6 -0
- package/dist/esm/subgraph.js.map +1 -1
- package/package.json +3 -3
- package/src/core-sdk.ts +8 -2
- package/src/metadata/product-v1.graphql +3 -0
- package/src/offers/renderContractualAgreement.ts +129 -17
- package/src/subgraph.ts +148 -0
package/src/subgraph.ts
CHANGED
|
@@ -3020,14 +3020,44 @@ export enum ProductV1Category_OrderBy {
|
|
|
3020
3020
|
|
|
3021
3021
|
export type ProductV1ExchangePolicy = {
|
|
3022
3022
|
__typename?: "ProductV1ExchangePolicy";
|
|
3023
|
+
disputeResolverContactMethod: Scalars["String"];
|
|
3023
3024
|
id: Scalars["ID"];
|
|
3024
3025
|
label?: Maybe<Scalars["String"]>;
|
|
3026
|
+
sellerContactMethod: Scalars["String"];
|
|
3025
3027
|
template: Scalars["String"];
|
|
3026
3028
|
uuid: Scalars["String"];
|
|
3027
3029
|
version: Scalars["Int"];
|
|
3028
3030
|
};
|
|
3029
3031
|
|
|
3030
3032
|
export type ProductV1ExchangePolicy_Filter = {
|
|
3033
|
+
disputeResolverContactMethod?: InputMaybe<Scalars["String"]>;
|
|
3034
|
+
disputeResolverContactMethod_contains?: InputMaybe<Scalars["String"]>;
|
|
3035
|
+
disputeResolverContactMethod_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3036
|
+
disputeResolverContactMethod_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3037
|
+
disputeResolverContactMethod_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3038
|
+
disputeResolverContactMethod_gt?: InputMaybe<Scalars["String"]>;
|
|
3039
|
+
disputeResolverContactMethod_gte?: InputMaybe<Scalars["String"]>;
|
|
3040
|
+
disputeResolverContactMethod_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3041
|
+
disputeResolverContactMethod_lt?: InputMaybe<Scalars["String"]>;
|
|
3042
|
+
disputeResolverContactMethod_lte?: InputMaybe<Scalars["String"]>;
|
|
3043
|
+
disputeResolverContactMethod_not?: InputMaybe<Scalars["String"]>;
|
|
3044
|
+
disputeResolverContactMethod_not_contains?: InputMaybe<Scalars["String"]>;
|
|
3045
|
+
disputeResolverContactMethod_not_contains_nocase?: InputMaybe<
|
|
3046
|
+
Scalars["String"]
|
|
3047
|
+
>;
|
|
3048
|
+
disputeResolverContactMethod_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3049
|
+
disputeResolverContactMethod_not_ends_with_nocase?: InputMaybe<
|
|
3050
|
+
Scalars["String"]
|
|
3051
|
+
>;
|
|
3052
|
+
disputeResolverContactMethod_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3053
|
+
disputeResolverContactMethod_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3054
|
+
disputeResolverContactMethod_not_starts_with_nocase?: InputMaybe<
|
|
3055
|
+
Scalars["String"]
|
|
3056
|
+
>;
|
|
3057
|
+
disputeResolverContactMethod_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3058
|
+
disputeResolverContactMethod_starts_with_nocase?: InputMaybe<
|
|
3059
|
+
Scalars["String"]
|
|
3060
|
+
>;
|
|
3031
3061
|
id?: InputMaybe<Scalars["ID"]>;
|
|
3032
3062
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
3033
3063
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -3056,6 +3086,26 @@ export type ProductV1ExchangePolicy_Filter = {
|
|
|
3056
3086
|
label_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3057
3087
|
label_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3058
3088
|
label_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3089
|
+
sellerContactMethod?: InputMaybe<Scalars["String"]>;
|
|
3090
|
+
sellerContactMethod_contains?: InputMaybe<Scalars["String"]>;
|
|
3091
|
+
sellerContactMethod_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3092
|
+
sellerContactMethod_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3093
|
+
sellerContactMethod_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3094
|
+
sellerContactMethod_gt?: InputMaybe<Scalars["String"]>;
|
|
3095
|
+
sellerContactMethod_gte?: InputMaybe<Scalars["String"]>;
|
|
3096
|
+
sellerContactMethod_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3097
|
+
sellerContactMethod_lt?: InputMaybe<Scalars["String"]>;
|
|
3098
|
+
sellerContactMethod_lte?: InputMaybe<Scalars["String"]>;
|
|
3099
|
+
sellerContactMethod_not?: InputMaybe<Scalars["String"]>;
|
|
3100
|
+
sellerContactMethod_not_contains?: InputMaybe<Scalars["String"]>;
|
|
3101
|
+
sellerContactMethod_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3102
|
+
sellerContactMethod_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3103
|
+
sellerContactMethod_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3104
|
+
sellerContactMethod_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3105
|
+
sellerContactMethod_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3106
|
+
sellerContactMethod_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3107
|
+
sellerContactMethod_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3108
|
+
sellerContactMethod_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3059
3109
|
template?: InputMaybe<Scalars["String"]>;
|
|
3060
3110
|
template_contains?: InputMaybe<Scalars["String"]>;
|
|
3061
3111
|
template_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -3107,8 +3157,10 @@ export type ProductV1ExchangePolicy_Filter = {
|
|
|
3107
3157
|
};
|
|
3108
3158
|
|
|
3109
3159
|
export enum ProductV1ExchangePolicy_OrderBy {
|
|
3160
|
+
DisputeResolverContactMethod = "disputeResolverContactMethod",
|
|
3110
3161
|
Id = "id",
|
|
3111
3162
|
Label = "label",
|
|
3163
|
+
SellerContactMethod = "sellerContactMethod",
|
|
3112
3164
|
Template = "template",
|
|
3113
3165
|
Uuid = "uuid",
|
|
3114
3166
|
Version = "version"
|
|
@@ -5488,6 +5540,7 @@ export type ProductV1ShippingOption = {
|
|
|
5488
5540
|
defaultVersion?: Maybe<Scalars["Int"]>;
|
|
5489
5541
|
id: Scalars["ID"];
|
|
5490
5542
|
redemptionPoint?: Maybe<Scalars["String"]>;
|
|
5543
|
+
returnPeriodInDays: Scalars["Int"];
|
|
5491
5544
|
supportedJurisdictions?: Maybe<Array<ProductV1ShippingJurisdiction>>;
|
|
5492
5545
|
};
|
|
5493
5546
|
|
|
@@ -5556,6 +5609,14 @@ export type ProductV1ShippingOption_Filter = {
|
|
|
5556
5609
|
redemptionPoint_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
5557
5610
|
redemptionPoint_starts_with?: InputMaybe<Scalars["String"]>;
|
|
5558
5611
|
redemptionPoint_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
5612
|
+
returnPeriodInDays?: InputMaybe<Scalars["Int"]>;
|
|
5613
|
+
returnPeriodInDays_gt?: InputMaybe<Scalars["Int"]>;
|
|
5614
|
+
returnPeriodInDays_gte?: InputMaybe<Scalars["Int"]>;
|
|
5615
|
+
returnPeriodInDays_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
5616
|
+
returnPeriodInDays_lt?: InputMaybe<Scalars["Int"]>;
|
|
5617
|
+
returnPeriodInDays_lte?: InputMaybe<Scalars["Int"]>;
|
|
5618
|
+
returnPeriodInDays_not?: InputMaybe<Scalars["Int"]>;
|
|
5619
|
+
returnPeriodInDays_not_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
5559
5620
|
supportedJurisdictions?: InputMaybe<Array<Scalars["String"]>>;
|
|
5560
5621
|
supportedJurisdictions_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
5561
5622
|
supportedJurisdictions_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -5571,6 +5632,7 @@ export enum ProductV1ShippingOption_OrderBy {
|
|
|
5571
5632
|
DefaultVersion = "defaultVersion",
|
|
5572
5633
|
Id = "id",
|
|
5573
5634
|
RedemptionPoint = "redemptionPoint",
|
|
5635
|
+
ReturnPeriodInDays = "returnPeriodInDays",
|
|
5574
5636
|
SupportedJurisdictions = "supportedJurisdictions"
|
|
5575
5637
|
}
|
|
5576
5638
|
|
|
@@ -7406,6 +7468,8 @@ export type GetSellerByIdQueryQuery = {
|
|
|
7406
7468
|
version: number;
|
|
7407
7469
|
label?: string | null;
|
|
7408
7470
|
template: string;
|
|
7471
|
+
sellerContactMethod: string;
|
|
7472
|
+
disputeResolverContactMethod: string;
|
|
7409
7473
|
};
|
|
7410
7474
|
shipping?: {
|
|
7411
7475
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -7413,6 +7477,7 @@ export type GetSellerByIdQueryQuery = {
|
|
|
7413
7477
|
defaultVersion?: number | null;
|
|
7414
7478
|
countryOfOrigin?: string | null;
|
|
7415
7479
|
redemptionPoint?: string | null;
|
|
7480
|
+
returnPeriodInDays: number;
|
|
7416
7481
|
supportedJurisdictions?: Array<{
|
|
7417
7482
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
7418
7483
|
id: string;
|
|
@@ -7836,6 +7901,8 @@ export type GetSellersQueryQuery = {
|
|
|
7836
7901
|
version: number;
|
|
7837
7902
|
label?: string | null;
|
|
7838
7903
|
template: string;
|
|
7904
|
+
sellerContactMethod: string;
|
|
7905
|
+
disputeResolverContactMethod: string;
|
|
7839
7906
|
};
|
|
7840
7907
|
shipping?: {
|
|
7841
7908
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -7843,6 +7910,7 @@ export type GetSellersQueryQuery = {
|
|
|
7843
7910
|
defaultVersion?: number | null;
|
|
7844
7911
|
countryOfOrigin?: string | null;
|
|
7845
7912
|
redemptionPoint?: string | null;
|
|
7913
|
+
returnPeriodInDays: number;
|
|
7846
7914
|
supportedJurisdictions?: Array<{
|
|
7847
7915
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
7848
7916
|
id: string;
|
|
@@ -8566,6 +8634,8 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
8566
8634
|
version: number;
|
|
8567
8635
|
label?: string | null;
|
|
8568
8636
|
template: string;
|
|
8637
|
+
sellerContactMethod: string;
|
|
8638
|
+
disputeResolverContactMethod: string;
|
|
8569
8639
|
};
|
|
8570
8640
|
shipping?: {
|
|
8571
8641
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -8573,6 +8643,7 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
8573
8643
|
defaultVersion?: number | null;
|
|
8574
8644
|
countryOfOrigin?: string | null;
|
|
8575
8645
|
redemptionPoint?: string | null;
|
|
8646
|
+
returnPeriodInDays: number;
|
|
8576
8647
|
supportedJurisdictions?: Array<{
|
|
8577
8648
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
8578
8649
|
id: string;
|
|
@@ -8937,6 +9008,8 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
8937
9008
|
version: number;
|
|
8938
9009
|
label?: string | null;
|
|
8939
9010
|
template: string;
|
|
9011
|
+
sellerContactMethod: string;
|
|
9012
|
+
disputeResolverContactMethod: string;
|
|
8940
9013
|
};
|
|
8941
9014
|
shipping?: {
|
|
8942
9015
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -8944,6 +9017,7 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
8944
9017
|
defaultVersion?: number | null;
|
|
8945
9018
|
countryOfOrigin?: string | null;
|
|
8946
9019
|
redemptionPoint?: string | null;
|
|
9020
|
+
returnPeriodInDays: number;
|
|
8947
9021
|
supportedJurisdictions?: Array<{
|
|
8948
9022
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
8949
9023
|
id: string;
|
|
@@ -9296,6 +9370,8 @@ export type SellerFieldsFragment = {
|
|
|
9296
9370
|
version: number;
|
|
9297
9371
|
label?: string | null;
|
|
9298
9372
|
template: string;
|
|
9373
|
+
sellerContactMethod: string;
|
|
9374
|
+
disputeResolverContactMethod: string;
|
|
9299
9375
|
};
|
|
9300
9376
|
shipping?: {
|
|
9301
9377
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -9303,6 +9379,7 @@ export type SellerFieldsFragment = {
|
|
|
9303
9379
|
defaultVersion?: number | null;
|
|
9304
9380
|
countryOfOrigin?: string | null;
|
|
9305
9381
|
redemptionPoint?: string | null;
|
|
9382
|
+
returnPeriodInDays: number;
|
|
9306
9383
|
supportedJurisdictions?: Array<{
|
|
9307
9384
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
9308
9385
|
id: string;
|
|
@@ -9828,6 +9905,8 @@ export type DisputeResolverFieldsFragment = {
|
|
|
9828
9905
|
version: number;
|
|
9829
9906
|
label?: string | null;
|
|
9830
9907
|
template: string;
|
|
9908
|
+
sellerContactMethod: string;
|
|
9909
|
+
disputeResolverContactMethod: string;
|
|
9831
9910
|
};
|
|
9832
9911
|
shipping?: {
|
|
9833
9912
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -9835,6 +9914,7 @@ export type DisputeResolverFieldsFragment = {
|
|
|
9835
9914
|
defaultVersion?: number | null;
|
|
9836
9915
|
countryOfOrigin?: string | null;
|
|
9837
9916
|
redemptionPoint?: string | null;
|
|
9917
|
+
returnPeriodInDays: number;
|
|
9838
9918
|
supportedJurisdictions?: Array<{
|
|
9839
9919
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
9840
9920
|
id: string;
|
|
@@ -10529,6 +10609,8 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
10529
10609
|
version: number;
|
|
10530
10610
|
label?: string | null;
|
|
10531
10611
|
template: string;
|
|
10612
|
+
sellerContactMethod: string;
|
|
10613
|
+
disputeResolverContactMethod: string;
|
|
10532
10614
|
};
|
|
10533
10615
|
shipping?: {
|
|
10534
10616
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -10536,6 +10618,7 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
10536
10618
|
defaultVersion?: number | null;
|
|
10537
10619
|
countryOfOrigin?: string | null;
|
|
10538
10620
|
redemptionPoint?: string | null;
|
|
10621
|
+
returnPeriodInDays: number;
|
|
10539
10622
|
supportedJurisdictions?: Array<{
|
|
10540
10623
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
10541
10624
|
id: string;
|
|
@@ -10821,6 +10904,8 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
10821
10904
|
version: number;
|
|
10822
10905
|
label?: string | null;
|
|
10823
10906
|
template: string;
|
|
10907
|
+
sellerContactMethod: string;
|
|
10908
|
+
disputeResolverContactMethod: string;
|
|
10824
10909
|
};
|
|
10825
10910
|
shipping?: {
|
|
10826
10911
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -10828,6 +10913,7 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
10828
10913
|
defaultVersion?: number | null;
|
|
10829
10914
|
countryOfOrigin?: string | null;
|
|
10830
10915
|
redemptionPoint?: string | null;
|
|
10916
|
+
returnPeriodInDays: number;
|
|
10831
10917
|
supportedJurisdictions?: Array<{
|
|
10832
10918
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
10833
10919
|
id: string;
|
|
@@ -11087,6 +11173,8 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
11087
11173
|
version: number;
|
|
11088
11174
|
label?: string | null;
|
|
11089
11175
|
template: string;
|
|
11176
|
+
sellerContactMethod: string;
|
|
11177
|
+
disputeResolverContactMethod: string;
|
|
11090
11178
|
};
|
|
11091
11179
|
shipping?: {
|
|
11092
11180
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -11094,6 +11182,7 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
11094
11182
|
defaultVersion?: number | null;
|
|
11095
11183
|
countryOfOrigin?: string | null;
|
|
11096
11184
|
redemptionPoint?: string | null;
|
|
11185
|
+
returnPeriodInDays: number;
|
|
11097
11186
|
supportedJurisdictions?: Array<{
|
|
11098
11187
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
11099
11188
|
id: string;
|
|
@@ -11532,6 +11621,8 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
11532
11621
|
version: number;
|
|
11533
11622
|
label?: string | null;
|
|
11534
11623
|
template: string;
|
|
11624
|
+
sellerContactMethod: string;
|
|
11625
|
+
disputeResolverContactMethod: string;
|
|
11535
11626
|
};
|
|
11536
11627
|
shipping?: {
|
|
11537
11628
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -11539,6 +11630,7 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
11539
11630
|
defaultVersion?: number | null;
|
|
11540
11631
|
countryOfOrigin?: string | null;
|
|
11541
11632
|
redemptionPoint?: string | null;
|
|
11633
|
+
returnPeriodInDays: number;
|
|
11542
11634
|
supportedJurisdictions?: Array<{
|
|
11543
11635
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
11544
11636
|
id: string;
|
|
@@ -11846,6 +11938,8 @@ export type GetExchangesQueryQuery = {
|
|
|
11846
11938
|
version: number;
|
|
11847
11939
|
label?: string | null;
|
|
11848
11940
|
template: string;
|
|
11941
|
+
sellerContactMethod: string;
|
|
11942
|
+
disputeResolverContactMethod: string;
|
|
11849
11943
|
};
|
|
11850
11944
|
shipping?: {
|
|
11851
11945
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -11853,6 +11947,7 @@ export type GetExchangesQueryQuery = {
|
|
|
11853
11947
|
defaultVersion?: number | null;
|
|
11854
11948
|
countryOfOrigin?: string | null;
|
|
11855
11949
|
redemptionPoint?: string | null;
|
|
11950
|
+
returnPeriodInDays: number;
|
|
11856
11951
|
supportedJurisdictions?: Array<{
|
|
11857
11952
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
11858
11953
|
id: string;
|
|
@@ -12146,6 +12241,8 @@ export type ExchangeFieldsFragment = {
|
|
|
12146
12241
|
version: number;
|
|
12147
12242
|
label?: string | null;
|
|
12148
12243
|
template: string;
|
|
12244
|
+
sellerContactMethod: string;
|
|
12245
|
+
disputeResolverContactMethod: string;
|
|
12149
12246
|
};
|
|
12150
12247
|
shipping?: {
|
|
12151
12248
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -12153,6 +12250,7 @@ export type ExchangeFieldsFragment = {
|
|
|
12153
12250
|
defaultVersion?: number | null;
|
|
12154
12251
|
countryOfOrigin?: string | null;
|
|
12155
12252
|
redemptionPoint?: string | null;
|
|
12253
|
+
returnPeriodInDays: number;
|
|
12156
12254
|
supportedJurisdictions?: Array<{
|
|
12157
12255
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
12158
12256
|
id: string;
|
|
@@ -12577,6 +12675,8 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
12577
12675
|
version: number;
|
|
12578
12676
|
label?: string | null;
|
|
12579
12677
|
template: string;
|
|
12678
|
+
sellerContactMethod: string;
|
|
12679
|
+
disputeResolverContactMethod: string;
|
|
12580
12680
|
};
|
|
12581
12681
|
shipping?: {
|
|
12582
12682
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -12584,6 +12684,7 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
12584
12684
|
defaultVersion?: number | null;
|
|
12585
12685
|
countryOfOrigin?: string | null;
|
|
12586
12686
|
redemptionPoint?: string | null;
|
|
12687
|
+
returnPeriodInDays: number;
|
|
12587
12688
|
supportedJurisdictions?: Array<{
|
|
12588
12689
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
12589
12690
|
id: string;
|
|
@@ -12886,6 +12987,8 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
12886
12987
|
version: number;
|
|
12887
12988
|
label?: string | null;
|
|
12888
12989
|
template: string;
|
|
12990
|
+
sellerContactMethod: string;
|
|
12991
|
+
disputeResolverContactMethod: string;
|
|
12889
12992
|
};
|
|
12890
12993
|
shipping?: {
|
|
12891
12994
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -12893,6 +12996,7 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
12893
12996
|
defaultVersion?: number | null;
|
|
12894
12997
|
countryOfOrigin?: string | null;
|
|
12895
12998
|
redemptionPoint?: string | null;
|
|
12999
|
+
returnPeriodInDays: number;
|
|
12896
13000
|
supportedJurisdictions?: Array<{
|
|
12897
13001
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
12898
13002
|
id: string;
|
|
@@ -13181,6 +13285,8 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
13181
13285
|
version: number;
|
|
13182
13286
|
label?: string | null;
|
|
13183
13287
|
template: string;
|
|
13288
|
+
sellerContactMethod: string;
|
|
13289
|
+
disputeResolverContactMethod: string;
|
|
13184
13290
|
};
|
|
13185
13291
|
shipping?: {
|
|
13186
13292
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -13188,6 +13294,7 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
13188
13294
|
defaultVersion?: number | null;
|
|
13189
13295
|
countryOfOrigin?: string | null;
|
|
13190
13296
|
redemptionPoint?: string | null;
|
|
13297
|
+
returnPeriodInDays: number;
|
|
13191
13298
|
supportedJurisdictions?: Array<{
|
|
13192
13299
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
13193
13300
|
id: string;
|
|
@@ -13475,6 +13582,8 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
13475
13582
|
version: number;
|
|
13476
13583
|
label?: string | null;
|
|
13477
13584
|
template: string;
|
|
13585
|
+
sellerContactMethod: string;
|
|
13586
|
+
disputeResolverContactMethod: string;
|
|
13478
13587
|
};
|
|
13479
13588
|
shipping?: {
|
|
13480
13589
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -13482,6 +13591,7 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
13482
13591
|
defaultVersion?: number | null;
|
|
13483
13592
|
countryOfOrigin?: string | null;
|
|
13484
13593
|
redemptionPoint?: string | null;
|
|
13594
|
+
returnPeriodInDays: number;
|
|
13485
13595
|
supportedJurisdictions?: Array<{
|
|
13486
13596
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
13487
13597
|
id: string;
|
|
@@ -13819,6 +13929,8 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13819
13929
|
version: number;
|
|
13820
13930
|
label?: string | null;
|
|
13821
13931
|
template: string;
|
|
13932
|
+
sellerContactMethod: string;
|
|
13933
|
+
disputeResolverContactMethod: string;
|
|
13822
13934
|
};
|
|
13823
13935
|
shipping?: {
|
|
13824
13936
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -13826,6 +13938,7 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13826
13938
|
defaultVersion?: number | null;
|
|
13827
13939
|
countryOfOrigin?: string | null;
|
|
13828
13940
|
redemptionPoint?: string | null;
|
|
13941
|
+
returnPeriodInDays: number;
|
|
13829
13942
|
supportedJurisdictions?: Array<{
|
|
13830
13943
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
13831
13944
|
id: string;
|
|
@@ -13979,6 +14092,8 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13979
14092
|
version: number;
|
|
13980
14093
|
label?: string | null;
|
|
13981
14094
|
template: string;
|
|
14095
|
+
sellerContactMethod: string;
|
|
14096
|
+
disputeResolverContactMethod: string;
|
|
13982
14097
|
};
|
|
13983
14098
|
} | null;
|
|
13984
14099
|
};
|
|
@@ -14253,6 +14368,8 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14253
14368
|
version: number;
|
|
14254
14369
|
label?: string | null;
|
|
14255
14370
|
template: string;
|
|
14371
|
+
sellerContactMethod: string;
|
|
14372
|
+
disputeResolverContactMethod: string;
|
|
14256
14373
|
};
|
|
14257
14374
|
shipping?: {
|
|
14258
14375
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -14260,6 +14377,7 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14260
14377
|
defaultVersion?: number | null;
|
|
14261
14378
|
countryOfOrigin?: string | null;
|
|
14262
14379
|
redemptionPoint?: string | null;
|
|
14380
|
+
returnPeriodInDays: number;
|
|
14263
14381
|
supportedJurisdictions?: Array<{
|
|
14264
14382
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
14265
14383
|
id: string;
|
|
@@ -14413,6 +14531,8 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14413
14531
|
version: number;
|
|
14414
14532
|
label?: string | null;
|
|
14415
14533
|
template: string;
|
|
14534
|
+
sellerContactMethod: string;
|
|
14535
|
+
disputeResolverContactMethod: string;
|
|
14416
14536
|
};
|
|
14417
14537
|
}>;
|
|
14418
14538
|
};
|
|
@@ -14673,6 +14793,8 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14673
14793
|
version: number;
|
|
14674
14794
|
label?: string | null;
|
|
14675
14795
|
template: string;
|
|
14796
|
+
sellerContactMethod: string;
|
|
14797
|
+
disputeResolverContactMethod: string;
|
|
14676
14798
|
};
|
|
14677
14799
|
shipping?: {
|
|
14678
14800
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -14680,6 +14802,7 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14680
14802
|
defaultVersion?: number | null;
|
|
14681
14803
|
countryOfOrigin?: string | null;
|
|
14682
14804
|
redemptionPoint?: string | null;
|
|
14805
|
+
returnPeriodInDays: number;
|
|
14683
14806
|
supportedJurisdictions?: Array<{
|
|
14684
14807
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
14685
14808
|
id: string;
|
|
@@ -14833,6 +14956,8 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14833
14956
|
version: number;
|
|
14834
14957
|
label?: string | null;
|
|
14835
14958
|
template: string;
|
|
14959
|
+
sellerContactMethod: string;
|
|
14960
|
+
disputeResolverContactMethod: string;
|
|
14836
14961
|
};
|
|
14837
14962
|
};
|
|
14838
14963
|
|
|
@@ -15092,6 +15217,8 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
15092
15217
|
version: number;
|
|
15093
15218
|
label?: string | null;
|
|
15094
15219
|
template: string;
|
|
15220
|
+
sellerContactMethod: string;
|
|
15221
|
+
disputeResolverContactMethod: string;
|
|
15095
15222
|
};
|
|
15096
15223
|
shipping?: {
|
|
15097
15224
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -15099,6 +15226,7 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
15099
15226
|
defaultVersion?: number | null;
|
|
15100
15227
|
countryOfOrigin?: string | null;
|
|
15101
15228
|
redemptionPoint?: string | null;
|
|
15229
|
+
returnPeriodInDays: number;
|
|
15102
15230
|
supportedJurisdictions?: Array<{
|
|
15103
15231
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
15104
15232
|
id: string;
|
|
@@ -15252,6 +15380,8 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
15252
15380
|
version: number;
|
|
15253
15381
|
label?: string | null;
|
|
15254
15382
|
template: string;
|
|
15383
|
+
sellerContactMethod: string;
|
|
15384
|
+
disputeResolverContactMethod: string;
|
|
15255
15385
|
};
|
|
15256
15386
|
};
|
|
15257
15387
|
|
|
@@ -15425,6 +15555,7 @@ export type BaseProductV1ShippingOptionFieldsFragment = {
|
|
|
15425
15555
|
defaultVersion?: number | null;
|
|
15426
15556
|
countryOfOrigin?: string | null;
|
|
15427
15557
|
redemptionPoint?: string | null;
|
|
15558
|
+
returnPeriodInDays: number;
|
|
15428
15559
|
supportedJurisdictions?: Array<{
|
|
15429
15560
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
15430
15561
|
id: string;
|
|
@@ -15447,6 +15578,8 @@ export type BaseProductV1ExchangePolicyFieldsFragment = {
|
|
|
15447
15578
|
version: number;
|
|
15448
15579
|
label?: string | null;
|
|
15449
15580
|
template: string;
|
|
15581
|
+
sellerContactMethod: string;
|
|
15582
|
+
disputeResolverContactMethod: string;
|
|
15450
15583
|
};
|
|
15451
15584
|
|
|
15452
15585
|
export type BaseProductV1ProductOverridesFieldsFragment = {
|
|
@@ -15780,6 +15913,8 @@ export type GetOfferByIdQueryQuery = {
|
|
|
15780
15913
|
version: number;
|
|
15781
15914
|
label?: string | null;
|
|
15782
15915
|
template: string;
|
|
15916
|
+
sellerContactMethod: string;
|
|
15917
|
+
disputeResolverContactMethod: string;
|
|
15783
15918
|
};
|
|
15784
15919
|
shipping?: {
|
|
15785
15920
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -15787,6 +15922,7 @@ export type GetOfferByIdQueryQuery = {
|
|
|
15787
15922
|
defaultVersion?: number | null;
|
|
15788
15923
|
countryOfOrigin?: string | null;
|
|
15789
15924
|
redemptionPoint?: string | null;
|
|
15925
|
+
returnPeriodInDays: number;
|
|
15790
15926
|
supportedJurisdictions?: Array<{
|
|
15791
15927
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
15792
15928
|
id: string;
|
|
@@ -16096,6 +16232,8 @@ export type GetOffersQueryQuery = {
|
|
|
16096
16232
|
version: number;
|
|
16097
16233
|
label?: string | null;
|
|
16098
16234
|
template: string;
|
|
16235
|
+
sellerContactMethod: string;
|
|
16236
|
+
disputeResolverContactMethod: string;
|
|
16099
16237
|
};
|
|
16100
16238
|
shipping?: {
|
|
16101
16239
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -16103,6 +16241,7 @@ export type GetOffersQueryQuery = {
|
|
|
16103
16241
|
defaultVersion?: number | null;
|
|
16104
16242
|
countryOfOrigin?: string | null;
|
|
16105
16243
|
redemptionPoint?: string | null;
|
|
16244
|
+
returnPeriodInDays: number;
|
|
16106
16245
|
supportedJurisdictions?: Array<{
|
|
16107
16246
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
16108
16247
|
id: string;
|
|
@@ -16396,6 +16535,8 @@ export type OfferFieldsFragment = {
|
|
|
16396
16535
|
version: number;
|
|
16397
16536
|
label?: string | null;
|
|
16398
16537
|
template: string;
|
|
16538
|
+
sellerContactMethod: string;
|
|
16539
|
+
disputeResolverContactMethod: string;
|
|
16399
16540
|
};
|
|
16400
16541
|
shipping?: {
|
|
16401
16542
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -16403,6 +16544,7 @@ export type OfferFieldsFragment = {
|
|
|
16403
16544
|
defaultVersion?: number | null;
|
|
16404
16545
|
countryOfOrigin?: string | null;
|
|
16405
16546
|
redemptionPoint?: string | null;
|
|
16547
|
+
returnPeriodInDays: number;
|
|
16406
16548
|
supportedJurisdictions?: Array<{
|
|
16407
16549
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
16408
16550
|
id: string;
|
|
@@ -16647,6 +16789,8 @@ export type BaseOfferFieldsFragment = {
|
|
|
16647
16789
|
version: number;
|
|
16648
16790
|
label?: string | null;
|
|
16649
16791
|
template: string;
|
|
16792
|
+
sellerContactMethod: string;
|
|
16793
|
+
disputeResolverContactMethod: string;
|
|
16650
16794
|
};
|
|
16651
16795
|
shipping?: {
|
|
16652
16796
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -16654,6 +16798,7 @@ export type BaseOfferFieldsFragment = {
|
|
|
16654
16798
|
defaultVersion?: number | null;
|
|
16655
16799
|
countryOfOrigin?: string | null;
|
|
16656
16800
|
redemptionPoint?: string | null;
|
|
16801
|
+
returnPeriodInDays: number;
|
|
16657
16802
|
supportedJurisdictions?: Array<{
|
|
16658
16803
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
16659
16804
|
id: string;
|
|
@@ -16888,6 +17033,8 @@ export const BaseProductV1ExchangePolicyFieldsFragmentDoc = gql`
|
|
|
16888
17033
|
version
|
|
16889
17034
|
label
|
|
16890
17035
|
template
|
|
17036
|
+
sellerContactMethod
|
|
17037
|
+
disputeResolverContactMethod
|
|
16891
17038
|
}
|
|
16892
17039
|
`;
|
|
16893
17040
|
export const BaseProductV1ShippingJurisdictionFieldsFragmentDoc = gql`
|
|
@@ -16906,6 +17053,7 @@ export const BaseProductV1ShippingOptionFieldsFragmentDoc = gql`
|
|
|
16906
17053
|
...BaseProductV1ShippingJurisdictionFields
|
|
16907
17054
|
}
|
|
16908
17055
|
redemptionPoint
|
|
17056
|
+
returnPeriodInDays
|
|
16909
17057
|
}
|
|
16910
17058
|
${BaseProductV1ShippingJurisdictionFieldsFragmentDoc}
|
|
16911
17059
|
`;
|