/** * Freshworks CRM Node - Version 1 * Discriminator: resource=contact, operation=delete */ interface Credentials { freshworksCrmApi: CredentialReference; } /** Delete an account */ export type FreshworksCrmV1ContactDeleteParams = { resource: 'contact'; operation: 'delete'; /** * ID of the contact to delete */ contactId?: string | Expression | PlaceholderValue; }; export type FreshworksCrmV1ContactDeleteNode = { type: 'n8n-nodes-base.freshworksCrm'; version: 1; credentials?: Credentials; config: NodeConfig; };