UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

28 lines (24 loc) 784 B
/** * Beeminder Node - Version 1 * Discriminator: resource=goal, operation=shortCircuit */ interface Credentials { beeminderApi: CredentialReference; beeminderOAuth2Api: CredentialReference; } /** Short circuit pledge */ export type BeeminderV1GoalShortCircuitParams = { resource: 'goal'; operation: 'shortCircuit'; authentication?: 'apiToken' | 'oAuth2' | Expression<string>; /** * The name of the goal. Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt;. */ goalName?: string | Expression<string>; }; export type BeeminderV1GoalShortCircuitNode = { type: 'n8n-nodes-base.beeminder'; version: 1; credentials?: Credentials; config: NodeConfig<BeeminderV1GoalShortCircuitParams>; };