/** * Clockify Node - Version 1 * Discriminator: resource=client, operation=update */ interface Credentials { clockifyApi: CredentialReference; } /** Update a client */ export type ClockifyV1ClientUpdateParams = { resource: 'client'; 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; /** * Client ID */ clientId?: string | Expression | PlaceholderValue; /** * Name */ name?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** Address of client being created/updated */ address?: string | Expression | PlaceholderValue; /** Archived * @default false */ archived?: boolean | Expression; }; }; export type ClockifyV1ClientUpdateNode = { type: 'n8n-nodes-base.clockify'; version: 1; credentials?: Credentials; config: NodeConfig; };