n8n-nodes-base
Version:
Base nodes of n8n
26 lines (22 loc) • 524 B
text/typescript
/**
* HaloPSA Node - Version 1
* Discriminator: resource=client, operation=delete
*/
interface Credentials {
haloPSAApi: CredentialReference;
}
/** Delete a client */
export type HaloPSAV1ClientDeleteParams = {
resource: 'client';
operation: 'delete';
/**
* Client ID
*/
clientId?: string | Expression<string> | PlaceholderValue;
};
export type HaloPSAV1ClientDeleteNode = {
type: 'n8n-nodes-base.haloPSA';
version: 1;
credentials?: Credentials;
config: NodeConfig<HaloPSAV1ClientDeleteParams>;
};