@ikas/storefront-models 5.0.39 → 5.0.40

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 CHANGED
@@ -166,6 +166,7 @@ export * from "./models/product/sales-channel";
166
166
  export * from "./models/product/star";
167
167
  export * from "./models/product/stock-location";
168
168
  export * from "./models/product/tag";
169
+ export * from "./models/product/translations";
169
170
  export * from "./models/product/variant/bundle-settings/bundle-product";
170
171
  export * from "./models/product/variant/bundle-settings";
171
172
  export * from "./models/product/variant/price/product-campaign-price";
@@ -7,6 +7,7 @@ export declare type IkasMerchantSettings = {
7
7
  merchantId: string;
8
8
  merchantName: string;
9
9
  phone: string | null;
10
+ defaultLocale?: string | null;
10
11
  logo?: IkasImage | null;
11
12
  };
12
13
  export declare type IkasMerchantSettingsCurrencyFormat = {
@@ -13,6 +13,7 @@ import { IkasProductCampaign } from "./campaign";
13
13
  import { IkasProductCampaignOffer } from "./campaign-offer";
14
14
  import { IkasProductGroup } from "./group";
15
15
  import { IkasProductSalesChannel } from "./sales-channel";
16
+ import { IkasProductTranslation } from "./translations";
16
17
  export declare type IkasProduct = {
17
18
  id: string;
18
19
  name: string;
@@ -39,6 +40,7 @@ export declare type IkasProduct = {
39
40
  campaignOffers: IkasProductCampaignOffer[] | null;
40
41
  productGroup: IkasProductGroup | null;
41
42
  salesChannels: IkasProductSalesChannel[] | null;
43
+ translations?: IkasProductTranslation[] | null;
42
44
  };
43
45
  export declare enum IkasProductType {
44
46
  PHYSICAL = "PHYSICAL",
@@ -0,0 +1,5 @@
1
+ export declare type IkasProductTranslation = {
2
+ description: string | null;
3
+ locale: string;
4
+ name: string | null;
5
+ };
@@ -18,6 +18,7 @@ export declare type IkasThemeJsonComponentProp = {
18
18
  };
19
19
  excludedFields?: string[] | null;
20
20
  excludedFieldsCategory?: string[] | null;
21
+ isFacetListNotSent?: boolean;
21
22
  };
22
23
  export declare type IkasThemeJsonSliderData = {
23
24
  min?: number;
@@ -21,6 +21,7 @@ export declare type IkasThemeJsonCustomData = {
21
21
  parent?: IkasThemeJsonCustomData | null;
22
22
  excludedFields?: string[] | null;
23
23
  excludedFieldsCategory?: string[] | null;
24
+ isFacetListNotSent?: boolean;
24
25
  };
25
26
  export declare type IkasThemeJsonEnumOption = {
26
27
  id: string;
@@ -166,6 +166,7 @@ export * from "./models/product/sales-channel";
166
166
  export * from "./models/product/star";
167
167
  export * from "./models/product/stock-location";
168
168
  export * from "./models/product/tag";
169
+ export * from "./models/product/translations";
169
170
  export * from "./models/product/variant/bundle-settings/bundle-product";
170
171
  export * from "./models/product/variant/bundle-settings";
171
172
  export * from "./models/product/variant/price/product-campaign-price";
@@ -7,6 +7,7 @@ export declare type IkasMerchantSettings = {
7
7
  merchantId: string;
8
8
  merchantName: string;
9
9
  phone: string | null;
10
+ defaultLocale?: string | null;
10
11
  logo?: IkasImage | null;
11
12
  };
12
13
  export declare type IkasMerchantSettingsCurrencyFormat = {
@@ -13,6 +13,7 @@ import { IkasProductCampaign } from "./campaign";
13
13
  import { IkasProductCampaignOffer } from "./campaign-offer";
14
14
  import { IkasProductGroup } from "./group";
15
15
  import { IkasProductSalesChannel } from "./sales-channel";
16
+ import { IkasProductTranslation } from "./translations";
16
17
  export declare type IkasProduct = {
17
18
  id: string;
18
19
  name: string;
@@ -39,6 +40,7 @@ export declare type IkasProduct = {
39
40
  campaignOffers: IkasProductCampaignOffer[] | null;
40
41
  productGroup: IkasProductGroup | null;
41
42
  salesChannels: IkasProductSalesChannel[] | null;
43
+ translations?: IkasProductTranslation[] | null;
42
44
  };
43
45
  export declare enum IkasProductType {
44
46
  PHYSICAL = "PHYSICAL",
@@ -0,0 +1,5 @@
1
+ export declare type IkasProductTranslation = {
2
+ description: string | null;
3
+ locale: string;
4
+ name: string | null;
5
+ };
@@ -18,6 +18,7 @@ export declare type IkasThemeJsonComponentProp = {
18
18
  };
19
19
  excludedFields?: string[] | null;
20
20
  excludedFieldsCategory?: string[] | null;
21
+ isFacetListNotSent?: boolean;
21
22
  };
22
23
  export declare type IkasThemeJsonSliderData = {
23
24
  min?: number;
@@ -21,6 +21,7 @@ export declare type IkasThemeJsonCustomData = {
21
21
  parent?: IkasThemeJsonCustomData | null;
22
22
  excludedFields?: string[] | null;
23
23
  excludedFieldsCategory?: string[] | null;
24
+ isFacetListNotSent?: boolean;
24
25
  };
25
26
  export declare type IkasThemeJsonEnumOption = {
26
27
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikas/storefront-models",
3
- "version": "5.0.39",
3
+ "version": "5.0.40",
4
4
  "author": "ikas",
5
5
  "license": "ISC",
6
6
  "description": "Data models to be used in an ikas storefront application.",