/** * Clockify Node - Version 1 * Discriminator: resource=client, operation=delete */ interface Credentials { clockifyApi: CredentialReference; } /** Delete a client */ export type ClockifyV1ClientDeleteParams = { resource: 'client'; operation: 'delete'; /** * 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; }; export type ClockifyV1ClientDeleteNode = { type: 'n8n-nodes-base.clockify'; version: 1; credentials?: Credentials; config: NodeConfig; };