/** * Todoist Node - Version 2 * Discriminator: resource=label, operation=get */ interface Credentials { todoistApi: CredentialReference; todoistOAuth2Api: CredentialReference; } /** Label resource */ export type TodoistV2LabelGetParams = { resource: 'label'; operation: 'get'; authentication?: 'apiKey' | 'oAuth2' | Expression; /** * Label ID */ labelId?: string | Expression | PlaceholderValue; }; export type TodoistV2LabelGetNode = { type: 'n8n-nodes-base.todoist'; version: 2; credentials?: Credentials; config: NodeConfig; };