@hubs101/js-api-skd-client 1.0.10372 → 1.0.10374

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.
@@ -443,6 +443,7 @@ export declare const MENU_ITEM_STYLING: {
443
443
  readonly LINK: "link";
444
444
  readonly BUTTON: "button";
445
445
  };
446
+ export declare const MENU_ITEM_STYLING_TYPE: readonly ["link", "button"];
446
447
  export declare const DEFAULT_MENU_TYPES: {
447
448
  readonly HOME: "home";
448
449
  readonly AGENDA: "agenda";
@@ -458,7 +459,7 @@ export type MenuItem = {
458
459
  label: string;
459
460
  level: 0 | 1;
460
461
  icon: string;
461
- styling: "link" | "button";
462
+ styling: (typeof MENU_ITEM_STYLING_TYPE)[number];
462
463
  type: (typeof MENU_ITEM_TYPE)[number];
463
464
  url: string;
464
465
  order: number;
@@ -804,6 +805,8 @@ export type PortfolioDesign = {
804
805
  backgroundDesktopImage: string;
805
806
  backgroundTabletImage: string;
806
807
  backgroundMobileImage: string;
808
+ videoUrl: string;
809
+ videoImage: string;
807
810
  };
808
811
  export type Portfolio = {
809
812
  id: string;
@@ -849,5 +852,7 @@ export type PortfolioInput = {
849
852
  design_portfolio_desktop_background?: string;
850
853
  design_portfolio_tablet_background?: string;
851
854
  design_portfolio_mobile_background?: string;
855
+ design_portfolio_video_url?: string;
856
+ design_portfolio_video_image?: string;
852
857
  };
853
858
  export {};
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.MENU_ITEM_TYPE = exports.DEFAULT_MENU_ITEM = exports.DEFAULT_MENU_TYPES = exports.MENU_ITEM_STYLING = exports.MENU_ITEM_TYPES = exports.GROUP_STYLE = void 0;
3
+ exports.MENU_ITEM_TYPE = exports.DEFAULT_MENU_ITEM = exports.DEFAULT_MENU_TYPES = exports.MENU_ITEM_STYLING_TYPE = exports.MENU_ITEM_STYLING = exports.MENU_ITEM_TYPES = exports.GROUP_STYLE = void 0;
4
4
  exports.GROUP_STYLE = [
5
5
  { "": "" },
6
6
  { "1": "default" },
@@ -15,6 +15,10 @@ exports.MENU_ITEM_STYLING = {
15
15
  LINK: "link",
16
16
  BUTTON: "button",
17
17
  };
18
+ exports.MENU_ITEM_STYLING_TYPE = [
19
+ exports.MENU_ITEM_STYLING.LINK,
20
+ exports.MENU_ITEM_STYLING.BUTTON,
21
+ ];
18
22
  exports.DEFAULT_MENU_TYPES = {
19
23
  HOME: "home",
20
24
  AGENDA: "agenda",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubs101/js-api-skd-client",
3
- "version": "1.0.10372",
3
+ "version": "1.0.10374",
4
4
  "author": "Liveware",
5
5
  "scripts": {
6
6
  "test": "jest --config jestconfig.json",