From 6aaf8ac44fd5c36b1de9cd76483cf2fb3be8419e Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Thu, 9 Apr 2026 12:34:56 +0200 Subject: [PATCH] fix(types): manually align Inquiry type for contact form fields --- apps/web/payload-types.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/web/payload-types.ts b/apps/web/payload-types.ts index 12cc925..156ddfa 100644 --- a/apps/web/payload-types.ts +++ b/apps/web/payload-types.ts @@ -287,6 +287,9 @@ export interface Inquiry { email: string; companyName?: string | null; projectType?: string | null; + phone?: string | null; + role?: string | null; + deadline?: string | null; message?: string | null; isFreeText?: boolean | null; /** @@ -808,7 +811,10 @@ export interface InquiriesSelect { name?: T; email?: T; companyName?: T; + phone?: T; + role?: T; projectType?: T; + deadline?: T; message?: T; isFreeText?: T; config?: T;