Skip to content

Commit

Permalink
Fix: add new Airtable view types (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjsarfatti authored Mar 7, 2024
1 parent 7ba9e6b commit a31cead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/schemas/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { FieldMetadataSchema } from './fields'
export const ViewMetadataSchema = z.object({
id: z.string(),
name: z.string(),
type: z.enum(['grid', 'form', 'calendar', 'gallery', 'kanban']),
type: z.enum(['grid', 'form', 'calendar', 'gallery', 'kanban', 'block', 'levels', 'timeline']),
})
export type ViewMetadata = z.infer<typeof ViewMetadataSchema>

Expand Down

0 comments on commit a31cead

Please sign in to comment.