@ikas/storefront-api 4.0.0-alpha.65 → 4.0.0-alpha.66

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.
@@ -0,0 +1,12 @@
1
+ import { DeepReadonly } from "ts-essentials";
2
+ export declare class CreateKlarnaTokenResponseData {
3
+ authorizeUrl: string | null;
4
+ clientToken: string | null;
5
+ sessionId: string | null;
6
+ transactionId: string | null;
7
+ constructor(data?: Partial<CreateKlarnaTokenResponseData>);
8
+ }
9
+ export declare class CreateKlarnaTokenResponse extends CreateKlarnaTokenResponseData {
10
+ }
11
+ export declare type PartialCreateKlarnaTokenResponse = Partial<CreateKlarnaTokenResponse>;
12
+ export declare type ReadOnlyCreateKlarnaTokenResponse = DeepReadonly<CreateKlarnaTokenResponse>;
@@ -0,0 +1,13 @@
1
+ import { DeepReadonly } from "ts-essentials";
2
+ import BaseModelData from "./_base";
3
+ export declare class CustomerSettingsData extends BaseModelData {
4
+ requireCaptchaValidation: boolean | null;
5
+ requireEmailValidation: boolean;
6
+ salesChannelId: string;
7
+ storefrontId: string;
8
+ constructor(data?: Partial<CustomerSettingsData>);
9
+ }
10
+ export declare class CustomerSettings extends CustomerSettingsData {
11
+ }
12
+ export declare type PartialCustomerSettings = Partial<CustomerSettings>;
13
+ export declare type ReadOnlyCustomerSettings = DeepReadonly<CustomerSettings>;
@@ -13,6 +13,7 @@ export declare class ProductData extends BaseModelData {
13
13
  brandId: string | null;
14
14
  categoryIds: string[] | null;
15
15
  description: string | null;
16
+ googleTaxonomyId: string | null;
16
17
  groupVariantsByVariantTypeId: string | null;
17
18
  maxQuantityPerCart: number | null;
18
19
  metaData: HTMLMetaDataData | null;
@@ -4,7 +4,7 @@ import { SearchProductProductUnitData } from "./SearchProductProductUnit";
4
4
  export declare class SearchProductProductBaseUnitData {
5
5
  baseAmount: number;
6
6
  type: ProductUnitTypeEnum;
7
- unit: SearchProductProductUnitData;
7
+ unit: SearchProductProductUnitData | null;
8
8
  constructor(data?: Partial<SearchProductProductBaseUnitData>);
9
9
  }
10
10
  export declare class SearchProductProductBaseUnit extends SearchProductProductBaseUnitData {
@@ -0,0 +1,13 @@
1
+ import { ConfigType, APIResponse } from "@ikas/fe-api-client";
2
+ import { CreateSaleTransactionWithCartInput, CreateKlarnaTokenResponse } from "../types";
3
+ declare const createKlarnaClientToken: (variables: QueryParams, fields?: string[], config?: ConfigType) => Promise<APIResponse<CreateKlarnaTokenResponse> | APIResponse<undefined>>;
4
+ export default createKlarnaClientToken;
5
+ export declare type QueryParams = {
6
+ input: CreateSaleTransactionWithCartInput;
7
+ };
8
+ export declare enum ResponseField {
9
+ AUTHORIZE_URL = "authorizeUrl",
10
+ CLIENT_TOKEN = "clientToken",
11
+ SESSION_ID = "sessionId",
12
+ TRANSACTION_ID = "transactionId"
13
+ }
@@ -0,0 +1 @@
1
+ import{__awaiter as t,__generator as n}from'./../../ext/tslib/tslib.es6.js';import{handleAPIError as e,APIResponse as r,fetchQuery as a}from"@ikas/fe-api-client";var i,o=function(i,o,l){return t(void 0,void 0,void 0,(function(){var t,u,c,d;return n(this,(function(n){switch(n.label){case 0:return n.trys.push([0,2,,3]),[4,a({operationName:"createKlarnaClientToken",config:l,variables:i,allReturnFields:s,fields:o,query:function(t){return"\n\t\t\t\tmutation createKlarnaClientToken (\n\t\t\t\t\t$input: CreateSaleTransactionWithCartInput!,\n\t\t\t\t) {\n\t\t\t\t\tcreateKlarnaClientToken (\n\t\t\t\t\t\tinput: $input,\n\t\t\t\t\t) ".concat(t,"\n\t\t\t\t}\n\t\t\t")}})];case 1:return t=n.sent(),u=t.data,c=t.errors,[2,new r(null==u?void 0:u.createKlarnaClientToken,c)];case 2:return d=n.sent(),[2,e(d)];case 3:return[2]}}))}))},s="{authorizeUrl clientToken sessionId transactionId }";!function(t){t.AUTHORIZE_URL="authorizeUrl",t.CLIENT_TOKEN="clientToken",t.SESSION_ID="sessionId",t.TRANSACTION_ID="transactionId"}(i||(i={}));export{i as ResponseField,o as default};
@@ -0,0 +1,18 @@
1
+ import { ConfigType, APIResponse } from "@ikas/fe-api-client";
2
+ import { StringFilterInput, CustomerSettings } from "../types";
3
+ declare const listCustomerSettings: (variables: QueryParams, fields?: string[], config?: ConfigType) => Promise<APIResponse<undefined> | APIResponse<CustomerSettings[]>>;
4
+ export default listCustomerSettings;
5
+ export declare type QueryParams = {
6
+ id?: StringFilterInput | null;
7
+ storefrontId?: StringFilterInput | null;
8
+ };
9
+ export declare enum ResponseField {
10
+ CREATED_AT = "createdAt",
11
+ DELETED = "deleted",
12
+ ID = "id",
13
+ REQUIRE_CAPTCHA_VALIDATION = "requireCaptchaValidation",
14
+ REQUIRE_EMAIL_VALIDATION = "requireEmailValidation",
15
+ SALES_CHANNEL_ID = "salesChannelId",
16
+ STOREFRONT_ID = "storefrontId",
17
+ UPDATED_AT = "updatedAt"
18
+ }
@@ -26,6 +26,7 @@ export declare enum ResponseField {
26
26
  DATA__CREATED_AT = "data.createdAt",
27
27
  DATA__DELETED = "data.deleted",
28
28
  DATA__DESCRIPTION = "data.description",
29
+ DATA__GOOGLE_TAXONOMY_ID = "data.googleTaxonomyId",
29
30
  DATA__GROUP_VARIANTS_BY_VARIANT_TYPE_ID = "data.groupVariantsByVariantTypeId",
30
31
  DATA__ID = "data.id",
31
32
  DATA__MAX_QUANTITY_PER_CART = "data.maxQuantityPerCart",
@@ -960,6 +960,12 @@ export interface Country {
960
960
  subregion: string | null;
961
961
  updatedAt: any | null;
962
962
  }
963
+ export interface CreateKlarnaTokenResponse {
964
+ authorizeUrl: string | null;
965
+ clientToken: string | null;
966
+ sessionId: string | null;
967
+ transactionId: string | null;
968
+ }
963
969
  export interface CreateStripePaymentIntentResponse {
964
970
  accountId: string;
965
971
  apiKey: string;
@@ -1162,6 +1168,16 @@ export interface CustomerReviewSummaryStar {
1162
1168
  count: number;
1163
1169
  star: number;
1164
1170
  }
1171
+ export interface CustomerSettings {
1172
+ createdAt: any | null;
1173
+ deleted: boolean | null;
1174
+ id: string;
1175
+ requireCaptchaValidation: boolean | null;
1176
+ requireEmailValidation: boolean;
1177
+ salesChannelId: string;
1178
+ storefrontId: string;
1179
+ updatedAt: any | null;
1180
+ }
1165
1181
  export interface District {
1166
1182
  cityId: string;
1167
1183
  countryId: string;
@@ -1642,6 +1658,7 @@ export interface Product {
1642
1658
  createdAt: any | null;
1643
1659
  deleted: boolean | null;
1644
1660
  description: string | null;
1661
+ googleTaxonomyId: string | null;
1645
1662
  groupVariantsByVariantTypeId: string | null;
1646
1663
  id: string;
1647
1664
  maxQuantityPerCart: number | null;
@@ -2086,7 +2103,7 @@ export interface SearchProductPrice {
2086
2103
  export interface SearchProductProductBaseUnit {
2087
2104
  baseAmount: number;
2088
2105
  type: ProductUnitTypeEnum;
2089
- unit: SearchProductProductUnit;
2106
+ unit: SearchProductProductUnit | null;
2090
2107
  }
2091
2108
  export interface SearchProductProductUnit {
2092
2109
  id: string;
@@ -8,8 +8,9 @@ import { QueryParams as GetAvailableShippingCountriesQueryParams } from "../../_
8
8
  import { QueryParams as ListStockLocationQueryParams } from "../../__api/queries/listStockLocation";
9
9
  import { QueryParams as GetAvailableStockLocationQueryParams } from "../../__api/queries/getAvailableStockLocations";
10
10
  import { QueryParams as CreateStripePaymentIntentParams } from "../../__api/mutations/createStripePaymentIntent";
11
+ import { QueryParams as CreateKlarnaClientTokenParams } from "../../__api/mutations/createKlarnaClientToken";
11
12
  import { IkasAvailableStockLocation, IkasCheckoutSettings, IkasPaymentGateway, IkasStockLocation } from "@ikas/storefront-models";
12
- export type { CreateSaleTransactionQueryParams, ListPaymentGatewayQueryParams, RetrieveInstallmentInfoQueryParams, CheckStocksQueryParams, ListCheckoutSettingsQueryParams, GetAvailableShippingCountriesQueryParams, ListStockLocationQueryParams, GetAvailableStockLocationQueryParams, CreateStripePaymentIntentParams, };
13
+ export type { CreateSaleTransactionQueryParams, ListPaymentGatewayQueryParams, RetrieveInstallmentInfoQueryParams, CheckStocksQueryParams, ListCheckoutSettingsQueryParams, GetAvailableShippingCountriesQueryParams, ListStockLocationQueryParams, GetAvailableStockLocationQueryParams, CreateStripePaymentIntentParams, CreateKlarnaClientTokenParams, };
13
14
  export declare function createSaleTransactionWithCart(params: CreateSaleTransactionQueryParams): Promise<APIResponse<import("../..").TransactionResponse> | APIResponse<undefined>>;
14
15
  export declare function listPaymentGateway(params: ListPaymentGatewayQueryParams): Promise<APIResponse<IkasPaymentGateway[]>>;
15
16
  export declare function retrieveInstallmentInfo(params: RetrieveInstallmentInfoQueryParams): Promise<APIResponse<undefined> | APIResponse<import("../..").RetrieveInstallmentInfoResponse>>;
@@ -19,3 +20,4 @@ export declare function getAvailableShippingCountries(params: GetAvailableShippi
19
20
  export declare function listStockLocations(params: ListStockLocationQueryParams): Promise<APIResponse<IkasStockLocation[]>>;
20
21
  export declare function getAvailableStockLocations(params: GetAvailableStockLocationQueryParams): Promise<APIResponse<IkasAvailableStockLocation[]>>;
21
22
  export declare function createStripePaymentIntent(params: CreateStripePaymentIntentParams): Promise<APIResponse<import("../..").CreateStripePaymentIntentResponse>>;
23
+ export declare function createKlarnaClientToken(params: CreateKlarnaClientTokenParams): Promise<APIResponse<import("../..").CreateKlarnaTokenResponse>>;
@@ -1 +1 @@
1
- import{__awaiter as t,__generator as e}from'./../../ext/tslib/tslib.es6.js';import{APIResponse as r}from"@ikas/fe-api-client";function n(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,import("../../__api/mutations/createSaleTransactionWithCart.js")];case 1:return[4,(0,t.sent().default)(r)];case 2:return[2,t.sent()]}}))}))}function i(n){return t(this,void 0,void 0,(function(){var t,i;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/queries/listPaymentGateway.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),i=t.data||[],[2,new r(i,t.graphQLErrors)]}}))}))}function s(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,import("../../__api/mutations/retrieveInstallmentInfo.js")];case 1:return[4,(0,t.sent().default)(r)];case 2:return[2,t.sent()]}}))}))}function a(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,import("../../__api/queries/checkStocks.js")];case 1:return[4,(0,t.sent().default)(r)];case 2:return[2,t.sent()]}}))}))}function u(n){return t(this,void 0,void 0,(function(){var t,i;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/queries/listCheckoutSettings.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),i=t.data||[],[2,new r(i,t.graphQLErrors)]}}))}))}function o(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,import("../../__api/queries/getAvailableShippingCountries.js")];case 1:return[4,(0,t.sent().default)(r)];case 2:return[2,t.sent()]}}))}))}function c(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/queries/listStockLocation.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))}function l(n){var i;return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/queries/getAvailableStockLocations.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),[2,new r(null===(i=t.data)||void 0===i?void 0:i.stockLocations,t.graphQLErrors)]}}))}))}function f(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/mutations/createStripePaymentIntent.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))}export{a as checkStocks,n as createSaleTransactionWithCart,f as createStripePaymentIntent,o as getAvailableShippingCountries,l as getAvailableStockLocations,u as listCheckoutSettings,i as listPaymentGateway,c as listStockLocations,s as retrieveInstallmentInfo};
1
+ import{__awaiter as t,__generator as e}from'./../../ext/tslib/tslib.es6.js';import{APIResponse as r}from"@ikas/fe-api-client";function n(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,import("../../__api/mutations/createSaleTransactionWithCart.js")];case 1:return[4,(0,t.sent().default)(r)];case 2:return[2,t.sent()]}}))}))}function i(n){return t(this,void 0,void 0,(function(){var t,i;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/queries/listPaymentGateway.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),i=t.data||[],[2,new r(i,t.graphQLErrors)]}}))}))}function s(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,import("../../__api/mutations/retrieveInstallmentInfo.js")];case 1:return[4,(0,t.sent().default)(r)];case 2:return[2,t.sent()]}}))}))}function a(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,import("../../__api/queries/checkStocks.js")];case 1:return[4,(0,t.sent().default)(r)];case 2:return[2,t.sent()]}}))}))}function u(n){return t(this,void 0,void 0,(function(){var t,i;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/queries/listCheckoutSettings.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),i=t.data||[],[2,new r(i,t.graphQLErrors)]}}))}))}function o(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,import("../../__api/queries/getAvailableShippingCountries.js")];case 1:return[4,(0,t.sent().default)(r)];case 2:return[2,t.sent()]}}))}))}function c(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/queries/listStockLocation.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))}function l(n){var i;return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/queries/getAvailableStockLocations.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),[2,new r(null===(i=t.data)||void 0===i?void 0:i.stockLocations,t.graphQLErrors)]}}))}))}function f(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/mutations/createStripePaymentIntent.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))}function d(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/mutations/createKlarnaClientToken.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))}export{a as checkStocks,d as createKlarnaClientToken,n as createSaleTransactionWithCart,f as createStripePaymentIntent,o as getAvailableShippingCountries,l as getAvailableStockLocations,u as listCheckoutSettings,i as listPaymentGateway,c as listStockLocations,s as retrieveInstallmentInfo};
package/build/index.d.ts CHANGED
@@ -18,6 +18,6 @@ export { SaveMyCustomerInput } from "./__api/models/SaveMyCustomerInput";
18
18
  export { SaveCartInput } from "./__api/models/SaveCartInput";
19
19
  export { CheckStocksLineInput } from "./__api/models/CheckStocksLineInput";
20
20
  export { SortByDirectionEnum, SortByTypeEnum, MasterPassOperationTypeEnum, } from "./__api/types";
21
- export type { SearchInputOrderByInput, CreateStripePaymentIntentResponse, RetrieveInstallmentInfoResponse, TransactionResponse, UpdateCartCampaignOfferInput, CartLineOptionInput, } from "./__api/types";
21
+ export type { SearchInputOrderByInput, CreateStripePaymentIntentResponse, RetrieveInstallmentInfoResponse, TransactionResponse, UpdateCartCampaignOfferInput, CartLineOptionInput, CreateKlarnaTokenResponse, } from "./__api/types";
22
22
  export { APIResponse } from "@ikas/fe-api-client";
23
23
  export { Config as IkasAPIClientConfig };
package/build/index.js CHANGED
@@ -1 +1 @@
1
- export{setAPIClientConfig}from"./index2.js";export{SaveMyCustomerInput}from"./__api/models/SaveMyCustomerInput.js";export{SaveCartInput}from"./__api/models/SaveCartInput.js";export{CheckStocksLineInput}from"./__api/models/CheckStocksLineInput.js";export{MasterPassOperationTypeEnum,SortByDirectionEnum,SortByTypeEnum}from"./__api/types/index.js";export{APIResponse,Config as IkasAPIClientConfig}from"@ikas/fe-api-client";export{listBlog,listBlogCategory,listBlogMetaData}from"./api/blog/index.js";export{listProductBrand}from"./api/brand/index.js";export{addItemToCart,getCartById,saveCart,saveCartCouponCode,updateCartCampaignOffer}from"./api/cart/index.js";export{listCategory}from"./api/category/index.js";export{checkStocks,createSaleTransactionWithCart,createStripePaymentIntent,getAvailableShippingCountries,getAvailableStockLocations,listCheckoutSettings,listPaymentGateway,listStockLocations,retrieveInstallmentInfo}from"./api/checkout/index.js";export{checkEmail,createCustomerEmailSubscription,createCustomerReview,createOrderRefundRequest,forgotPassword,getCustomer,getLastViewedProducts,getOrderByEmail,getOrders,isFavoriteProduct,listCustomerAttribute,listCustomerReviewSummary,listCustomerReviews,listFavoriteProducts,listOrderRefundSettings,listOrderTransactions,login,recoverPassword,refreshToken,register,saveCustomer,saveFavoriteProduct,saveLastViewedProducts,sendContactFormToMerchant,socialLogin}from"./api/customer/index.js";export{getProductOptionFileUrl,uploadFile}from"./api/file-upload/index.js";export{listHTMLMetaData}from"./api/html-meta-data/index.js";export{getMyCountry,listCity,listCountry,listDistrict,listState}from"./api/location/index.js";export{getMasterPassRequestToken}from"./api/masterpass/index.js";export{listMerchantSettings}from"./api/merchant/index.js";export{getOrderLineFile,getProductCampaigns,getProductFilterData,getRelatedProducts,listProductAttribute,listProductBackInStockRemind,listProductOptionSet,saveProductBackInStockRemind,searchProducts}from"./api/product/index.js";export{listRaffleMetaData,listRaffleParticipants,listStorefrontRaffle,saveRaffleParticipant}from"./api/raffle/index.js";export{getStorefrontSettings}from"./api/storefront/index.js";
1
+ export{setAPIClientConfig}from"./index2.js";export{SaveMyCustomerInput}from"./__api/models/SaveMyCustomerInput.js";export{SaveCartInput}from"./__api/models/SaveCartInput.js";export{CheckStocksLineInput}from"./__api/models/CheckStocksLineInput.js";export{MasterPassOperationTypeEnum,SortByDirectionEnum,SortByTypeEnum}from"./__api/types/index.js";export{APIResponse,Config as IkasAPIClientConfig}from"@ikas/fe-api-client";export{listBlog,listBlogCategory,listBlogMetaData}from"./api/blog/index.js";export{listProductBrand}from"./api/brand/index.js";export{addItemToCart,getCartById,saveCart,saveCartCouponCode,updateCartCampaignOffer}from"./api/cart/index.js";export{listCategory}from"./api/category/index.js";export{checkStocks,createKlarnaClientToken,createSaleTransactionWithCart,createStripePaymentIntent,getAvailableShippingCountries,getAvailableStockLocations,listCheckoutSettings,listPaymentGateway,listStockLocations,retrieveInstallmentInfo}from"./api/checkout/index.js";export{checkEmail,createCustomerEmailSubscription,createCustomerReview,createOrderRefundRequest,forgotPassword,getCustomer,getLastViewedProducts,getOrderByEmail,getOrders,isFavoriteProduct,listCustomerAttribute,listCustomerReviewSummary,listCustomerReviews,listFavoriteProducts,listOrderRefundSettings,listOrderTransactions,login,recoverPassword,refreshToken,register,saveCustomer,saveFavoriteProduct,saveLastViewedProducts,sendContactFormToMerchant,socialLogin}from"./api/customer/index.js";export{getProductOptionFileUrl,uploadFile}from"./api/file-upload/index.js";export{listHTMLMetaData}from"./api/html-meta-data/index.js";export{getMyCountry,listCity,listCountry,listDistrict,listState}from"./api/location/index.js";export{getMasterPassRequestToken}from"./api/masterpass/index.js";export{listMerchantSettings}from"./api/merchant/index.js";export{getOrderLineFile,getProductCampaigns,getProductFilterData,getRelatedProducts,listProductAttribute,listProductBackInStockRemind,listProductOptionSet,saveProductBackInStockRemind,searchProducts}from"./api/product/index.js";export{listRaffleMetaData,listRaffleParticipants,listStorefrontRaffle,saveRaffleParticipant}from"./api/raffle/index.js";export{getStorefrontSettings}from"./api/storefront/index.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikas/storefront-api",
3
- "version": "4.0.0-alpha.65",
3
+ "version": "4.0.0-alpha.66",
4
4
  "author": "Umut Ozan Yıldırım",
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.0.0-alpha.65",
21
- "@ikas/storefront-models": "^4.0.0-alpha.65",
20
+ "@ikas/storefront-config": "^4.0.0-alpha.66",
21
+ "@ikas/storefront-models": "^4.0.0-alpha.66",
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.16"
35
35
  },
36
36
  "peerDependencies": {
37
- "@ikas/storefront-config": "^4.0.0-alpha.65",
38
- "@ikas/storefront-models": "^4.0.0-alpha.65",
37
+ "@ikas/storefront-config": "^4.0.0-alpha.66",
38
+ "@ikas/storefront-models": "^4.0.0-alpha.66",
39
39
  "@ikas/fe-api-client": "^1.0.16",
40
40
  "axios": "^0.26.0",
41
41
  "ts-essentials": "^7.0.1"