@hubs101/js-api-skd-client 1.0.10387 → 1.0.10389

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.
@@ -110,7 +110,7 @@ export declare const _updatePortfolio: (basePath: string, token: string, portfol
110
110
  }[]) => Promise<any>;
111
111
  export declare const _fetchPortfolioDetails: (basePath: string, token: string, portfolioId: string) => Promise<Portfolio>;
112
112
  export declare const _fetchPortfolioEvents: (basePath: string, token: string, portfolioId: string) => Promise<Event[]>;
113
- export declare const _fetchBlogPages: (basePath: string, token: string, accountId: string, portfolioId: string) => Promise<BlogPage[]>;
113
+ export declare const _fetchBlogPages: (basePath: string, token: string, accountId: string, portfolioId?: string) => Promise<BlogPage[]>;
114
114
  export declare const _createBlogPage: (basePath: string, token: string, portfolioId: string, data: BlogPageInput, files: {
115
115
  name: string;
116
116
  value: File;
@@ -863,11 +863,12 @@ export type BlogPage = {
863
863
  headline: string;
864
864
  subHeadline: string;
865
865
  slug: string;
866
- contentHtml: string;
867
- contentText: string;
866
+ content_html: string;
867
+ content_structure: string;
868
868
  language: string;
869
- createdAt: string;
870
- updatedAt: string;
869
+ created_at: string;
870
+ updated_at: string;
871
+ updated_by: string;
871
872
  published: boolean;
872
873
  design: {
873
874
  primaryColor: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubs101/js-api-skd-client",
3
- "version": "1.0.10387",
3
+ "version": "1.0.10389",
4
4
  "author": "Liveware",
5
5
  "scripts": {
6
6
  "test": "jest --config jestconfig.json",