Update lib/types/twitter-v1.js
Browse files- lib/types/twitter-v1.js +3 -4
lib/types/twitter-v1.js
CHANGED
@@ -18,9 +18,6 @@ const TwitterDLVariantSchema = z.object({
|
|
18 |
)
|
19 |
});
|
20 |
|
21 |
-
const TwitterDlSchema = z.object({
|
22 |
-
videos: z.array(TwitterDLVariantSchema),
|
23 |
-
});
|
24 |
|
25 |
const TwitterDLResponseSchema = z.object({
|
26 |
includes: z.object({
|
@@ -34,6 +31,8 @@ const TwitterDLResponseSchema = z.object({
|
|
34 |
})
|
35 |
});
|
36 |
|
37 |
-
const TwitterDlSchema = z.
|
|
|
|
|
38 |
|
39 |
export { TwitterDlArgsSchema, TwitterDLVariantSchema, TwitterDLResponseSchema, TwitterDlSchema };
|
|
|
18 |
)
|
19 |
});
|
20 |
|
|
|
|
|
|
|
21 |
|
22 |
const TwitterDLResponseSchema = z.object({
|
23 |
includes: z.object({
|
|
|
31 |
})
|
32 |
});
|
33 |
|
34 |
+
const TwitterDlSchema = z.object({
|
35 |
+
videos: z.array(TwitterDLVariantSchema),
|
36 |
+
});
|
37 |
|
38 |
export { TwitterDlArgsSchema, TwitterDLVariantSchema, TwitterDLResponseSchema, TwitterDlSchema };
|