@hubs101/js-api-skd-client 1.0.10366 → 1.0.10369
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/lib/api/event/types.d.ts +18 -0
- package/lib/api/pages/types.d.ts +3 -3
- package/package.json +1 -1
package/lib/api/event/types.d.ts
CHANGED
|
@@ -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;
|
package/lib/api/pages/types.d.ts
CHANGED
|
@@ -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
|
|
29
|
+
language: string[];
|
|
30
30
|
documents?: string;
|
|
31
31
|
content_structure?: string;
|
|
32
32
|
event?: string;
|
|
33
|
-
dynamic?:
|
|
33
|
+
dynamic?: number;
|
|
34
34
|
tags?: string[];
|
|
35
35
|
setting?: PageSetting;
|
|
36
36
|
published?: boolean;
|