-
Notifications
You must be signed in to change notification settings - Fork 121
Closed
Description
Woudl be nice to have company fields optional, as it is in contact modal.
Current code:
interface CreateCompanyData {
createdAt: Timestamp;
companyId: string;
name: string;
monthlySpend: number;
plan: string;
size: number;
website: string;
industry: string;
customAttributes: JavascriptObject;
}
Desired:
interface CreateCompanyData {
createdAt?: Timestamp;
companyId: string;
name?: string;
monthlySpend?: number;
plan:? string;
size?: number;
website?: string;
industry?: string;
customAttributes?: JavascriptObject;
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels