/** * Pipedrive Trigger Node - Version 1 * Starts the workflow when Pipedrive events occur */ export interface PipedriveTriggerV1Params { authentication?: 'apiToken' | 'oAuth2' | Expression; /** * If authentication should be activated for the webhook (makes it more secure) * @default none */ incomingAuthentication?: 'basicAuth' | 'none' | Expression; /** * Type of action to receive notifications about * @default * */ action?: 'added' | '*' | 'deleted' | 'merged' | 'updated' | Expression; /** * Type of object to receive notifications about * @default * */ object?: 'activity' | 'activityType' | '*' | 'deal' | 'note' | 'organization' | 'person' | 'pipeline' | 'product' | 'stage' | 'user' | Expression; } export interface PipedriveTriggerV1Credentials { pipedriveApi: CredentialReference; pipedriveOAuth2Api: CredentialReference; httpBasicAuth: CredentialReference; } interface PipedriveTriggerV1NodeBase { type: 'n8n-nodes-base.pipedriveTrigger'; version: 1; credentials?: PipedriveTriggerV1Credentials; isTrigger: true; } export type PipedriveTriggerV1ParamsNode = PipedriveTriggerV1NodeBase & { config: NodeConfig; }; export type PipedriveTriggerV1Node = PipedriveTriggerV1ParamsNode;