n8n/packages/nodes-base/nodes/Copper/descriptions/TaskDescription.ts
Iván Ovejero b03e358a12
refactor: Integrate consistent-type-imports in nodes-base (no-changelog) (#5267)
* 👕 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
2023-01-27 12:22:44 +01:00

310 lines
5.5 KiB
TypeScript

import type { INodeProperties } from 'n8n-workflow';
export const taskOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['task'],
},
},
options: [
{
name: 'Create',
value: 'create',
action: 'Create a task',
},
{
name: 'Delete',
value: 'delete',
action: 'Delete a task',
},
{
name: 'Get',
value: 'get',
action: 'Get a task',
},
{
name: 'Get Many',
value: 'getAll',
action: 'Get many tasks',
},
{
name: 'Update',
value: 'update',
action: 'Update a task',
},
],
default: 'create',
},
];
export const taskFields: INodeProperties[] = [
// ----------------------------------------
// task: create
// ----------------------------------------
{
displayName: 'Name',
name: 'name',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: ['task'],
operation: ['create'],
},
},
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: ['task'],
operation: ['create'],
},
},
options: [
{
displayName: 'Assignee ID',
name: 'assignee_id',
type: 'string',
default: '',
description: 'ID of the user who will own the task to create',
},
{
displayName: 'Details',
name: 'details',
type: 'string',
default: '',
description: 'Description of the task to create',
},
{
displayName: 'Priority',
name: 'priority',
type: 'options',
default: 'High',
options: [
{
name: 'High',
value: 'High',
},
{
name: 'None',
value: 'None',
},
],
},
{
displayName: 'Status',
name: 'status',
type: 'options',
default: 'Open',
options: [
{
name: 'Completed',
value: 'Completed',
},
{
name: 'Open',
value: 'Open',
},
],
},
],
},
// ----------------------------------------
// task: delete
// ----------------------------------------
{
displayName: 'Task ID',
name: 'taskId',
description: 'ID of the task to delete',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: ['task'],
operation: ['delete'],
},
},
},
// ----------------------------------------
// task: get
// ----------------------------------------
{
displayName: 'Task ID',
name: 'taskId',
description: 'ID of the task to retrieve',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: ['task'],
operation: ['get'],
},
},
},
// ----------------------------------------
// task: getAll
// ----------------------------------------
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
default: false,
description: 'Whether to return all results or only up to a given limit',
displayOptions: {
show: {
resource: ['task'],
operation: ['getAll'],
},
},
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
default: 5,
description: 'Max number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
},
displayOptions: {
show: {
resource: ['task'],
operation: ['getAll'],
returnAll: [false],
},
},
},
{
displayName: 'Filters',
name: 'filterFields',
type: 'collection',
placeholder: 'Add Filter',
default: {},
displayOptions: {
show: {
resource: ['task'],
operation: ['getAll'],
},
},
options: [
{
displayName: 'Assignee IDs',
name: 'assignee_ids',
type: 'string',
default: '',
description: 'Comma-separated IDs of assignee IDs to filter by',
},
{
displayName: 'Project IDs',
name: 'project_ids',
type: 'string',
default: '',
description: 'Comma-separated IDs of project IDs to filter by',
},
],
},
// ----------------------------------------
// task: update
// ----------------------------------------
{
displayName: 'Task ID',
name: 'taskId',
description: 'ID of the task to update',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: ['task'],
operation: ['update'],
},
},
},
{
displayName: 'Update Fields',
name: 'updateFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: ['task'],
operation: ['update'],
},
},
options: [
{
displayName: 'Assignee ID',
name: 'assignee_id',
type: 'string',
default: '',
description: 'ID of the user who will own the task',
},
{
displayName: 'Details',
name: 'details',
type: 'string',
default: '',
description: 'Description to set for the task',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
description: 'Name to set for the task',
},
{
displayName: 'Priority',
name: 'priority',
type: 'options',
default: 'High',
options: [
{
name: 'High',
value: 'High',
},
{
name: 'None',
value: 'None',
},
],
},
{
displayName: 'Status',
name: 'status',
type: 'options',
default: 'Open',
options: [
{
name: 'Completed',
value: 'Completed',
},
{
name: 'Open',
value: 'Open',
},
],
},
],
},
];