From a31cead88e702029c262dced9d822c34e18b7d1b Mon Sep 17 00:00:00 2001 From: Manuele J Sarfatti Date: Thu, 7 Mar 2024 18:23:51 +0100 Subject: [PATCH] Fix: add new Airtable view types (#50) --- src/schemas/api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/schemas/api.ts b/src/schemas/api.ts index 288631f..5dc0e75 100644 --- a/src/schemas/api.ts +++ b/src/schemas/api.ts @@ -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