@ikas/storefront-config 6.1.0-beta.22 → 6.1.0-beta.221
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 +8 -1
- package/build/index.js +1 -1
- package/package.json +3 -3
package/build/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IkasCustomerReviewSettings, IkasCustomerSettings, IkasIndexPageSeoSetting, IkasMerchantSettings, IkasProductBackInStockSettings, IkasSalesChannelPaymentGateway, IkasStorefontMetaTemplates, IkasStorefrontB2BSettings, IkasStorefrontRouting, IkasStorefrontType, IkasThemeJsonFavicon, IkasThemeJsonStockPreference, IkasStorefrontPopup } from "@ikas/storefront-models";
|
|
1
|
+
import { IkasCustomerReviewSettings, IkasCustomerSettings, IkasIndexPageSeoSetting, IkasMerchantSettings, IkasProductBackInStockSettings, IkasSalesChannelPaymentGateway, IkasStorefontMetaTemplates, IkasStorefrontB2BSettings, IkasStorefrontRouting, IkasStorefrontType, IkasThemeJsonFavicon, IkasThemeJsonStockPreference, IkasStorefrontPopup, IkasLoyaltyProgram } from "@ikas/storefront-models";
|
|
2
2
|
export declare class IkasStorefrontConfig {
|
|
3
3
|
private static themeId?;
|
|
4
4
|
private static apiUrl?;
|
|
@@ -38,7 +38,9 @@ export declare class IkasStorefrontConfig {
|
|
|
38
38
|
private static custom?;
|
|
39
39
|
private static indexPageSeoSettings?;
|
|
40
40
|
private static storefrontPopups;
|
|
41
|
+
private static loyaltyPrograms;
|
|
41
42
|
private static sessionId?;
|
|
43
|
+
private static journeyId?;
|
|
42
44
|
private static visitorId?;
|
|
43
45
|
private static observers;
|
|
44
46
|
static addObserver(observer: IkasStorefrontConfigObserver): void;
|
|
@@ -88,6 +90,7 @@ export declare class IkasStorefrontConfig {
|
|
|
88
90
|
static getIsEditor(): boolean;
|
|
89
91
|
static getSessionId(): string | undefined;
|
|
90
92
|
static getVisitorId(): string | undefined;
|
|
93
|
+
static getJourneyId(): string | undefined;
|
|
91
94
|
static getCustomerSettings(): IkasCustomerSettings | undefined;
|
|
92
95
|
static getMetaTemplates(): IkasStorefontMetaTemplates[] | null;
|
|
93
96
|
static getDefaultCurrencyCode(): string | null | undefined;
|
|
@@ -95,6 +98,8 @@ export declare class IkasStorefrontConfig {
|
|
|
95
98
|
static getCustom(): Record<string, any> | null | undefined;
|
|
96
99
|
static getIndexPageSeoSettings(): IkasIndexPageSeoSetting[] | null | undefined;
|
|
97
100
|
static getStorefrontPopups(): IkasStorefrontPopup[];
|
|
101
|
+
static getLoyaltyPrograms(): IkasLoyaltyProgram[];
|
|
102
|
+
static getIsLosslessImageEnabled(): any;
|
|
98
103
|
}
|
|
99
104
|
export declare type IkasStorefrontConfigObserver = {
|
|
100
105
|
id: string;
|
|
@@ -139,8 +144,10 @@ export declare type IkasStorefrontConfigParams = {
|
|
|
139
144
|
customerSettings?: IkasCustomerSettings;
|
|
140
145
|
sessionId?: string;
|
|
141
146
|
visitorId?: string;
|
|
147
|
+
journeyId?: string;
|
|
142
148
|
metaTemplates: IkasStorefontMetaTemplates[] | null;
|
|
143
149
|
custom?: Record<string, any> | null;
|
|
144
150
|
indexPageSeoSettings?: IkasIndexPageSeoSetting[] | null;
|
|
145
151
|
storefrontPopups: IkasStorefrontPopup[];
|
|
152
|
+
loyaltyPrograms: IkasLoyaltyProgram[];
|
|
146
153
|
};
|
package/build/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{__awaiter as t,__assign as n,__generator as e}from"./_virtual/_tslib.js";import{IkasStorefrontType as r}from"@ikas/storefront-models";var o=function(){function o(){}return o.addObserver=function(t){var n=o.observers.find((function(n){return n.id===t.id}));n?n.callback=t.callback:o.observers.push(t),t.callback(o)},o.init=function(t){try{var n=["themeSecret"];Object.entries(t).forEach((function(t){var e=t[0],r=t[1];n.includes(e)||(o[e]=r)})),t.token&&(o.apiKey=t.token),this.notify()}catch(t){console.error(t)}},o.initFromAPI=function(n){return t(this,void 0,void 0,(function(){return e(this,(function(t){return[2]}))}))},o.getCurrentRouting=function(){return o.routings.find((function(t){return t.id===o.storefrontRoutingId}))},o.getCurrentLocale=function(){var t=o.getCurrentRouting();return(null==t?void 0:t.locale)||"en"},o.notify=function(){var t=this;this.observers.forEach((function(n){return n.callback(t)}))},o.isCustomerReviewEnabled=function(){var t=o.getCustomerReviewSettings();return!!t&&!t.customerPurchaseRequired},o.isCustomerReviewLoginRequired=function(){var t=o.getCustomerReviewSettings();return!t||t.customerLoginRequired},o.isBackInStockEnabled=function(){return!!o.getProductBackInStockSettings()},o.isCustomerLoginRequiredForBackInStock=function(){var t=o.getProductBackInStockSettings();return t&&t.customerLoginRequired},o.toJSON=function(){var t=n({},this);return delete t.observers,t},o.getThemeId=function(){return o.themeId},o.getApiUrl=function(){return o.apiUrl},o.getCdnUrl=function(){return o.cdnUrl},o.getApiKey=function(){return o.apiKey},o.getCustomerToken=function(){return o.customerToken},o.getStorefrontId=function(){return o.storefrontId},o.getStorefrontRoutingId=function(){return o.storefrontRoutingId},o.getStorefrontType=function(){return o.storefrontType},o.getStorefrontB2BSettings=function(){return o.storefrontB2BSettings},o.isB2BStorefront=function(){return o.storefrontType===r.B2B_STOREFRONT},o.getPriceListId=function(){return o.priceListId},o.getStockLocationIds=function(){return o.stockLocationIds},o.getLoginRequiredCallback=function(){return o.loginRequiredCallback},o.getDomain=function(){return o.domain},o.getStorefrontThemeId=function(){return o.storefrontThemeId},o.getSalesChannelId=function(){return o.salesChannelId},o.getRoutings=function(){return o.routings},o.getPaymentGateways=function(){return o.paymentGateways},o.getGtmId=function(){return o.gtmId},o.getFbpId=function(){return o.fbpId},o.getAnalytics4Id=function(){return o.analytics4Id},o.getUniversalAnalyticsId=function(){return o.universalAnalyticsId},o.getPickupStockLocationIds=function(){return o.pickUpStockLocationIds},o.getTiktokPixelId=function(){return o.tiktokPixelId},o.getFavicon=function(){return o.favicon},o.getStockPreference=function(){return o.stockPreference},o.getTranslations=function(){return o.translations},o.getStorefrontJSScripts=function(){return o.storefrontJSScripts},o.getHighPriorityStorefrontJSScripts=function(){return o.highPriorityStoreFrontJSScripts||[]},o.getCustomerReviewSettings=function(){return o.customerReviewSettings},o.getProductBackInStockSettings=function(){return o.productBackInStockSettings},o.getMerchantSettings=function(){return o.merchantSettings},o.getCurrentPageComponents=function(){return o.currentPageComponents},o.getIsEditor=function(){return o.isEditor},o.getSessionId=function(){return o.sessionId},o.getVisitorId=function(){return o.visitorId},o.getCustomerSettings=function(){return o.customerSettings},o.getMetaTemplates=function(){return o.metaTemplates},o.getDefaultCurrencyCode=function(){var t;return null===(t=o.getCurrentRouting())||void 0===t?void 0:t.currencyCode},o.getDefaultCurrencySymbol=function(){var t;return null===(t=o.getCurrentRouting())||void 0===t?void 0:t.currencySymbol},o.getCustom=function(){return this.custom},o.getIndexPageSeoSettings=function(){return o.indexPageSeoSettings},o.getStorefrontPopups=function(){return this.storefrontPopups},o.routings=[],o.paymentGateways=[],o.translations={},o.storefrontJSScripts=[],o.highPriorityStoreFrontJSScripts=[],o.isEditor=!1,o.observers=[],o}();export{o as IkasStorefrontConfig};
|
|
1
|
+
import{__awaiter as t,__assign as n,__generator as e}from"./_virtual/_tslib.js";import{IkasStorefrontType as r}from"@ikas/storefront-models";var o=function(){function o(){}return o.addObserver=function(t){var n=o.observers.find((function(n){return n.id===t.id}));n?n.callback=t.callback:o.observers.push(t),t.callback(o)},o.init=function(t){try{var n=["themeSecret"];Object.entries(t).forEach((function(t){var e=t[0],r=t[1];n.includes(e)||(o[e]=r)})),t.token&&(o.apiKey=t.token),this.notify()}catch(t){console.error(t)}},o.initFromAPI=function(n){return t(this,void 0,void 0,(function(){return e(this,(function(t){return[2]}))}))},o.getCurrentRouting=function(){return o.routings.find((function(t){return t.id===o.storefrontRoutingId}))},o.getCurrentLocale=function(){var t=o.getCurrentRouting();return(null==t?void 0:t.locale)||"en"},o.notify=function(){var t=this;this.observers.forEach((function(n){return n.callback(t)}))},o.isCustomerReviewEnabled=function(){var t=o.getCustomerReviewSettings();return!!t&&!t.customerPurchaseRequired},o.isCustomerReviewLoginRequired=function(){var t=o.getCustomerReviewSettings();return!t||t.customerLoginRequired},o.isBackInStockEnabled=function(){return!!o.getProductBackInStockSettings()},o.isCustomerLoginRequiredForBackInStock=function(){var t=o.getProductBackInStockSettings();return t&&t.customerLoginRequired},o.toJSON=function(){var t=n({},this);return delete t.observers,t},o.getThemeId=function(){return o.themeId},o.getApiUrl=function(){return o.apiUrl},o.getCdnUrl=function(){return o.cdnUrl},o.getApiKey=function(){return o.apiKey},o.getCustomerToken=function(){return o.customerToken},o.getStorefrontId=function(){return o.storefrontId},o.getStorefrontRoutingId=function(){return o.storefrontRoutingId},o.getStorefrontType=function(){return o.storefrontType},o.getStorefrontB2BSettings=function(){return o.storefrontB2BSettings},o.isB2BStorefront=function(){return o.storefrontType===r.B2B_STOREFRONT},o.getPriceListId=function(){return o.priceListId},o.getStockLocationIds=function(){return o.stockLocationIds},o.getLoginRequiredCallback=function(){return o.loginRequiredCallback},o.getDomain=function(){return o.domain},o.getStorefrontThemeId=function(){return o.storefrontThemeId},o.getSalesChannelId=function(){return o.salesChannelId},o.getRoutings=function(){return o.routings},o.getPaymentGateways=function(){return o.paymentGateways},o.getGtmId=function(){return o.gtmId},o.getFbpId=function(){return o.fbpId},o.getAnalytics4Id=function(){return o.analytics4Id},o.getUniversalAnalyticsId=function(){return o.universalAnalyticsId},o.getPickupStockLocationIds=function(){return o.pickUpStockLocationIds},o.getTiktokPixelId=function(){return o.tiktokPixelId},o.getFavicon=function(){return o.favicon},o.getStockPreference=function(){return o.stockPreference},o.getTranslations=function(){return o.translations},o.getStorefrontJSScripts=function(){return o.storefrontJSScripts},o.getHighPriorityStorefrontJSScripts=function(){return o.highPriorityStoreFrontJSScripts||[]},o.getCustomerReviewSettings=function(){return o.customerReviewSettings},o.getProductBackInStockSettings=function(){return o.productBackInStockSettings},o.getMerchantSettings=function(){return o.merchantSettings},o.getCurrentPageComponents=function(){return o.currentPageComponents},o.getIsEditor=function(){return o.isEditor},o.getSessionId=function(){return o.sessionId},o.getVisitorId=function(){return o.visitorId},o.getJourneyId=function(){return o.journeyId},o.getCustomerSettings=function(){return o.customerSettings},o.getMetaTemplates=function(){return o.metaTemplates},o.getDefaultCurrencyCode=function(){var t;return null===(t=o.getCurrentRouting())||void 0===t?void 0:t.currencyCode},o.getDefaultCurrencySymbol=function(){var t;return null===(t=o.getCurrentRouting())||void 0===t?void 0:t.currencySymbol},o.getCustom=function(){return this.custom},o.getIndexPageSeoSettings=function(){return o.indexPageSeoSettings},o.getStorefrontPopups=function(){return this.storefrontPopups},o.getLoyaltyPrograms=function(){return this.loyaltyPrograms},o.getIsLosslessImageEnabled=function(){var t;return null===(t=o.custom)||void 0===t?void 0:t.lossless},o.routings=[],o.paymentGateways=[],o.translations={},o.storefrontJSScripts=[],o.highPriorityStoreFrontJSScripts=[],o.isEditor=!1,o.observers=[],o}();export{o as IkasStorefrontConfig};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ikas/storefront-config",
|
|
3
|
-
"version": "6.1.0-beta.
|
|
3
|
+
"version": "6.1.0-beta.221",
|
|
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": "^6.1.0-beta.
|
|
20
|
+
"@ikas/storefront-models": "^6.1.0-beta.221",
|
|
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": "^6.1.0-beta.
|
|
30
|
+
"@ikas/storefront-models": "^6.1.0-beta.221"
|
|
31
31
|
}
|
|
32
32
|
}
|