n8n-nodes-base
Version:
Base nodes of n8n
25 lines (21 loc) • 506 B
text/typescript
/**
* MISP Node - Version 1
* Discriminator: resource=galaxy, operation=delete
*/
interface Credentials {
mispApi: CredentialReference;
}
export type MispV1GalaxyDeleteParams = {
resource: 'galaxy';
operation: 'delete';
/**
* UUID or numeric ID of the galaxy
*/
galaxyId?: string | Expression<string> | PlaceholderValue;
};
export type MispV1GalaxyDeleteNode = {
type: 'n8n-nodes-base.misp';
version: 1;
credentials?: Credentials;
config: NodeConfig<MispV1GalaxyDeleteParams>;
};