@ikas/storefront-config 5.0.0-beta.27 → 5.0.0-beta.29
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 +2 -2
package/build/index.d.ts
CHANGED
|
@@ -85,12 +85,12 @@ export declare class IkasStorefrontConfig {
|
|
|
85
85
|
static getDefaultCurrencySymbol(): string | null | undefined;
|
|
86
86
|
static getCustom(): Record<string, any> | null | undefined;
|
|
87
87
|
}
|
|
88
|
-
export
|
|
88
|
+
export type IkasStorefrontConfigObserver = {
|
|
89
89
|
id: string;
|
|
90
90
|
callback: (config: IkasStorefrontConfig) => void;
|
|
91
91
|
};
|
|
92
|
-
export
|
|
93
|
-
export
|
|
92
|
+
export type LoginRequiredCallbackType = () => Promise<void> | void;
|
|
93
|
+
export type IkasStorefrontConfigParams = {
|
|
94
94
|
themeId?: string;
|
|
95
95
|
apiUrl?: string;
|
|
96
96
|
cdnUrl?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ikas/storefront-config",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.29",
|
|
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
|
"author": "ikas",
|
|
18
18
|
"license": "ISC",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@ikas/storefront-models": "^5.0.0-beta.
|
|
20
|
+
"@ikas/storefront-models": "^5.0.0-beta.29"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"typescript": "^4.7.2"
|