/** * Salesmate Node - Version 1 * Discriminator: resource=company, operation=delete */ interface Credentials { salesmateApi: CredentialReference; } /** Delete a company */ export type SalesmateV1CompanyDeleteParams = { resource: 'company'; operation: 'delete'; /** * If more than one company add them separated by , */ id?: string | Expression | PlaceholderValue; }; export type SalesmateV1CompanyDeleteNode = { type: 'n8n-nodes-base.salesmate'; version: 1; credentials?: Credentials; config: NodeConfig; };