@wix/ecom 1.0.806 → 1.0.808
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.808",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
"@wix/ecom_additional-fees": "1.0.31",
|
|
24
24
|
"@wix/ecom_back-in-stock-notifications": "1.0.56",
|
|
25
25
|
"@wix/ecom_back-in-stock-settings": "1.0.41",
|
|
26
|
-
"@wix/ecom_cart": "1.0.
|
|
27
|
-
"@wix/ecom_checkout": "1.0.
|
|
26
|
+
"@wix/ecom_cart": "1.0.92",
|
|
27
|
+
"@wix/ecom_checkout": "1.0.100",
|
|
28
28
|
"@wix/ecom_checkout-content": "1.0.12",
|
|
29
29
|
"@wix/ecom_checkout-settings": "1.0.57",
|
|
30
30
|
"@wix/ecom_checkout-templates": "1.0.98",
|
|
31
31
|
"@wix/ecom_currencies": "1.0.42",
|
|
32
|
-
"@wix/ecom_current-cart": "1.0.
|
|
32
|
+
"@wix/ecom_current-cart": "1.0.92",
|
|
33
33
|
"@wix/ecom_custom-triggers": "1.0.28",
|
|
34
34
|
"@wix/ecom_delivery-profile": "1.0.25",
|
|
35
35
|
"@wix/ecom_delivery-solutions": "1.0.6",
|
|
@@ -81,5 +81,5 @@
|
|
|
81
81
|
"fqdn": ""
|
|
82
82
|
}
|
|
83
83
|
},
|
|
84
|
-
"falconPackageHash": "
|
|
84
|
+
"falconPackageHash": "d62871b3f886209d9117c01a90ff546c5ec17f8c93ea632a8c02b735"
|
|
85
85
|
}
|
|
@@ -5962,6 +5962,17 @@ declare enum TaxableAddressType$6 {
|
|
|
5962
5962
|
BILLING = "BILLING",
|
|
5963
5963
|
SHIPPING = "SHIPPING"
|
|
5964
5964
|
}
|
|
5965
|
+
interface ExtendedFields$9 {
|
|
5966
|
+
/**
|
|
5967
|
+
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
5968
|
+
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
5969
|
+
*
|
|
5970
|
+
* You can only access fields for which you have the appropriate permissions.
|
|
5971
|
+
*
|
|
5972
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
5973
|
+
*/
|
|
5974
|
+
namespaces?: Record<string, Record<string, any>>;
|
|
5975
|
+
}
|
|
5965
5976
|
/** Buyer Info */
|
|
5966
5977
|
interface BuyerInfo$7 extends BuyerInfoIdOneOf$5 {
|
|
5967
5978
|
/**
|
|
@@ -6108,17 +6119,6 @@ interface SelectedShippingOption$2 {
|
|
|
6108
6119
|
/** Selected shipping option code. For example, "usps_std_overnight". */
|
|
6109
6120
|
code?: string;
|
|
6110
6121
|
}
|
|
6111
|
-
interface ExtendedFields$9 {
|
|
6112
|
-
/**
|
|
6113
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
6114
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
6115
|
-
*
|
|
6116
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
6117
|
-
*
|
|
6118
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
6119
|
-
*/
|
|
6120
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
6121
|
-
}
|
|
6122
6122
|
interface GetCurrentCartRequest$1 {
|
|
6123
6123
|
}
|
|
6124
6124
|
interface GetCurrentCartResponse$1 {
|
|
@@ -8656,6 +8656,17 @@ declare enum TaxableAddressType$5 {
|
|
|
8656
8656
|
BILLING = "BILLING",
|
|
8657
8657
|
SHIPPING = "SHIPPING"
|
|
8658
8658
|
}
|
|
8659
|
+
interface ExtendedFields$8 {
|
|
8660
|
+
/**
|
|
8661
|
+
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
8662
|
+
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
8663
|
+
*
|
|
8664
|
+
* You can only access fields for which you have the appropriate permissions.
|
|
8665
|
+
*
|
|
8666
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
8667
|
+
*/
|
|
8668
|
+
namespaces?: Record<string, Record<string, any>>;
|
|
8669
|
+
}
|
|
8659
8670
|
/** Buyer Info */
|
|
8660
8671
|
interface BuyerInfo$6 extends BuyerInfoIdOneOf$4 {
|
|
8661
8672
|
/**
|
|
@@ -8802,17 +8813,6 @@ interface SelectedShippingOption$1 {
|
|
|
8802
8813
|
/** Selected shipping option code. For example, "usps_std_overnight". */
|
|
8803
8814
|
code?: string;
|
|
8804
8815
|
}
|
|
8805
|
-
interface ExtendedFields$8 {
|
|
8806
|
-
/**
|
|
8807
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
8808
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
8809
|
-
*
|
|
8810
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
8811
|
-
*
|
|
8812
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
8813
|
-
*/
|
|
8814
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
8815
|
-
}
|
|
8816
8816
|
interface GetCurrentCartRequest {
|
|
8817
8817
|
}
|
|
8818
8818
|
interface GetCurrentCartResponse {
|
|
@@ -11462,6 +11462,17 @@ declare enum TaxableAddressType$4 {
|
|
|
11462
11462
|
BILLING = "BILLING",
|
|
11463
11463
|
SHIPPING = "SHIPPING"
|
|
11464
11464
|
}
|
|
11465
|
+
interface ExtendedFields$7 {
|
|
11466
|
+
/**
|
|
11467
|
+
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
11468
|
+
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
11469
|
+
*
|
|
11470
|
+
* You can only access fields for which you have the appropriate permissions.
|
|
11471
|
+
*
|
|
11472
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
11473
|
+
*/
|
|
11474
|
+
namespaces?: Record<string, Record<string, any>>;
|
|
11475
|
+
}
|
|
11465
11476
|
/** Billing Info and shipping details */
|
|
11466
11477
|
interface AddressWithContact$3 {
|
|
11467
11478
|
/** Address. */
|
|
@@ -12225,17 +12236,6 @@ interface TargetLineItem$1 {
|
|
|
12225
12236
|
/** ID of the line item containing the violation. */
|
|
12226
12237
|
_id?: string | null;
|
|
12227
12238
|
}
|
|
12228
|
-
interface ExtendedFields$7 {
|
|
12229
|
-
/**
|
|
12230
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
12231
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
12232
|
-
*
|
|
12233
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
12234
|
-
*
|
|
12235
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
12236
|
-
*/
|
|
12237
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
12238
|
-
}
|
|
12239
12239
|
interface CustomSettings$1 {
|
|
12240
12240
|
/**
|
|
12241
12241
|
* Whether to restrict the option to add or remove a gift card on the checkout page.
|
|
@@ -5962,6 +5962,17 @@ declare enum TaxableAddressType$6 {
|
|
|
5962
5962
|
BILLING = "BILLING",
|
|
5963
5963
|
SHIPPING = "SHIPPING"
|
|
5964
5964
|
}
|
|
5965
|
+
interface ExtendedFields$9 {
|
|
5966
|
+
/**
|
|
5967
|
+
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
5968
|
+
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
5969
|
+
*
|
|
5970
|
+
* You can only access fields for which you have the appropriate permissions.
|
|
5971
|
+
*
|
|
5972
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
5973
|
+
*/
|
|
5974
|
+
namespaces?: Record<string, Record<string, any>>;
|
|
5975
|
+
}
|
|
5965
5976
|
/** Buyer Info */
|
|
5966
5977
|
interface BuyerInfo$7 extends BuyerInfoIdOneOf$5 {
|
|
5967
5978
|
/**
|
|
@@ -6108,17 +6119,6 @@ interface SelectedShippingOption$2 {
|
|
|
6108
6119
|
/** Selected shipping option code. For example, "usps_std_overnight". */
|
|
6109
6120
|
code?: string;
|
|
6110
6121
|
}
|
|
6111
|
-
interface ExtendedFields$9 {
|
|
6112
|
-
/**
|
|
6113
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
6114
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
6115
|
-
*
|
|
6116
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
6117
|
-
*
|
|
6118
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
6119
|
-
*/
|
|
6120
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
6121
|
-
}
|
|
6122
6122
|
interface GetCurrentCartRequest$1 {
|
|
6123
6123
|
}
|
|
6124
6124
|
interface GetCurrentCartResponse$1 {
|
|
@@ -8656,6 +8656,17 @@ declare enum TaxableAddressType$5 {
|
|
|
8656
8656
|
BILLING = "BILLING",
|
|
8657
8657
|
SHIPPING = "SHIPPING"
|
|
8658
8658
|
}
|
|
8659
|
+
interface ExtendedFields$8 {
|
|
8660
|
+
/**
|
|
8661
|
+
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
8662
|
+
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
8663
|
+
*
|
|
8664
|
+
* You can only access fields for which you have the appropriate permissions.
|
|
8665
|
+
*
|
|
8666
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
8667
|
+
*/
|
|
8668
|
+
namespaces?: Record<string, Record<string, any>>;
|
|
8669
|
+
}
|
|
8659
8670
|
/** Buyer Info */
|
|
8660
8671
|
interface BuyerInfo$6 extends BuyerInfoIdOneOf$4 {
|
|
8661
8672
|
/**
|
|
@@ -8802,17 +8813,6 @@ interface SelectedShippingOption$1 {
|
|
|
8802
8813
|
/** Selected shipping option code. For example, "usps_std_overnight". */
|
|
8803
8814
|
code?: string;
|
|
8804
8815
|
}
|
|
8805
|
-
interface ExtendedFields$8 {
|
|
8806
|
-
/**
|
|
8807
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
8808
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
8809
|
-
*
|
|
8810
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
8811
|
-
*
|
|
8812
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
8813
|
-
*/
|
|
8814
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
8815
|
-
}
|
|
8816
8816
|
interface GetCurrentCartRequest {
|
|
8817
8817
|
}
|
|
8818
8818
|
interface GetCurrentCartResponse {
|
|
@@ -11462,6 +11462,17 @@ declare enum TaxableAddressType$4 {
|
|
|
11462
11462
|
BILLING = "BILLING",
|
|
11463
11463
|
SHIPPING = "SHIPPING"
|
|
11464
11464
|
}
|
|
11465
|
+
interface ExtendedFields$7 {
|
|
11466
|
+
/**
|
|
11467
|
+
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
11468
|
+
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
11469
|
+
*
|
|
11470
|
+
* You can only access fields for which you have the appropriate permissions.
|
|
11471
|
+
*
|
|
11472
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
11473
|
+
*/
|
|
11474
|
+
namespaces?: Record<string, Record<string, any>>;
|
|
11475
|
+
}
|
|
11465
11476
|
/** Billing Info and shipping details */
|
|
11466
11477
|
interface AddressWithContact$3 {
|
|
11467
11478
|
/** Address. */
|
|
@@ -12225,17 +12236,6 @@ interface TargetLineItem$1 {
|
|
|
12225
12236
|
/** ID of the line item containing the violation. */
|
|
12226
12237
|
_id?: string | null;
|
|
12227
12238
|
}
|
|
12228
|
-
interface ExtendedFields$7 {
|
|
12229
|
-
/**
|
|
12230
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
12231
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
12232
|
-
*
|
|
12233
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
12234
|
-
*
|
|
12235
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
12236
|
-
*/
|
|
12237
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
12238
|
-
}
|
|
12239
12239
|
interface CustomSettings$1 {
|
|
12240
12240
|
/**
|
|
12241
12241
|
* Whether to restrict the option to add or remove a gift card on the checkout page.
|
|
@@ -13898,6 +13898,17 @@ declare enum TaxableAddressType$7 {
|
|
|
13898
13898
|
BILLING = "BILLING",
|
|
13899
13899
|
SHIPPING = "SHIPPING"
|
|
13900
13900
|
}
|
|
13901
|
+
interface ExtendedFields$d {
|
|
13902
|
+
/**
|
|
13903
|
+
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
13904
|
+
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
13905
|
+
*
|
|
13906
|
+
* You can only access fields for which you have the appropriate permissions.
|
|
13907
|
+
*
|
|
13908
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
13909
|
+
*/
|
|
13910
|
+
namespaces?: Record<string, Record<string, any>>;
|
|
13911
|
+
}
|
|
13901
13912
|
/** Billing Info and shipping details */
|
|
13902
13913
|
interface AddressWithContact$5 {
|
|
13903
13914
|
/** Address. */
|
|
@@ -14623,17 +14634,6 @@ interface TargetLineItem$1 {
|
|
|
14623
14634
|
/** ID of the line item containing the violation. */
|
|
14624
14635
|
id?: string | null;
|
|
14625
14636
|
}
|
|
14626
|
-
interface ExtendedFields$d {
|
|
14627
|
-
/**
|
|
14628
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
14629
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
14630
|
-
*
|
|
14631
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
14632
|
-
*
|
|
14633
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
14634
|
-
*/
|
|
14635
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
14636
|
-
}
|
|
14637
14637
|
interface CustomSettings$1 {
|
|
14638
14638
|
/**
|
|
14639
14639
|
* Whether to restrict the option to add or remove a gift card on the checkout page.
|
|
@@ -16096,6 +16096,17 @@ declare enum TaxableAddressType$6 {
|
|
|
16096
16096
|
BILLING = "BILLING",
|
|
16097
16097
|
SHIPPING = "SHIPPING"
|
|
16098
16098
|
}
|
|
16099
|
+
interface ExtendedFields$c {
|
|
16100
|
+
/**
|
|
16101
|
+
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
16102
|
+
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
16103
|
+
*
|
|
16104
|
+
* You can only access fields for which you have the appropriate permissions.
|
|
16105
|
+
*
|
|
16106
|
+
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
16107
|
+
*/
|
|
16108
|
+
namespaces?: Record<string, Record<string, any>>;
|
|
16109
|
+
}
|
|
16099
16110
|
/** Billing Info and shipping details */
|
|
16100
16111
|
interface AddressWithContact$4 {
|
|
16101
16112
|
/** Address. */
|
|
@@ -16811,17 +16822,6 @@ interface TargetLineItem {
|
|
|
16811
16822
|
/** ID of the line item containing the violation. */
|
|
16812
16823
|
_id?: string | null;
|
|
16813
16824
|
}
|
|
16814
|
-
interface ExtendedFields$c {
|
|
16815
|
-
/**
|
|
16816
|
-
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
16817
|
-
* The value of each key is structured according to the schema defined when the extended fields were configured.
|
|
16818
|
-
*
|
|
16819
|
-
* You can only access fields for which you have the appropriate permissions.
|
|
16820
|
-
*
|
|
16821
|
-
* Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
|
|
16822
|
-
*/
|
|
16823
|
-
namespaces?: Record<string, Record<string, any>>;
|
|
16824
|
-
}
|
|
16825
16825
|
interface CustomSettings {
|
|
16826
16826
|
/**
|
|
16827
16827
|
* Whether to restrict the option to add or remove a gift card on the checkout page.
|