/** * MISP Node - Version 1 * Discriminator: resource=feed, operation=update */ interface Credentials { mispApi: CredentialReference; } export type MispV1FeedUpdateParams = { resource: 'feed'; operation: 'update'; /** * ID of the feed to update */ feedId?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** Who will be able to see this event once published * @default 0 */ distribution?: 3 | 2 | 5 | 4 | 1 | 0 | Expression; /** Name */ name?: string | Expression | PlaceholderValue; /** Provider */ provider?: string | Expression | PlaceholderValue; /** Filter rules for the feed */ rules?: IDataObject | string | Expression; /** URL */ url?: string | Expression | PlaceholderValue; }; }; export type MispV1FeedUpdateNode = { type: 'n8n-nodes-base.misp'; version: 1; credentials?: Credentials; config: NodeConfig; };