mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
b03e358a12
* 👕 Enable `consistent-type-imports` for nodes-base
* 👕 Apply to nodes-base
* ⏪ Undo unrelated changes
* 🚚 Move to `.eslintrc.js` in nodes-base
* ⏪ Revert "Enable `consistent-type-imports` for nodes-base"
This reverts commit 529ad72b05
.
* 👕 Fix severity
253 lines
4.6 KiB
TypeScript
253 lines
4.6 KiB
TypeScript
/* eslint-disable n8n-nodes-base/node-param-default-missing */
|
|
import { getCursorPaginator } from './GenericFunctions';
|
|
import type { INodeProperties } from 'n8n-workflow';
|
|
import { workflowIdLocator } from './WorkflowLocator';
|
|
|
|
export const executionOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
default: 'getAll',
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['execution'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Get',
|
|
value: 'get',
|
|
action: 'Get an execution',
|
|
routing: {
|
|
request: {
|
|
method: 'GET',
|
|
url: '=/executions/{{ $parameter.executionId }}',
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: 'Get Many',
|
|
value: 'getAll',
|
|
action: 'Get many executions',
|
|
routing: {
|
|
request: {
|
|
method: 'GET',
|
|
url: '/executions',
|
|
},
|
|
send: {
|
|
paginate: true,
|
|
},
|
|
operations: {
|
|
pagination: getCursorPaginator(),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: 'Delete',
|
|
value: 'delete',
|
|
action: 'Delete an execution',
|
|
routing: {
|
|
request: {
|
|
method: 'DELETE',
|
|
url: '=/executions/{{ $parameter.executionId }}',
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
const deleteOperation: INodeProperties[] = [
|
|
{
|
|
displayName: 'Execution ID',
|
|
name: 'executionId',
|
|
type: 'string',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['execution'],
|
|
operation: ['delete'],
|
|
},
|
|
},
|
|
default: '',
|
|
},
|
|
];
|
|
|
|
const getAllOperation: INodeProperties[] = [
|
|
{
|
|
displayName: 'Return All',
|
|
name: 'returnAll',
|
|
type: 'boolean',
|
|
default: false,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['execution'],
|
|
operation: ['getAll'],
|
|
},
|
|
},
|
|
description: 'Whether to return all results or only up to a given limit',
|
|
},
|
|
{
|
|
displayName: 'Limit',
|
|
name: 'limit',
|
|
type: 'number',
|
|
default: 100,
|
|
typeOptions: {
|
|
minValue: 1,
|
|
maxValue: 250,
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['execution'],
|
|
operation: ['getAll'],
|
|
returnAll: [false],
|
|
},
|
|
},
|
|
routing: {
|
|
request: {
|
|
qs: {
|
|
limit: '={{ $value }}',
|
|
},
|
|
},
|
|
},
|
|
description: 'Max number of results to return',
|
|
},
|
|
{
|
|
displayName: 'Filters',
|
|
name: 'filters',
|
|
type: 'collection',
|
|
placeholder: 'Add Filter',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['execution'],
|
|
operation: ['getAll'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
// Use the common workflowIdLocator, but provide a custom routing
|
|
...workflowIdLocator,
|
|
routing: {
|
|
send: {
|
|
type: 'query',
|
|
property: 'workflowId',
|
|
value: '={{ $value || undefined }}',
|
|
},
|
|
},
|
|
description: 'Workflow to filter the executions by',
|
|
},
|
|
{
|
|
displayName: 'Status',
|
|
name: 'status',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Error',
|
|
value: 'error',
|
|
},
|
|
{
|
|
name: 'Success',
|
|
value: 'success',
|
|
},
|
|
{
|
|
name: 'Waiting',
|
|
value: 'waiting',
|
|
},
|
|
],
|
|
default: 'success',
|
|
routing: {
|
|
send: {
|
|
type: 'query',
|
|
property: 'status',
|
|
value: '={{ $value }}',
|
|
},
|
|
},
|
|
description: 'Status to filter the executions by',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
default: {},
|
|
placeholder: 'Add Option',
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['execution'],
|
|
operation: ['getAll'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Include Execution Details',
|
|
name: 'activeWorkflows',
|
|
type: 'boolean',
|
|
default: false,
|
|
routing: {
|
|
send: {
|
|
type: 'query',
|
|
property: 'includeData',
|
|
value: '={{ $value }}',
|
|
},
|
|
},
|
|
description: 'Whether to include the detailed execution data',
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
const getOperation: INodeProperties[] = [
|
|
{
|
|
displayName: 'Execution ID',
|
|
name: 'executionId',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['execution'],
|
|
operation: ['get'],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
default: {},
|
|
placeholder: 'Add Option',
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['execution'],
|
|
operation: ['get'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Include Execution Details',
|
|
name: 'activeWorkflows',
|
|
type: 'boolean',
|
|
default: false,
|
|
routing: {
|
|
send: {
|
|
type: 'query',
|
|
property: 'includeData',
|
|
value: '={{ $value }}',
|
|
},
|
|
},
|
|
description: 'Whether to include the detailed execution data',
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
export const executionFields: INodeProperties[] = [
|
|
...deleteOperation,
|
|
...getAllOperation,
|
|
...getOperation,
|
|
];
|