@ikas/storefront-api 4.10.0-beta.14 → 4.10.0-beta.16
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,16 @@
|
|
|
1
|
+
import { DeepReadonly } from "ts-essentials";
|
|
2
|
+
import BaseModelData from "./_base";
|
|
3
|
+
export declare class IndexPageSeoSettingData extends BaseModelData {
|
|
4
|
+
canonicals: string[] | null;
|
|
5
|
+
description: string | null;
|
|
6
|
+
disableIndex: boolean | null;
|
|
7
|
+
favIcon: string | null;
|
|
8
|
+
locale: string;
|
|
9
|
+
pageTitle: string | null;
|
|
10
|
+
slug: string | null;
|
|
11
|
+
constructor(data?: Partial<IndexPageSeoSettingData>);
|
|
12
|
+
}
|
|
13
|
+
export declare class IndexPageSeoSetting extends IndexPageSeoSettingData {
|
|
14
|
+
}
|
|
15
|
+
export declare type PartialIndexPageSeoSetting = Partial<IndexPageSeoSetting>;
|
|
16
|
+
export declare type ReadOnlyIndexPageSeoSetting = DeepReadonly<IndexPageSeoSetting>;
|
|
@@ -2,6 +2,7 @@ import { DeepReadonly } from "ts-essentials";
|
|
|
2
2
|
import BaseModelData from "./_base";
|
|
3
3
|
import { StorefrontStatusTypes } from "../types";
|
|
4
4
|
import { StorefrontDomainData } from "./StorefrontDomain";
|
|
5
|
+
import { IndexPageSeoSettingData } from "./IndexPageSeoSetting";
|
|
5
6
|
import { StorefrontLocalizationData } from "./StorefrontLocalization";
|
|
6
7
|
import { StorefrontMetaTemplateData } from "./StorefrontMetaTemplate";
|
|
7
8
|
import { StorefrontRoutingData } from "./StorefrontRouting";
|
|
@@ -14,6 +15,7 @@ export declare class StorefrontData extends BaseModelData {
|
|
|
14
15
|
fbAccessToken: string | null;
|
|
15
16
|
fbpId: string | null;
|
|
16
17
|
gtmId: string | null;
|
|
18
|
+
indexPageSeoSettings: IndexPageSeoSettingData[] | null;
|
|
17
19
|
localizations: StorefrontLocalizationData[];
|
|
18
20
|
mainStorefrontThemeId: string | null;
|
|
19
21
|
metaTemplates: StorefrontMetaTemplateData[] | null;
|
|
@@ -22,6 +22,17 @@ export declare enum ResponseField {
|
|
|
22
22
|
FBP_ID = "fbpId",
|
|
23
23
|
GTM_ID = "gtmId",
|
|
24
24
|
ID = "id",
|
|
25
|
+
INDEX_PAGE_SEO_SETTINGS__CANONICALS = "indexPageSeoSettings.canonicals",
|
|
26
|
+
INDEX_PAGE_SEO_SETTINGS__CREATED_AT = "indexPageSeoSettings.createdAt",
|
|
27
|
+
INDEX_PAGE_SEO_SETTINGS__DELETED = "indexPageSeoSettings.deleted",
|
|
28
|
+
INDEX_PAGE_SEO_SETTINGS__DESCRIPTION = "indexPageSeoSettings.description",
|
|
29
|
+
INDEX_PAGE_SEO_SETTINGS__DISABLE_INDEX = "indexPageSeoSettings.disableIndex",
|
|
30
|
+
INDEX_PAGE_SEO_SETTINGS__FAV_ICON = "indexPageSeoSettings.favIcon",
|
|
31
|
+
INDEX_PAGE_SEO_SETTINGS__ID = "indexPageSeoSettings.id",
|
|
32
|
+
INDEX_PAGE_SEO_SETTINGS__LOCALE = "indexPageSeoSettings.locale",
|
|
33
|
+
INDEX_PAGE_SEO_SETTINGS__PAGE_TITLE = "indexPageSeoSettings.pageTitle",
|
|
34
|
+
INDEX_PAGE_SEO_SETTINGS__SLUG = "indexPageSeoSettings.slug",
|
|
35
|
+
INDEX_PAGE_SEO_SETTINGS__UPDATED_AT = "indexPageSeoSettings.updatedAt",
|
|
25
36
|
LOCALIZATIONS__CREATED_AT = "localizations.createdAt",
|
|
26
37
|
LOCALIZATIONS__DELETED = "localizations.deleted",
|
|
27
38
|
LOCALIZATIONS__ID = "localizations.id",
|
|
@@ -1406,6 +1406,19 @@ export interface HTMLMetaDataTranslation {
|
|
|
1406
1406
|
locale: string;
|
|
1407
1407
|
pageTitle: string | null;
|
|
1408
1408
|
}
|
|
1409
|
+
export interface IndexPageSeoSetting {
|
|
1410
|
+
canonicals: string[] | null;
|
|
1411
|
+
createdAt: any | null;
|
|
1412
|
+
deleted: boolean;
|
|
1413
|
+
description: string | null;
|
|
1414
|
+
disableIndex: boolean | null;
|
|
1415
|
+
favIcon: string | null;
|
|
1416
|
+
id: string;
|
|
1417
|
+
locale: string;
|
|
1418
|
+
pageTitle: string | null;
|
|
1419
|
+
slug: string | null;
|
|
1420
|
+
updatedAt: any | null;
|
|
1421
|
+
}
|
|
1409
1422
|
export interface Invoice {
|
|
1410
1423
|
appId: string;
|
|
1411
1424
|
appName: string;
|
|
@@ -2417,6 +2430,7 @@ export interface Storefront {
|
|
|
2417
2430
|
fbpId: string | null;
|
|
2418
2431
|
gtmId: string | null;
|
|
2419
2432
|
id: string;
|
|
2433
|
+
indexPageSeoSettings: IndexPageSeoSetting[] | null;
|
|
2420
2434
|
localizations: StorefrontLocalization[];
|
|
2421
2435
|
mainStorefrontThemeId: string | null;
|
|
2422
2436
|
metaTemplates: StorefrontMetaTemplate[] | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ikas/storefront-api",
|
|
3
|
-
"version": "4.10.0-beta.
|
|
3
|
+
"version": "4.10.0-beta.16",
|
|
4
4
|
"author": "ikas",
|
|
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.10.0-beta.
|
|
21
|
-
"@ikas/storefront-models": "^4.10.0-beta.
|
|
20
|
+
"@ikas/storefront-config": "^4.10.0-beta.16",
|
|
21
|
+
"@ikas/storefront-models": "^4.10.0-beta.16",
|
|
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.19"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
|
-
"@ikas/storefront-config": "^4.10.0-beta.
|
|
38
|
-
"@ikas/storefront-models": "^4.10.0-beta.
|
|
37
|
+
"@ikas/storefront-config": "^4.10.0-beta.16",
|
|
38
|
+
"@ikas/storefront-models": "^4.10.0-beta.16",
|
|
39
39
|
"@ikas/fe-api-client": "^1.0.18",
|
|
40
40
|
"axios": "^0.26.0",
|
|
41
41
|
"ts-essentials": "^7.0.1"
|