@griddo/core 10.2.3 → 10.2.5

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.
@@ -79,7 +79,7 @@ export interface Page<ContentType = unknown> {
79
79
  header: HeaderModule;
80
80
  headerTheme?: string | null;
81
81
  id?: number;
82
- integrations?: PageIntegration[];
82
+ integrations?: Array<PageIntegration>;
83
83
  instance?: string;
84
84
  isHome?: boolean;
85
85
  isIndexed?: boolean;
@@ -327,6 +327,7 @@ export interface PageIntegration {
327
327
  id: number;
328
328
  name: string;
329
329
  description: string;
330
+ site: number;
330
331
  contentHead: string | null;
331
332
  contentBody: string | null;
332
333
  contentBodyPosition: "start" | "end";
@@ -335,6 +336,6 @@ export interface PageIntegration {
335
336
  }
336
337
  export interface ContentPresence {
337
338
  presenceType: "page-specific" | "page-custom" | "page-manual" | "all";
338
- relatedPages: number[] | null;
339
+ relatedPages: Array<number> | null;
339
340
  }
340
341
  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": "10.2.3",
5
+ "version": "10.2.5",
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": "39b79aa842aad81bc8ac1c3e1710bc97ac4ecff5"
81
+ "gitHead": "d81fc9ca21d4e56b2b6c155447055110ce4c7540"
82
82
  }