@hubs101/js-api-skd-client 1.0.10380 → 1.0.10381
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/types.d.ts +13 -14
- package/package.json +1 -1
package/lib/api/event/types.d.ts
CHANGED
|
@@ -886,21 +886,20 @@ export type BlogPage = {
|
|
|
886
886
|
};
|
|
887
887
|
};
|
|
888
888
|
export type BlogPageInput = {
|
|
889
|
-
id: string;
|
|
890
889
|
headline: string;
|
|
891
|
-
sub_headline
|
|
892
|
-
slug
|
|
893
|
-
content_html
|
|
894
|
-
content_structure
|
|
890
|
+
sub_headline?: string;
|
|
891
|
+
slug?: string;
|
|
892
|
+
content_html?: string;
|
|
893
|
+
content_structure?: string;
|
|
895
894
|
language: string;
|
|
896
|
-
published
|
|
897
|
-
design_primary_color
|
|
898
|
-
design_secondary_color
|
|
899
|
-
design_background_color
|
|
900
|
-
design_feature_image
|
|
901
|
-
design_cover_image
|
|
902
|
-
meta_description
|
|
903
|
-
meta_author
|
|
904
|
-
meta_keywords
|
|
895
|
+
published?: boolean;
|
|
896
|
+
design_primary_color?: string;
|
|
897
|
+
design_secondary_color?: string;
|
|
898
|
+
design_background_color?: string;
|
|
899
|
+
design_feature_image?: string;
|
|
900
|
+
design_cover_image?: string;
|
|
901
|
+
meta_description?: string;
|
|
902
|
+
meta_author?: string;
|
|
903
|
+
meta_keywords?: string;
|
|
905
904
|
};
|
|
906
905
|
export {};
|