|
custom_attributes?: Record<string, string>; |
I believe custom_attributes should be one of these:
Record<string, unknown>
Record<string, any>
Record<string, string | boolean | string | null | undefined>
Instead of:
There are likely other related types that need updated with similar for consistency.
intercom-node/src/api/resources/companies/client/requests/CreateOrUpdateCompanyRequest.ts
Line 30 in 36bd5ba
I believe
custom_attributesshould be one of these:Record<string, unknown>Record<string, any>Record<string, string | boolean | string | null | undefined>Instead of:
Record<string, string>There are likely other related types that need updated with similar for consistency.