randydev commited on
Commit
ade54cd
·
verified ·
1 Parent(s): 62d9e2c

Update lib/types/youtubedl-v1.js

Browse files
Files changed (1) hide show
  1. lib/types/youtubedl-v1.js +2 -2
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
+ };