/** * Wekan Node - Version 1 * Discriminator: resource=list, operation=get */ interface Credentials { wekanApi: CredentialReference; } /** Get the data of a board */ export type WekanV1ListGetParams = { resource: 'list'; operation: 'get'; /** * The ID of the board that list belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ boardId?: string | Expression; /** * The ID of the list to get */ listId?: string | Expression | PlaceholderValue; }; export type WekanV1ListGetNode = { type: 'n8n-nodes-base.wekan'; version: 1; credentials?: Credentials; config: NodeConfig; };