n8n-nodes-base
Version:
Base nodes of n8n
47 lines (43 loc) • 1.23 kB
text/typescript
/**
* MISP Node - Version 1
* Discriminator: resource=attribute, operation=create
*/
interface Credentials {
mispApi: CredentialReference;
}
export type MispV1AttributeCreateParams = {
resource: 'attribute';
operation: 'create';
/**
* UUID of the event to attach the attribute to
*/
eventId?: string | Expression<string> | PlaceholderValue;
/**
* Type
* @default text
*/
type?: 'text' | 'url' | 'comment' | Expression<string>;
/**
* Value
*/
value?: string | Expression<string> | PlaceholderValue;
/**
* Additional Fields
* @default {}
*/
additionalFields?: {
/** 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>;
};
};
export type MispV1AttributeCreateNode = {
type: 'n8n-nodes-base.misp';
version: 1;
credentials?: Credentials;
config: NodeConfig<MispV1AttributeCreateParams>;
};