UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

28 lines (24 loc) 714 B
/** * Salesforce Node - Version 1 * Discriminator: resource=attachment, operation=getSummary */ interface Credentials { salesforceOAuth2Api: CredentialReference; salesforceJwtApi: CredentialReference; } /** Represents a file that a has uploaded and attached to a parent object */ export type SalesforceV1AttachmentGetSummaryParams = { resource: 'attachment'; operation: 'getSummary'; /** * OAuth Authorization Flow * @default oAuth2 */ authentication?: 'oAuth2' | 'jwt' | Expression<string>; }; export type SalesforceV1AttachmentGetSummaryNode = { type: 'n8n-nodes-base.salesforce'; version: 1; credentials?: Credentials; config: NodeConfig<SalesforceV1AttachmentGetSummaryParams>; };