/** * Clockify Node - Version 1 * Discriminator: resource=task, operation=getAll */ interface Credentials { clockifyApi: CredentialReference; } /** Get many clients */ export type ClockifyV1TaskGetAllParams = { resource: 'task'; operation: 'getAll'; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> * @displayOptions.hide { resource: ["workspace"] } * @default [] */ workspaceId?: string | Expression; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ projectId?: 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 100 */ limit?: number | Expression; /** * Filters * @default {} */ filters?: { /** Is Active * @default false */ 'is-active'?: boolean | Expression; /** Text to match in the task name */ name?: string | Expression | PlaceholderValue; /** Sort Column * @default NAME */ 'sort-column'?: 'NAME' | Expression; /** Sort Order * @default ASCENDING */ 'sort-order'?: 'ASCENDING' | 'DESCENDING' | Expression; }; }; export type ClockifyV1TaskGetAllNode = { type: 'n8n-nodes-base.clockify'; version: 1; credentials?: Credentials; config: NodeConfig; };