@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/dist/cjs/subgraph.d.ts
CHANGED
|
@@ -2936,13 +2936,35 @@ export declare enum ProductV1Category_OrderBy {
|
|
|
2936
2936
|
}
|
|
2937
2937
|
export declare type ProductV1ExchangePolicy = {
|
|
2938
2938
|
__typename?: "ProductV1ExchangePolicy";
|
|
2939
|
+
disputeResolverContactMethod: Scalars["String"];
|
|
2939
2940
|
id: Scalars["ID"];
|
|
2940
2941
|
label?: Maybe<Scalars["String"]>;
|
|
2942
|
+
sellerContactMethod: Scalars["String"];
|
|
2941
2943
|
template: Scalars["String"];
|
|
2942
2944
|
uuid: Scalars["String"];
|
|
2943
2945
|
version: Scalars["Int"];
|
|
2944
2946
|
};
|
|
2945
2947
|
export declare type ProductV1ExchangePolicy_Filter = {
|
|
2948
|
+
disputeResolverContactMethod?: InputMaybe<Scalars["String"]>;
|
|
2949
|
+
disputeResolverContactMethod_contains?: InputMaybe<Scalars["String"]>;
|
|
2950
|
+
disputeResolverContactMethod_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2951
|
+
disputeResolverContactMethod_ends_with?: InputMaybe<Scalars["String"]>;
|
|
2952
|
+
disputeResolverContactMethod_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2953
|
+
disputeResolverContactMethod_gt?: InputMaybe<Scalars["String"]>;
|
|
2954
|
+
disputeResolverContactMethod_gte?: InputMaybe<Scalars["String"]>;
|
|
2955
|
+
disputeResolverContactMethod_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
2956
|
+
disputeResolverContactMethod_lt?: InputMaybe<Scalars["String"]>;
|
|
2957
|
+
disputeResolverContactMethod_lte?: InputMaybe<Scalars["String"]>;
|
|
2958
|
+
disputeResolverContactMethod_not?: InputMaybe<Scalars["String"]>;
|
|
2959
|
+
disputeResolverContactMethod_not_contains?: InputMaybe<Scalars["String"]>;
|
|
2960
|
+
disputeResolverContactMethod_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2961
|
+
disputeResolverContactMethod_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
2962
|
+
disputeResolverContactMethod_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2963
|
+
disputeResolverContactMethod_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
2964
|
+
disputeResolverContactMethod_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2965
|
+
disputeResolverContactMethod_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2966
|
+
disputeResolverContactMethod_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2967
|
+
disputeResolverContactMethod_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2946
2968
|
id?: InputMaybe<Scalars["ID"]>;
|
|
2947
2969
|
id_gt?: InputMaybe<Scalars["ID"]>;
|
|
2948
2970
|
id_gte?: InputMaybe<Scalars["ID"]>;
|
|
@@ -2971,6 +2993,26 @@ export declare type ProductV1ExchangePolicy_Filter = {
|
|
|
2971
2993
|
label_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2972
2994
|
label_starts_with?: InputMaybe<Scalars["String"]>;
|
|
2973
2995
|
label_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2996
|
+
sellerContactMethod?: InputMaybe<Scalars["String"]>;
|
|
2997
|
+
sellerContactMethod_contains?: InputMaybe<Scalars["String"]>;
|
|
2998
|
+
sellerContactMethod_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
2999
|
+
sellerContactMethod_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3000
|
+
sellerContactMethod_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3001
|
+
sellerContactMethod_gt?: InputMaybe<Scalars["String"]>;
|
|
3002
|
+
sellerContactMethod_gte?: InputMaybe<Scalars["String"]>;
|
|
3003
|
+
sellerContactMethod_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3004
|
+
sellerContactMethod_lt?: InputMaybe<Scalars["String"]>;
|
|
3005
|
+
sellerContactMethod_lte?: InputMaybe<Scalars["String"]>;
|
|
3006
|
+
sellerContactMethod_not?: InputMaybe<Scalars["String"]>;
|
|
3007
|
+
sellerContactMethod_not_contains?: InputMaybe<Scalars["String"]>;
|
|
3008
|
+
sellerContactMethod_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
3009
|
+
sellerContactMethod_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
3010
|
+
sellerContactMethod_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3011
|
+
sellerContactMethod_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
3012
|
+
sellerContactMethod_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3013
|
+
sellerContactMethod_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
3014
|
+
sellerContactMethod_starts_with?: InputMaybe<Scalars["String"]>;
|
|
3015
|
+
sellerContactMethod_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
2974
3016
|
template?: InputMaybe<Scalars["String"]>;
|
|
2975
3017
|
template_contains?: InputMaybe<Scalars["String"]>;
|
|
2976
3018
|
template_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
@@ -3021,8 +3063,10 @@ export declare type ProductV1ExchangePolicy_Filter = {
|
|
|
3021
3063
|
version_not_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
3022
3064
|
};
|
|
3023
3065
|
export declare enum ProductV1ExchangePolicy_OrderBy {
|
|
3066
|
+
DisputeResolverContactMethod = "disputeResolverContactMethod",
|
|
3024
3067
|
Id = "id",
|
|
3025
3068
|
Label = "label",
|
|
3069
|
+
SellerContactMethod = "sellerContactMethod",
|
|
3026
3070
|
Template = "template",
|
|
3027
3071
|
Uuid = "uuid",
|
|
3028
3072
|
Version = "version"
|
|
@@ -5073,6 +5117,7 @@ export declare type ProductV1ShippingOption = {
|
|
|
5073
5117
|
defaultVersion?: Maybe<Scalars["Int"]>;
|
|
5074
5118
|
id: Scalars["ID"];
|
|
5075
5119
|
redemptionPoint?: Maybe<Scalars["String"]>;
|
|
5120
|
+
returnPeriodInDays: Scalars["Int"];
|
|
5076
5121
|
supportedJurisdictions?: Maybe<Array<ProductV1ShippingJurisdiction>>;
|
|
5077
5122
|
};
|
|
5078
5123
|
export declare type ProductV1ShippingOptionSupportedJurisdictionsArgs = {
|
|
@@ -5139,6 +5184,14 @@ export declare type ProductV1ShippingOption_Filter = {
|
|
|
5139
5184
|
redemptionPoint_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
5140
5185
|
redemptionPoint_starts_with?: InputMaybe<Scalars["String"]>;
|
|
5141
5186
|
redemptionPoint_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
5187
|
+
returnPeriodInDays?: InputMaybe<Scalars["Int"]>;
|
|
5188
|
+
returnPeriodInDays_gt?: InputMaybe<Scalars["Int"]>;
|
|
5189
|
+
returnPeriodInDays_gte?: InputMaybe<Scalars["Int"]>;
|
|
5190
|
+
returnPeriodInDays_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
5191
|
+
returnPeriodInDays_lt?: InputMaybe<Scalars["Int"]>;
|
|
5192
|
+
returnPeriodInDays_lte?: InputMaybe<Scalars["Int"]>;
|
|
5193
|
+
returnPeriodInDays_not?: InputMaybe<Scalars["Int"]>;
|
|
5194
|
+
returnPeriodInDays_not_in?: InputMaybe<Array<Scalars["Int"]>>;
|
|
5142
5195
|
supportedJurisdictions?: InputMaybe<Array<Scalars["String"]>>;
|
|
5143
5196
|
supportedJurisdictions_contains?: InputMaybe<Array<Scalars["String"]>>;
|
|
5144
5197
|
supportedJurisdictions_contains_nocase?: InputMaybe<Array<Scalars["String"]>>;
|
|
@@ -5151,6 +5204,7 @@ export declare enum ProductV1ShippingOption_OrderBy {
|
|
|
5151
5204
|
DefaultVersion = "defaultVersion",
|
|
5152
5205
|
Id = "id",
|
|
5153
5206
|
RedemptionPoint = "redemptionPoint",
|
|
5207
|
+
ReturnPeriodInDays = "returnPeriodInDays",
|
|
5154
5208
|
SupportedJurisdictions = "supportedJurisdictions"
|
|
5155
5209
|
}
|
|
5156
5210
|
export declare type ProductV1Tag = {
|
|
@@ -6824,6 +6878,8 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
6824
6878
|
version: number;
|
|
6825
6879
|
label?: string | null;
|
|
6826
6880
|
template: string;
|
|
6881
|
+
sellerContactMethod: string;
|
|
6882
|
+
disputeResolverContactMethod: string;
|
|
6827
6883
|
};
|
|
6828
6884
|
shipping?: {
|
|
6829
6885
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -6831,6 +6887,7 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
6831
6887
|
defaultVersion?: number | null;
|
|
6832
6888
|
countryOfOrigin?: string | null;
|
|
6833
6889
|
redemptionPoint?: string | null;
|
|
6890
|
+
returnPeriodInDays: number;
|
|
6834
6891
|
supportedJurisdictions?: Array<{
|
|
6835
6892
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
6836
6893
|
id: string;
|
|
@@ -7285,6 +7342,8 @@ export declare type GetSellersQueryQuery = {
|
|
|
7285
7342
|
version: number;
|
|
7286
7343
|
label?: string | null;
|
|
7287
7344
|
template: string;
|
|
7345
|
+
sellerContactMethod: string;
|
|
7346
|
+
disputeResolverContactMethod: string;
|
|
7288
7347
|
};
|
|
7289
7348
|
shipping?: {
|
|
7290
7349
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -7292,6 +7351,7 @@ export declare type GetSellersQueryQuery = {
|
|
|
7292
7351
|
defaultVersion?: number | null;
|
|
7293
7352
|
countryOfOrigin?: string | null;
|
|
7294
7353
|
redemptionPoint?: string | null;
|
|
7354
|
+
returnPeriodInDays: number;
|
|
7295
7355
|
supportedJurisdictions?: Array<{
|
|
7296
7356
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
7297
7357
|
id: string;
|
|
@@ -8114,6 +8174,8 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
8114
8174
|
version: number;
|
|
8115
8175
|
label?: string | null;
|
|
8116
8176
|
template: string;
|
|
8177
|
+
sellerContactMethod: string;
|
|
8178
|
+
disputeResolverContactMethod: string;
|
|
8117
8179
|
};
|
|
8118
8180
|
shipping?: {
|
|
8119
8181
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -8121,6 +8183,7 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
8121
8183
|
defaultVersion?: number | null;
|
|
8122
8184
|
countryOfOrigin?: string | null;
|
|
8123
8185
|
redemptionPoint?: string | null;
|
|
8186
|
+
returnPeriodInDays: number;
|
|
8124
8187
|
supportedJurisdictions?: Array<{
|
|
8125
8188
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
8126
8189
|
id: string;
|
|
@@ -8516,6 +8579,8 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
8516
8579
|
version: number;
|
|
8517
8580
|
label?: string | null;
|
|
8518
8581
|
template: string;
|
|
8582
|
+
sellerContactMethod: string;
|
|
8583
|
+
disputeResolverContactMethod: string;
|
|
8519
8584
|
};
|
|
8520
8585
|
shipping?: {
|
|
8521
8586
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -8523,6 +8588,7 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
8523
8588
|
defaultVersion?: number | null;
|
|
8524
8589
|
countryOfOrigin?: string | null;
|
|
8525
8590
|
redemptionPoint?: string | null;
|
|
8591
|
+
returnPeriodInDays: number;
|
|
8526
8592
|
supportedJurisdictions?: Array<{
|
|
8527
8593
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
8528
8594
|
id: string;
|
|
@@ -8911,6 +8977,8 @@ export declare type SellerFieldsFragment = {
|
|
|
8911
8977
|
version: number;
|
|
8912
8978
|
label?: string | null;
|
|
8913
8979
|
template: string;
|
|
8980
|
+
sellerContactMethod: string;
|
|
8981
|
+
disputeResolverContactMethod: string;
|
|
8914
8982
|
};
|
|
8915
8983
|
shipping?: {
|
|
8916
8984
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -8918,6 +8986,7 @@ export declare type SellerFieldsFragment = {
|
|
|
8918
8986
|
defaultVersion?: number | null;
|
|
8919
8987
|
countryOfOrigin?: string | null;
|
|
8920
8988
|
redemptionPoint?: string | null;
|
|
8989
|
+
returnPeriodInDays: number;
|
|
8921
8990
|
supportedJurisdictions?: Array<{
|
|
8922
8991
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
8923
8992
|
id: string;
|
|
@@ -9512,6 +9581,8 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
9512
9581
|
version: number;
|
|
9513
9582
|
label?: string | null;
|
|
9514
9583
|
template: string;
|
|
9584
|
+
sellerContactMethod: string;
|
|
9585
|
+
disputeResolverContactMethod: string;
|
|
9515
9586
|
};
|
|
9516
9587
|
shipping?: {
|
|
9517
9588
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -9519,6 +9590,7 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
9519
9590
|
defaultVersion?: number | null;
|
|
9520
9591
|
countryOfOrigin?: string | null;
|
|
9521
9592
|
redemptionPoint?: string | null;
|
|
9593
|
+
returnPeriodInDays: number;
|
|
9522
9594
|
supportedJurisdictions?: Array<{
|
|
9523
9595
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
9524
9596
|
id: string;
|
|
@@ -10240,6 +10312,8 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
10240
10312
|
version: number;
|
|
10241
10313
|
label?: string | null;
|
|
10242
10314
|
template: string;
|
|
10315
|
+
sellerContactMethod: string;
|
|
10316
|
+
disputeResolverContactMethod: string;
|
|
10243
10317
|
};
|
|
10244
10318
|
shipping?: {
|
|
10245
10319
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -10247,6 +10321,7 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
10247
10321
|
defaultVersion?: number | null;
|
|
10248
10322
|
countryOfOrigin?: string | null;
|
|
10249
10323
|
redemptionPoint?: string | null;
|
|
10324
|
+
returnPeriodInDays: number;
|
|
10250
10325
|
supportedJurisdictions?: Array<{
|
|
10251
10326
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
10252
10327
|
id: string;
|
|
@@ -10527,6 +10602,8 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
10527
10602
|
version: number;
|
|
10528
10603
|
label?: string | null;
|
|
10529
10604
|
template: string;
|
|
10605
|
+
sellerContactMethod: string;
|
|
10606
|
+
disputeResolverContactMethod: string;
|
|
10530
10607
|
};
|
|
10531
10608
|
shipping?: {
|
|
10532
10609
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -10534,6 +10611,7 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
10534
10611
|
defaultVersion?: number | null;
|
|
10535
10612
|
countryOfOrigin?: string | null;
|
|
10536
10613
|
redemptionPoint?: string | null;
|
|
10614
|
+
returnPeriodInDays: number;
|
|
10537
10615
|
supportedJurisdictions?: Array<{
|
|
10538
10616
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
10539
10617
|
id: string;
|
|
@@ -10793,6 +10871,8 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
10793
10871
|
version: number;
|
|
10794
10872
|
label?: string | null;
|
|
10795
10873
|
template: string;
|
|
10874
|
+
sellerContactMethod: string;
|
|
10875
|
+
disputeResolverContactMethod: string;
|
|
10796
10876
|
};
|
|
10797
10877
|
shipping?: {
|
|
10798
10878
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -10800,6 +10880,7 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
10800
10880
|
defaultVersion?: number | null;
|
|
10801
10881
|
countryOfOrigin?: string | null;
|
|
10802
10882
|
redemptionPoint?: string | null;
|
|
10883
|
+
returnPeriodInDays: number;
|
|
10803
10884
|
supportedJurisdictions?: Array<{
|
|
10804
10885
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
10805
10886
|
id: string;
|
|
@@ -11297,6 +11378,8 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
11297
11378
|
version: number;
|
|
11298
11379
|
label?: string | null;
|
|
11299
11380
|
template: string;
|
|
11381
|
+
sellerContactMethod: string;
|
|
11382
|
+
disputeResolverContactMethod: string;
|
|
11300
11383
|
};
|
|
11301
11384
|
shipping?: {
|
|
11302
11385
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -11304,6 +11387,7 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
11304
11387
|
defaultVersion?: number | null;
|
|
11305
11388
|
countryOfOrigin?: string | null;
|
|
11306
11389
|
redemptionPoint?: string | null;
|
|
11390
|
+
returnPeriodInDays: number;
|
|
11307
11391
|
supportedJurisdictions?: Array<{
|
|
11308
11392
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
11309
11393
|
id: string;
|
|
@@ -11606,6 +11690,8 @@ export declare type GetExchangesQueryQuery = {
|
|
|
11606
11690
|
version: number;
|
|
11607
11691
|
label?: string | null;
|
|
11608
11692
|
template: string;
|
|
11693
|
+
sellerContactMethod: string;
|
|
11694
|
+
disputeResolverContactMethod: string;
|
|
11609
11695
|
};
|
|
11610
11696
|
shipping?: {
|
|
11611
11697
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -11613,6 +11699,7 @@ export declare type GetExchangesQueryQuery = {
|
|
|
11613
11699
|
defaultVersion?: number | null;
|
|
11614
11700
|
countryOfOrigin?: string | null;
|
|
11615
11701
|
redemptionPoint?: string | null;
|
|
11702
|
+
returnPeriodInDays: number;
|
|
11616
11703
|
supportedJurisdictions?: Array<{
|
|
11617
11704
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
11618
11705
|
id: string;
|
|
@@ -11906,6 +11993,8 @@ export declare type ExchangeFieldsFragment = {
|
|
|
11906
11993
|
version: number;
|
|
11907
11994
|
label?: string | null;
|
|
11908
11995
|
template: string;
|
|
11996
|
+
sellerContactMethod: string;
|
|
11997
|
+
disputeResolverContactMethod: string;
|
|
11909
11998
|
};
|
|
11910
11999
|
shipping?: {
|
|
11911
12000
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -11913,6 +12002,7 @@ export declare type ExchangeFieldsFragment = {
|
|
|
11913
12002
|
defaultVersion?: number | null;
|
|
11914
12003
|
countryOfOrigin?: string | null;
|
|
11915
12004
|
redemptionPoint?: string | null;
|
|
12005
|
+
returnPeriodInDays: number;
|
|
11916
12006
|
supportedJurisdictions?: Array<{
|
|
11917
12007
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
11918
12008
|
id: string;
|
|
@@ -12335,6 +12425,8 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
12335
12425
|
version: number;
|
|
12336
12426
|
label?: string | null;
|
|
12337
12427
|
template: string;
|
|
12428
|
+
sellerContactMethod: string;
|
|
12429
|
+
disputeResolverContactMethod: string;
|
|
12338
12430
|
};
|
|
12339
12431
|
shipping?: {
|
|
12340
12432
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -12342,6 +12434,7 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
12342
12434
|
defaultVersion?: number | null;
|
|
12343
12435
|
countryOfOrigin?: string | null;
|
|
12344
12436
|
redemptionPoint?: string | null;
|
|
12437
|
+
returnPeriodInDays: number;
|
|
12345
12438
|
supportedJurisdictions?: Array<{
|
|
12346
12439
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
12347
12440
|
id: string;
|
|
@@ -12639,6 +12732,8 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
12639
12732
|
version: number;
|
|
12640
12733
|
label?: string | null;
|
|
12641
12734
|
template: string;
|
|
12735
|
+
sellerContactMethod: string;
|
|
12736
|
+
disputeResolverContactMethod: string;
|
|
12642
12737
|
};
|
|
12643
12738
|
shipping?: {
|
|
12644
12739
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -12646,6 +12741,7 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
12646
12741
|
defaultVersion?: number | null;
|
|
12647
12742
|
countryOfOrigin?: string | null;
|
|
12648
12743
|
redemptionPoint?: string | null;
|
|
12744
|
+
returnPeriodInDays: number;
|
|
12649
12745
|
supportedJurisdictions?: Array<{
|
|
12650
12746
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
12651
12747
|
id: string;
|
|
@@ -12934,6 +13030,8 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
12934
13030
|
version: number;
|
|
12935
13031
|
label?: string | null;
|
|
12936
13032
|
template: string;
|
|
13033
|
+
sellerContactMethod: string;
|
|
13034
|
+
disputeResolverContactMethod: string;
|
|
12937
13035
|
};
|
|
12938
13036
|
shipping?: {
|
|
12939
13037
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -12941,6 +13039,7 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
12941
13039
|
defaultVersion?: number | null;
|
|
12942
13040
|
countryOfOrigin?: string | null;
|
|
12943
13041
|
redemptionPoint?: string | null;
|
|
13042
|
+
returnPeriodInDays: number;
|
|
12944
13043
|
supportedJurisdictions?: Array<{
|
|
12945
13044
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
12946
13045
|
id: string;
|
|
@@ -13228,6 +13327,8 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
13228
13327
|
version: number;
|
|
13229
13328
|
label?: string | null;
|
|
13230
13329
|
template: string;
|
|
13330
|
+
sellerContactMethod: string;
|
|
13331
|
+
disputeResolverContactMethod: string;
|
|
13231
13332
|
};
|
|
13232
13333
|
shipping?: {
|
|
13233
13334
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -13235,6 +13336,7 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
13235
13336
|
defaultVersion?: number | null;
|
|
13236
13337
|
countryOfOrigin?: string | null;
|
|
13237
13338
|
redemptionPoint?: string | null;
|
|
13339
|
+
returnPeriodInDays: number;
|
|
13238
13340
|
supportedJurisdictions?: Array<{
|
|
13239
13341
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
13240
13342
|
id: string;
|
|
@@ -13563,6 +13665,8 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13563
13665
|
version: number;
|
|
13564
13666
|
label?: string | null;
|
|
13565
13667
|
template: string;
|
|
13668
|
+
sellerContactMethod: string;
|
|
13669
|
+
disputeResolverContactMethod: string;
|
|
13566
13670
|
};
|
|
13567
13671
|
shipping?: {
|
|
13568
13672
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -13570,6 +13674,7 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13570
13674
|
defaultVersion?: number | null;
|
|
13571
13675
|
countryOfOrigin?: string | null;
|
|
13572
13676
|
redemptionPoint?: string | null;
|
|
13677
|
+
returnPeriodInDays: number;
|
|
13573
13678
|
supportedJurisdictions?: Array<{
|
|
13574
13679
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
13575
13680
|
id: string;
|
|
@@ -13726,6 +13831,8 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13726
13831
|
version: number;
|
|
13727
13832
|
label?: string | null;
|
|
13728
13833
|
template: string;
|
|
13834
|
+
sellerContactMethod: string;
|
|
13835
|
+
disputeResolverContactMethod: string;
|
|
13729
13836
|
};
|
|
13730
13837
|
} | null;
|
|
13731
13838
|
};
|
|
@@ -13996,6 +14103,8 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
13996
14103
|
version: number;
|
|
13997
14104
|
label?: string | null;
|
|
13998
14105
|
template: string;
|
|
14106
|
+
sellerContactMethod: string;
|
|
14107
|
+
disputeResolverContactMethod: string;
|
|
13999
14108
|
};
|
|
14000
14109
|
shipping?: {
|
|
14001
14110
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -14003,6 +14112,7 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14003
14112
|
defaultVersion?: number | null;
|
|
14004
14113
|
countryOfOrigin?: string | null;
|
|
14005
14114
|
redemptionPoint?: string | null;
|
|
14115
|
+
returnPeriodInDays: number;
|
|
14006
14116
|
supportedJurisdictions?: Array<{
|
|
14007
14117
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
14008
14118
|
id: string;
|
|
@@ -14159,6 +14269,8 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14159
14269
|
version: number;
|
|
14160
14270
|
label?: string | null;
|
|
14161
14271
|
template: string;
|
|
14272
|
+
sellerContactMethod: string;
|
|
14273
|
+
disputeResolverContactMethod: string;
|
|
14162
14274
|
};
|
|
14163
14275
|
}>;
|
|
14164
14276
|
};
|
|
@@ -14420,6 +14532,8 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14420
14532
|
version: number;
|
|
14421
14533
|
label?: string | null;
|
|
14422
14534
|
template: string;
|
|
14535
|
+
sellerContactMethod: string;
|
|
14536
|
+
disputeResolverContactMethod: string;
|
|
14423
14537
|
};
|
|
14424
14538
|
shipping?: {
|
|
14425
14539
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -14427,6 +14541,7 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14427
14541
|
defaultVersion?: number | null;
|
|
14428
14542
|
countryOfOrigin?: string | null;
|
|
14429
14543
|
redemptionPoint?: string | null;
|
|
14544
|
+
returnPeriodInDays: number;
|
|
14430
14545
|
supportedJurisdictions?: Array<{
|
|
14431
14546
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
14432
14547
|
id: string;
|
|
@@ -14583,6 +14698,8 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14583
14698
|
version: number;
|
|
14584
14699
|
label?: string | null;
|
|
14585
14700
|
template: string;
|
|
14701
|
+
sellerContactMethod: string;
|
|
14702
|
+
disputeResolverContactMethod: string;
|
|
14586
14703
|
};
|
|
14587
14704
|
};
|
|
14588
14705
|
export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
@@ -14843,6 +14960,8 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
14843
14960
|
version: number;
|
|
14844
14961
|
label?: string | null;
|
|
14845
14962
|
template: string;
|
|
14963
|
+
sellerContactMethod: string;
|
|
14964
|
+
disputeResolverContactMethod: string;
|
|
14846
14965
|
};
|
|
14847
14966
|
shipping?: {
|
|
14848
14967
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -14850,6 +14969,7 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
14850
14969
|
defaultVersion?: number | null;
|
|
14851
14970
|
countryOfOrigin?: string | null;
|
|
14852
14971
|
redemptionPoint?: string | null;
|
|
14972
|
+
returnPeriodInDays: number;
|
|
14853
14973
|
supportedJurisdictions?: Array<{
|
|
14854
14974
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
14855
14975
|
id: string;
|
|
@@ -15006,6 +15126,8 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
15006
15126
|
version: number;
|
|
15007
15127
|
label?: string | null;
|
|
15008
15128
|
template: string;
|
|
15129
|
+
sellerContactMethod: string;
|
|
15130
|
+
disputeResolverContactMethod: string;
|
|
15009
15131
|
};
|
|
15010
15132
|
};
|
|
15011
15133
|
export declare type BaseProductV1ProductFieldsFragment = {
|
|
@@ -15172,6 +15294,7 @@ export declare type BaseProductV1ShippingOptionFieldsFragment = {
|
|
|
15172
15294
|
defaultVersion?: number | null;
|
|
15173
15295
|
countryOfOrigin?: string | null;
|
|
15174
15296
|
redemptionPoint?: string | null;
|
|
15297
|
+
returnPeriodInDays: number;
|
|
15175
15298
|
supportedJurisdictions?: Array<{
|
|
15176
15299
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
15177
15300
|
id: string;
|
|
@@ -15192,6 +15315,8 @@ export declare type BaseProductV1ExchangePolicyFieldsFragment = {
|
|
|
15192
15315
|
version: number;
|
|
15193
15316
|
label?: string | null;
|
|
15194
15317
|
template: string;
|
|
15318
|
+
sellerContactMethod: string;
|
|
15319
|
+
disputeResolverContactMethod: string;
|
|
15195
15320
|
};
|
|
15196
15321
|
export declare type BaseProductV1ProductOverridesFieldsFragment = {
|
|
15197
15322
|
__typename?: "ProductV1ProductOverrides";
|
|
@@ -15528,6 +15653,8 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
15528
15653
|
version: number;
|
|
15529
15654
|
label?: string | null;
|
|
15530
15655
|
template: string;
|
|
15656
|
+
sellerContactMethod: string;
|
|
15657
|
+
disputeResolverContactMethod: string;
|
|
15531
15658
|
};
|
|
15532
15659
|
shipping?: {
|
|
15533
15660
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -15535,6 +15662,7 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
15535
15662
|
defaultVersion?: number | null;
|
|
15536
15663
|
countryOfOrigin?: string | null;
|
|
15537
15664
|
redemptionPoint?: string | null;
|
|
15665
|
+
returnPeriodInDays: number;
|
|
15538
15666
|
supportedJurisdictions?: Array<{
|
|
15539
15667
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
15540
15668
|
id: string;
|
|
@@ -15843,6 +15971,8 @@ export declare type GetOffersQueryQuery = {
|
|
|
15843
15971
|
version: number;
|
|
15844
15972
|
label?: string | null;
|
|
15845
15973
|
template: string;
|
|
15974
|
+
sellerContactMethod: string;
|
|
15975
|
+
disputeResolverContactMethod: string;
|
|
15846
15976
|
};
|
|
15847
15977
|
shipping?: {
|
|
15848
15978
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -15850,6 +15980,7 @@ export declare type GetOffersQueryQuery = {
|
|
|
15850
15980
|
defaultVersion?: number | null;
|
|
15851
15981
|
countryOfOrigin?: string | null;
|
|
15852
15982
|
redemptionPoint?: string | null;
|
|
15983
|
+
returnPeriodInDays: number;
|
|
15853
15984
|
supportedJurisdictions?: Array<{
|
|
15854
15985
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
15855
15986
|
id: string;
|
|
@@ -16143,6 +16274,8 @@ export declare type OfferFieldsFragment = {
|
|
|
16143
16274
|
version: number;
|
|
16144
16275
|
label?: string | null;
|
|
16145
16276
|
template: string;
|
|
16277
|
+
sellerContactMethod: string;
|
|
16278
|
+
disputeResolverContactMethod: string;
|
|
16146
16279
|
};
|
|
16147
16280
|
shipping?: {
|
|
16148
16281
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -16150,6 +16283,7 @@ export declare type OfferFieldsFragment = {
|
|
|
16150
16283
|
defaultVersion?: number | null;
|
|
16151
16284
|
countryOfOrigin?: string | null;
|
|
16152
16285
|
redemptionPoint?: string | null;
|
|
16286
|
+
returnPeriodInDays: number;
|
|
16153
16287
|
supportedJurisdictions?: Array<{
|
|
16154
16288
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
16155
16289
|
id: string;
|
|
@@ -16394,6 +16528,8 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
16394
16528
|
version: number;
|
|
16395
16529
|
label?: string | null;
|
|
16396
16530
|
template: string;
|
|
16531
|
+
sellerContactMethod: string;
|
|
16532
|
+
disputeResolverContactMethod: string;
|
|
16397
16533
|
};
|
|
16398
16534
|
shipping?: {
|
|
16399
16535
|
__typename?: "ProductV1ShippingOption";
|
|
@@ -16401,6 +16537,7 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
16401
16537
|
defaultVersion?: number | null;
|
|
16402
16538
|
countryOfOrigin?: string | null;
|
|
16403
16539
|
redemptionPoint?: string | null;
|
|
16540
|
+
returnPeriodInDays: number;
|
|
16404
16541
|
supportedJurisdictions?: Array<{
|
|
16405
16542
|
__typename?: "ProductV1ShippingJurisdiction";
|
|
16406
16543
|
id: string;
|