From f7b739d08a50adc59583b02a8348b29675731cd2 Mon Sep 17 00:00:00 2001 From: vnugent Date: Sat, 30 Sep 2023 21:46:38 -0400 Subject: update client lib types for podcast html support --- lib/client/src/types.ts | 5 +++++ 1 file changed, 5 insertions(+) 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 { -- cgit