n8n-nodes-base
Version:
Base nodes of n8n
26 lines (22 loc) • 654 B
text/typescript
/**
* 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<string>;
};
export type PhantombusterV1AgentDeleteNode = {
type: 'n8n-nodes-base.phantombuster';
version: 1;
credentials?: Credentials;
config: NodeConfig<PhantombusterV1AgentDeleteParams>;
};