@griddo/core 1.75.257 → 10.1.0
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/dist/types/core/index.d.ts +15 -0
- package/package.json +2 -2
|
@@ -78,6 +78,7 @@ export interface Page<ContentType = unknown> {
|
|
|
78
78
|
header: HeaderModule;
|
|
79
79
|
headerTheme?: string | null;
|
|
80
80
|
id?: number;
|
|
81
|
+
integrations?: PageIntegration[];
|
|
81
82
|
instance?: string;
|
|
82
83
|
isHome?: boolean;
|
|
83
84
|
isIndexed?: boolean;
|
|
@@ -321,4 +322,18 @@ export interface FooterModule extends Omit<NavigationModule, "component"> {
|
|
|
321
322
|
export interface HeaderModule extends Omit<NavigationModule, "component"> {
|
|
322
323
|
component: "Header";
|
|
323
324
|
}
|
|
325
|
+
export interface PageIntegration {
|
|
326
|
+
id: number;
|
|
327
|
+
name: string;
|
|
328
|
+
description: string;
|
|
329
|
+
contentHead: string | null;
|
|
330
|
+
contentBody: string | null;
|
|
331
|
+
contentBodyPosition: "start" | "end";
|
|
332
|
+
contentPresence: ContentPresence;
|
|
333
|
+
active: boolean;
|
|
334
|
+
}
|
|
335
|
+
export interface ContentPresence {
|
|
336
|
+
presenceType: "page-specific" | "page-custom" | "page-manual" | "all";
|
|
337
|
+
relatedPages: number[] | null;
|
|
338
|
+
}
|
|
324
339
|
export {};
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@griddo/core",
|
|
3
3
|
"description": "Reload version of Griddo Core",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "10.1.0",
|
|
6
6
|
"authors": [
|
|
7
7
|
"Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
|
|
8
8
|
"Diego M. Béjar <diego.bejar@secuoyas.com>",
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
"resolutions": {
|
|
79
79
|
"colors": "1.4.0"
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "9c3c0cf154929716b3f9782fb4d7b3b88d2988a2"
|
|
82
82
|
}
|