We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e9d77bb + f478851 commit b749ac4Copy full SHA for b749ac4
lib/company.ts
@@ -149,15 +149,15 @@ export default class Company {
149
}
150
151
interface CreateCompanyData {
152
- createdAt: Timestamp;
+ createdAt?: Timestamp;
153
companyId: string;
154
- name: string;
155
- monthlySpend: number;
156
- plan: string;
157
- size: number;
158
- website: string;
159
- industry: string;
160
- customAttributes: JavascriptObject;
+ name?: string;
+ monthlySpend?: number;
+ plan?: string;
+ size?: number;
+ website?: string;
+ industry?: string;
+ customAttributes?: JavascriptObject;
161
162
//
163
type UpdateCompanyData = CreateCompanyData;
0 commit comments