/** * Gmail Node - Version 1 * Discriminator: resource=draft, operation=getAll */ interface Credentials { googleApi: CredentialReference; gmailOAuth2: CredentialReference; } export type GmailV1DraftGetAllParams = { resource: 'draft'; operation: 'getAll'; authentication?: 'oAuth2' | 'serviceAccount' | Expression; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 10 */ limit?: number | Expression; /** * Additional Fields * @default {} */ additionalFields?: { /** Prefix for name of the binary property to which to write the attachments. An index starting with 0 will be added. So if name is "attachment_" the first attachment is saved to "attachment_0" * @displayOptions.hide { format: ["full", "ids", "metadata", "minimal", "raw"] } * @default attachment_ */ dataPropertyAttachmentsPrefixName?: string | Expression | PlaceholderValue; /** The format to return the message in * @default resolved */ format?: 'full' | 'ids' | 'metadata' | 'minimal' | 'raw' | 'resolved' | Expression; /** Whether to include messages from SPAM and TRASH in the results * @default false */ includeSpamTrash?: boolean | Expression; }; }; export type GmailV1DraftGetAllNode = { type: 'n8n-nodes-base.gmail'; version: 1; credentials?: Credentials; config: NodeConfig; };