/** * ClickUp Node - Version 1 * Discriminator: resource=list, operation=get */ interface Credentials { clickUpApi: CredentialReference; clickUpOAuth2Api: CredentialReference; } /** Get a folder */ export type ClickUpV1ListGetParams = { resource: 'list'; operation: 'get'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ team?: string | Expression; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ space?: string | Expression; /** * Folderless List * @default false */ folderless?: boolean | Expression; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> * @displayOptions.show { folderless: [false] } */ folder?: string | Expression; /** * List ID */ list?: string | Expression | PlaceholderValue; }; export type ClickUpV1ListGetOutput = { archived?: boolean; content?: string; deleted?: boolean; folder?: { access?: boolean; hidden?: boolean; id?: string; name?: string; }; id?: string; inbound_address?: string; name?: string; permission_level?: string; priority?: null; space?: { access?: boolean; id?: string; name?: string; }; statuses?: Array<{ color?: string; id?: string; orderindex?: number; status?: string; status_group?: string; type?: string; }>; }; export type ClickUpV1ListGetNode = { type: 'n8n-nodes-base.clickUp'; version: 1; credentials?: Credentials; config: NodeConfig; output?: Items; };