mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
0ecbb4a19d
* 🔨 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>
50 lines
867 B
TypeScript
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',
|
|
},
|
|
];
|