mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
✨ Add TheHive & Cortex nodes (#952)
* ✨ TheHive & Cortex nodes * 🔨 Make changes mentioned in #887 * ⚡ Improvements * ⚡ Improvements * ⚡ Improvements * ⚡ Add descriptions * ⚡ Improvements * ⚡ Improvements Co-authored-by: MedAliMarz <servfrdali@yahoo.fr>
This commit is contained in:
55
packages/nodes-base/nodes/Cortex/JobDescription.ts
Normal file
55
packages/nodes-base/nodes/Cortex/JobDescription.ts
Normal file
@@ -0,0 +1,55 @@
|
||||
import {
|
||||
INodeProperties,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export const jobOperations = [
|
||||
{
|
||||
displayName: 'Operation',
|
||||
name: 'operation',
|
||||
type: 'options',
|
||||
description:'Choose an operation',
|
||||
required: true,
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'job',
|
||||
],
|
||||
},
|
||||
},
|
||||
options: [
|
||||
{
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
description: 'Get job details',
|
||||
},
|
||||
{
|
||||
name: 'Report',
|
||||
value: 'report',
|
||||
description: 'Get job report',
|
||||
},
|
||||
],
|
||||
default: 'get',
|
||||
},
|
||||
] as INodeProperties[];
|
||||
|
||||
export const jobFields: INodeProperties[] =[
|
||||
{
|
||||
displayName: 'Job ID',
|
||||
name: 'jobId',
|
||||
type: 'string',
|
||||
required: true,
|
||||
displayOptions:{
|
||||
show: {
|
||||
resource: [
|
||||
'job',
|
||||
],
|
||||
operation: [
|
||||
'get',
|
||||
'report',
|
||||
],
|
||||
},
|
||||
},
|
||||
default:'',
|
||||
description: 'ID of the job',
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user