/** * Harvest Node - Version 1 * Discriminator: resource=estimate, operation=delete */ interface Credentials { harvestApi: CredentialReference; harvestOAuth2Api: CredentialReference; } /** Delete a client */ export type HarvestV1EstimateDeleteParams = { resource: 'estimate'; operation: 'delete'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ accountId?: string | Expression; /** * The ID of the estimate want to delete */ id?: string | Expression | PlaceholderValue; }; export type HarvestV1EstimateDeleteNode = { type: 'n8n-nodes-base.harvest'; version: 1; credentials?: Credentials; config: NodeConfig; };