/** * Monica CRM Node - Version 1 * Discriminator: resource=contact, operation=delete */ interface Credentials { monicaCrmApi: CredentialReference; } /** Delete an activity */ export type MonicaCrmV1ContactDeleteParams = { resource: 'contact'; operation: 'delete'; /** * ID of the contact to delete */ contactId?: string | Expression | PlaceholderValue; }; export type MonicaCrmV1ContactDeleteNode = { type: 'n8n-nodes-base.monicaCrm'; version: 1; credentials?: Credentials; config: NodeConfig; };