/** * Pipedrive Node - Version 1 * Discriminator: resource=file, operation=delete */ interface Credentials { pipedriveApi: CredentialReference; pipedriveOAuth2Api: CredentialReference; } /** Delete an activity */ export type PipedriveV1FileDeleteParams = { resource: 'file'; operation: 'delete'; authentication?: 'apiToken' | 'oAuth2' | Expression; /** * ID of the file to delete * @default 0 */ fileId?: number | Expression; }; export type PipedriveV1FileDeleteNode = { type: 'n8n-nodes-base.pipedrive'; version: 1; credentials?: Credentials; config: NodeConfig; };