@hubs101/js-api-skd-client 1.0.10366 → 1.0.10367

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.
@@ -509,6 +509,24 @@ export type EventServerResponse = {
509
509
  updated_at: string;
510
510
  updated_by: string;
511
511
  portfolio: string;
512
+ website_menu: {
513
+ id: string;
514
+ name: string;
515
+ type: "mainmenu" | "footermenu";
516
+ items: {
517
+ icon: string;
518
+ isDesktopDisabled: boolean;
519
+ isMobileDisabled: boolean;
520
+ isTabletDisabled: boolean;
521
+ label: string;
522
+ level: number;
523
+ order: number;
524
+ styling: "link" | "button";
525
+ subtitle: string;
526
+ type: string;
527
+ url: string;
528
+ }[];
529
+ }[];
512
530
  };
513
531
  export type AccountInput = {
514
532
  name?: string;
@@ -4,7 +4,7 @@ export type Page = {
4
4
  type?: string;
5
5
  content_html?: string;
6
6
  content_text?: string;
7
- language: string;
7
+ language: string[];
8
8
  documents?: string;
9
9
  content_structure: string;
10
10
  event: string;
@@ -26,11 +26,11 @@ export type PageInput = {
26
26
  type?: string;
27
27
  content_html?: string;
28
28
  content_text?: string;
29
- language?: string[];
29
+ language: string[];
30
30
  documents?: string;
31
31
  content_structure?: string;
32
32
  event?: string;
33
- dynamic?: boolean;
33
+ dynamic?: number;
34
34
  tags?: string[];
35
35
  setting?: PageSetting;
36
36
  published?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubs101/js-api-skd-client",
3
- "version": "1.0.10366",
3
+ "version": "1.0.10367",
4
4
  "author": "Liveware",
5
5
  "scripts": {
6
6
  "test": "jest --config jestconfig.json",