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