UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

26 lines (22 loc) 540 B
/** * Odoo Node - Version 1 * Discriminator: resource=opportunity, operation=delete */ interface Credentials { odooApi: CredentialReference; } /** Delete an item */ export type OdooV1OpportunityDeleteParams = { resource: 'opportunity'; operation: 'delete'; /** * Opportunity ID */ opportunityId?: string | Expression<string> | PlaceholderValue; }; export type OdooV1OpportunityDeleteNode = { type: 'n8n-nodes-base.odoo'; version: 1; credentials?: Credentials; config: NodeConfig<OdooV1OpportunityDeleteParams>; };