n8n/packages/nodes-base/nodes/Cortex/JobDescription.ts
Michael Kret 0ecbb4a19d
refactor: Format nodes-base package (A-F) (#3800)
* 🔨 prettier formated nodes - A

* 🔨 prettier formated nodes - B

*  prettier formated nodes - C

*  prettier formated nodes - D

*  prettier formated nodes - E-F

* 🎨 Adjust nodes-base formatting command (#3805)

* Format additional files in nodes A-F (#3811)

*  fixes

* 🎨 Add Mindee to ignored dirs

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
2022-08-01 22:47:55 +02:00

50 lines
867 B
TypeScript

import { INodeProperties } from 'n8n-workflow';
export const jobOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
description: 'Choose an operation',
required: true,
displayOptions: {
show: {
resource: ['job'],
},
},
options: [
{
name: 'Get',
value: 'get',
description: 'Get job details',
action: 'Get a job',
},
{
name: 'Report',
value: 'report',
description: 'Get job report',
action: 'Get a job report',
},
],
default: 'get',
},
];
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',
},
];