/** * Monday.com Node - Version 1 * Discriminator: resource=boardColumn, operation=create */ interface Credentials { mondayComApi: CredentialReference; mondayComOAuth2Api: CredentialReference; } /** Create a new board */ export type MondayComV1BoardColumnCreateParams = { resource: 'boardColumn'; operation: 'create'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ boardId?: string | Expression; /** * Title */ title?: string | Expression | PlaceholderValue; /** * Column Type */ columnType?: 'checkbox' | 'country' | 'date' | 'dropdown' | 'email' | 'hour' | 'Link' | 'longText' | 'numbers' | 'people' | 'person' | 'phone' | 'rating' | 'status' | 'tags' | 'team' | 'text' | 'timeline' | 'timezone' | 'week' | 'worldClock' | Expression; /** * Additional Fields * @default {} */ additionalFields?: { /** The new column's defaults */ defaults?: IDataObject | string | Expression; }; }; export type MondayComV1BoardColumnCreateOutput = { id?: string; }; export type MondayComV1BoardColumnCreateNode = { type: 'n8n-nodes-base.mondayCom'; version: 1; credentials?: Credentials; config: NodeConfig; output?: Items; };