/** * Phantombuster Node - Version 1 * Discriminator: resource=agent, operation=delete */ interface Credentials { phantombusterApi: CredentialReference; } /** Delete an agent by ID */ export type PhantombusterV1AgentDeleteParams = { resource: 'agent'; operation: 'delete'; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ agentId?: string | Expression; }; export type PhantombusterV1AgentDeleteNode = { type: 'n8n-nodes-base.phantombuster'; version: 1; credentials?: Credentials; config: NodeConfig; };