We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using the create and update methods for the Company model should only require companyId.
create
update
companyId
All of the parameters in the create and update methods for the Company are required.
interface CreateCompanyData { createdAt: Timestamp; companyId: string; name: string; monthlySpend: number; plan: string; size: number; website: string; industry: string; customAttributes: JavascriptObject; } declare type UpdateCompanyData = CreateCompanyData;
This interface should reflect what is defined in the API docs, with having all but companyId optional.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version info
Expected behavior
Using the
create
andupdate
methods for the Company model should only requirecompanyId
.Actual behavior
All of the parameters in the
create
andupdate
methods for the Company are required.This interface should reflect what is defined in the API docs, with having all but
companyId
optional.The text was updated successfully, but these errors were encountered: