ingeniuscliq-core 0.3.47 → 0.4.0
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/dist/i18n/config.d.ts +8 -0
- package/dist/index.js +4405 -4212
- package/dist/modules/CoreOrder/classes/CoreOrderBuilder.d.ts +1 -1
- package/dist/modules/CoreOrder/types/CoreOrder.d.ts +2 -1
- package/dist/modules/CoreOrder/types/interfaces/OrderActions.d.ts +2 -1
- package/dist/modules/CorePayForm/types/CorePayForm.d.ts +2 -1
- package/dist/modules/CoreProduct/classes/CoreProductBuilder.d.ts +2 -2
- package/dist/modules/CoreProduct/types/CoreProduct.d.ts +8 -1
- package/dist/modules/CoreShipment/classes/CoreShipmentBuilder.d.ts +14 -12
- package/dist/modules/CoreShipment/services/base.d.ts +7 -2
- package/dist/modules/CoreShipment/types/CoreShipment.d.ts +24 -5
- package/package.json +1 -1
package/dist/i18n/config.d.ts
CHANGED
|
@@ -42,6 +42,9 @@ export declare const resources: {
|
|
|
42
42
|
email: string;
|
|
43
43
|
password: string;
|
|
44
44
|
password_confirmation: string;
|
|
45
|
+
currentPassword: string;
|
|
46
|
+
newPassword: string;
|
|
47
|
+
retypeNewPassword: string;
|
|
45
48
|
phone: string;
|
|
46
49
|
address: string;
|
|
47
50
|
note: string;
|
|
@@ -49,6 +52,7 @@ export declare const resources: {
|
|
|
49
52
|
customer_email: string;
|
|
50
53
|
customer_phone: string;
|
|
51
54
|
customer_address: string;
|
|
55
|
+
is_default: string;
|
|
52
56
|
};
|
|
53
57
|
readonly menu: {
|
|
54
58
|
store: string;
|
|
@@ -105,6 +109,9 @@ export declare const resources: {
|
|
|
105
109
|
email: string;
|
|
106
110
|
password: string;
|
|
107
111
|
password_confirmation: string;
|
|
112
|
+
currentPassword: string;
|
|
113
|
+
newPassword: string;
|
|
114
|
+
retypeNewPassword: string;
|
|
108
115
|
phone: string;
|
|
109
116
|
address: string;
|
|
110
117
|
note: string;
|
|
@@ -112,6 +119,7 @@ export declare const resources: {
|
|
|
112
119
|
customer_email: string;
|
|
113
120
|
customer_phone: string;
|
|
114
121
|
customer_address: string;
|
|
122
|
+
is_default: string;
|
|
115
123
|
};
|
|
116
124
|
readonly menu: {
|
|
117
125
|
store: string;
|