add podcast api service

This commit is contained in:
thierryverse 2025-11-18 18:35:48 +02:00
parent 5361290315
commit 20cd1951b5
5 changed files with 54 additions and 22 deletions

View file

@ -22,6 +22,9 @@ export const getPodcastByChatIdRequest = z.object({
chat_id: z.number(),
});
export const getPodcastByChatResponse = podcast.nullish();
export type GeneratePodcastRequest = z.infer<typeof generatePodcastRequest>;
export type GetPodcastByChatIdRequest = z.infer<typeof getPodcastByChatIdRequest>;
export type GetPodcastByChatResponse = z.infer<typeof getPodcastByChatResponse>;
export type Podcast = z.infer<typeof podcast>;