@ikas/storefront-models 4.10.0-beta.15 → 4.10.0-beta.17

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
@@ -167,6 +167,7 @@ export * from "./models/stock-location/address";
167
167
  export * from "./models/stock-location/available";
168
168
  export * from "./models/stock-location";
169
169
  export * from "./models/storefront/domain";
170
+ export * from "./models/storefront/index-page-seo-setting";
170
171
  export * from "./models/storefront/localization";
171
172
  export * from "./models/storefront/routing/dynamic-currency";
172
173
  export * from "./models/storefront/routing";
@@ -0,0 +1,15 @@
1
+ import { IkasImage } from "../../image";
2
+ export declare type IkasIndexPageSeoSetting = {
3
+ canonicals: string[] | null;
4
+ createdAt: any | null;
5
+ deleted: boolean;
6
+ description: string | null;
7
+ disableIndex: boolean | null;
8
+ favIcon: string | null;
9
+ id: string;
10
+ locale: string;
11
+ pageTitle: string | null;
12
+ slug: string | null;
13
+ updatedAt: any | null;
14
+ icon?: IkasImage | null;
15
+ };
@@ -3,6 +3,7 @@ import { IkasStorefrontDomain } from "./domain";
3
3
  import { IkasStorefrontRouting } from "./routing";
4
4
  import { IkasStorefrontTheme } from "./theme";
5
5
  import { IkasStorefontMetaTemplates } from "./meta-templates";
6
+ import { IkasIndexPageSeoSetting } from "./index-page-seo-setting";
6
7
  export declare enum IkasStorefrontStatus {
7
8
  WAITING = "WAITING",
8
9
  READY = "READY"
@@ -27,4 +28,5 @@ export declare type IkasStorefront = {
27
28
  routings: IkasStorefrontRouting[];
28
29
  domains: IkasStorefrontDomain[];
29
30
  themes: IkasStorefrontTheme[];
31
+ indexPageSeoSettings: IkasIndexPageSeoSetting[];
30
32
  };
@@ -167,6 +167,7 @@ export * from "./models/stock-location/address";
167
167
  export * from "./models/stock-location/available";
168
168
  export * from "./models/stock-location";
169
169
  export * from "./models/storefront/domain";
170
+ export * from "./models/storefront/index-page-seo-setting";
170
171
  export * from "./models/storefront/localization";
171
172
  export * from "./models/storefront/routing/dynamic-currency";
172
173
  export * from "./models/storefront/routing";
@@ -0,0 +1,15 @@
1
+ import { IkasImage } from "../../image";
2
+ export declare type IkasIndexPageSeoSetting = {
3
+ canonicals: string[] | null;
4
+ createdAt: any | null;
5
+ deleted: boolean;
6
+ description: string | null;
7
+ disableIndex: boolean | null;
8
+ favIcon: string | null;
9
+ id: string;
10
+ locale: string;
11
+ pageTitle: string | null;
12
+ slug: string | null;
13
+ updatedAt: any | null;
14
+ icon?: IkasImage | null;
15
+ };
@@ -3,6 +3,7 @@ import { IkasStorefrontDomain } from "./domain";
3
3
  import { IkasStorefrontRouting } from "./routing";
4
4
  import { IkasStorefrontTheme } from "./theme";
5
5
  import { IkasStorefontMetaTemplates } from "./meta-templates";
6
+ import { IkasIndexPageSeoSetting } from "./index-page-seo-setting";
6
7
  export declare enum IkasStorefrontStatus {
7
8
  WAITING = "WAITING",
8
9
  READY = "READY"
@@ -27,4 +28,5 @@ export declare type IkasStorefront = {
27
28
  routings: IkasStorefrontRouting[];
28
29
  domains: IkasStorefrontDomain[];
29
30
  themes: IkasStorefrontTheme[];
31
+ indexPageSeoSettings: IkasIndexPageSeoSetting[];
30
32
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikas/storefront-models",
3
- "version": "4.10.0-beta.15",
3
+ "version": "4.10.0-beta.17",
4
4
  "author": "ikas",
5
5
  "license": "ISC",
6
6
  "description": "Data models to be used in an ikas storefront application.",