feat: create route to fetch stream URL from provider

Summary:

Test Plan:
This commit is contained in:
2024-05-30 08:44:20 -04:00
parent 63cb1b26d9
commit 7aab9a19ec
10 changed files with 302 additions and 1 deletions

View File

@@ -38,3 +38,8 @@ export const EpisodeNumberSchema = z.number().openapi({
type: "number",
format: "float",
});
export const SkippableSchema = z
.array(z.number().openapi({ minimum: 0, type: "integer", format: "int64" }))
.nullish()
.openapi({ examples: [[200, 289]], minItems: 2, maxItems: 2 });