/**
 * MISP Node - Version 1
 * Discriminator: resource=feed, operation=enable
 */


interface Credentials {
  mispApi: CredentialReference;
}

export type MispV1FeedEnableParams = {
  resource: 'feed';
  operation: 'enable';
/**
 * UUID or numeric ID of the feed
 */
    feedId?: string | Expression<string> | PlaceholderValue;
};

export type MispV1FeedEnableNode = {
  type: 'n8n-nodes-base.misp';
  version: 1;
  credentials?: Credentials;
  config: NodeConfig<MispV1FeedEnableParams>;
};