@ikas/storefront 0.0.166-alpha.1 → 0.0.166-alpha.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.
package/build/index.es.js
CHANGED
|
@@ -22677,7 +22677,7 @@ var IkasCartStore = /** @class */ (function () {
|
|
|
22677
22677
|
Object.defineProperty(IkasCartStore.prototype, "checkoutUrl", {
|
|
22678
22678
|
get: function () {
|
|
22679
22679
|
if (this._checkoutId)
|
|
22680
|
-
return "/checkout
|
|
22680
|
+
return "/checkout?id=" + this._checkoutId + "&step=info";
|
|
22681
22681
|
},
|
|
22682
22682
|
enumerable: false,
|
|
22683
22683
|
configurable: true
|
|
@@ -22803,7 +22803,7 @@ var MAX_CVC_LENGTH = 4;
|
|
|
22803
22803
|
var USE_DIFFERENT_ADDRESS_KEY = "sAddr";
|
|
22804
22804
|
var isServer$1 = typeof localStorage === "undefined";
|
|
22805
22805
|
var CheckoutViewModel = /** @class */ (function () {
|
|
22806
|
-
function CheckoutViewModel(checkout, checkoutSettings,
|
|
22806
|
+
function CheckoutViewModel(checkout, checkoutSettings, router, returnPolicy, privacyPolicy, termsOfService, t) {
|
|
22807
22807
|
var _this = this;
|
|
22808
22808
|
this.checkout = new IkasCheckout();
|
|
22809
22809
|
this.checkoutSettings = new IkasCheckoutSettings();
|
|
@@ -22828,7 +22828,7 @@ var CheckoutViewModel = /** @class */ (function () {
|
|
|
22828
22828
|
this.policyModalText = "";
|
|
22829
22829
|
this.error = null;
|
|
22830
22830
|
this.customerConsentGranted = false;
|
|
22831
|
-
this.init = function (
|
|
22831
|
+
this.init = function () { return __awaiter(_this, void 0, void 0, function () {
|
|
22832
22832
|
return __generator(this, function (_a) {
|
|
22833
22833
|
switch (_a.label) {
|
|
22834
22834
|
case 0: return [4 /*yield*/, this.store.customerStore.waitUntilInitialized()];
|
|
@@ -22840,15 +22840,15 @@ var CheckoutViewModel = /** @class */ (function () {
|
|
|
22840
22840
|
return [4 /*yield*/, this.getMerchantSettings()];
|
|
22841
22841
|
case 2:
|
|
22842
22842
|
_a.sent();
|
|
22843
|
-
return [4 /*yield*/, this.initStep(
|
|
22843
|
+
return [4 /*yield*/, this.initStep()];
|
|
22844
22844
|
case 3:
|
|
22845
22845
|
_a.sent();
|
|
22846
22846
|
return [2 /*return*/];
|
|
22847
22847
|
}
|
|
22848
22848
|
});
|
|
22849
22849
|
}); };
|
|
22850
|
-
this.initStep = function (
|
|
22851
|
-
var _a, transactions, paymentGatewayId_1;
|
|
22850
|
+
this.initStep = function () { return __awaiter(_this, void 0, void 0, function () {
|
|
22851
|
+
var queryParams, queryStep, queryFailed, queryError, _a, transactions, paymentGatewayId_1;
|
|
22852
22852
|
return __generator(this, function (_b) {
|
|
22853
22853
|
switch (_b.label) {
|
|
22854
22854
|
case 0:
|
|
@@ -22857,8 +22857,12 @@ var CheckoutViewModel = /** @class */ (function () {
|
|
|
22857
22857
|
this.isCheckoutLoaded = true;
|
|
22858
22858
|
return [2 /*return*/];
|
|
22859
22859
|
}
|
|
22860
|
-
|
|
22861
|
-
|
|
22860
|
+
queryParams = new URLSearchParams(window.location.search);
|
|
22861
|
+
queryStep = queryParams.get("step");
|
|
22862
|
+
queryFailed = queryParams.get("failed");
|
|
22863
|
+
queryError = queryParams.get("error");
|
|
22864
|
+
if (queryStep) {
|
|
22865
|
+
this.step = queryStep;
|
|
22862
22866
|
if (this.step === CheckoutStep.SHIPPING && !this.canProceedToShipping) {
|
|
22863
22867
|
this.changeStep(CheckoutStep.INFO);
|
|
22864
22868
|
return [2 /*return*/];
|
|
@@ -22878,10 +22882,10 @@ var CheckoutViewModel = /** @class */ (function () {
|
|
|
22878
22882
|
return [2 /*return*/];
|
|
22879
22883
|
}
|
|
22880
22884
|
}
|
|
22881
|
-
if (
|
|
22885
|
+
if (queryFailed) {
|
|
22882
22886
|
this.error = {
|
|
22883
22887
|
type: ErrorType.PAYMENT_ERROR,
|
|
22884
|
-
data:
|
|
22888
|
+
data: queryError || null,
|
|
22885
22889
|
};
|
|
22886
22890
|
}
|
|
22887
22891
|
if (!(this.step === CheckoutStep.INFO)) return [3 /*break*/, 2];
|
|
@@ -22895,7 +22899,7 @@ var CheckoutViewModel = /** @class */ (function () {
|
|
|
22895
22899
|
if (this.step === CheckoutStep.SHIPPING &&
|
|
22896
22900
|
this.checkout.availableShippingMethods.length === 1) {
|
|
22897
22901
|
this.step = CheckoutStep.PAYMENT;
|
|
22898
|
-
this.router.replace("/checkout
|
|
22902
|
+
this.router.replace("/checkout?id=" + this.checkout.id + "&step=" + this.step, undefined, {
|
|
22899
22903
|
shallow: true,
|
|
22900
22904
|
});
|
|
22901
22905
|
}
|
|
@@ -23602,7 +23606,7 @@ var CheckoutViewModel = /** @class */ (function () {
|
|
|
23602
23606
|
switch (_a.label) {
|
|
23603
23607
|
case 0:
|
|
23604
23608
|
if (!!isServer$1) return [3 /*break*/, 2];
|
|
23605
|
-
return [4 /*yield*/, this.router.replace("/checkout
|
|
23609
|
+
return [4 /*yield*/, this.router.replace("/checkout?id=" + this.checkout.id + "&step=" + step)];
|
|
23606
23610
|
case 1:
|
|
23607
23611
|
_a.sent();
|
|
23608
23612
|
this.router.reload();
|
|
@@ -23642,7 +23646,7 @@ var CheckoutViewModel = /** @class */ (function () {
|
|
|
23642
23646
|
this.t = t;
|
|
23643
23647
|
this.isTermsAndConditionsChecked = this.checkoutSettings.isTermsAndConditionsDefaultChecked;
|
|
23644
23648
|
this.store.cartStore.cart = this.checkout.cart;
|
|
23645
|
-
this.init(
|
|
23649
|
+
this.init();
|
|
23646
23650
|
makeAutoObservable(this);
|
|
23647
23651
|
}
|
|
23648
23652
|
Object.defineProperty(CheckoutViewModel.prototype, "cart", {
|
|
@@ -23671,7 +23675,7 @@ var CheckoutViewModel = /** @class */ (function () {
|
|
|
23671
23675
|
});
|
|
23672
23676
|
Object.defineProperty(CheckoutViewModel.prototype, "checkoutUrl", {
|
|
23673
23677
|
get: function () {
|
|
23674
|
-
return "/checkout
|
|
23678
|
+
return "/checkout?id=" + this.checkout.id + "&step=info";
|
|
23675
23679
|
},
|
|
23676
23680
|
enumerable: false,
|
|
23677
23681
|
configurable: true
|
|
@@ -61624,11 +61628,11 @@ var FullscreenLoading = function () {
|
|
|
61624
61628
|
|
|
61625
61629
|
var IkasCheckoutPage = function (_a) {
|
|
61626
61630
|
var _b, _c, _d;
|
|
61627
|
-
var checkout = _a.checkout, checkoutSettings = _a.checkoutSettings, customizationProps = _a.customizationProps, returnPolicy = _a.returnPolicy, privacyPolicy = _a.privacyPolicy, termsOfService = _a.termsOfService
|
|
61631
|
+
var checkout = _a.checkout, checkoutSettings = _a.checkoutSettings, customizationProps = _a.customizationProps, returnPolicy = _a.returnPolicy, privacyPolicy = _a.privacyPolicy, termsOfService = _a.termsOfService;
|
|
61628
61632
|
var t = useTranslation().t;
|
|
61629
61633
|
var router = useRouter();
|
|
61630
61634
|
var vm = useState(function () {
|
|
61631
|
-
return new CheckoutViewModel(checkout, checkoutSettings,
|
|
61635
|
+
return new CheckoutViewModel(checkout, checkoutSettings, router, returnPolicy, privacyPolicy, termsOfService, t);
|
|
61632
61636
|
})[0];
|
|
61633
61637
|
if (vm.step === CheckoutStep.PAYMENT) {
|
|
61634
61638
|
Analytics.disableHTML();
|
|
@@ -62113,16 +62117,16 @@ var SettingsHelper = /** @class */ (function () {
|
|
|
62113
62117
|
}); });
|
|
62114
62118
|
};
|
|
62115
62119
|
SettingsHelper.getPageData = function (context, isServer, pageType, possiblePageTypes, isEditor) {
|
|
62116
|
-
var _a;
|
|
62120
|
+
var _a, _b;
|
|
62117
62121
|
return __awaiter(this, void 0, void 0, function () {
|
|
62118
|
-
var isLocal, isProdEditor, serverRuntimeConfig, locale, settings, storefront, themeLocalization, salesChannel, routing, favicon, stockPreference, provider, componentIds_1, components, componentDirs, nextI18nConf, currentLocale, i18nReader, translations;
|
|
62119
|
-
return __generator(this, function (
|
|
62120
|
-
switch (
|
|
62122
|
+
var isLocal, isProdEditor, serverRuntimeConfig, locale, settings, storefront, themeLocalization, salesChannel, routing, favicon, stockPreference, provider, componentIds_1, components, componentDirs, nextI18nConf, currentLocale, i18nReader, translations, extraProps, checkoutComponent, checkoutSettings, customizationProps;
|
|
62123
|
+
return __generator(this, function (_c) {
|
|
62124
|
+
switch (_c.label) {
|
|
62121
62125
|
case 0:
|
|
62122
62126
|
isLocal = process.env.NEXT_PUBLIC_ENV === "local";
|
|
62123
62127
|
isProdEditor = !isLocal && isEditor;
|
|
62124
62128
|
serverRuntimeConfig = getConfig().serverRuntimeConfig;
|
|
62125
|
-
if (!!isProdEditor) return [3 /*break*/,
|
|
62129
|
+
if (!!isProdEditor) return [3 /*break*/, 7];
|
|
62126
62130
|
locale = context.locale;
|
|
62127
62131
|
if (!locale) {
|
|
62128
62132
|
return [2 /*return*/, {
|
|
@@ -62132,7 +62136,7 @@ var SettingsHelper = /** @class */ (function () {
|
|
|
62132
62136
|
}
|
|
62133
62137
|
return [4 /*yield*/, SettingsHelper.getSettings(locale)];
|
|
62134
62138
|
case 1:
|
|
62135
|
-
settings =
|
|
62139
|
+
settings = _c.sent();
|
|
62136
62140
|
if (!settings ||
|
|
62137
62141
|
!settings.storefront.mainStorefrontThemeId ||
|
|
62138
62142
|
!settings.storefront.salesChannelId) {
|
|
@@ -62159,14 +62163,14 @@ var SettingsHelper = /** @class */ (function () {
|
|
|
62159
62163
|
if (!!isEditor) return [3 /*break*/, 3];
|
|
62160
62164
|
return [4 /*yield*/, provider.getPageData()];
|
|
62161
62165
|
case 2:
|
|
62162
|
-
|
|
62166
|
+
_c.sent();
|
|
62163
62167
|
if (!provider.page) {
|
|
62164
62168
|
return [2 /*return*/, {
|
|
62165
62169
|
props: {},
|
|
62166
62170
|
notFound: true,
|
|
62167
62171
|
}];
|
|
62168
62172
|
}
|
|
62169
|
-
|
|
62173
|
+
_c.label = 3;
|
|
62170
62174
|
case 3:
|
|
62171
62175
|
componentIds_1 = isEditor
|
|
62172
62176
|
? provider.theme.components.map(function (c) { return c.id; })
|
|
@@ -62181,21 +62185,54 @@ var SettingsHelper = /** @class */ (function () {
|
|
|
62181
62185
|
i18nReader = new I18NFileReader(currentLocale, componentDirs, isLocal ? undefined : nextI18nConf.localePath);
|
|
62182
62186
|
return [4 /*yield*/, i18nReader.read()];
|
|
62183
62187
|
case 4:
|
|
62184
|
-
translations =
|
|
62188
|
+
translations = _c.sent();
|
|
62185
62189
|
IkasStorefrontConfig.translations = translations;
|
|
62190
|
+
extraProps = {};
|
|
62191
|
+
if (!(pageType === IkasThemePageType.CHECKOUT)) return [3 /*break*/, 6];
|
|
62192
|
+
checkoutComponent = (_b = provider.page) === null || _b === void 0 ? void 0 : _b.components[0];
|
|
62193
|
+
if (!checkoutComponent) return [3 /*break*/, 6];
|
|
62194
|
+
return [4 /*yield*/, IkasCheckoutAPI.listCheckoutSettings()];
|
|
62195
|
+
case 5:
|
|
62196
|
+
checkoutSettings = _c.sent();
|
|
62197
|
+
customizationProps = {
|
|
62198
|
+
buttonBgColor: checkoutComponent.propValues["buttonBgColor"],
|
|
62199
|
+
buttonTextColor: checkoutComponent.propValues["buttonTextColor"],
|
|
62200
|
+
buttonDisabledBgColor: checkoutComponent.propValues["buttonDisabledBgColor"],
|
|
62201
|
+
buttonDisabledTextColor: checkoutComponent.propValues["buttonDisabledTextColor"],
|
|
62202
|
+
primaryTextColor: checkoutComponent.propValues["primaryTextColor"],
|
|
62203
|
+
secondaryTextColor: checkoutComponent.propValues["secondaryTextColor"],
|
|
62204
|
+
primaryBgColor: checkoutComponent.propValues["primaryBgColor"],
|
|
62205
|
+
secondaryBgColor: checkoutComponent.propValues["secondaryBgColor"],
|
|
62206
|
+
borderColor: checkoutComponent.propValues["borderColor"],
|
|
62207
|
+
cardBgColor: checkoutComponent.propValues["cardBgColor"],
|
|
62208
|
+
errorColor: checkoutComponent.propValues["errorColor"],
|
|
62209
|
+
errorLightColor: checkoutComponent.propValues["errorLightColor"],
|
|
62210
|
+
warningColor: checkoutComponent.propValues["warningColor"],
|
|
62211
|
+
warningLightColor: checkoutComponent.propValues["warningLightColor"],
|
|
62212
|
+
successColor: checkoutComponent.propValues["successColor"],
|
|
62213
|
+
successLightColor: checkoutComponent.propValues["successLightColor"],
|
|
62214
|
+
};
|
|
62215
|
+
extraProps.customizationProps = customizationProps;
|
|
62216
|
+
extraProps.returnPolicy = themeLocalization.returnPolicy;
|
|
62217
|
+
extraProps.privacyPolicy = themeLocalization.privacyPolicy;
|
|
62218
|
+
extraProps.termsOfService = themeLocalization.termsOfService;
|
|
62219
|
+
extraProps.checkoutSettingsStr = (checkoutSettings === null || checkoutSettings === void 0 ? void 0 : checkoutSettings.length) ? JSON.stringify(checkoutSettings[0])
|
|
62220
|
+
: null;
|
|
62221
|
+
_c.label = 6;
|
|
62222
|
+
case 6:
|
|
62186
62223
|
if (isServer)
|
|
62187
62224
|
return [2 /*return*/, {
|
|
62188
|
-
props: provider.nextPageData.props,
|
|
62225
|
+
props: __assign(__assign({}, provider.nextPageData.props), extraProps),
|
|
62189
62226
|
}];
|
|
62190
62227
|
else
|
|
62191
62228
|
return [2 /*return*/, {
|
|
62192
|
-
props: provider.nextPageData.props,
|
|
62229
|
+
props: __assign(__assign({}, provider.nextPageData.props), extraProps),
|
|
62193
62230
|
revalidate: 60,
|
|
62194
62231
|
}];
|
|
62195
|
-
case
|
|
62232
|
+
case 7: return [2 /*return*/, {
|
|
62196
62233
|
props: {},
|
|
62197
62234
|
}];
|
|
62198
|
-
case
|
|
62235
|
+
case 8: return [2 /*return*/];
|
|
62199
62236
|
}
|
|
62200
62237
|
});
|
|
62201
62238
|
});
|
|
@@ -62391,14 +62428,16 @@ var _slug_ = /*#__PURE__*/Object.freeze({
|
|
|
62391
62428
|
});
|
|
62392
62429
|
|
|
62393
62430
|
var CheckoutPage = function (_a) {
|
|
62394
|
-
var
|
|
62431
|
+
var checkoutSettingsStr = _a.checkoutSettingsStr, customizationProps = _a.customizationProps, configJson = _a.configJson, others = __rest(_a, ["checkoutSettingsStr", "customizationProps", "configJson"]);
|
|
62395
62432
|
var router = useRouter();
|
|
62396
62433
|
var _b = useState(), checkout = _b[0], setCheckout = _b[1];
|
|
62397
62434
|
IkasStorefrontConfig.initWithJson(configJson);
|
|
62398
62435
|
var store = IkasStorefrontConfig.store;
|
|
62399
|
-
var checkoutSettings =
|
|
62400
|
-
|
|
62401
|
-
|
|
62436
|
+
var checkoutSettings = useMemo(function () {
|
|
62437
|
+
return checkoutSettingsStr
|
|
62438
|
+
? new IkasCheckoutSettings(JSON.parse(checkoutSettingsStr))
|
|
62439
|
+
: new IkasCheckoutSettings();
|
|
62440
|
+
}, [checkoutSettingsStr]);
|
|
62402
62441
|
useEffect(function () {
|
|
62403
62442
|
document.documentElement.style.setProperty("--checkout-button-bg-color", (customizationProps === null || customizationProps === void 0 ? void 0 : customizationProps.buttonBgColor) || "#272727");
|
|
62404
62443
|
document.documentElement.style.setProperty("--checkout-button-text-color", (customizationProps === null || customizationProps === void 0 ? void 0 : customizationProps.buttonTextColor) || "#FFFFFF");
|
|
@@ -62422,10 +62461,16 @@ var CheckoutPage = function (_a) {
|
|
|
62422
62461
|
getCheckout();
|
|
62423
62462
|
}, []);
|
|
62424
62463
|
var getCheckout = useCallback(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
62425
|
-
var checkout;
|
|
62464
|
+
var urlParams, checkoutId, checkout;
|
|
62426
62465
|
return __generator(this, function (_a) {
|
|
62427
62466
|
switch (_a.label) {
|
|
62428
|
-
case 0:
|
|
62467
|
+
case 0:
|
|
62468
|
+
urlParams = new URLSearchParams(window.location.search);
|
|
62469
|
+
checkoutId = urlParams.get("id");
|
|
62470
|
+
if (!checkoutId) {
|
|
62471
|
+
return [2 /*return*/, router.replace("/")];
|
|
62472
|
+
}
|
|
62473
|
+
return [4 /*yield*/, IkasCheckoutAPI.getCheckoutById(checkoutId)];
|
|
62429
62474
|
case 1:
|
|
62430
62475
|
checkout = _a.sent();
|
|
62431
62476
|
if (checkout) {
|
|
@@ -62437,107 +62482,25 @@ var CheckoutPage = function (_a) {
|
|
|
62437
62482
|
return [2 /*return*/];
|
|
62438
62483
|
}
|
|
62439
62484
|
});
|
|
62440
|
-
}); }, [
|
|
62485
|
+
}); }, []);
|
|
62441
62486
|
if (!checkout)
|
|
62442
62487
|
return createElement(FullscreenLoading, null);
|
|
62443
62488
|
return (createElement(IkasCheckoutPage$1, __assign({ checkout: checkout, checkoutSettings: checkoutSettings, customizationProps: customizationProps }, others)));
|
|
62444
62489
|
};
|
|
62445
|
-
var
|
|
62446
|
-
var
|
|
62447
|
-
|
|
62448
|
-
|
|
62449
|
-
|
|
62450
|
-
|
|
62451
|
-
case 0:
|
|
62452
|
-
id = context.query.id;
|
|
62453
|
-
locale = context.locale || context.defaultLocale || "en";
|
|
62454
|
-
return [4 /*yield*/, SettingsHelper.getSettings(locale)];
|
|
62455
|
-
case 1:
|
|
62456
|
-
settings = _b.sent();
|
|
62457
|
-
if (!settings ||
|
|
62458
|
-
!settings.storefront.mainStorefrontThemeId ||
|
|
62459
|
-
!settings.storefront.salesChannelId) {
|
|
62460
|
-
return [2 /*return*/, {
|
|
62461
|
-
props: {},
|
|
62462
|
-
notFound: true,
|
|
62463
|
-
}];
|
|
62464
|
-
}
|
|
62465
|
-
storefront = settings.storefront, themeLocalization = settings.themeLocalization, salesChannel = settings.salesChannel, routing = settings.routing;
|
|
62466
|
-
IkasStorefrontConfig.storefrontId = storefront.id;
|
|
62467
|
-
IkasStorefrontConfig.storefrontRoutingId = routing.id;
|
|
62468
|
-
IkasStorefrontConfig.storefrontThemeId = storefront.mainStorefrontThemeId;
|
|
62469
|
-
IkasStorefrontConfig.salesChannelId = storefront.salesChannelId;
|
|
62470
|
-
IkasStorefrontConfig.priceListId = routing.priceListId || undefined;
|
|
62471
|
-
IkasStorefrontConfig.stockLocationIds = (_a = salesChannel.stockLocations) === null || _a === void 0 ? void 0 : _a.map(function (sl) { return sl.id; });
|
|
62472
|
-
IkasStorefrontConfig.routings = storefront.routings;
|
|
62473
|
-
IkasStorefrontConfig.paymentGateways = salesChannel.paymentGateways || [];
|
|
62474
|
-
IkasStorefrontConfig.gtmId = storefront.gtmId || undefined;
|
|
62475
|
-
IkasStorefrontConfig.fbpId = storefront.fbpId || undefined;
|
|
62476
|
-
IkasStorefrontConfig.favicon = themeLocalization.themeJson.settings.favicon;
|
|
62477
|
-
redirect = function () {
|
|
62478
|
-
context.res.writeHead(302, { Location: "/" });
|
|
62479
|
-
context.res.end();
|
|
62480
|
-
return { props: {} };
|
|
62481
|
-
};
|
|
62482
|
-
if (!id || typeof id !== "string") {
|
|
62483
|
-
return [2 /*return*/, redirect()];
|
|
62484
|
-
}
|
|
62485
|
-
return [4 /*yield*/, IkasCheckoutAPI.listCheckoutSettings()];
|
|
62486
|
-
case 2:
|
|
62487
|
-
checkoutSettings = _b.sent();
|
|
62488
|
-
componentDirs = ["common", CHECKOUT_TRANSLATION_NAMESPACE];
|
|
62489
|
-
isLocal = process.env.NEXT_PUBLIC_ENV === "local";
|
|
62490
|
-
serverRuntimeConfig = getConfig().serverRuntimeConfig;
|
|
62491
|
-
currentLocale = routing.locale;
|
|
62492
|
-
nextI18nConf = serverRuntimeConfig.nextI18nConf;
|
|
62493
|
-
i18nReader = new I18NFileReader(currentLocale, componentDirs, isLocal ? undefined : nextI18nConf.localePath);
|
|
62494
|
-
return [4 /*yield*/, i18nReader.read()];
|
|
62495
|
-
case 3:
|
|
62496
|
-
translations = _b.sent();
|
|
62497
|
-
IkasStorefrontConfig.translations = translations;
|
|
62498
|
-
checkoutPage = themeLocalization.themeJson.pages.find(function (p) { return p.type === IkasThemePageType.CHECKOUT; });
|
|
62499
|
-
if (!checkoutPage)
|
|
62500
|
-
return [2 /*return*/, redirect()];
|
|
62501
|
-
checkoutComponent = checkoutPage.components[0];
|
|
62502
|
-
customizationProps = {
|
|
62503
|
-
buttonBgColor: checkoutComponent.propValues["buttonBgColor"],
|
|
62504
|
-
buttonTextColor: checkoutComponent.propValues["buttonTextColor"],
|
|
62505
|
-
buttonDisabledBgColor: checkoutComponent.propValues["buttonDisabledBgColor"],
|
|
62506
|
-
buttonDisabledTextColor: checkoutComponent.propValues["buttonDisabledTextColor"],
|
|
62507
|
-
primaryTextColor: checkoutComponent.propValues["primaryTextColor"],
|
|
62508
|
-
secondaryTextColor: checkoutComponent.propValues["secondaryTextColor"],
|
|
62509
|
-
primaryBgColor: checkoutComponent.propValues["primaryBgColor"],
|
|
62510
|
-
secondaryBgColor: checkoutComponent.propValues["secondaryBgColor"],
|
|
62511
|
-
borderColor: checkoutComponent.propValues["borderColor"],
|
|
62512
|
-
cardBgColor: checkoutComponent.propValues["cardBgColor"],
|
|
62513
|
-
errorColor: checkoutComponent.propValues["errorColor"],
|
|
62514
|
-
errorLightColor: checkoutComponent.propValues["errorLightColor"],
|
|
62515
|
-
warningColor: checkoutComponent.propValues["warningColor"],
|
|
62516
|
-
warningLightColor: checkoutComponent.propValues["warningLightColor"],
|
|
62517
|
-
successColor: checkoutComponent.propValues["successColor"],
|
|
62518
|
-
successLightColor: checkoutComponent.propValues["successLightColor"],
|
|
62519
|
-
};
|
|
62520
|
-
return [2 /*return*/, {
|
|
62521
|
-
props: {
|
|
62522
|
-
checkoutId: id,
|
|
62523
|
-
checkoutSettingsStr: (checkoutSettings === null || checkoutSettings === void 0 ? void 0 : checkoutSettings.length) ? JSON.stringify(checkoutSettings[0])
|
|
62524
|
-
: null,
|
|
62525
|
-
customizationProps: customizationProps,
|
|
62526
|
-
configJson: IkasStorefrontConfig.getJson(),
|
|
62527
|
-
returnPolicy: themeLocalization.returnPolicy || "",
|
|
62528
|
-
privacyPolicy: themeLocalization.privacyPolicy || "",
|
|
62529
|
-
termsOfService: themeLocalization.termsOfService || "",
|
|
62530
|
-
queryParams: context.query,
|
|
62531
|
-
},
|
|
62532
|
-
}];
|
|
62490
|
+
var checkout = observer(CheckoutPage);
|
|
62491
|
+
var getStaticProps$3 = function (context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
62492
|
+
return __generator(this, function (_a) {
|
|
62493
|
+
switch (_a.label) {
|
|
62494
|
+
case 0: return [4 /*yield*/, SettingsHelper.getStaticProps(context, IkasThemePageType.CHECKOUT)];
|
|
62495
|
+
case 1: return [2 /*return*/, _a.sent()];
|
|
62533
62496
|
}
|
|
62534
62497
|
});
|
|
62535
62498
|
}); };
|
|
62536
62499
|
|
|
62537
|
-
var
|
|
62500
|
+
var checkout$1 = /*#__PURE__*/Object.freeze({
|
|
62538
62501
|
__proto__: null,
|
|
62539
|
-
'default':
|
|
62540
|
-
|
|
62502
|
+
'default': checkout,
|
|
62503
|
+
getStaticProps: getStaticProps$3
|
|
62541
62504
|
});
|
|
62542
62505
|
|
|
62543
62506
|
var Page$3 = function (_a) {
|
|
@@ -62549,7 +62512,7 @@ var Page$3 = function (_a) {
|
|
|
62549
62512
|
}, [propValuesStr]);
|
|
62550
62513
|
return (createElement(IkasPage, { settingsStr: settingsStr, page: page, propValues: propValues }));
|
|
62551
62514
|
};
|
|
62552
|
-
var getStaticProps$
|
|
62515
|
+
var getStaticProps$4 = function (context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
62553
62516
|
return __generator(this, function (_a) {
|
|
62554
62517
|
switch (_a.label) {
|
|
62555
62518
|
case 0: return [4 /*yield*/, SettingsHelper.getStaticProps(context, IkasThemePageType.ACCOUNT)];
|
|
@@ -62561,7 +62524,7 @@ var getStaticProps$3 = function (context) { return __awaiter(void 0, void 0, voi
|
|
|
62561
62524
|
var index$3 = /*#__PURE__*/Object.freeze({
|
|
62562
62525
|
__proto__: null,
|
|
62563
62526
|
'default': Page$3,
|
|
62564
|
-
getStaticProps: getStaticProps$
|
|
62527
|
+
getStaticProps: getStaticProps$4
|
|
62565
62528
|
});
|
|
62566
62529
|
|
|
62567
62530
|
var Page$4 = function (_a) {
|
|
@@ -62573,7 +62536,7 @@ var Page$4 = function (_a) {
|
|
|
62573
62536
|
}, [propValuesStr]);
|
|
62574
62537
|
return (createElement(IkasPage, { settingsStr: settingsStr, page: page, propValues: propValues }));
|
|
62575
62538
|
};
|
|
62576
|
-
var getStaticProps$
|
|
62539
|
+
var getStaticProps$5 = function (context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
62577
62540
|
return __generator(this, function (_a) {
|
|
62578
62541
|
switch (_a.label) {
|
|
62579
62542
|
case 0: return [4 /*yield*/, SettingsHelper.getStaticProps(context, IkasThemePageType.ADDRESSES)];
|
|
@@ -62585,7 +62548,7 @@ var getStaticProps$4 = function (context) { return __awaiter(void 0, void 0, voi
|
|
|
62585
62548
|
var addresses = /*#__PURE__*/Object.freeze({
|
|
62586
62549
|
__proto__: null,
|
|
62587
62550
|
'default': Page$4,
|
|
62588
|
-
getStaticProps: getStaticProps$
|
|
62551
|
+
getStaticProps: getStaticProps$5
|
|
62589
62552
|
});
|
|
62590
62553
|
|
|
62591
62554
|
var Page$5 = function (_a) {
|
|
@@ -62597,7 +62560,7 @@ var Page$5 = function (_a) {
|
|
|
62597
62560
|
}, [propValuesStr]);
|
|
62598
62561
|
return (createElement(IkasPage, { settingsStr: settingsStr, page: page, propValues: propValues }));
|
|
62599
62562
|
};
|
|
62600
|
-
var getStaticProps$
|
|
62563
|
+
var getStaticProps$6 = function (context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
62601
62564
|
return __generator(this, function (_a) {
|
|
62602
62565
|
switch (_a.label) {
|
|
62603
62566
|
case 0: return [4 /*yield*/, SettingsHelper.getStaticProps(context, IkasThemePageType.ORDERS)];
|
|
@@ -62609,7 +62572,7 @@ var getStaticProps$5 = function (context) { return __awaiter(void 0, void 0, voi
|
|
|
62609
62572
|
var index$4 = /*#__PURE__*/Object.freeze({
|
|
62610
62573
|
__proto__: null,
|
|
62611
62574
|
'default': Page$5,
|
|
62612
|
-
getStaticProps: getStaticProps$
|
|
62575
|
+
getStaticProps: getStaticProps$6
|
|
62613
62576
|
});
|
|
62614
62577
|
|
|
62615
62578
|
var Page$6 = function (_a) {
|
|
@@ -62621,7 +62584,7 @@ var Page$6 = function (_a) {
|
|
|
62621
62584
|
}, [propValuesStr]);
|
|
62622
62585
|
return (createElement(IkasPage, { settingsStr: settingsStr, page: page, propValues: propValues }));
|
|
62623
62586
|
};
|
|
62624
|
-
var getServerSideProps
|
|
62587
|
+
var getServerSideProps = function (context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
62625
62588
|
return __generator(this, function (_a) {
|
|
62626
62589
|
switch (_a.label) {
|
|
62627
62590
|
case 0: return [4 /*yield*/, SettingsHelper.getServerSideProps(context, IkasThemePageType.ORDER_DETAIL)];
|
|
@@ -62630,10 +62593,10 @@ var getServerSideProps$1 = function (context) { return __awaiter(void 0, void 0,
|
|
|
62630
62593
|
});
|
|
62631
62594
|
}); };
|
|
62632
62595
|
|
|
62633
|
-
var _id_
|
|
62596
|
+
var _id_ = /*#__PURE__*/Object.freeze({
|
|
62634
62597
|
__proto__: null,
|
|
62635
62598
|
'default': Page$6,
|
|
62636
|
-
getServerSideProps: getServerSideProps
|
|
62599
|
+
getServerSideProps: getServerSideProps
|
|
62637
62600
|
});
|
|
62638
62601
|
|
|
62639
62602
|
var Page$7 = function (_a) {
|
|
@@ -62645,7 +62608,7 @@ var Page$7 = function (_a) {
|
|
|
62645
62608
|
}, [propValuesStr]);
|
|
62646
62609
|
return (createElement(IkasPage, { merchantSettings: merchantSettings, settingsStr: settingsStr, page: page, propValues: propValues }));
|
|
62647
62610
|
};
|
|
62648
|
-
var getStaticProps$
|
|
62611
|
+
var getStaticProps$7 = function (context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
62649
62612
|
return __generator(this, function (_a) {
|
|
62650
62613
|
switch (_a.label) {
|
|
62651
62614
|
case 0: return [4 /*yield*/, SettingsHelper.getStaticProps(context, IkasThemePageType.LOGIN)];
|
|
@@ -62657,7 +62620,7 @@ var getStaticProps$6 = function (context) { return __awaiter(void 0, void 0, voi
|
|
|
62657
62620
|
var login = /*#__PURE__*/Object.freeze({
|
|
62658
62621
|
__proto__: null,
|
|
62659
62622
|
'default': Page$7,
|
|
62660
|
-
getStaticProps: getStaticProps$
|
|
62623
|
+
getStaticProps: getStaticProps$7
|
|
62661
62624
|
});
|
|
62662
62625
|
|
|
62663
62626
|
var Page$8 = function (_a) {
|
|
@@ -62669,7 +62632,7 @@ var Page$8 = function (_a) {
|
|
|
62669
62632
|
}, [propValuesStr]);
|
|
62670
62633
|
return (createElement(IkasPage, { merchantSettings: merchantSettings, settingsStr: settingsStr, page: page, propValues: propValues }));
|
|
62671
62634
|
};
|
|
62672
|
-
var getStaticProps$
|
|
62635
|
+
var getStaticProps$8 = function (context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
62673
62636
|
return __generator(this, function (_a) {
|
|
62674
62637
|
switch (_a.label) {
|
|
62675
62638
|
case 0: return [4 /*yield*/, SettingsHelper.getStaticProps(context, IkasThemePageType.REGISTER)];
|
|
@@ -62681,7 +62644,7 @@ var getStaticProps$7 = function (context) { return __awaiter(void 0, void 0, voi
|
|
|
62681
62644
|
var register = /*#__PURE__*/Object.freeze({
|
|
62682
62645
|
__proto__: null,
|
|
62683
62646
|
'default': Page$8,
|
|
62684
|
-
getStaticProps: getStaticProps$
|
|
62647
|
+
getStaticProps: getStaticProps$8
|
|
62685
62648
|
});
|
|
62686
62649
|
|
|
62687
62650
|
var Page$9 = function (_a) {
|
|
@@ -62693,7 +62656,7 @@ var Page$9 = function (_a) {
|
|
|
62693
62656
|
}, [propValuesStr]);
|
|
62694
62657
|
return (createElement(IkasPage, { merchantSettings: merchantSettings, settingsStr: settingsStr, page: page, propValues: propValues }));
|
|
62695
62658
|
};
|
|
62696
|
-
var getStaticProps$
|
|
62659
|
+
var getStaticProps$9 = function (context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
62697
62660
|
return __generator(this, function (_a) {
|
|
62698
62661
|
switch (_a.label) {
|
|
62699
62662
|
case 0: return [4 /*yield*/, SettingsHelper.getStaticProps(context, IkasThemePageType.FORGOT_PASSWORD)];
|
|
@@ -62705,7 +62668,7 @@ var getStaticProps$8 = function (context) { return __awaiter(void 0, void 0, voi
|
|
|
62705
62668
|
var forgotPassword = /*#__PURE__*/Object.freeze({
|
|
62706
62669
|
__proto__: null,
|
|
62707
62670
|
'default': Page$9,
|
|
62708
|
-
getStaticProps: getStaticProps$
|
|
62671
|
+
getStaticProps: getStaticProps$9
|
|
62709
62672
|
});
|
|
62710
62673
|
|
|
62711
62674
|
var Page$a = function (_a) {
|
|
@@ -62717,7 +62680,7 @@ var Page$a = function (_a) {
|
|
|
62717
62680
|
}, [propValuesStr]);
|
|
62718
62681
|
return (createElement(IkasPage, { merchantSettings: merchantSettings, settingsStr: settingsStr, page: page, propValues: propValues }));
|
|
62719
62682
|
};
|
|
62720
|
-
var getStaticProps$
|
|
62683
|
+
var getStaticProps$a = function (context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
62721
62684
|
return __generator(this, function (_a) {
|
|
62722
62685
|
switch (_a.label) {
|
|
62723
62686
|
case 0: return [4 /*yield*/, SettingsHelper.getStaticProps(context, IkasThemePageType.RECOVER_PASSWORD)];
|
|
@@ -62729,7 +62692,7 @@ var getStaticProps$9 = function (context) { return __awaiter(void 0, void 0, voi
|
|
|
62729
62692
|
var recoverPassword = /*#__PURE__*/Object.freeze({
|
|
62730
62693
|
__proto__: null,
|
|
62731
62694
|
'default': Page$a,
|
|
62732
|
-
getStaticProps: getStaticProps$
|
|
62695
|
+
getStaticProps: getStaticProps$a
|
|
62733
62696
|
});
|
|
62734
62697
|
|
|
62735
62698
|
var Page$b = function (_a) {
|
|
@@ -62745,7 +62708,7 @@ var Page$b = function (_a) {
|
|
|
62745
62708
|
}, []);
|
|
62746
62709
|
return (createElement(IkasPage, { settingsStr: settingsStr, page: page, propValues: propValues }));
|
|
62747
62710
|
};
|
|
62748
|
-
var getStaticProps$
|
|
62711
|
+
var getStaticProps$b = function (context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
62749
62712
|
return __generator(this, function (_a) {
|
|
62750
62713
|
switch (_a.label) {
|
|
62751
62714
|
case 0: return [4 /*yield*/, SettingsHelper.getStaticProps(context, IkasThemePageType.CART)];
|
|
@@ -62757,7 +62720,7 @@ var getStaticProps$a = function (context) { return __awaiter(void 0, void 0, voi
|
|
|
62757
62720
|
var cart = /*#__PURE__*/Object.freeze({
|
|
62758
62721
|
__proto__: null,
|
|
62759
62722
|
'default': Page$b,
|
|
62760
|
-
getStaticProps: getStaticProps$
|
|
62723
|
+
getStaticProps: getStaticProps$b
|
|
62761
62724
|
});
|
|
62762
62725
|
|
|
62763
62726
|
var IkasPageEditor$1 = dynamic(function () { return Promise.resolve().then(function () { return index; }).then(function (mod) { return mod.IkasPageEditor; }); }, { ssr: false });
|
|
@@ -62768,7 +62731,7 @@ var Page$c = function (_a) {
|
|
|
62768
62731
|
}
|
|
62769
62732
|
return createElement(IkasPageEditor$1, null);
|
|
62770
62733
|
};
|
|
62771
|
-
var getStaticProps$
|
|
62734
|
+
var getStaticProps$c = function (context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
62772
62735
|
return __generator(this, function (_a) {
|
|
62773
62736
|
switch (_a.label) {
|
|
62774
62737
|
case 0: return [4 /*yield*/, SettingsHelper.getStaticProps(context, undefined, undefined, true)];
|
|
@@ -62780,7 +62743,7 @@ var editor = observer(Page$c);
|
|
|
62780
62743
|
|
|
62781
62744
|
var editor$1 = /*#__PURE__*/Object.freeze({
|
|
62782
62745
|
__proto__: null,
|
|
62783
|
-
getStaticProps: getStaticProps$
|
|
62746
|
+
getStaticProps: getStaticProps$c,
|
|
62784
62747
|
'default': editor
|
|
62785
62748
|
});
|
|
62786
62749
|
|
|
@@ -62793,7 +62756,7 @@ var Page$d = function (_a) {
|
|
|
62793
62756
|
}, [propValuesStr]);
|
|
62794
62757
|
return (createElement(IkasPage, { settingsStr: settingsStr, page: page, propValues: propValues }));
|
|
62795
62758
|
};
|
|
62796
|
-
var getStaticProps$
|
|
62759
|
+
var getStaticProps$d = function (context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
62797
62760
|
return __generator(this, function (_a) {
|
|
62798
62761
|
switch (_a.label) {
|
|
62799
62762
|
case 0: return [4 /*yield*/, SettingsHelper.getStaticProps(context, IkasThemePageType.FAVORITE_PRODUCTS)];
|
|
@@ -62805,7 +62768,7 @@ var getStaticProps$c = function (context) { return __awaiter(void 0, void 0, voi
|
|
|
62805
62768
|
var favoriteProducts = /*#__PURE__*/Object.freeze({
|
|
62806
62769
|
__proto__: null,
|
|
62807
62770
|
'default': Page$d,
|
|
62808
|
-
getStaticProps: getStaticProps$
|
|
62771
|
+
getStaticProps: getStaticProps$d
|
|
62809
62772
|
});
|
|
62810
62773
|
|
|
62811
62774
|
var Page$e = function (_a) {
|
|
@@ -62825,7 +62788,7 @@ var Page$e = function (_a) {
|
|
|
62825
62788
|
}, [isBrowser, propValuesStr]);
|
|
62826
62789
|
return (createElement(IkasPage, { merchantSettings: merchantSettings, settingsStr: settingsStr, page: page, propValues: propValues, addOgpMetas: true }));
|
|
62827
62790
|
};
|
|
62828
|
-
var getStaticProps$
|
|
62791
|
+
var getStaticProps$e = function (context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
62829
62792
|
return __generator(this, function (_a) {
|
|
62830
62793
|
switch (_a.label) {
|
|
62831
62794
|
case 0: return [4 /*yield*/, SettingsHelper.getStaticProps(context, IkasThemePageType.SEARCH)];
|
|
@@ -62837,7 +62800,7 @@ var getStaticProps$d = function (context) { return __awaiter(void 0, void 0, voi
|
|
|
62837
62800
|
var search = /*#__PURE__*/Object.freeze({
|
|
62838
62801
|
__proto__: null,
|
|
62839
62802
|
'default': Page$e,
|
|
62840
|
-
getStaticProps: getStaticProps$
|
|
62803
|
+
getStaticProps: getStaticProps$e
|
|
62841
62804
|
});
|
|
62842
62805
|
|
|
62843
62806
|
var Page$f = function (_a) {
|
|
@@ -62851,7 +62814,7 @@ var Page$f = function (_a) {
|
|
|
62851
62814
|
}, [propValuesStr]);
|
|
62852
62815
|
return (createElement(IkasPage, { merchantSettings: merchantSettings, settingsStr: settingsStr, page: page, propValues: propValues }));
|
|
62853
62816
|
};
|
|
62854
|
-
var getStaticProps$
|
|
62817
|
+
var getStaticProps$f = function (context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
62855
62818
|
var props;
|
|
62856
62819
|
return __generator(this, function (_a) {
|
|
62857
62820
|
switch (_a.label) {
|
|
@@ -62873,7 +62836,7 @@ var getStaticProps$e = function (context) { return __awaiter(void 0, void 0, voi
|
|
|
62873
62836
|
var _404 = /*#__PURE__*/Object.freeze({
|
|
62874
62837
|
__proto__: null,
|
|
62875
62838
|
'default': Page$f,
|
|
62876
|
-
getStaticProps: getStaticProps$
|
|
62839
|
+
getStaticProps: getStaticProps$f
|
|
62877
62840
|
});
|
|
62878
62841
|
|
|
62879
62842
|
var Page$g = function (_a) {
|
|
@@ -62885,7 +62848,7 @@ var Page$g = function (_a) {
|
|
|
62885
62848
|
}, [propValuesStr]);
|
|
62886
62849
|
return (createElement(IkasPage, { merchantSettings: merchantSettings, settingsStr: settingsStr, page: page, propValues: propValues, addOgpMetas: true }));
|
|
62887
62850
|
};
|
|
62888
|
-
var getStaticProps$
|
|
62851
|
+
var getStaticProps$g = function (context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
62889
62852
|
return __generator(this, function (_a) {
|
|
62890
62853
|
switch (_a.label) {
|
|
62891
62854
|
case 0: return [4 /*yield*/, SettingsHelper.getStaticProps(context, IkasThemePageType.BLOG_INDEX)];
|
|
@@ -62897,7 +62860,7 @@ var getStaticProps$f = function (context) { return __awaiter(void 0, void 0, voi
|
|
|
62897
62860
|
var index$5 = /*#__PURE__*/Object.freeze({
|
|
62898
62861
|
__proto__: null,
|
|
62899
62862
|
'default': Page$g,
|
|
62900
|
-
getStaticProps: getStaticProps$
|
|
62863
|
+
getStaticProps: getStaticProps$g
|
|
62901
62864
|
});
|
|
62902
62865
|
|
|
62903
62866
|
var Page$h = function (_a) {
|
|
@@ -62926,7 +62889,7 @@ var getStaticPaths$2 = function (context) { return __awaiter(void 0, void 0, voi
|
|
|
62926
62889
|
}];
|
|
62927
62890
|
});
|
|
62928
62891
|
}); };
|
|
62929
|
-
var getStaticProps$
|
|
62892
|
+
var getStaticProps$h = function (context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
62930
62893
|
return __generator(this, function (_a) {
|
|
62931
62894
|
switch (_a.label) {
|
|
62932
62895
|
case 0: return [4 /*yield*/, SettingsHelper.getStaticProps(context, undefined, [
|
|
@@ -62942,7 +62905,7 @@ var _slug_$2 = /*#__PURE__*/Object.freeze({
|
|
|
62942
62905
|
__proto__: null,
|
|
62943
62906
|
'default': _slug_$1,
|
|
62944
62907
|
getStaticPaths: getStaticPaths$2,
|
|
62945
|
-
getStaticProps: getStaticProps$
|
|
62908
|
+
getStaticProps: getStaticProps$h
|
|
62946
62909
|
});
|
|
62947
62910
|
|
|
62948
62911
|
var tr = {
|
|
@@ -63274,4 +63237,4 @@ var en$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.assign(/*#__PURE__*/Ob
|
|
|
63274
63237
|
'default': en
|
|
63275
63238
|
}));
|
|
63276
63239
|
|
|
63277
|
-
export { AccountInfoForm, index$3 as AccountPage, AddressForm, addresses as AddressesPage, Analytics, AnalyticsBody, AnalyticsHead, index$5 as BlogPage, _slug_$2 as BlogSlugPage, cart as CartPage,
|
|
63240
|
+
export { AccountInfoForm, index$3 as AccountPage, AddressForm, addresses as AddressesPage, Analytics, AnalyticsBody, AnalyticsHead, index$5 as BlogPage, _slug_$2 as BlogSlugPage, cart as CartPage, checkout$1 as CheckoutPage, ContactForm, _slug_ as CustomPage, editor$1 as EditorPage, EmailRule, EqualsRule, favoriteProducts as FavoriteProductsPage, ForgotPasswordForm, forgotPassword as ForgotPasswordPage, IkasAmountTypeEnum$1 as IkasAmountTypeEnum, IkasApplicableProductFilterValue, IkasBaseStore, IkasBlog, IkasBlogAPI, IkasBlogCategory, IkasBlogCategoryList, IkasBlogCategoryListPropValue, IkasBlogCategoryListType, IkasBlogCategoryPropValue, IkasBlogContent, IkasBlogList, IkasBlogListPropValue, IkasBlogListType, IkasBlogMetaData, IkasBlogMetadataTargetType, IkasBlogPropValue, IkasBlogTag, IkasBlogWriter, IkasBrand, IkasBrandAPI, IkasBrandList, IkasBrandListPropValue, IkasBrandListSortType, IkasBrandListType, IkasBrandPropValue, IkasCardAssociation, IkasCardType, IkasCartAPI, IkasCategory, IkasCategoryAPI, IkasCategoryList, IkasCategoryListPropValue, IkasCategoryListSortType, IkasCategoryListType, IkasCategoryPropValue, IkasCheckout, IkasCheckoutAPI, IkasCheckoutRecoveryEmailStatus, IkasCheckoutRecoveryStatus, IkasCheckoutStatus, IkasCityAPI, IkasComponentRenderer, IkasContactForm, IkasContactFormAPI, IkasCountryAPI, IkasCustomer, IkasCustomerAPI, IkasCustomerAddress, IkasDistrictAPI, IkasFavoriteProduct, IkasFavoriteProductAPI, IkasHTMLMetaData, IkasHTMLMetaDataAPI, IkasHTMLMetaDataTargetType, IkasImage, IkasLinkPropValue, IkasLinkType, IkasMerchantAPI, IkasMerchantSettings, IkasNavigationLink, IkasOrder, IkasOrderCancelledReason, IkasOrderLineItem, IkasOrderPackageFulfillStatus, IkasOrderPackageStatus, IkasOrderPaymentStatus, IkasOrderRefundSettings, IkasOrderShippingMethod, IkasOrderStatus, IkasOrderTransaction, IkasPage, IkasPageComponentPropValue, IkasPageDataProvider, IkasPageEditor, IkasPageHead, IkasPaymentMethod, IkasProduct, IkasProductAttribute, IkasProductAttributeAPI, IkasProductAttributeType, IkasProductAttributeValue, IkasProductDetail, IkasProductDetailPropValue, IkasProductFilter, IkasProductFilterDisplayType, IkasProductFilterSettings, IkasProductFilterSortType, IkasProductFilterType, IkasProductFilterValue, IkasProductList, IkasProductListPropValue, IkasProductListSortType, IkasProductListType, IkasProductPrice, IkasProductSearchAPI, IkasProductType, IkasProductVariant, IkasProductVariantType, IkasShippingMethod, IkasShippingMethodEnum, IkasStateAPI, IkasStorefrontConfig, IkasTheme, IkasThemeComponent, IkasThemeComponentProp, IkasThemeComponentPropType, IkasThemeCustomData, IkasThemePage, IkasThemePageComponent, IkasThemePageType, IkasThemeSettings, IkasTransactionStatusEnum, IkasTransactionTypeEnum, IkasVariantSelectionType, IkasVariantType, IkasVariantTypeAPI, IkasVariantValue, Image, home as IndexPage, LessThanRule, LoginForm, login as LoginPage, MaxRule, MinRule, _404 as NotFoundPage, _id_ as OrderDetailPage, OrderLineItemStatusEnum$1 as OrderLineItemStatusEnum, index$4 as OrdersPage, PhoneRule, RangeValue, RecoverPasswordForm, recoverPassword as RecoverPasswordPage, RegisterForm, register as RegisterPage, RequiredRule, search as SearchPage, index$2 as SlugPage, ValidationRule, Validator, ValidatorErrorType, apollo, createTranslationInputData, decodeBase64, findAllIndexes, formatDate, formatMoney, getPlaceholderBlog, getPlaceholderBlogCategory, getPlaceholderBrand, getPlaceholderCategory, getPlaceholderProduct, parseRangeStr, pascalCase, stringSorter, stringToSlug, useTranslation, validatePhoneNumber };
|