Update schemas.ts

This commit is contained in:
Adam Matthiesen 2024-01-20 11:10:58 -08:00 committed by GitHub
parent 75416edef2
commit 643566a738
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ const RobotsPolicySchema = z.object({
allow: z.string().optional(), allow: z.string().optional(),
disallow: z.string().optional(), disallow: z.string().optional(),
cleanParam: z.string().optional(), cleanParam: z.string().optional(),
crawlDelay: z.number() crawlDelay: z.number().optional()
}) })
export const RobotsTxtSchema = z.object({ export const RobotsTxtSchema = z.object({