fix(types): manually align Inquiry type for contact form fields
All checks were successful
Build & Deploy / 🔍 Prepare (push) Successful in 9s
Build & Deploy / 🏗️ Build (push) Successful in 17m53s
Build & Deploy / 🚀 Deploy (push) Successful in 15s
Build & Deploy / 🧪 QA (push) Successful in 1m9s
Build & Deploy / 🧪 Post-Deploy Verification (push) Successful in 3m8s
Build & Deploy / 🔔 Notify (push) Successful in 2s

This commit is contained in:
2026-04-09 12:34:56 +02:00
parent 2097b571f3
commit 6aaf8ac44f

View File

@@ -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<T extends boolean = true> {
name?: T;
email?: T;
companyName?: T;
phone?: T;
role?: T;
projectType?: T;
deadline?: T;
message?: T;
isFreeText?: T;
config?: T;