/** * HaloPSA Node - Version 1 * Discriminator: resource=client, operation=create */ interface Credentials { haloPSAApi: CredentialReference; } /** Create a client */ export type HaloPSAV1ClientCreateParams = { resource: 'client'; operation: 'create'; /** * Enter client name */ clientName?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** Account Status * @default false */ inactive?: false | true | Expression; /** 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 HaloPSAV1ClientCreateNode = { type: 'n8n-nodes-base.haloPSA'; version: 1; credentials?: Credentials; config: NodeConfig; };