/** * QuickBooks Online Node - Version 1 * Discriminator: resource=bill, operation=delete */ interface Credentials { quickBooksOAuth2Api: CredentialReference; } export type QuickbooksV1BillDeleteParams = { resource: 'bill'; operation: 'delete'; /** * The ID of the bill to delete */ billId?: string | Expression | PlaceholderValue; }; export type QuickbooksV1BillDeleteNode = { type: 'n8n-nodes-base.quickbooks'; version: 1; credentials?: Credentials; config: NodeConfig; };