n8n-nodes-base
Version:
Base nodes of n8n
50 lines (46 loc) • 1.45 kB
text/typescript
/**
* MISP Node - Version 1
* Discriminator: resource=event, operation=create
*/
interface Credentials {
mispApi: CredentialReference;
}
export type MispV1EventCreateParams = {
resource: 'event';
operation: 'create';
/**
* Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>
*/
org_id?: string | Expression<string>;
/**
* Information on the event - max 65535 characters
*/
information?: string | Expression<string> | PlaceholderValue;
/**
* Additional Fields
* @default {}
*/
additionalFields?: {
/** Analysis maturity level of the event
* @default 0
*/
analysis?: 0 | 1 | 2 | Expression<number>;
/** Who will be able to see this event once published
* @default 0
*/
distribution?: 3 | 2 | 5 | 4 | 1 | 0 | Expression<number>;
/** Use only for when <code>Sharing Group</code> is selected in <code>Distribution</code>. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.
*/
sharing_group_id?: string | Expression<string>;
/** Threat Level ID
* @default 1
*/
threat_level_id?: 1 | 2 | 3 | 4 | Expression<number>;
};
};
export type MispV1EventCreateNode = {
type: 'n8n-nodes-base.misp';
version: 1;
credentials?: Credentials;
config: NodeConfig<MispV1EventCreateParams>;
};