@hubs101/js-api-skd-client 1.0.10403 → 1.0.10405

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.
@@ -171,6 +171,8 @@ export type Design = {
171
171
  agendaLobbyImage: string;
172
172
  speakerLobbyImage: string;
173
173
  expoLobbyImage: string;
174
+ eventLogoPosSvg: string;
175
+ eventLogoNegSvg: string;
174
176
  advertisement: Advertisement;
175
177
  video: {
176
178
  type: VideoType;
@@ -810,6 +812,12 @@ export type PortfolioDesign = {
810
812
  videoUrl: string;
811
813
  videoImage: string;
812
814
  };
815
+ export type GroupDetails = {
816
+ sessionGroup: string;
817
+ speakerGroup: string;
818
+ exhibitorGroup: string;
819
+ blogpostGroup: string;
820
+ };
813
821
  export type Portfolio = {
814
822
  id: string;
815
823
  name: string;
@@ -828,6 +836,7 @@ export type Portfolio = {
828
836
  created_by: string | null;
829
837
  updated_by: string | null;
830
838
  deleted_by: string | null;
839
+ details: GroupDetails;
831
840
  };
832
841
  export type PortfolioInput = {
833
842
  name: string;
@@ -857,6 +866,10 @@ export type PortfolioInput = {
857
866
  design_portfolio_background_image_svg?: string;
858
867
  design_portfolio_video_url?: string;
859
868
  design_portfolio_video_image?: string;
869
+ details_groups_session: string;
870
+ details_groups_exhibitor: string;
871
+ details_groups_speaker: string;
872
+ details_groups_blogpost: string;
860
873
  };
861
874
  export type BlogPage = {
862
875
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubs101/js-api-skd-client",
3
- "version": "1.0.10403",
3
+ "version": "1.0.10405",
4
4
  "author": "Liveware",
5
5
  "scripts": {
6
6
  "test": "jest --config jestconfig.json",