/** * Microsoft Outlook Node - Version 1 * Discriminator: resource=draft, operation=send */ interface Credentials { microsoftOutlookOAuth2Api: CredentialReference; } /** Send an existing draft message */ export type MicrosoftOutlookV1DraftSendParams = { resource: 'draft'; operation: 'send'; /** * Message ID */ messageId?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** Email addresses of recipients. Mutiple can be set separated by comma. */ recipients?: string | Expression | PlaceholderValue; }; }; export type MicrosoftOutlookV1DraftSendNode = { type: 'n8n-nodes-base.microsoftOutlook'; version: 1; credentials?: Credentials; config: NodeConfig; };