@ikas/storefront-api 4.12.0-beta.1 → 4.12.0-beta.2
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.
|
@@ -60,7 +60,7 @@ export declare function getCustomer(): Promise<APIResponse<{
|
|
|
60
60
|
createdAt: any;
|
|
61
61
|
customerGroupIds: string[] | null;
|
|
62
62
|
customerSequence: number | null;
|
|
63
|
-
deleted: boolean;
|
|
63
|
+
deleted: boolean | null;
|
|
64
64
|
email: string | null;
|
|
65
65
|
emailVerifiedDate: any;
|
|
66
66
|
firstName: string;
|
|
@@ -75,8 +75,6 @@ export declare function getCustomer(): Promise<APIResponse<{
|
|
|
75
75
|
phone: string | null;
|
|
76
76
|
phoneVerifiedDate: any;
|
|
77
77
|
preferredLanguage: string | null;
|
|
78
|
-
priceListId: string | null;
|
|
79
|
-
priceListRules: import("../../__api/types").CustomerPriceListRule[] | null;
|
|
80
78
|
registrationSource: import("../../__api/types").CustomerRegistrationSourceEnum | null;
|
|
81
79
|
subscriptionStatus: import("../../__api/types").CustomerEmailSubscriptionStatusesEnum | null;
|
|
82
80
|
subscriptionStatusUpdatedAt: any;
|
|
@@ -92,7 +90,7 @@ export declare function saveCustomer(params: SaveMyCustomerQueryParams): Promise
|
|
|
92
90
|
createdAt: any;
|
|
93
91
|
customerGroupIds: string[] | null;
|
|
94
92
|
customerSequence: number | null;
|
|
95
|
-
deleted: boolean;
|
|
93
|
+
deleted: boolean | null;
|
|
96
94
|
email: string | null;
|
|
97
95
|
emailVerifiedDate: any;
|
|
98
96
|
firstName: string;
|
|
@@ -107,8 +105,6 @@ export declare function saveCustomer(params: SaveMyCustomerQueryParams): Promise
|
|
|
107
105
|
phone: string | null;
|
|
108
106
|
phoneVerifiedDate: any;
|
|
109
107
|
preferredLanguage: string | null;
|
|
110
|
-
priceListId: string | null;
|
|
111
|
-
priceListRules: import("../../__api/types").CustomerPriceListRule[] | null;
|
|
112
108
|
registrationSource: import("../../__api/types").CustomerRegistrationSourceEnum | null;
|
|
113
109
|
subscriptionStatus: import("../../__api/types").CustomerEmailSubscriptionStatusesEnum | null;
|
|
114
110
|
subscriptionStatusUpdatedAt: any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ikas/storefront-api",
|
|
3
|
-
"version": "4.12.0-beta.
|
|
3
|
+
"version": "4.12.0-beta.2",
|
|
4
4
|
"author": "ikas",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"description": "API functions that returns models from the ikas-storefront-models package.",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@rollup/plugin-commonjs": "^22.0.0",
|
|
20
|
-
"@ikas/storefront-config": "^4.12.0-beta.
|
|
21
|
-
"@ikas/storefront-models": "^4.12.0-beta.
|
|
20
|
+
"@ikas/storefront-config": "^4.12.0-beta.2",
|
|
21
|
+
"@ikas/storefront-models": "^4.12.0-beta.2",
|
|
22
22
|
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
23
23
|
"rollup-plugin-rename-node-modules": "^1.2.0",
|
|
24
24
|
"prettier": "^2.2.1",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"@ikas/fe-api-client": "^1.0.19"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
|
-
"@ikas/storefront-config": "^4.12.0-beta.
|
|
38
|
-
"@ikas/storefront-models": "^4.12.0-beta.
|
|
37
|
+
"@ikas/storefront-config": "^4.12.0-beta.2",
|
|
38
|
+
"@ikas/storefront-models": "^4.12.0-beta.2",
|
|
39
39
|
"@ikas/fe-api-client": "^1.0.18",
|
|
40
40
|
"axios": "^0.26.0",
|
|
41
41
|
"ts-essentials": "^7.0.1"
|