/** * Invoice Ninja Node - Version 1 * Discriminator: resource=client, operation=delete */ interface Credentials { invoiceNinjaApi: CredentialReference; } /** Delete a client */ export type InvoiceNinjaV1ClientDeleteParams = { resource: 'client'; operation: 'delete'; /** * API Version * @default v4 */ apiVersion?: 'v4' | 'v5' | Expression; /** * Client ID */ clientId?: string | Expression | PlaceholderValue; }; export type InvoiceNinjaV1ClientDeleteNode = { type: 'n8n-nodes-base.invoiceNinja'; version: 1; credentials?: Credentials; config: NodeConfig; };