/** * HubSpot Node - Version 2.1 * Discriminator: resource=company, operation=delete */ interface Credentials { hubspotApi: CredentialReference; hubspotAppToken: CredentialReference; hubspotOAuth2Api: CredentialReference; } /** Delete a contact */ export type HubspotV21CompanyDeleteParams = { resource: 'company'; operation: 'delete'; authentication?: 'apiKey' | 'appToken' | 'oAuth2' | Expression; /** * Company to Delete * @default {"mode":"list","value":""} */ companyId?: { __rl: true; mode: 'list' | 'id'; value: string; cachedResultName?: string }; }; export type HubspotV21CompanyDeleteNode = { type: 'n8n-nodes-base.hubspot'; version: 2.1; credentials?: Credentials; config: NodeConfig; };