@wix/ecom 1.0.725 → 1.0.727
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.727",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -23,17 +23,17 @@
|
|
|
23
23
|
"@wix/ecom_additional-fees": "1.0.24",
|
|
24
24
|
"@wix/ecom_back-in-stock-notifications": "1.0.47",
|
|
25
25
|
"@wix/ecom_back-in-stock-settings": "1.0.33",
|
|
26
|
-
"@wix/ecom_cart": "1.0.
|
|
27
|
-
"@wix/ecom_checkout": "1.0.
|
|
26
|
+
"@wix/ecom_cart": "1.0.69",
|
|
27
|
+
"@wix/ecom_checkout": "1.0.78",
|
|
28
28
|
"@wix/ecom_checkout-content": "1.0.4",
|
|
29
29
|
"@wix/ecom_checkout-settings": "1.0.47",
|
|
30
|
-
"@wix/ecom_checkout-templates": "1.0.
|
|
30
|
+
"@wix/ecom_checkout-templates": "1.0.79",
|
|
31
31
|
"@wix/ecom_currencies": "1.0.34",
|
|
32
|
-
"@wix/ecom_current-cart": "1.0.
|
|
32
|
+
"@wix/ecom_current-cart": "1.0.69",
|
|
33
33
|
"@wix/ecom_custom-triggers": "1.0.22",
|
|
34
34
|
"@wix/ecom_delivery-profile": "1.0.14",
|
|
35
35
|
"@wix/ecom_discount-rules": "1.0.50",
|
|
36
|
-
"@wix/ecom_discounts": "1.0.
|
|
36
|
+
"@wix/ecom_discounts": "1.0.1",
|
|
37
37
|
"@wix/ecom_discounts-custom-trigger": "1.0.5",
|
|
38
38
|
"@wix/ecom_draft-orders": "1.0.9",
|
|
39
39
|
"@wix/ecom_local-delivery-options": "1.0.6",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@wix/ecom_shipping-rates": "1.0.40",
|
|
51
51
|
"@wix/ecom_shippo-configurations": "1.0.12",
|
|
52
52
|
"@wix/ecom_totals-calculator": "1.0.6",
|
|
53
|
-
"@wix/ecom_validations": "1.0.
|
|
53
|
+
"@wix/ecom_validations": "1.0.30"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"glob": "^10.4.1",
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"fqdn": ""
|
|
76
76
|
}
|
|
77
77
|
},
|
|
78
|
-
"falconPackageHash": "
|
|
78
|
+
"falconPackageHash": "cc9aff2c84ab3890857069bcbbc4f4ca7f6bae3dd9fb523c1001f8e0"
|
|
79
79
|
}
|
|
@@ -3900,6 +3900,12 @@ interface SubscriptionOptionInfo$4 {
|
|
|
3900
3900
|
interface SubscriptionSettings$7 {
|
|
3901
3901
|
/** Frequency of recurring payment. */
|
|
3902
3902
|
frequency?: SubscriptionFrequency$7;
|
|
3903
|
+
/**
|
|
3904
|
+
* Interval of recurring payment.
|
|
3905
|
+
*
|
|
3906
|
+
* Default: `1`.
|
|
3907
|
+
*/
|
|
3908
|
+
interval?: number | null;
|
|
3903
3909
|
/** Whether subscription is renewed automatically at the end of each period. */
|
|
3904
3910
|
autoRenewal?: boolean;
|
|
3905
3911
|
/** Number of billing cycles before subscription ends. Ignored if `autoRenewal` is `true`. */
|
|
@@ -6489,6 +6495,12 @@ interface SubscriptionOptionInfo$3 {
|
|
|
6489
6495
|
interface SubscriptionSettings$6 {
|
|
6490
6496
|
/** Frequency of recurring payment. */
|
|
6491
6497
|
frequency?: SubscriptionFrequency$6;
|
|
6498
|
+
/**
|
|
6499
|
+
* Interval of recurring payment.
|
|
6500
|
+
*
|
|
6501
|
+
* Default: `1`.
|
|
6502
|
+
*/
|
|
6503
|
+
interval?: number | null;
|
|
6492
6504
|
/** Whether subscription is renewed automatically at the end of each period. */
|
|
6493
6505
|
autoRenewal?: boolean;
|
|
6494
6506
|
/** Number of billing cycles before subscription ends. Ignored if `autoRenewal` is `true`. */
|
|
@@ -9192,6 +9204,12 @@ interface SubscriptionOptionInfo$2 {
|
|
|
9192
9204
|
interface SubscriptionSettings$5 {
|
|
9193
9205
|
/** Frequency of recurring payment. */
|
|
9194
9206
|
frequency?: SubscriptionFrequency$5;
|
|
9207
|
+
/**
|
|
9208
|
+
* Interval of recurring payment.
|
|
9209
|
+
*
|
|
9210
|
+
* Default: `1`.
|
|
9211
|
+
*/
|
|
9212
|
+
interval?: number | null;
|
|
9195
9213
|
/** Whether subscription is renewed automatically at the end of each period. */
|
|
9196
9214
|
autoRenewal?: boolean;
|
|
9197
9215
|
/** Number of billing cycles before subscription ends. Ignored if `autoRenewal` is `true`. */
|
|
@@ -12797,6 +12815,12 @@ interface SubscriptionOptionInfo$1 {
|
|
|
12797
12815
|
interface SubscriptionSettings$4 {
|
|
12798
12816
|
/** Frequency of recurring payment. */
|
|
12799
12817
|
frequency?: SubscriptionFrequency$4;
|
|
12818
|
+
/**
|
|
12819
|
+
* Interval of recurring payment.
|
|
12820
|
+
*
|
|
12821
|
+
* Default: `1`.
|
|
12822
|
+
*/
|
|
12823
|
+
interval?: number | null;
|
|
12800
12824
|
/** Whether subscription is renewed automatically at the end of each period. */
|
|
12801
12825
|
autoRenewal?: boolean;
|
|
12802
12826
|
/** Number of billing cycles before subscription ends. Ignored if `autoRenewal` is `true`. */
|
|
@@ -3900,6 +3900,12 @@ interface SubscriptionOptionInfo$4 {
|
|
|
3900
3900
|
interface SubscriptionSettings$7 {
|
|
3901
3901
|
/** Frequency of recurring payment. */
|
|
3902
3902
|
frequency?: SubscriptionFrequency$7;
|
|
3903
|
+
/**
|
|
3904
|
+
* Interval of recurring payment.
|
|
3905
|
+
*
|
|
3906
|
+
* Default: `1`.
|
|
3907
|
+
*/
|
|
3908
|
+
interval?: number | null;
|
|
3903
3909
|
/** Whether subscription is renewed automatically at the end of each period. */
|
|
3904
3910
|
autoRenewal?: boolean;
|
|
3905
3911
|
/** Number of billing cycles before subscription ends. Ignored if `autoRenewal` is `true`. */
|
|
@@ -6489,6 +6495,12 @@ interface SubscriptionOptionInfo$3 {
|
|
|
6489
6495
|
interface SubscriptionSettings$6 {
|
|
6490
6496
|
/** Frequency of recurring payment. */
|
|
6491
6497
|
frequency?: SubscriptionFrequency$6;
|
|
6498
|
+
/**
|
|
6499
|
+
* Interval of recurring payment.
|
|
6500
|
+
*
|
|
6501
|
+
* Default: `1`.
|
|
6502
|
+
*/
|
|
6503
|
+
interval?: number | null;
|
|
6492
6504
|
/** Whether subscription is renewed automatically at the end of each period. */
|
|
6493
6505
|
autoRenewal?: boolean;
|
|
6494
6506
|
/** Number of billing cycles before subscription ends. Ignored if `autoRenewal` is `true`. */
|
|
@@ -9192,6 +9204,12 @@ interface SubscriptionOptionInfo$2 {
|
|
|
9192
9204
|
interface SubscriptionSettings$5 {
|
|
9193
9205
|
/** Frequency of recurring payment. */
|
|
9194
9206
|
frequency?: SubscriptionFrequency$5;
|
|
9207
|
+
/**
|
|
9208
|
+
* Interval of recurring payment.
|
|
9209
|
+
*
|
|
9210
|
+
* Default: `1`.
|
|
9211
|
+
*/
|
|
9212
|
+
interval?: number | null;
|
|
9195
9213
|
/** Whether subscription is renewed automatically at the end of each period. */
|
|
9196
9214
|
autoRenewal?: boolean;
|
|
9197
9215
|
/** Number of billing cycles before subscription ends. Ignored if `autoRenewal` is `true`. */
|
|
@@ -12797,6 +12815,12 @@ interface SubscriptionOptionInfo$1 {
|
|
|
12797
12815
|
interface SubscriptionSettings$4 {
|
|
12798
12816
|
/** Frequency of recurring payment. */
|
|
12799
12817
|
frequency?: SubscriptionFrequency$4;
|
|
12818
|
+
/**
|
|
12819
|
+
* Interval of recurring payment.
|
|
12820
|
+
*
|
|
12821
|
+
* Default: `1`.
|
|
12822
|
+
*/
|
|
12823
|
+
interval?: number | null;
|
|
12800
12824
|
/** Whether subscription is renewed automatically at the end of each period. */
|
|
12801
12825
|
autoRenewal?: boolean;
|
|
12802
12826
|
/** Number of billing cycles before subscription ends. Ignored if `autoRenewal` is `true`. */
|
|
@@ -3208,6 +3208,12 @@ interface SubscriptionOptionInfo {
|
|
|
3208
3208
|
interface SubscriptionSettings {
|
|
3209
3209
|
/** Frequency of recurring payment. */
|
|
3210
3210
|
frequency?: SubscriptionFrequency;
|
|
3211
|
+
/**
|
|
3212
|
+
* Interval of recurring payment.
|
|
3213
|
+
*
|
|
3214
|
+
* Default: `1`.
|
|
3215
|
+
*/
|
|
3216
|
+
interval?: number | null;
|
|
3211
3217
|
/** Whether subscription is renewed automatically at the end of each period. */
|
|
3212
3218
|
autoRenewal?: boolean;
|
|
3213
3219
|
/** Number of billing cycles before subscription ends. Ignored if `autoRenewal` is `true`. */
|
|
@@ -3208,6 +3208,12 @@ interface SubscriptionOptionInfo {
|
|
|
3208
3208
|
interface SubscriptionSettings {
|
|
3209
3209
|
/** Frequency of recurring payment. */
|
|
3210
3210
|
frequency?: SubscriptionFrequency;
|
|
3211
|
+
/**
|
|
3212
|
+
* Interval of recurring payment.
|
|
3213
|
+
*
|
|
3214
|
+
* Default: `1`.
|
|
3215
|
+
*/
|
|
3216
|
+
interval?: number | null;
|
|
3211
3217
|
/** Whether subscription is renewed automatically at the end of each period. */
|
|
3212
3218
|
autoRenewal?: boolean;
|
|
3213
3219
|
/** Number of billing cycles before subscription ends. Ignored if `autoRenewal` is `true`. */
|