/** * Clockify Node - Version 1 * Discriminator: resource=client, operation=create */ interface Credentials { clockifyApi: CredentialReference; } /** Create a client */ export type ClockifyV1ClientCreateParams = { resource: 'client'; operation: 'create'; /** * 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; /** * Name of client being created */ name?: string | Expression | PlaceholderValue; }; export type ClockifyV1ClientCreateNode = { type: 'n8n-nodes-base.clockify'; version: 1; credentials?: Credentials; config: NodeConfig; };