@wix/ecom 1.0.833 → 1.0.835
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/ecom",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.835",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -39,25 +39,25 @@
|
|
|
39
39
|
"@wix/ecom_discount-rules": "1.0.62",
|
|
40
40
|
"@wix/ecom_discounts": "1.0.14",
|
|
41
41
|
"@wix/ecom_discounts-custom-trigger": "1.0.17",
|
|
42
|
-
"@wix/ecom_draft-orders": "1.0.
|
|
42
|
+
"@wix/ecom_draft-orders": "1.0.43",
|
|
43
43
|
"@wix/ecom_gift-vouchers": "1.0.12",
|
|
44
44
|
"@wix/ecom_gift-vouchers-provider": "1.0.12",
|
|
45
|
-
"@wix/ecom_local-delivery-options": "1.0.
|
|
45
|
+
"@wix/ecom_local-delivery-options": "1.0.19",
|
|
46
46
|
"@wix/ecom_memberships": "1.0.8",
|
|
47
47
|
"@wix/ecom_order-fulfillments": "1.0.55",
|
|
48
48
|
"@wix/ecom_order-invoices": "1.0.48",
|
|
49
49
|
"@wix/ecom_order-payment-requests": "1.0.20",
|
|
50
50
|
"@wix/ecom_order-transactions": "1.0.77",
|
|
51
|
-
"@wix/ecom_orders": "1.0.
|
|
51
|
+
"@wix/ecom_orders": "1.0.146",
|
|
52
52
|
"@wix/ecom_orders-settings": "1.0.54",
|
|
53
|
-
"@wix/ecom_payment-settings": "1.0.
|
|
53
|
+
"@wix/ecom_payment-settings": "1.0.77",
|
|
54
54
|
"@wix/ecom_pickup-locations": "1.0.18",
|
|
55
55
|
"@wix/ecom_recommendations": "1.0.52",
|
|
56
56
|
"@wix/ecom_recommendations-provider": "1.0.11",
|
|
57
57
|
"@wix/ecom_shipping-options": "1.0.16",
|
|
58
58
|
"@wix/ecom_shipping-rates": "1.0.53",
|
|
59
59
|
"@wix/ecom_shippo-configurations": "1.0.23",
|
|
60
|
-
"@wix/ecom_subscription-contracts": "1.0.
|
|
60
|
+
"@wix/ecom_subscription-contracts": "1.0.10",
|
|
61
61
|
"@wix/ecom_tip-settings": "1.0.2",
|
|
62
62
|
"@wix/ecom_tippable-staff": "1.0.2",
|
|
63
63
|
"@wix/ecom_tips": "1.0.4",
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"fqdn": ""
|
|
88
88
|
}
|
|
89
89
|
},
|
|
90
|
-
"falconPackageHash": "
|
|
90
|
+
"falconPackageHash": "6873d94f4411639af2ab76c584bbe3a0e01be4f1adef55b9d935a1ae"
|
|
91
91
|
}
|
|
@@ -2695,6 +2695,17 @@ declare enum TaxableAddressType$7 {
|
|
|
2695
2695
|
BILLING = "BILLING",
|
|
2696
2696
|
SHIPPING = "SHIPPING"
|
|
2697
2697
|
}
|
|
2698
|
+
interface ExtendedFields$b {
|
|
2699
|
+
/**
|
|
2700
|
+
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
2701
|
+
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
2702
|
+
*
|
|
2703
|
+
* You can only access fields for which you have the appropriate permissions.
|
|
2704
|
+
*
|
|
2705
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
2706
|
+
*/
|
|
2707
|
+
namespaces?: Record<string, Record<string, any>>;
|
|
2708
|
+
}
|
|
2698
2709
|
/** Buyer Info */
|
|
2699
2710
|
interface BuyerInfo$9 extends BuyerInfoIdOneOf$6 {
|
|
2700
2711
|
/** Visitor ID (if site visitor is not a member). */
|
|
@@ -3065,17 +3076,6 @@ interface CustomField$5 {
|
|
|
3065
3076
|
/** Translated custom field title. */
|
|
3066
3077
|
translatedTitle?: string | null;
|
|
3067
3078
|
}
|
|
3068
|
-
interface ExtendedFields$b {
|
|
3069
|
-
/**
|
|
3070
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
3071
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
3072
|
-
*
|
|
3073
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
3074
|
-
*
|
|
3075
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
3076
|
-
*/
|
|
3077
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
3078
|
-
}
|
|
3079
3079
|
interface CreateSubscriptionContractRequest {
|
|
3080
3080
|
/** SubscriptionContract to be created. */
|
|
3081
3081
|
subscriptionContract?: SubscriptionContract;
|
|
@@ -19399,6 +19399,17 @@ declare enum TaxableAddressType$2 {
|
|
|
19399
19399
|
BILLING = "BILLING",
|
|
19400
19400
|
SHIPPING = "SHIPPING"
|
|
19401
19401
|
}
|
|
19402
|
+
interface ExtendedFields$5 {
|
|
19403
|
+
/**
|
|
19404
|
+
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
19405
|
+
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
19406
|
+
*
|
|
19407
|
+
* You can only access fields for which you have the appropriate permissions.
|
|
19408
|
+
*
|
|
19409
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
19410
|
+
*/
|
|
19411
|
+
namespaces?: Record<string, Record<string, any>>;
|
|
19412
|
+
}
|
|
19402
19413
|
interface ItemChangedDetails$1 {
|
|
19403
19414
|
/** Line item quantity before change. */
|
|
19404
19415
|
quantityBeforeChange?: number | null;
|
|
@@ -19951,17 +19962,6 @@ interface OrderTaxBreakdown$1 {
|
|
|
19951
19962
|
/** The sum of all the tax from line items that calculated by the tax identifiers. */
|
|
19952
19963
|
aggregatedTaxAmount?: Price$4;
|
|
19953
19964
|
}
|
|
19954
|
-
interface ExtendedFields$5 {
|
|
19955
|
-
/**
|
|
19956
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
19957
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
19958
|
-
*
|
|
19959
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
19960
|
-
*
|
|
19961
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
19962
|
-
*/
|
|
19963
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
19964
|
-
}
|
|
19965
19965
|
interface BuyerDetails$1 extends BuyerDetailsChangeTypeOneOf {
|
|
19966
19966
|
}
|
|
19967
19967
|
/** @oneof */
|
|
@@ -20140,7 +20140,8 @@ declare enum RuleType$2 {
|
|
|
20140
20140
|
INVALID_ENUM_VALUE = "INVALID_ENUM_VALUE",
|
|
20141
20141
|
REQUIRED_FIELD = "REQUIRED_FIELD",
|
|
20142
20142
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
20143
|
-
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
|
|
20143
|
+
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
|
|
20144
|
+
EXACT_LENGTH = "EXACT_LENGTH"
|
|
20144
20145
|
}
|
|
20145
20146
|
interface FieldViolation$2 {
|
|
20146
20147
|
field?: string;
|
|
@@ -23437,6 +23438,8 @@ interface TimeWindow {
|
|
|
23437
23438
|
start?: TimeOfDay;
|
|
23438
23439
|
/** The end time in time of day representation. */
|
|
23439
23440
|
end?: TimeOfDay;
|
|
23441
|
+
/** Whether this timeWindow availability is enabled. */
|
|
23442
|
+
enabled?: boolean | null;
|
|
23440
23443
|
}
|
|
23441
23444
|
declare enum DayOfWeek {
|
|
23442
23445
|
/** Monday. */
|
|
@@ -24623,6 +24626,17 @@ declare enum TaxableAddressType$1 {
|
|
|
24623
24626
|
BILLING = "BILLING",
|
|
24624
24627
|
SHIPPING = "SHIPPING"
|
|
24625
24628
|
}
|
|
24629
|
+
interface ExtendedFields$4 {
|
|
24630
|
+
/**
|
|
24631
|
+
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
24632
|
+
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
24633
|
+
*
|
|
24634
|
+
* You can only access fields for which you have the appropriate permissions.
|
|
24635
|
+
*
|
|
24636
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
24637
|
+
*/
|
|
24638
|
+
namespaces?: Record<string, Record<string, any>>;
|
|
24639
|
+
}
|
|
24626
24640
|
/** Buyer Info */
|
|
24627
24641
|
interface BuyerInfo$1 extends BuyerInfoIdOneOf {
|
|
24628
24642
|
/** Visitor ID (if site visitor is not a member). */
|
|
@@ -25507,17 +25521,6 @@ interface FulfillmentStatusesAggregate {
|
|
|
25507
25521
|
/** Unique string values based on Fulfillment entities statuses */
|
|
25508
25522
|
statuses?: string[] | null;
|
|
25509
25523
|
}
|
|
25510
|
-
interface ExtendedFields$4 {
|
|
25511
|
-
/**
|
|
25512
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
25513
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
25514
|
-
*
|
|
25515
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
25516
|
-
*
|
|
25517
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
25518
|
-
*/
|
|
25519
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
25520
|
-
}
|
|
25521
25524
|
/**
|
|
25522
25525
|
* Common object for tags.
|
|
25523
25526
|
* Should be use as in this example:
|
|
@@ -2695,6 +2695,17 @@ declare enum TaxableAddressType$7 {
|
|
|
2695
2695
|
BILLING = "BILLING",
|
|
2696
2696
|
SHIPPING = "SHIPPING"
|
|
2697
2697
|
}
|
|
2698
|
+
interface ExtendedFields$b {
|
|
2699
|
+
/**
|
|
2700
|
+
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
2701
|
+
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
2702
|
+
*
|
|
2703
|
+
* You can only access fields for which you have the appropriate permissions.
|
|
2704
|
+
*
|
|
2705
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
2706
|
+
*/
|
|
2707
|
+
namespaces?: Record<string, Record<string, any>>;
|
|
2708
|
+
}
|
|
2698
2709
|
/** Buyer Info */
|
|
2699
2710
|
interface BuyerInfo$9 extends BuyerInfoIdOneOf$6 {
|
|
2700
2711
|
/** Visitor ID (if site visitor is not a member). */
|
|
@@ -3065,17 +3076,6 @@ interface CustomField$5 {
|
|
|
3065
3076
|
/** Translated custom field title. */
|
|
3066
3077
|
translatedTitle?: string | null;
|
|
3067
3078
|
}
|
|
3068
|
-
interface ExtendedFields$b {
|
|
3069
|
-
/**
|
|
3070
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
3071
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
3072
|
-
*
|
|
3073
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
3074
|
-
*
|
|
3075
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
3076
|
-
*/
|
|
3077
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
3078
|
-
}
|
|
3079
3079
|
interface CreateSubscriptionContractRequest {
|
|
3080
3080
|
/** SubscriptionContract to be created. */
|
|
3081
3081
|
subscriptionContract?: SubscriptionContract;
|
|
@@ -19399,6 +19399,17 @@ declare enum TaxableAddressType$2 {
|
|
|
19399
19399
|
BILLING = "BILLING",
|
|
19400
19400
|
SHIPPING = "SHIPPING"
|
|
19401
19401
|
}
|
|
19402
|
+
interface ExtendedFields$5 {
|
|
19403
|
+
/**
|
|
19404
|
+
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
19405
|
+
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
19406
|
+
*
|
|
19407
|
+
* You can only access fields for which you have the appropriate permissions.
|
|
19408
|
+
*
|
|
19409
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
19410
|
+
*/
|
|
19411
|
+
namespaces?: Record<string, Record<string, any>>;
|
|
19412
|
+
}
|
|
19402
19413
|
interface ItemChangedDetails$1 {
|
|
19403
19414
|
/** Line item quantity before change. */
|
|
19404
19415
|
quantityBeforeChange?: number | null;
|
|
@@ -19951,17 +19962,6 @@ interface OrderTaxBreakdown$1 {
|
|
|
19951
19962
|
/** The sum of all the tax from line items that calculated by the tax identifiers. */
|
|
19952
19963
|
aggregatedTaxAmount?: Price$4;
|
|
19953
19964
|
}
|
|
19954
|
-
interface ExtendedFields$5 {
|
|
19955
|
-
/**
|
|
19956
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
19957
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
19958
|
-
*
|
|
19959
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
19960
|
-
*
|
|
19961
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
19962
|
-
*/
|
|
19963
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
19964
|
-
}
|
|
19965
19965
|
interface BuyerDetails$1 extends BuyerDetailsChangeTypeOneOf {
|
|
19966
19966
|
}
|
|
19967
19967
|
/** @oneof */
|
|
@@ -20140,7 +20140,8 @@ declare enum RuleType$2 {
|
|
|
20140
20140
|
INVALID_ENUM_VALUE = "INVALID_ENUM_VALUE",
|
|
20141
20141
|
REQUIRED_FIELD = "REQUIRED_FIELD",
|
|
20142
20142
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
20143
|
-
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
|
|
20143
|
+
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
|
|
20144
|
+
EXACT_LENGTH = "EXACT_LENGTH"
|
|
20144
20145
|
}
|
|
20145
20146
|
interface FieldViolation$2 {
|
|
20146
20147
|
field?: string;
|
|
@@ -23437,6 +23438,8 @@ interface TimeWindow {
|
|
|
23437
23438
|
start?: TimeOfDay;
|
|
23438
23439
|
/** The end time in time of day representation. */
|
|
23439
23440
|
end?: TimeOfDay;
|
|
23441
|
+
/** Whether this timeWindow availability is enabled. */
|
|
23442
|
+
enabled?: boolean | null;
|
|
23440
23443
|
}
|
|
23441
23444
|
declare enum DayOfWeek {
|
|
23442
23445
|
/** Monday. */
|
|
@@ -24623,6 +24626,17 @@ declare enum TaxableAddressType$1 {
|
|
|
24623
24626
|
BILLING = "BILLING",
|
|
24624
24627
|
SHIPPING = "SHIPPING"
|
|
24625
24628
|
}
|
|
24629
|
+
interface ExtendedFields$4 {
|
|
24630
|
+
/**
|
|
24631
|
+
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
24632
|
+
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
24633
|
+
*
|
|
24634
|
+
* You can only access fields for which you have the appropriate permissions.
|
|
24635
|
+
*
|
|
24636
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
24637
|
+
*/
|
|
24638
|
+
namespaces?: Record<string, Record<string, any>>;
|
|
24639
|
+
}
|
|
24626
24640
|
/** Buyer Info */
|
|
24627
24641
|
interface BuyerInfo$1 extends BuyerInfoIdOneOf {
|
|
24628
24642
|
/** Visitor ID (if site visitor is not a member). */
|
|
@@ -25507,17 +25521,6 @@ interface FulfillmentStatusesAggregate {
|
|
|
25507
25521
|
/** Unique string values based on Fulfillment entities statuses */
|
|
25508
25522
|
statuses?: string[] | null;
|
|
25509
25523
|
}
|
|
25510
|
-
interface ExtendedFields$4 {
|
|
25511
|
-
/**
|
|
25512
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
25513
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
25514
|
-
*
|
|
25515
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
25516
|
-
*
|
|
25517
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
25518
|
-
*/
|
|
25519
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
25520
|
-
}
|
|
25521
25524
|
/**
|
|
25522
25525
|
* Common object for tags.
|
|
25523
25526
|
* Should be use as in this example:
|
|
@@ -1953,6 +1953,17 @@ declare enum TaxableAddressType$d {
|
|
|
1953
1953
|
BILLING = "BILLING",
|
|
1954
1954
|
SHIPPING = "SHIPPING"
|
|
1955
1955
|
}
|
|
1956
|
+
interface ExtendedFields$h {
|
|
1957
|
+
/**
|
|
1958
|
+
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
1959
|
+
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
1960
|
+
*
|
|
1961
|
+
* You can only access fields for which you have the appropriate permissions.
|
|
1962
|
+
*
|
|
1963
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
1964
|
+
*/
|
|
1965
|
+
namespaces?: Record<string, Record<string, any>>;
|
|
1966
|
+
}
|
|
1956
1967
|
/** Buyer Info */
|
|
1957
1968
|
interface BuyerInfo$b extends BuyerInfoIdOneOf$b {
|
|
1958
1969
|
/** Visitor ID (if site visitor is not a member). */
|
|
@@ -2300,17 +2311,6 @@ interface CustomField$7 {
|
|
|
2300
2311
|
/** Translated custom field title. */
|
|
2301
2312
|
translatedTitle?: string | null;
|
|
2302
2313
|
}
|
|
2303
|
-
interface ExtendedFields$h {
|
|
2304
|
-
/**
|
|
2305
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
2306
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
2307
|
-
*
|
|
2308
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
2309
|
-
*
|
|
2310
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
2311
|
-
*/
|
|
2312
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
2313
|
-
}
|
|
2314
2314
|
interface GetSubscriptionContractRequest$1 {
|
|
2315
2315
|
/** ID of the SubscriptionContract to retrieve. */
|
|
2316
2316
|
subscriptionContractId: string;
|
|
@@ -3097,6 +3097,17 @@ declare enum TaxableAddressType$c {
|
|
|
3097
3097
|
BILLING = "BILLING",
|
|
3098
3098
|
SHIPPING = "SHIPPING"
|
|
3099
3099
|
}
|
|
3100
|
+
interface ExtendedFields$g {
|
|
3101
|
+
/**
|
|
3102
|
+
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
3103
|
+
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
3104
|
+
*
|
|
3105
|
+
* You can only access fields for which you have the appropriate permissions.
|
|
3106
|
+
*
|
|
3107
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
3108
|
+
*/
|
|
3109
|
+
namespaces?: Record<string, Record<string, any>>;
|
|
3110
|
+
}
|
|
3100
3111
|
/** Buyer Info */
|
|
3101
3112
|
interface BuyerInfo$a extends BuyerInfoIdOneOf$a {
|
|
3102
3113
|
/** Visitor ID (if site visitor is not a member). */
|
|
@@ -3424,17 +3435,6 @@ interface CustomField$6 {
|
|
|
3424
3435
|
/** Translated custom field title. */
|
|
3425
3436
|
translatedTitle?: string | null;
|
|
3426
3437
|
}
|
|
3427
|
-
interface ExtendedFields$g {
|
|
3428
|
-
/**
|
|
3429
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
3430
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
3431
|
-
*
|
|
3432
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
3433
|
-
*
|
|
3434
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
3435
|
-
*/
|
|
3436
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
3437
|
-
}
|
|
3438
3438
|
interface GetSubscriptionContractRequest {
|
|
3439
3439
|
/** ID of the SubscriptionContract to retrieve. */
|
|
3440
3440
|
subscriptionContractId: string;
|
|
@@ -21342,6 +21342,17 @@ declare enum TaxableAddressType$5 {
|
|
|
21342
21342
|
BILLING = "BILLING",
|
|
21343
21343
|
SHIPPING = "SHIPPING"
|
|
21344
21344
|
}
|
|
21345
|
+
interface ExtendedFields$b {
|
|
21346
|
+
/**
|
|
21347
|
+
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
21348
|
+
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
21349
|
+
*
|
|
21350
|
+
* You can only access fields for which you have the appropriate permissions.
|
|
21351
|
+
*
|
|
21352
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
21353
|
+
*/
|
|
21354
|
+
namespaces?: Record<string, Record<string, any>>;
|
|
21355
|
+
}
|
|
21345
21356
|
interface ItemChangedDetails$1 {
|
|
21346
21357
|
/** Line item quantity before change. */
|
|
21347
21358
|
quantityBeforeChange?: number | null;
|
|
@@ -21902,17 +21913,6 @@ interface OrderTaxBreakdown$3 {
|
|
|
21902
21913
|
/** The sum of all the tax from line items that calculated by the tax identifiers. */
|
|
21903
21914
|
aggregatedTaxAmount?: Price$9;
|
|
21904
21915
|
}
|
|
21905
|
-
interface ExtendedFields$b {
|
|
21906
|
-
/**
|
|
21907
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
21908
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
21909
|
-
*
|
|
21910
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
21911
|
-
*
|
|
21912
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
21913
|
-
*/
|
|
21914
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
21915
|
-
}
|
|
21916
21916
|
interface CreateDraftOrderRequest$1 {
|
|
21917
21917
|
/** To create a draft from existing order, provide its id. Otherwise, an empty draft will be created. */
|
|
21918
21918
|
orderId: string | null;
|
|
@@ -22077,7 +22077,8 @@ declare enum RuleType$5 {
|
|
|
22077
22077
|
INVALID_ENUM_VALUE = "INVALID_ENUM_VALUE",
|
|
22078
22078
|
REQUIRED_FIELD = "REQUIRED_FIELD",
|
|
22079
22079
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
22080
|
-
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
|
|
22080
|
+
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
|
|
22081
|
+
EXACT_LENGTH = "EXACT_LENGTH"
|
|
22081
22082
|
}
|
|
22082
22083
|
interface FieldViolation$5 {
|
|
22083
22084
|
field?: string;
|
|
@@ -23949,6 +23950,17 @@ declare enum TaxableAddressType$4 {
|
|
|
23949
23950
|
BILLING = "BILLING",
|
|
23950
23951
|
SHIPPING = "SHIPPING"
|
|
23951
23952
|
}
|
|
23953
|
+
interface ExtendedFields$a {
|
|
23954
|
+
/**
|
|
23955
|
+
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
23956
|
+
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
23957
|
+
*
|
|
23958
|
+
* You can only access fields for which you have the appropriate permissions.
|
|
23959
|
+
*
|
|
23960
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
23961
|
+
*/
|
|
23962
|
+
namespaces?: Record<string, Record<string, any>>;
|
|
23963
|
+
}
|
|
23952
23964
|
interface ItemChangedDetails {
|
|
23953
23965
|
/** Line item quantity before change. */
|
|
23954
23966
|
quantityBeforeChange?: number | null;
|
|
@@ -24489,17 +24501,6 @@ interface OrderTaxBreakdown$2 {
|
|
|
24489
24501
|
/** The sum of all the tax from line items that calculated by the tax identifiers. */
|
|
24490
24502
|
aggregatedTaxAmount?: Price$8;
|
|
24491
24503
|
}
|
|
24492
|
-
interface ExtendedFields$a {
|
|
24493
|
-
/**
|
|
24494
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
24495
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
24496
|
-
*
|
|
24497
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
24498
|
-
*
|
|
24499
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
24500
|
-
*/
|
|
24501
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
24502
|
-
}
|
|
24503
24504
|
interface CreateDraftOrderRequest {
|
|
24504
24505
|
/** To create a draft from existing order, provide its id. Otherwise, an empty draft will be created. */
|
|
24505
24506
|
orderId: string | null;
|
|
@@ -24664,7 +24665,8 @@ declare enum RuleType$4 {
|
|
|
24664
24665
|
INVALID_ENUM_VALUE = "INVALID_ENUM_VALUE",
|
|
24665
24666
|
REQUIRED_FIELD = "REQUIRED_FIELD",
|
|
24666
24667
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
24667
|
-
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
|
|
24668
|
+
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
|
|
24669
|
+
EXACT_LENGTH = "EXACT_LENGTH"
|
|
24668
24670
|
}
|
|
24669
24671
|
interface FieldViolation$4 {
|
|
24670
24672
|
field?: string;
|
|
@@ -26965,6 +26967,8 @@ interface TimeWindow$1 {
|
|
|
26965
26967
|
start?: TimeOfDay$1;
|
|
26966
26968
|
/** The end time in time of day representation. */
|
|
26967
26969
|
end?: TimeOfDay$1;
|
|
26970
|
+
/** Whether this timeWindow availability is enabled. */
|
|
26971
|
+
enabled?: boolean | null;
|
|
26968
26972
|
}
|
|
26969
26973
|
declare enum DayOfWeek$1 {
|
|
26970
26974
|
/** Monday. */
|
|
@@ -27405,6 +27409,8 @@ interface TimeWindow {
|
|
|
27405
27409
|
start?: TimeOfDay;
|
|
27406
27410
|
/** The end time in time of day representation. */
|
|
27407
27411
|
end?: TimeOfDay;
|
|
27412
|
+
/** Whether this timeWindow availability is enabled. */
|
|
27413
|
+
enabled?: boolean | null;
|
|
27408
27414
|
}
|
|
27409
27415
|
declare enum DayOfWeek {
|
|
27410
27416
|
/** Monday. */
|
|
@@ -28263,6 +28269,17 @@ declare enum TaxableAddressType$3 {
|
|
|
28263
28269
|
BILLING = "BILLING",
|
|
28264
28270
|
SHIPPING = "SHIPPING"
|
|
28265
28271
|
}
|
|
28272
|
+
interface ExtendedFields$9 {
|
|
28273
|
+
/**
|
|
28274
|
+
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
28275
|
+
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
28276
|
+
*
|
|
28277
|
+
* You can only access fields for which you have the appropriate permissions.
|
|
28278
|
+
*
|
|
28279
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
28280
|
+
*/
|
|
28281
|
+
namespaces?: Record<string, Record<string, any>>;
|
|
28282
|
+
}
|
|
28266
28283
|
/** Buyer Info */
|
|
28267
28284
|
interface BuyerInfo$1 extends BuyerInfoIdOneOf$1 {
|
|
28268
28285
|
/** Visitor ID (if site visitor is not a member). */
|
|
@@ -28864,17 +28881,6 @@ interface AdditionalFee$1 {
|
|
|
28864
28881
|
*/
|
|
28865
28882
|
lineItemIds?: string[];
|
|
28866
28883
|
}
|
|
28867
|
-
interface ExtendedFields$9 {
|
|
28868
|
-
/**
|
|
28869
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
28870
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
28871
|
-
*
|
|
28872
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
28873
|
-
*
|
|
28874
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
28875
|
-
*/
|
|
28876
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
28877
|
-
}
|
|
28878
28884
|
/**
|
|
28879
28885
|
* Common object for tags.
|
|
28880
28886
|
* Should be use as in this example:
|
|
@@ -30555,6 +30561,17 @@ declare enum TaxableAddressType$2 {
|
|
|
30555
30561
|
BILLING = "BILLING",
|
|
30556
30562
|
SHIPPING = "SHIPPING"
|
|
30557
30563
|
}
|
|
30564
|
+
interface ExtendedFields$8 {
|
|
30565
|
+
/**
|
|
30566
|
+
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
30567
|
+
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
30568
|
+
*
|
|
30569
|
+
* You can only access fields for which you have the appropriate permissions.
|
|
30570
|
+
*
|
|
30571
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
30572
|
+
*/
|
|
30573
|
+
namespaces?: Record<string, Record<string, any>>;
|
|
30574
|
+
}
|
|
30558
30575
|
/** Buyer Info */
|
|
30559
30576
|
interface BuyerInfo extends BuyerInfoIdOneOf {
|
|
30560
30577
|
/** Visitor ID (if site visitor is not a member). */
|
|
@@ -31136,17 +31153,6 @@ interface AdditionalFee {
|
|
|
31136
31153
|
*/
|
|
31137
31154
|
lineItemIds?: string[];
|
|
31138
31155
|
}
|
|
31139
|
-
interface ExtendedFields$8 {
|
|
31140
|
-
/**
|
|
31141
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
31142
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
31143
|
-
*
|
|
31144
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
31145
|
-
*
|
|
31146
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
31147
|
-
*/
|
|
31148
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
31149
|
-
}
|
|
31150
31156
|
/**
|
|
31151
31157
|
* Common object for tags.
|
|
31152
31158
|
* Should be use as in this example:
|
|
@@ -3231,6 +3231,17 @@ declare enum TaxableAddressType {
|
|
|
3231
3231
|
BILLING = "BILLING",
|
|
3232
3232
|
SHIPPING = "SHIPPING"
|
|
3233
3233
|
}
|
|
3234
|
+
interface ExtendedFields$1 {
|
|
3235
|
+
/**
|
|
3236
|
+
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
3237
|
+
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
3238
|
+
*
|
|
3239
|
+
* You can only access fields for which you have the appropriate permissions.
|
|
3240
|
+
*
|
|
3241
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
3242
|
+
*/
|
|
3243
|
+
namespaces?: Record<string, Record<string, any>>;
|
|
3244
|
+
}
|
|
3234
3245
|
/** Buyer Info */
|
|
3235
3246
|
interface V1BuyerInfo extends V1BuyerInfoIdOneOf {
|
|
3236
3247
|
/** Visitor ID (if site visitor is not a member). */
|
|
@@ -4115,17 +4126,6 @@ interface FulfillmentStatusesAggregate {
|
|
|
4115
4126
|
/** Unique string values based on Fulfillment entities statuses */
|
|
4116
4127
|
statuses?: string[] | null;
|
|
4117
4128
|
}
|
|
4118
|
-
interface ExtendedFields$1 {
|
|
4119
|
-
/**
|
|
4120
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
4121
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
4122
|
-
*
|
|
4123
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
4124
|
-
*
|
|
4125
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
4126
|
-
*/
|
|
4127
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
4128
|
-
}
|
|
4129
4129
|
/**
|
|
4130
4130
|
* Common object for tags.
|
|
4131
4131
|
* Should be use as in this example:
|
|
@@ -3231,6 +3231,17 @@ declare enum TaxableAddressType {
|
|
|
3231
3231
|
BILLING = "BILLING",
|
|
3232
3232
|
SHIPPING = "SHIPPING"
|
|
3233
3233
|
}
|
|
3234
|
+
interface ExtendedFields$1 {
|
|
3235
|
+
/**
|
|
3236
|
+
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
3237
|
+
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
3238
|
+
*
|
|
3239
|
+
* You can only access fields for which you have the appropriate permissions.
|
|
3240
|
+
*
|
|
3241
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
3242
|
+
*/
|
|
3243
|
+
namespaces?: Record<string, Record<string, any>>;
|
|
3244
|
+
}
|
|
3234
3245
|
/** Buyer Info */
|
|
3235
3246
|
interface V1BuyerInfo extends V1BuyerInfoIdOneOf {
|
|
3236
3247
|
/** Visitor ID (if site visitor is not a member). */
|
|
@@ -4115,17 +4126,6 @@ interface FulfillmentStatusesAggregate {
|
|
|
4115
4126
|
/** Unique string values based on Fulfillment entities statuses */
|
|
4116
4127
|
statuses?: string[] | null;
|
|
4117
4128
|
}
|
|
4118
|
-
interface ExtendedFields$1 {
|
|
4119
|
-
/**
|
|
4120
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
4121
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
4122
|
-
*
|
|
4123
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
4124
|
-
*
|
|
4125
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
4126
|
-
*/
|
|
4127
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
4128
|
-
}
|
|
4129
4129
|
/**
|
|
4130
4130
|
* Common object for tags.
|
|
4131
4131
|
* Should be use as in this example:
|