/** * HaloPSA Node - Version 1 * Discriminator: resource=client, operation=update */ interface Credentials { haloPSAApi: CredentialReference; } /** Update a client */ export type HaloPSAV1ClientUpdateParams = { resource: 'client'; operation: 'update'; /** * Client ID */ clientId?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** Account Status * @default false */ inactive?: false | true | Expression; /** Name */ name?: string | Expression | PlaceholderValue; /** Notes */ notes?: string | Expression | PlaceholderValue; /** Whether the client is VIP or not * @default false */ is_vip?: boolean | Expression; /** Website */ website?: string | Expression | PlaceholderValue; }; }; export type HaloPSAV1ClientUpdateNode = { type: 'n8n-nodes-base.haloPSA'; version: 1; credentials?: Credentials; config: NodeConfig; };