/** * Clockify Node - Version 1 * Discriminator: resource=timeEntry, operation=update */ interface Credentials { clockifyApi: CredentialReference; } /** Update a client */ export type ClockifyV1TimeEntryUpdateParams = { resource: 'timeEntry'; operation: 'update'; /** * 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; /** * Time Entry ID */ timeEntryId?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** Billable * @default false */ billable?: boolean | Expression; /** Filter by custom fields * @default {} */ customFieldsUi?: { /** Custom Field */ customFieldsValues?: Array<{ /** The ID of the field to add custom field to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ customFieldId?: string | Expression; /** The value to set on custom field */ value?: string | Expression | PlaceholderValue; }>; }; /** Description */ description?: string | Expression | PlaceholderValue; /** End */ end?: 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; /** Start */ start?: string | Expression; /** Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a> * @default [] */ tagIds?: string[]; /** Task ID */ taskId?: string | Expression | PlaceholderValue; }; }; export type ClockifyV1TimeEntryUpdateNode = { type: 'n8n-nodes-base.clockify'; version: 1; credentials?: Credentials; config: NodeConfig; };