/** * ClickUp Node - Version 1 * Discriminator: resource=timeEntry, operation=get */ interface Credentials { clickUpApi: CredentialReference; clickUpOAuth2Api: CredentialReference; } /** Get a folder */ export type ClickUpV1TimeEntryGetParams = { resource: 'timeEntry'; 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; /** * Whether to return just the current running time entry * @default false */ running?: boolean | Expression; /** * Time Entry ID * @displayOptions.show { running: [false] } */ timeEntry?: string | Expression | PlaceholderValue; }; export type ClickUpV1TimeEntryGetNode = { type: 'n8n-nodes-base.clickUp'; version: 1; credentials?: Credentials; config: NodeConfig; };