/** * Beeminder Node - Version 1 * Discriminator: resource=goal, operation=cancelStepDown */ interface Credentials { beeminderApi: CredentialReference; beeminderOAuth2Api: CredentialReference; } export type BeeminderV1GoalCancelStepDownParams = { resource: 'goal'; operation: 'cancelStepDown'; authentication?: 'apiToken' | 'oAuth2' | Expression; /** * The name of the goal. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ goalName?: string | Expression; }; export type BeeminderV1GoalCancelStepDownNode = { type: 'n8n-nodes-base.beeminder'; version: 1; credentials?: Credentials; config: NodeConfig; };