/** * Monday.com Node - Version 1 * Discriminator: resource=boardItem, operation=getAll */ interface Credentials { mondayComApi: CredentialReference; mondayComOAuth2Api: CredentialReference; } /** Get many boards */ export type MondayComV1BoardItemGetAllParams = { resource: 'boardItem'; operation: 'getAll'; 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; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ groupId?: string | Expression; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 50 */ limit?: number | Expression; }; export type MondayComV1BoardItemGetAllOutput = { column_values?: Array<{ column?: { archived?: boolean; settings_str?: string; title?: string; }; id?: string; type?: string; }>; created_at?: string; id?: string; name?: string; state?: string; }; export type MondayComV1BoardItemGetAllNode = { type: 'n8n-nodes-base.mondayCom'; version: 1; credentials?: Credentials; config: NodeConfig; output?: Items; };