@ikas/storefront-config 4.0.0-alpha.69 → 4.0.0-alpha.70
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/build/index.d.ts +3 -3
- package/package.json +3 -3
package/build/index.d.ts
CHANGED
|
@@ -31,7 +31,7 @@ export declare class IkasStorefrontConfig {
|
|
|
31
31
|
private static merchantSettings?;
|
|
32
32
|
private static currentPageComponents?;
|
|
33
33
|
private static isEditor;
|
|
34
|
-
private static customerSettings
|
|
34
|
+
private static customerSettings?;
|
|
35
35
|
private static sessionId?;
|
|
36
36
|
private static visitorId?;
|
|
37
37
|
private static observers;
|
|
@@ -79,7 +79,7 @@ export declare class IkasStorefrontConfig {
|
|
|
79
79
|
static getIsEditor(): boolean;
|
|
80
80
|
static getSessionId(): string | undefined;
|
|
81
81
|
static getVisitorId(): string | undefined;
|
|
82
|
-
static getCustomerSettings(): IkasCustomerSettings;
|
|
82
|
+
static getCustomerSettings(): IkasCustomerSettings | undefined;
|
|
83
83
|
}
|
|
84
84
|
export declare type IkasStorefrontConfigObserver = {
|
|
85
85
|
id: string;
|
|
@@ -119,7 +119,7 @@ export declare type IkasStorefrontConfigParams = {
|
|
|
119
119
|
merchantSettings?: IkasMerchantSettings | null;
|
|
120
120
|
currentPageComponents?: Record<string, any>;
|
|
121
121
|
isEditor: boolean;
|
|
122
|
-
customerSettings
|
|
122
|
+
customerSettings?: IkasCustomerSettings;
|
|
123
123
|
sessionId?: string;
|
|
124
124
|
visitorId?: string;
|
|
125
125
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ikas/storefront-config",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.70",
|
|
4
4
|
"description": "Common configuration for ikas storefront packages.",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"module": "./build/index.js",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"license": "ISC",
|
|
18
18
|
"dependencies": {},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@ikas/storefront-models": "^4.0.0-alpha.
|
|
20
|
+
"@ikas/storefront-models": "^4.0.0-alpha.70",
|
|
21
21
|
"prettier": "^2.2.1",
|
|
22
22
|
"rollup": "^2.75.6",
|
|
23
23
|
"rollup-plugin-terser": "^7.0.2",
|
|
@@ -27,6 +27,6 @@
|
|
|
27
27
|
"typescript-transform-paths": "^2.2.2"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@ikas/storefront-models": "^4.0.0-alpha.
|
|
30
|
+
"@ikas/storefront-models": "^4.0.0-alpha.70"
|
|
31
31
|
}
|
|
32
32
|
}
|