/** * HaloPSA Node - Version 1 * Discriminator: resource=client, operation=delete */ interface Credentials { haloPSAApi: CredentialReference; } /** Delete a client */ export type HaloPSAV1ClientDeleteParams = { resource: 'client'; operation: 'delete'; /** * Client ID */ clientId?: string | Expression | PlaceholderValue; }; export type HaloPSAV1ClientDeleteNode = { type: 'n8n-nodes-base.haloPSA'; version: 1; credentials?: Credentials; config: NodeConfig; };