@ikas/storefront-models 6.1.0-beta.108 → 6.1.0-beta.109

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.
@@ -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 { IkasHTMLMetaDataTranslations } from "../html-meta-data/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: IkasHTMLMetaDataTranslations[];
42
44
  };
43
45
  export declare enum IkasProductType {
44
46
  PHYSICAL = "PHYSICAL",
@@ -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 { IkasHTMLMetaDataTranslations } from "../html-meta-data/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: IkasHTMLMetaDataTranslations[];
42
44
  };
43
45
  export declare enum IkasProductType {
44
46
  PHYSICAL = "PHYSICAL",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikas/storefront-models",
3
- "version": "6.1.0-beta.108",
3
+ "version": "6.1.0-beta.109",
4
4
  "author": "ikas",
5
5
  "license": "ISC",
6
6
  "description": "Data models to be used in an ikas storefront application.",