mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
* ✨ TheHive & Cortex nodes * 🔨 Make changes mentioned in #887 * ⚡ Improvements * ⚡ Improvements * ⚡ Improvements * ⚡ Add descriptions * ⚡ Improvements * ⚡ Improvements Co-authored-by: MedAliMarz <servfrdali@yahoo.fr>
56 lines
825 B
TypeScript
56 lines
825 B
TypeScript
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',
|
|
},
|
|
];
|