fix(typos): update breadcrumb key generation and enforce number coercion for optional size in Google Drive item type

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2025-12-31 19:32:44 -08:00
parent 495168b243
commit 77ea261e29
2 changed files with 2 additions and 2 deletions

View file

@ -48,7 +48,7 @@ export const googleDriveItem = z.object({
mimeType: z.string(),
isFolder: z.boolean(),
parents: z.array(z.string()).optional(),
size: z.number().optional(),
size: z.coerce.number().optional(),
iconLink: z.string().optional(),
webViewLink: z.string().optional(),
createdTime: z.string().optional(),