@wix/ecom 1.0.836 → 1.0.838
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.838",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -42,7 +42,7 @@
|
|
|
42
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.21",
|
|
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",
|
|
@@ -61,7 +61,7 @@
|
|
|
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",
|
|
64
|
-
"@wix/ecom_totals-calculator": "1.0.
|
|
64
|
+
"@wix/ecom_totals-calculator": "1.0.22",
|
|
65
65
|
"@wix/ecom_validations": "1.0.44"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"fqdn": ""
|
|
88
88
|
}
|
|
89
89
|
},
|
|
90
|
-
"falconPackageHash": "
|
|
90
|
+
"falconPackageHash": "8b1f268ea0ad8931e6769f15566ff36f9298bf7e05c7a1bf24aae5dd"
|
|
91
91
|
}
|
|
@@ -23438,6 +23438,8 @@ interface TimeWindow {
|
|
|
23438
23438
|
start?: TimeOfDay;
|
|
23439
23439
|
/** The end time in time of day representation. */
|
|
23440
23440
|
end?: TimeOfDay;
|
|
23441
|
+
/** Whether this timeWindow availability is enabled. */
|
|
23442
|
+
enabled?: boolean | null;
|
|
23441
23443
|
}
|
|
23442
23444
|
declare enum DayOfWeek {
|
|
23443
23445
|
/** Monday. */
|
|
@@ -35905,7 +35907,9 @@ declare enum RuleType$1 {
|
|
|
35905
35907
|
INVALID_ENUM_VALUE = "INVALID_ENUM_VALUE",
|
|
35906
35908
|
REQUIRED_FIELD = "REQUIRED_FIELD",
|
|
35907
35909
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
35908
|
-
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
|
|
35910
|
+
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
|
|
35911
|
+
EXACT_LENGTH = "EXACT_LENGTH",
|
|
35912
|
+
EXACT_SIZE = "EXACT_SIZE"
|
|
35909
35913
|
}
|
|
35910
35914
|
interface FieldViolation$1 {
|
|
35911
35915
|
field?: string;
|
|
@@ -23438,6 +23438,8 @@ interface TimeWindow {
|
|
|
23438
23438
|
start?: TimeOfDay;
|
|
23439
23439
|
/** The end time in time of day representation. */
|
|
23440
23440
|
end?: TimeOfDay;
|
|
23441
|
+
/** Whether this timeWindow availability is enabled. */
|
|
23442
|
+
enabled?: boolean | null;
|
|
23441
23443
|
}
|
|
23442
23444
|
declare enum DayOfWeek {
|
|
23443
23445
|
/** Monday. */
|
|
@@ -35905,7 +35907,9 @@ declare enum RuleType$1 {
|
|
|
35905
35907
|
INVALID_ENUM_VALUE = "INVALID_ENUM_VALUE",
|
|
35906
35908
|
REQUIRED_FIELD = "REQUIRED_FIELD",
|
|
35907
35909
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
35908
|
-
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
|
|
35910
|
+
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
|
|
35911
|
+
EXACT_LENGTH = "EXACT_LENGTH",
|
|
35912
|
+
EXACT_SIZE = "EXACT_SIZE"
|
|
35909
35913
|
}
|
|
35910
35914
|
interface FieldViolation$1 {
|
|
35911
35915
|
field?: string;
|
|
@@ -26967,6 +26967,8 @@ interface TimeWindow$1 {
|
|
|
26967
26967
|
start?: TimeOfDay$1;
|
|
26968
26968
|
/** The end time in time of day representation. */
|
|
26969
26969
|
end?: TimeOfDay$1;
|
|
26970
|
+
/** Whether this timeWindow availability is enabled. */
|
|
26971
|
+
enabled?: boolean | null;
|
|
26970
26972
|
}
|
|
26971
26973
|
declare enum DayOfWeek$1 {
|
|
26972
26974
|
/** Monday. */
|
|
@@ -27407,6 +27409,8 @@ interface TimeWindow {
|
|
|
27407
27409
|
start?: TimeOfDay;
|
|
27408
27410
|
/** The end time in time of day representation. */
|
|
27409
27411
|
end?: TimeOfDay;
|
|
27412
|
+
/** Whether this timeWindow availability is enabled. */
|
|
27413
|
+
enabled?: boolean | null;
|
|
27410
27414
|
}
|
|
27411
27415
|
declare enum DayOfWeek {
|
|
27412
27416
|
/** Monday. */
|
|
@@ -36746,7 +36750,9 @@ declare enum RuleType$3 {
|
|
|
36746
36750
|
INVALID_ENUM_VALUE = "INVALID_ENUM_VALUE",
|
|
36747
36751
|
REQUIRED_FIELD = "REQUIRED_FIELD",
|
|
36748
36752
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
36749
|
-
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
|
|
36753
|
+
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
|
|
36754
|
+
EXACT_LENGTH = "EXACT_LENGTH",
|
|
36755
|
+
EXACT_SIZE = "EXACT_SIZE"
|
|
36750
36756
|
}
|
|
36751
36757
|
interface FieldViolation$3 {
|
|
36752
36758
|
field?: string;
|
|
@@ -37887,7 +37893,9 @@ declare enum RuleType$2 {
|
|
|
37887
37893
|
INVALID_ENUM_VALUE = "INVALID_ENUM_VALUE",
|
|
37888
37894
|
REQUIRED_FIELD = "REQUIRED_FIELD",
|
|
37889
37895
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
37890
|
-
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
|
|
37896
|
+
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
|
|
37897
|
+
EXACT_LENGTH = "EXACT_LENGTH",
|
|
37898
|
+
EXACT_SIZE = "EXACT_SIZE"
|
|
37891
37899
|
}
|
|
37892
37900
|
interface FieldViolation$2 {
|
|
37893
37901
|
field?: string;
|