@hubs101/js-api-skd-client 1.0.10404 → 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.
@@ -812,6 +812,12 @@ export type PortfolioDesign = {
812
812
  videoUrl: string;
813
813
  videoImage: string;
814
814
  };
815
+ export type GroupDetails = {
816
+ sessionGroup: string;
817
+ speakerGroup: string;
818
+ exhibitorGroup: string;
819
+ blogpostGroup: string;
820
+ };
815
821
  export type Portfolio = {
816
822
  id: string;
817
823
  name: string;
@@ -830,6 +836,7 @@ export type Portfolio = {
830
836
  created_by: string | null;
831
837
  updated_by: string | null;
832
838
  deleted_by: string | null;
839
+ details: GroupDetails;
833
840
  };
834
841
  export type PortfolioInput = {
835
842
  name: string;
@@ -859,6 +866,10 @@ export type PortfolioInput = {
859
866
  design_portfolio_background_image_svg?: string;
860
867
  design_portfolio_video_url?: string;
861
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;
862
873
  };
863
874
  export type BlogPage = {
864
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.10404",
3
+ "version": "1.0.10405",
4
4
  "author": "Liveware",
5
5
  "scripts": {
6
6
  "test": "jest --config jestconfig.json",