@wix/ecom 1.0.748 → 1.0.750
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.750",
|
|
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.25",
|
|
24
24
|
"@wix/ecom_back-in-stock-notifications": "1.0.48",
|
|
25
25
|
"@wix/ecom_back-in-stock-settings": "1.0.34",
|
|
26
|
-
"@wix/ecom_cart": "1.0.
|
|
27
|
-
"@wix/ecom_checkout": "1.0.
|
|
26
|
+
"@wix/ecom_cart": "1.0.72",
|
|
27
|
+
"@wix/ecom_checkout": "1.0.82",
|
|
28
28
|
"@wix/ecom_checkout-content": "1.0.5",
|
|
29
29
|
"@wix/ecom_checkout-settings": "1.0.50",
|
|
30
|
-
"@wix/ecom_checkout-templates": "1.0.
|
|
30
|
+
"@wix/ecom_checkout-templates": "1.0.82",
|
|
31
31
|
"@wix/ecom_currencies": "1.0.35",
|
|
32
|
-
"@wix/ecom_current-cart": "1.0.
|
|
32
|
+
"@wix/ecom_current-cart": "1.0.72",
|
|
33
33
|
"@wix/ecom_custom-triggers": "1.0.23",
|
|
34
34
|
"@wix/ecom_delivery-profile": "1.0.16",
|
|
35
35
|
"@wix/ecom_discount-rules": "1.0.51",
|
|
@@ -45,13 +45,13 @@
|
|
|
45
45
|
"@wix/ecom_order-transactions": "1.0.65",
|
|
46
46
|
"@wix/ecom_orders": "1.0.115",
|
|
47
47
|
"@wix/ecom_orders-settings": "1.0.44",
|
|
48
|
-
"@wix/ecom_payment-settings": "1.0.
|
|
48
|
+
"@wix/ecom_payment-settings": "1.0.39",
|
|
49
49
|
"@wix/ecom_pickup-locations": "1.0.7",
|
|
50
|
-
"@wix/ecom_recommendations": "1.0.
|
|
50
|
+
"@wix/ecom_recommendations": "1.0.39",
|
|
51
51
|
"@wix/ecom_shipping-options": "1.0.6",
|
|
52
52
|
"@wix/ecom_shipping-rates": "1.0.41",
|
|
53
53
|
"@wix/ecom_shippo-configurations": "1.0.13",
|
|
54
|
-
"@wix/ecom_totals-calculator": "1.0.
|
|
54
|
+
"@wix/ecom_totals-calculator": "1.0.8",
|
|
55
55
|
"@wix/ecom_validations": "1.0.31"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
@@ -77,5 +77,5 @@
|
|
|
77
77
|
"fqdn": ""
|
|
78
78
|
}
|
|
79
79
|
},
|
|
80
|
-
"falconPackageHash": "
|
|
80
|
+
"falconPackageHash": "1bc00f470e6872f3da4c5182ef609dc632f53a8dc177362d7fe75e5f"
|
|
81
81
|
}
|
|
@@ -1635,6 +1635,8 @@ interface AlgorithmConfig {
|
|
|
1635
1635
|
* * `GLOBAL` - This type of algorithm provides general recommendations based on site or project statistics. For example, bestsellers or new arrivals.
|
|
1636
1636
|
*/
|
|
1637
1637
|
algorithmType?: AlgorithmType;
|
|
1638
|
+
/** Algorithm ID. This must be unique for a specific app but does not have to be unique across all apps on the site or in the project. */
|
|
1639
|
+
algorithmId?: string | null;
|
|
1638
1640
|
}
|
|
1639
1641
|
declare enum AlgorithmType {
|
|
1640
1642
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -4484,6 +4486,11 @@ interface GiftCard$6 {
|
|
|
4484
4486
|
amount?: MultiCurrencyPrice$4;
|
|
4485
4487
|
/** App ID of the gift card provider. */
|
|
4486
4488
|
appId?: string;
|
|
4489
|
+
/**
|
|
4490
|
+
* External ID in the gift card provider's system.
|
|
4491
|
+
* Used for integration and tracking across different platforms.
|
|
4492
|
+
*/
|
|
4493
|
+
externalId?: string | null;
|
|
4487
4494
|
}
|
|
4488
4495
|
interface TaxSummary$6 {
|
|
4489
4496
|
/**
|
|
@@ -7098,6 +7105,11 @@ interface GiftCard$5 {
|
|
|
7098
7105
|
amount?: MultiCurrencyPrice$3;
|
|
7099
7106
|
/** App ID of the gift card provider. */
|
|
7100
7107
|
appId?: string;
|
|
7108
|
+
/**
|
|
7109
|
+
* External ID in the gift card provider's system.
|
|
7110
|
+
* Used for integration and tracking across different platforms.
|
|
7111
|
+
*/
|
|
7112
|
+
externalId?: string | null;
|
|
7101
7113
|
}
|
|
7102
7114
|
interface TaxSummary$5 {
|
|
7103
7115
|
/**
|
|
@@ -9748,6 +9760,11 @@ interface GiftCard$4 {
|
|
|
9748
9760
|
amount?: MultiCurrencyPrice$2;
|
|
9749
9761
|
/** App ID of the gift card provider. */
|
|
9750
9762
|
appId?: string;
|
|
9763
|
+
/**
|
|
9764
|
+
* External ID in the gift card provider's system.
|
|
9765
|
+
* Used for integration and tracking across different platforms.
|
|
9766
|
+
*/
|
|
9767
|
+
externalId?: string | null;
|
|
9751
9768
|
}
|
|
9752
9769
|
interface AppliedDiscount$4 extends AppliedDiscountDiscountSourceOneOf$4 {
|
|
9753
9770
|
/** Coupon details. */
|
|
@@ -13956,6 +13973,11 @@ interface GiftCard$3 {
|
|
|
13956
13973
|
amount?: MultiCurrencyPrice$1;
|
|
13957
13974
|
/** App ID of the gift card provider. */
|
|
13958
13975
|
appId?: string;
|
|
13976
|
+
/**
|
|
13977
|
+
* External ID in the gift card provider's system.
|
|
13978
|
+
* Used for integration and tracking across different platforms.
|
|
13979
|
+
*/
|
|
13980
|
+
externalId?: string | null;
|
|
13959
13981
|
}
|
|
13960
13982
|
interface AppliedDiscount$3 extends AppliedDiscountDiscountSourceOneOf$3 {
|
|
13961
13983
|
/** Coupon details. */
|
|
@@ -33052,6 +33074,11 @@ interface GiftCard {
|
|
|
33052
33074
|
amount?: MultiCurrencyPrice;
|
|
33053
33075
|
/** App ID of the gift card provider. */
|
|
33054
33076
|
appId?: string;
|
|
33077
|
+
/**
|
|
33078
|
+
* External ID in the gift card provider's system.
|
|
33079
|
+
* Used for integration and tracking across different platforms.
|
|
33080
|
+
*/
|
|
33081
|
+
externalId?: string | null;
|
|
33055
33082
|
}
|
|
33056
33083
|
interface TaxSummary {
|
|
33057
33084
|
/**
|
|
@@ -1635,6 +1635,8 @@ interface AlgorithmConfig {
|
|
|
1635
1635
|
* * `GLOBAL` - This type of algorithm provides general recommendations based on site or project statistics. For example, bestsellers or new arrivals.
|
|
1636
1636
|
*/
|
|
1637
1637
|
algorithmType?: AlgorithmType;
|
|
1638
|
+
/** Algorithm ID. This must be unique for a specific app but does not have to be unique across all apps on the site or in the project. */
|
|
1639
|
+
algorithmId?: string | null;
|
|
1638
1640
|
}
|
|
1639
1641
|
declare enum AlgorithmType {
|
|
1640
1642
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -4484,6 +4486,11 @@ interface GiftCard$6 {
|
|
|
4484
4486
|
amount?: MultiCurrencyPrice$4;
|
|
4485
4487
|
/** App ID of the gift card provider. */
|
|
4486
4488
|
appId?: string;
|
|
4489
|
+
/**
|
|
4490
|
+
* External ID in the gift card provider's system.
|
|
4491
|
+
* Used for integration and tracking across different platforms.
|
|
4492
|
+
*/
|
|
4493
|
+
externalId?: string | null;
|
|
4487
4494
|
}
|
|
4488
4495
|
interface TaxSummary$6 {
|
|
4489
4496
|
/**
|
|
@@ -7098,6 +7105,11 @@ interface GiftCard$5 {
|
|
|
7098
7105
|
amount?: MultiCurrencyPrice$3;
|
|
7099
7106
|
/** App ID of the gift card provider. */
|
|
7100
7107
|
appId?: string;
|
|
7108
|
+
/**
|
|
7109
|
+
* External ID in the gift card provider's system.
|
|
7110
|
+
* Used for integration and tracking across different platforms.
|
|
7111
|
+
*/
|
|
7112
|
+
externalId?: string | null;
|
|
7101
7113
|
}
|
|
7102
7114
|
interface TaxSummary$5 {
|
|
7103
7115
|
/**
|
|
@@ -9748,6 +9760,11 @@ interface GiftCard$4 {
|
|
|
9748
9760
|
amount?: MultiCurrencyPrice$2;
|
|
9749
9761
|
/** App ID of the gift card provider. */
|
|
9750
9762
|
appId?: string;
|
|
9763
|
+
/**
|
|
9764
|
+
* External ID in the gift card provider's system.
|
|
9765
|
+
* Used for integration and tracking across different platforms.
|
|
9766
|
+
*/
|
|
9767
|
+
externalId?: string | null;
|
|
9751
9768
|
}
|
|
9752
9769
|
interface AppliedDiscount$4 extends AppliedDiscountDiscountSourceOneOf$4 {
|
|
9753
9770
|
/** Coupon details. */
|
|
@@ -13956,6 +13973,11 @@ interface GiftCard$3 {
|
|
|
13956
13973
|
amount?: MultiCurrencyPrice$1;
|
|
13957
13974
|
/** App ID of the gift card provider. */
|
|
13958
13975
|
appId?: string;
|
|
13976
|
+
/**
|
|
13977
|
+
* External ID in the gift card provider's system.
|
|
13978
|
+
* Used for integration and tracking across different platforms.
|
|
13979
|
+
*/
|
|
13980
|
+
externalId?: string | null;
|
|
13959
13981
|
}
|
|
13960
13982
|
interface AppliedDiscount$3 extends AppliedDiscountDiscountSourceOneOf$3 {
|
|
13961
13983
|
/** Coupon details. */
|
|
@@ -33052,6 +33074,11 @@ interface GiftCard {
|
|
|
33052
33074
|
amount?: MultiCurrencyPrice;
|
|
33053
33075
|
/** App ID of the gift card provider. */
|
|
33054
33076
|
appId?: string;
|
|
33077
|
+
/**
|
|
33078
|
+
* External ID in the gift card provider's system.
|
|
33079
|
+
* Used for integration and tracking across different platforms.
|
|
33080
|
+
*/
|
|
33081
|
+
externalId?: string | null;
|
|
33055
33082
|
}
|
|
33056
33083
|
interface TaxSummary {
|
|
33057
33084
|
/**
|
|
@@ -1264,6 +1264,8 @@ interface AlgorithmConfig$1 {
|
|
|
1264
1264
|
* * `GLOBAL` - This type of algorithm provides general recommendations based on site or project statistics. For example, bestsellers or new arrivals.
|
|
1265
1265
|
*/
|
|
1266
1266
|
algorithmType?: AlgorithmType$1;
|
|
1267
|
+
/** Algorithm ID. This must be unique for a specific app but does not have to be unique across all apps on the site or in the project. */
|
|
1268
|
+
algorithmId?: string | null;
|
|
1267
1269
|
}
|
|
1268
1270
|
declare enum AlgorithmType$1 {
|
|
1269
1271
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -1396,6 +1398,8 @@ interface AlgorithmConfig {
|
|
|
1396
1398
|
* * `GLOBAL` - This type of algorithm provides general recommendations based on site or project statistics. For example, bestsellers or new arrivals.
|
|
1397
1399
|
*/
|
|
1398
1400
|
algorithmType?: AlgorithmType;
|
|
1401
|
+
/** Algorithm ID. This must be unique for a specific app but does not have to be unique across all apps on the site or in the project. */
|
|
1402
|
+
algorithmId?: string | null;
|
|
1399
1403
|
}
|
|
1400
1404
|
declare enum AlgorithmType {
|
|
1401
1405
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -3749,6 +3753,11 @@ interface GiftCard$9 {
|
|
|
3749
3753
|
amount?: MultiCurrencyPrice$7;
|
|
3750
3754
|
/** App ID of the gift card provider. */
|
|
3751
3755
|
appId?: string;
|
|
3756
|
+
/**
|
|
3757
|
+
* External ID in the gift card provider's system.
|
|
3758
|
+
* Used for integration and tracking across different platforms.
|
|
3759
|
+
*/
|
|
3760
|
+
externalId?: string | null;
|
|
3752
3761
|
}
|
|
3753
3762
|
interface TaxSummary$b {
|
|
3754
3763
|
/**
|
|
@@ -5640,6 +5649,11 @@ interface GiftCard$8 {
|
|
|
5640
5649
|
amount?: MultiCurrencyPrice$6;
|
|
5641
5650
|
/** App ID of the gift card provider. */
|
|
5642
5651
|
appId?: string;
|
|
5652
|
+
/**
|
|
5653
|
+
* External ID in the gift card provider's system.
|
|
5654
|
+
* Used for integration and tracking across different platforms.
|
|
5655
|
+
*/
|
|
5656
|
+
externalId?: string | null;
|
|
5643
5657
|
}
|
|
5644
5658
|
interface TaxSummary$a {
|
|
5645
5659
|
/**
|
|
@@ -7666,6 +7680,11 @@ interface GiftCard$7 {
|
|
|
7666
7680
|
amount?: MultiCurrencyPrice$5;
|
|
7667
7681
|
/** App ID of the gift card provider. */
|
|
7668
7682
|
appId?: string;
|
|
7683
|
+
/**
|
|
7684
|
+
* External ID in the gift card provider's system.
|
|
7685
|
+
* Used for integration and tracking across different platforms.
|
|
7686
|
+
*/
|
|
7687
|
+
externalId?: string | null;
|
|
7669
7688
|
}
|
|
7670
7689
|
interface TaxSummary$9 {
|
|
7671
7690
|
/**
|
|
@@ -9517,6 +9536,11 @@ interface GiftCard$6 {
|
|
|
9517
9536
|
amount?: MultiCurrencyPrice$4;
|
|
9518
9537
|
/** App ID of the gift card provider. */
|
|
9519
9538
|
appId?: string;
|
|
9539
|
+
/**
|
|
9540
|
+
* External ID in the gift card provider's system.
|
|
9541
|
+
* Used for integration and tracking across different platforms.
|
|
9542
|
+
*/
|
|
9543
|
+
externalId?: string | null;
|
|
9520
9544
|
}
|
|
9521
9545
|
interface TaxSummary$8 {
|
|
9522
9546
|
/**
|
|
@@ -11586,6 +11610,11 @@ interface GiftCard$5 {
|
|
|
11586
11610
|
amount?: MultiCurrencyPrice$3;
|
|
11587
11611
|
/** App ID of the gift card provider. */
|
|
11588
11612
|
appId?: string;
|
|
11613
|
+
/**
|
|
11614
|
+
* External ID in the gift card provider's system.
|
|
11615
|
+
* Used for integration and tracking across different platforms.
|
|
11616
|
+
*/
|
|
11617
|
+
externalId?: string | null;
|
|
11589
11618
|
}
|
|
11590
11619
|
interface AppliedDiscount$7 extends AppliedDiscountDiscountSourceOneOf$7 {
|
|
11591
11620
|
/** Coupon details. */
|
|
@@ -13684,6 +13713,11 @@ interface GiftCard$4 {
|
|
|
13684
13713
|
amount?: MultiCurrencyPrice$2;
|
|
13685
13714
|
/** App ID of the gift card provider. */
|
|
13686
13715
|
appId?: string;
|
|
13716
|
+
/**
|
|
13717
|
+
* External ID in the gift card provider's system.
|
|
13718
|
+
* Used for integration and tracking across different platforms.
|
|
13719
|
+
*/
|
|
13720
|
+
externalId?: string | null;
|
|
13687
13721
|
}
|
|
13688
13722
|
interface AppliedDiscount$6 extends AppliedDiscountDiscountSourceOneOf$6 {
|
|
13689
13723
|
/** Coupon details. */
|
|
@@ -32643,6 +32677,11 @@ interface GiftCard$1 {
|
|
|
32643
32677
|
amount?: MultiCurrencyPrice$1;
|
|
32644
32678
|
/** App ID of the gift card provider. */
|
|
32645
32679
|
appId?: string;
|
|
32680
|
+
/**
|
|
32681
|
+
* External ID in the gift card provider's system.
|
|
32682
|
+
* Used for integration and tracking across different platforms.
|
|
32683
|
+
*/
|
|
32684
|
+
externalId?: string | null;
|
|
32646
32685
|
}
|
|
32647
32686
|
interface TaxSummary$1 {
|
|
32648
32687
|
/**
|
|
@@ -33769,6 +33808,11 @@ interface GiftCard {
|
|
|
33769
33808
|
amount?: MultiCurrencyPrice;
|
|
33770
33809
|
/** App ID of the gift card provider. */
|
|
33771
33810
|
appId?: string;
|
|
33811
|
+
/**
|
|
33812
|
+
* External ID in the gift card provider's system.
|
|
33813
|
+
* Used for integration and tracking across different platforms.
|
|
33814
|
+
*/
|
|
33815
|
+
externalId?: string | null;
|
|
33772
33816
|
}
|
|
33773
33817
|
interface TaxSummary {
|
|
33774
33818
|
/**
|
|
@@ -3992,6 +3992,11 @@ interface GiftCard$1 {
|
|
|
3992
3992
|
amount?: MultiCurrencyPrice$1;
|
|
3993
3993
|
/** App ID of the gift card provider. */
|
|
3994
3994
|
appId?: string;
|
|
3995
|
+
/**
|
|
3996
|
+
* External ID in the gift card provider's system.
|
|
3997
|
+
* Used for integration and tracking across different platforms.
|
|
3998
|
+
*/
|
|
3999
|
+
externalId?: string | null;
|
|
3995
4000
|
}
|
|
3996
4001
|
interface V1AppliedDiscount extends V1AppliedDiscountDiscountSourceOneOf {
|
|
3997
4002
|
/** Coupon details. */
|
|
@@ -3992,6 +3992,11 @@ interface GiftCard$1 {
|
|
|
3992
3992
|
amount?: MultiCurrencyPrice$1;
|
|
3993
3993
|
/** App ID of the gift card provider. */
|
|
3994
3994
|
appId?: string;
|
|
3995
|
+
/**
|
|
3996
|
+
* External ID in the gift card provider's system.
|
|
3997
|
+
* Used for integration and tracking across different platforms.
|
|
3998
|
+
*/
|
|
3999
|
+
externalId?: string | null;
|
|
3995
4000
|
}
|
|
3996
4001
|
interface V1AppliedDiscount extends V1AppliedDiscountDiscountSourceOneOf {
|
|
3997
4002
|
/** Coupon details. */
|