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
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:
@@ -287,6 +287,9 @@ export interface Inquiry {
|
|||||||
email: string;
|
email: string;
|
||||||
companyName?: string | null;
|
companyName?: string | null;
|
||||||
projectType?: string | null;
|
projectType?: string | null;
|
||||||
|
phone?: string | null;
|
||||||
|
role?: string | null;
|
||||||
|
deadline?: string | null;
|
||||||
message?: string | null;
|
message?: string | null;
|
||||||
isFreeText?: boolean | null;
|
isFreeText?: boolean | null;
|
||||||
/**
|
/**
|
||||||
@@ -808,7 +811,10 @@ export interface InquiriesSelect<T extends boolean = true> {
|
|||||||
name?: T;
|
name?: T;
|
||||||
email?: T;
|
email?: T;
|
||||||
companyName?: T;
|
companyName?: T;
|
||||||
|
phone?: T;
|
||||||
|
role?: T;
|
||||||
projectType?: T;
|
projectType?: T;
|
||||||
|
deadline?: T;
|
||||||
message?: T;
|
message?: T;
|
||||||
isFreeText?: T;
|
isFreeText?: T;
|
||||||
config?: T;
|
config?: T;
|
||||||
|
|||||||
Reference in New Issue
Block a user