/** * HubSpot Node - Version 1 * Discriminator: resource=ticket, operation=delete */ interface Credentials { hubspotApi: CredentialReference; hubspotAppToken: CredentialReference; hubspotOAuth2Api: CredentialReference; } /** Delete a contact */ export type HubspotV1TicketDeleteParams = { resource: 'ticket'; operation: 'delete'; authentication?: 'apiKey' | 'appToken' | 'oAuth2' | Expression; /** * Unique identifier for a particular ticket */ ticketId?: string | Expression | PlaceholderValue; }; export type HubspotV1TicketDeleteNode = { type: 'n8n-nodes-base.hubspot'; version: 1; credentials?: Credentials; config: NodeConfig; };