/** * TheHive 5 Node - Version 1 * Discriminator: resource=task, operation=executeResponder */ interface Credentials { theHiveProjectApi: CredentialReference; } export type TheHiveProjectV1TaskExecuteResponderParams = { resource: 'task'; operation: 'executeResponder'; /** * Task * @default {"mode":"list","value":""} */ id?: { __rl: true; mode: 'list' | 'id'; value: string; cachedResultName?: string }; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> * @displayOptions.hide { id: [""] } */ responder?: string | Expression; }; export type TheHiveProjectV1TaskExecuteResponderNode = { type: 'n8n-nodes-base.theHiveProject'; version: 1; credentials?: Credentials; config: NodeConfig; };