aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-09-30 21:46:38 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-09-30 21:46:38 -0400
commitf7b739d08a50adc59583b02a8348b29675731cd2 (patch)
treea1461fae6ef72618607568018ed7e76de687e86f
parent95d60952b3ea470495003b0d0e51840cd8e68605 (diff)
update client lib types for podcast html supportv0.1.2
-rw-r--r--lib/client/src/types.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/client/src/types.ts b/lib/client/src/types.ts
index 6e90a40..ed62533 100644
--- a/lib/client/src/types.ts
+++ b/lib/client/src/types.ts
@@ -153,6 +153,11 @@ export interface PostMeta extends CMNextEntity {
* The post's image, assumed to be an absolute url
*/
readonly image?: string;
+ /**
+ * Optional html description stored directly on the entity, this
+ * is only available if the post was published in podcast mode.
+ */
+ readonly html_description?: string;
}
export interface ContentMeta extends CMNextEntity {