/** * Wekan Node - Version 1 * Discriminator: resource=board, operation=create */ interface Credentials { wekanApi: CredentialReference; } /** Create a new board */ export type WekanV1BoardCreateParams = { resource: 'board'; operation: 'create'; /** * The title of the board */ title?: string | Expression | PlaceholderValue; /** * The user ID in Wekan. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ owner?: string | Expression; /** * Additional Fields * @default {} */ additionalFields?: { /** Whether to set the board active * @default false */ isActive?: boolean | Expression; /** Whether to set the owner an admin of the board * @default false */ isAdmin?: boolean | Expression; /** The color of the board */ color?: 'belize' | 'midnight' | 'nephritis' | 'pomegranate' | 'pumpkin' | 'wisteria' | Expression; /** Whether to enable comments * @default false */ isCommentOnly?: boolean | Expression; /** Whether to disable comments * @default false */ isNoComments?: boolean | Expression; /** Set the board permission * @default private */ permission?: 'private' | 'public' | Expression; /** Whether to only move cards, assign himself to card and comment * @default false */ isWorker?: boolean | Expression; }; }; export type WekanV1BoardCreateNode = { type: 'n8n-nodes-base.wekan'; version: 1; credentials?: Credentials; config: NodeConfig; };