@wix/ecom 1.0.768 → 1.0.770
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.770",
|
|
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.27",
|
|
24
24
|
"@wix/ecom_back-in-stock-notifications": "1.0.51",
|
|
25
25
|
"@wix/ecom_back-in-stock-settings": "1.0.36",
|
|
26
|
-
"@wix/ecom_cart": "1.0.
|
|
26
|
+
"@wix/ecom_cart": "1.0.76",
|
|
27
27
|
"@wix/ecom_checkout": "1.0.86",
|
|
28
28
|
"@wix/ecom_checkout-content": "1.0.7",
|
|
29
29
|
"@wix/ecom_checkout-settings": "1.0.52",
|
|
30
30
|
"@wix/ecom_checkout-templates": "1.0.85",
|
|
31
31
|
"@wix/ecom_currencies": "1.0.37",
|
|
32
|
-
"@wix/ecom_current-cart": "1.0.
|
|
32
|
+
"@wix/ecom_current-cart": "1.0.76",
|
|
33
33
|
"@wix/ecom_custom-triggers": "1.0.25",
|
|
34
34
|
"@wix/ecom_delivery-profile": "1.0.20",
|
|
35
35
|
"@wix/ecom_discount-rules": "1.0.53",
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
"@wix/ecom_orders-settings": "1.0.46",
|
|
48
48
|
"@wix/ecom_payment-settings": "1.0.45",
|
|
49
49
|
"@wix/ecom_pickup-locations": "1.0.9",
|
|
50
|
-
"@wix/ecom_recommendations": "1.0.
|
|
51
|
-
"@wix/ecom_recommendations-provider": "1.0.
|
|
50
|
+
"@wix/ecom_recommendations": "1.0.42",
|
|
51
|
+
"@wix/ecom_recommendations-provider": "1.0.1",
|
|
52
52
|
"@wix/ecom_shipping-options": "1.0.8",
|
|
53
53
|
"@wix/ecom_shipping-rates": "1.0.43",
|
|
54
54
|
"@wix/ecom_shippo-configurations": "1.0.15",
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
"fqdn": ""
|
|
79
79
|
}
|
|
80
80
|
},
|
|
81
|
-
"falconPackageHash": "
|
|
81
|
+
"falconPackageHash": "0ceacb8d2894b0980401b71eacd600e354809872e95651096303daf2"
|
|
82
82
|
}
|
|
@@ -2020,7 +2020,7 @@ interface AlgorithmConfig {
|
|
|
2020
2020
|
*/
|
|
2021
2021
|
algorithmType?: AlgorithmType;
|
|
2022
2022
|
/** 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. */
|
|
2023
|
-
algorithmId?: string
|
|
2023
|
+
algorithmId?: string;
|
|
2024
2024
|
}
|
|
2025
2025
|
declare enum AlgorithmType {
|
|
2026
2026
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -2063,6 +2063,7 @@ interface AlgorithmConfigNonNullableFields {
|
|
|
2063
2063
|
name: string;
|
|
2064
2064
|
description: string;
|
|
2065
2065
|
algorithmType: AlgorithmType;
|
|
2066
|
+
algorithmId: string;
|
|
2066
2067
|
}
|
|
2067
2068
|
interface AlgorithmInfoNonNullableFields {
|
|
2068
2069
|
config?: AlgorithmConfigNonNullableFields;
|
|
@@ -4145,6 +4146,16 @@ interface LineItem$6 {
|
|
|
4145
4146
|
* @readonly
|
|
4146
4147
|
*/
|
|
4147
4148
|
consentRequiredPaymentPolicy?: string | null;
|
|
4149
|
+
/**
|
|
4150
|
+
* Whether the price is not yet defined, and will be updated after the order is created.
|
|
4151
|
+
* @readonly
|
|
4152
|
+
*/
|
|
4153
|
+
priceUndetermined?: boolean;
|
|
4154
|
+
/**
|
|
4155
|
+
* Whether the line item quantity is fixed and cannot be changed.
|
|
4156
|
+
* @readonly
|
|
4157
|
+
*/
|
|
4158
|
+
fixedQuantity?: boolean;
|
|
4148
4159
|
/**
|
|
4149
4160
|
* Overriding values for catalog item properties.
|
|
4150
4161
|
*
|
|
@@ -6783,6 +6794,16 @@ interface LineItem$5 {
|
|
|
6783
6794
|
* @readonly
|
|
6784
6795
|
*/
|
|
6785
6796
|
consentRequiredPaymentPolicy?: string | null;
|
|
6797
|
+
/**
|
|
6798
|
+
* Whether the price is not yet defined, and will be updated after the order is created.
|
|
6799
|
+
* @readonly
|
|
6800
|
+
*/
|
|
6801
|
+
priceUndetermined?: boolean;
|
|
6802
|
+
/**
|
|
6803
|
+
* Whether the line item quantity is fixed and cannot be changed.
|
|
6804
|
+
* @readonly
|
|
6805
|
+
*/
|
|
6806
|
+
fixedQuantity?: boolean;
|
|
6786
6807
|
/**
|
|
6787
6808
|
* Overriding values for catalog item properties.
|
|
6788
6809
|
*
|
|
@@ -2020,7 +2020,7 @@ interface AlgorithmConfig {
|
|
|
2020
2020
|
*/
|
|
2021
2021
|
algorithmType?: AlgorithmType;
|
|
2022
2022
|
/** 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. */
|
|
2023
|
-
algorithmId?: string
|
|
2023
|
+
algorithmId?: string;
|
|
2024
2024
|
}
|
|
2025
2025
|
declare enum AlgorithmType {
|
|
2026
2026
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -2063,6 +2063,7 @@ interface AlgorithmConfigNonNullableFields {
|
|
|
2063
2063
|
name: string;
|
|
2064
2064
|
description: string;
|
|
2065
2065
|
algorithmType: AlgorithmType;
|
|
2066
|
+
algorithmId: string;
|
|
2066
2067
|
}
|
|
2067
2068
|
interface AlgorithmInfoNonNullableFields {
|
|
2068
2069
|
config?: AlgorithmConfigNonNullableFields;
|
|
@@ -4145,6 +4146,16 @@ interface LineItem$6 {
|
|
|
4145
4146
|
* @readonly
|
|
4146
4147
|
*/
|
|
4147
4148
|
consentRequiredPaymentPolicy?: string | null;
|
|
4149
|
+
/**
|
|
4150
|
+
* Whether the price is not yet defined, and will be updated after the order is created.
|
|
4151
|
+
* @readonly
|
|
4152
|
+
*/
|
|
4153
|
+
priceUndetermined?: boolean;
|
|
4154
|
+
/**
|
|
4155
|
+
* Whether the line item quantity is fixed and cannot be changed.
|
|
4156
|
+
* @readonly
|
|
4157
|
+
*/
|
|
4158
|
+
fixedQuantity?: boolean;
|
|
4148
4159
|
/**
|
|
4149
4160
|
* Overriding values for catalog item properties.
|
|
4150
4161
|
*
|
|
@@ -6783,6 +6794,16 @@ interface LineItem$5 {
|
|
|
6783
6794
|
* @readonly
|
|
6784
6795
|
*/
|
|
6785
6796
|
consentRequiredPaymentPolicy?: string | null;
|
|
6797
|
+
/**
|
|
6798
|
+
* Whether the price is not yet defined, and will be updated after the order is created.
|
|
6799
|
+
* @readonly
|
|
6800
|
+
*/
|
|
6801
|
+
priceUndetermined?: boolean;
|
|
6802
|
+
/**
|
|
6803
|
+
* Whether the line item quantity is fixed and cannot be changed.
|
|
6804
|
+
* @readonly
|
|
6805
|
+
*/
|
|
6806
|
+
fixedQuantity?: boolean;
|
|
6786
6807
|
/**
|
|
6787
6808
|
* Overriding values for catalog item properties.
|
|
6788
6809
|
*
|
|
@@ -1265,7 +1265,7 @@ interface AlgorithmConfig$1 {
|
|
|
1265
1265
|
*/
|
|
1266
1266
|
algorithmType?: AlgorithmType$1;
|
|
1267
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
|
|
1268
|
+
algorithmId?: string;
|
|
1269
1269
|
}
|
|
1270
1270
|
declare enum AlgorithmType$1 {
|
|
1271
1271
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -1298,6 +1298,7 @@ interface AlgorithmConfigNonNullableFields$1 {
|
|
|
1298
1298
|
name: string;
|
|
1299
1299
|
description: string;
|
|
1300
1300
|
algorithmType: AlgorithmType$1;
|
|
1301
|
+
algorithmId: string;
|
|
1301
1302
|
}
|
|
1302
1303
|
interface AlgorithmInfoNonNullableFields$1 {
|
|
1303
1304
|
config?: AlgorithmConfigNonNullableFields$1;
|
|
@@ -1399,7 +1400,7 @@ interface AlgorithmConfig {
|
|
|
1399
1400
|
*/
|
|
1400
1401
|
algorithmType?: AlgorithmType;
|
|
1401
1402
|
/** 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
|
|
1403
|
+
algorithmId?: string;
|
|
1403
1404
|
}
|
|
1404
1405
|
declare enum AlgorithmType {
|
|
1405
1406
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -1432,6 +1433,7 @@ interface AlgorithmConfigNonNullableFields {
|
|
|
1432
1433
|
name: string;
|
|
1433
1434
|
description: string;
|
|
1434
1435
|
algorithmType: AlgorithmType;
|
|
1436
|
+
algorithmId: string;
|
|
1435
1437
|
}
|
|
1436
1438
|
interface AlgorithmInfoNonNullableFields {
|
|
1437
1439
|
config?: AlgorithmConfigNonNullableFields;
|
|
@@ -3064,6 +3066,16 @@ interface LineItem$7 {
|
|
|
3064
3066
|
* @readonly
|
|
3065
3067
|
*/
|
|
3066
3068
|
consentRequiredPaymentPolicy?: string | null;
|
|
3069
|
+
/**
|
|
3070
|
+
* Whether the price is not yet defined, and will be updated after the order is created.
|
|
3071
|
+
* @readonly
|
|
3072
|
+
*/
|
|
3073
|
+
priceUndetermined?: boolean;
|
|
3074
|
+
/**
|
|
3075
|
+
* Whether the line item quantity is fixed and cannot be changed.
|
|
3076
|
+
* @readonly
|
|
3077
|
+
*/
|
|
3078
|
+
fixedQuantity?: boolean;
|
|
3067
3079
|
/**
|
|
3068
3080
|
* Overriding values for catalog item properties.
|
|
3069
3081
|
*
|
|
@@ -5030,6 +5042,16 @@ interface LineItem$6 {
|
|
|
5030
5042
|
* @readonly
|
|
5031
5043
|
*/
|
|
5032
5044
|
consentRequiredPaymentPolicy?: string | null;
|
|
5045
|
+
/**
|
|
5046
|
+
* Whether the price is not yet defined, and will be updated after the order is created.
|
|
5047
|
+
* @readonly
|
|
5048
|
+
*/
|
|
5049
|
+
priceUndetermined?: boolean;
|
|
5050
|
+
/**
|
|
5051
|
+
* Whether the line item quantity is fixed and cannot be changed.
|
|
5052
|
+
* @readonly
|
|
5053
|
+
*/
|
|
5054
|
+
fixedQuantity?: boolean;
|
|
5033
5055
|
/**
|
|
5034
5056
|
* Overriding values for catalog item properties.
|
|
5035
5057
|
*
|
|
@@ -6976,6 +6998,16 @@ interface LineItem$5 {
|
|
|
6976
6998
|
* @readonly
|
|
6977
6999
|
*/
|
|
6978
7000
|
consentRequiredPaymentPolicy?: string | null;
|
|
7001
|
+
/**
|
|
7002
|
+
* Whether the price is not yet defined, and will be updated after the order is created.
|
|
7003
|
+
* @readonly
|
|
7004
|
+
*/
|
|
7005
|
+
priceUndetermined?: boolean;
|
|
7006
|
+
/**
|
|
7007
|
+
* Whether the line item quantity is fixed and cannot be changed.
|
|
7008
|
+
* @readonly
|
|
7009
|
+
*/
|
|
7010
|
+
fixedQuantity?: boolean;
|
|
6979
7011
|
/**
|
|
6980
7012
|
* Overriding values for catalog item properties.
|
|
6981
7013
|
*
|
|
@@ -8902,6 +8934,16 @@ interface LineItem$4 {
|
|
|
8902
8934
|
* @readonly
|
|
8903
8935
|
*/
|
|
8904
8936
|
consentRequiredPaymentPolicy?: string | null;
|
|
8937
|
+
/**
|
|
8938
|
+
* Whether the price is not yet defined, and will be updated after the order is created.
|
|
8939
|
+
* @readonly
|
|
8940
|
+
*/
|
|
8941
|
+
priceUndetermined?: boolean;
|
|
8942
|
+
/**
|
|
8943
|
+
* Whether the line item quantity is fixed and cannot be changed.
|
|
8944
|
+
* @readonly
|
|
8945
|
+
*/
|
|
8946
|
+
fixedQuantity?: boolean;
|
|
8905
8947
|
/**
|
|
8906
8948
|
* Overriding values for catalog item properties.
|
|
8907
8949
|
*
|
|
@@ -458,7 +458,7 @@ interface AlgorithmConfig {
|
|
|
458
458
|
*/
|
|
459
459
|
algorithmType?: AlgorithmType;
|
|
460
460
|
/** 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. */
|
|
461
|
-
algorithmId?: string
|
|
461
|
+
algorithmId?: string;
|
|
462
462
|
}
|
|
463
463
|
declare enum AlgorithmType {
|
|
464
464
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -458,7 +458,7 @@ interface AlgorithmConfig {
|
|
|
458
458
|
*/
|
|
459
459
|
algorithmType?: AlgorithmType;
|
|
460
460
|
/** 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. */
|
|
461
|
-
algorithmId?: string
|
|
461
|
+
algorithmId?: string;
|
|
462
462
|
}
|
|
463
463
|
declare enum AlgorithmType {
|
|
464
464
|
UNSPECIFIED = "UNSPECIFIED",
|