/** * Salesforce Node - Version 1 * Discriminator: resource=opportunity, operation=delete */ interface Credentials { salesforceOAuth2Api: CredentialReference; salesforceJwtApi: CredentialReference; } /** Represents an opportunity, which is a sale or pending deal */ export type SalesforceV1OpportunityDeleteParams = { resource: 'opportunity'; operation: 'delete'; /** * OAuth Authorization Flow * @default oAuth2 */ authentication?: 'oAuth2' | 'jwt' | Expression; /** * ID of opportunity that needs to be fetched */ opportunityId?: string | Expression | PlaceholderValue; }; export type SalesforceV1OpportunityDeleteNode = { type: 'n8n-nodes-base.salesforce'; version: 1; credentials?: Credentials; config: NodeConfig; };