UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

31 lines (27 loc) 853 B
/** * 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 &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt; * @displayOptions.hide { id: [""] } */ responder?: string | Expression<string>; }; export type TheHiveProjectV1TaskExecuteResponderNode = { type: 'n8n-nodes-base.theHiveProject'; version: 1; credentials?: Credentials; config: NodeConfig<TheHiveProjectV1TaskExecuteResponderParams>; };