@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.
package/lib/api/event/index.d.ts
CHANGED
|
@@ -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
|
|
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;
|
package/lib/api/event/types.d.ts
CHANGED
|
@@ -863,11 +863,12 @@ export type BlogPage = {
|
|
|
863
863
|
headline: string;
|
|
864
864
|
subHeadline: string;
|
|
865
865
|
slug: string;
|
|
866
|
-
|
|
867
|
-
|
|
866
|
+
content_html: string;
|
|
867
|
+
content_structure: string;
|
|
868
868
|
language: string;
|
|
869
|
-
|
|
870
|
-
|
|
869
|
+
created_at: string;
|
|
870
|
+
updated_at: string;
|
|
871
|
+
updated_by: string;
|
|
871
872
|
published: boolean;
|
|
872
873
|
design: {
|
|
873
874
|
primaryColor: string;
|