/** * 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; }; export type SalesforceV1AttachmentGetSummaryNode = { type: 'n8n-nodes-base.salesforce'; version: 1; credentials?: Credentials; config: NodeConfig; };