Update lib/types/youtubedl-v1.js
Browse files
lib/types/youtubedl-v1.js
CHANGED
@@ -11,7 +11,7 @@ const LinkItemSchema = z.object({
|
|
11 |
const LinksSchema = z.object({
|
12 |
mp4: z.record(LinkItemSchema),
|
13 |
mp3: z.record(LinkItemSchema),
|
14 |
-
other: z.record(LinkItemSchema),
|
15 |
});
|
16 |
|
17 |
const RelatedContentSchema = z.object({
|
@@ -55,4 +55,4 @@ export {
|
|
55 |
RelatedVideosSchema,
|
56 |
YoutubedlResponseSchema,
|
57 |
ConvertResponseSchema
|
58 |
-
};
|
|
|
11 |
const LinksSchema = z.object({
|
12 |
mp4: z.record(LinkItemSchema),
|
13 |
mp3: z.record(LinkItemSchema),
|
14 |
+
other: z.record(LinkItemSchema).optional(),
|
15 |
});
|
16 |
|
17 |
const RelatedContentSchema = z.object({
|
|
|
55 |
RelatedVideosSchema,
|
56 |
YoutubedlResponseSchema,
|
57 |
ConvertResponseSchema
|
58 |
+
};
|