/** * ClickUp Node - Version 1 * Discriminator: resource=task, operation=member */ interface Credentials { clickUpApi: CredentialReference; clickUpOAuth2Api: CredentialReference; } /** Get task members */ export type ClickUpV1TaskMemberParams = { resource: 'task'; operation: 'member'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * Task ID */ id?: string | Expression | PlaceholderValue; /** * Whether to return all results or only up to a given limit * @default true */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 50 */ limit?: number | Expression; }; export type ClickUpV1TaskMemberNode = { type: 'n8n-nodes-base.clickUp'; version: 1; credentials?: Credentials; config: NodeConfig; };