mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
6dcdb30bf4
* ✏️ Alphabetize lint rules * 🔥 Remove duplicates * ⚡ Update `lintfix` script * 👕 Apply `node-param-operation-without-no-data-expression` (#3329) * 👕 Apply `node-param-operation-without-no-data-expression` * 👕 Add exceptions * 👕 Apply `node-param-description-weak` (#3328) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-value-duplicate` (#3331) * 👕 Apply `node-param-description-miscased-json` (#3337) * 👕 Apply `node-param-display-name-excess-inner-whitespace` (#3335) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-type-options-missing-from-limit` (#3336) * Rule workig as intended * ✏️ Uncomment rules Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-name-duplicate` (#3338) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-description-wrong-for-simplify` (#3334) * ⚡ fix * ⚡ exceptions * ⚡ changed rule ignoring from file to line * 👕 Apply `node-param-resource-without-no-data-expression` (#3339) * 👕 Apply `node-param-display-name-untrimmed` (#3341) * 👕 Apply `node-param-display-name-miscased-id` (#3340) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-resource-with-plural-option` (#3342) * 👕 Apply `node-param-description-wrong-for-upsert` (#3333) * ⚡ fix * ⚡ replaced record with contact in description * ⚡ fix Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-description-identical-to-name` (#3343) * 👕 Apply `node-param-option-name-containing-star` (#3347) * 👕 Apply `node-param-display-name-wrong-for-update-fields` (#3348) * 👕 Apply `node-param-option-name-wrong-for-get-all` (#3345) * ⚡ fix * ⚡ exceptions * 👕 Apply node-param-display-name-wrong-for-simplify (#3344) * Rule working as intended * Uncomented other rules * 👕 Undo and add exceptions Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * ⚡ Alphabetize lint rules * ⚡ Restore `lintfix` script Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com> Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com>
512 lines
10 KiB
TypeScript
512 lines
10 KiB
TypeScript
import {
|
|
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',
|
|
description: 'Add a task to tasklist',
|
|
},
|
|
{
|
|
name: 'Delete',
|
|
value: 'delete',
|
|
description: 'Delete a task',
|
|
},
|
|
{
|
|
name: 'Get',
|
|
value: 'get',
|
|
description: 'Retrieve a task',
|
|
},
|
|
{
|
|
name: 'Get All',
|
|
value: 'getAll',
|
|
description: 'Retrieve all tasks from a tasklist',
|
|
},
|
|
{
|
|
name: 'Update',
|
|
value: 'update',
|
|
description: 'Update a task',
|
|
},
|
|
],
|
|
default: 'create',
|
|
},
|
|
];
|
|
|
|
export const taskFields: INodeProperties[] = [
|
|
/* -------------------------------------------------------------------------- */
|
|
/* task:create */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'TaskList',
|
|
name: 'task',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTasks',
|
|
},
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'create',
|
|
],
|
|
resource: [
|
|
'task',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Title',
|
|
name: 'title',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Title of the task',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'create',
|
|
],
|
|
resource: [
|
|
'task',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Additional Fields',
|
|
name: 'additionalFields',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'create',
|
|
],
|
|
resource: [
|
|
'task',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Completion Date',
|
|
name: 'completed',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.',
|
|
},
|
|
{
|
|
displayName: 'Deleted',
|
|
name: 'deleted',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Flag indicating whether the task has been deleted',
|
|
},
|
|
{
|
|
displayName: 'Due Date',
|
|
name: 'dueDate',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'Due date of the task',
|
|
},
|
|
{
|
|
displayName: 'Notes',
|
|
name: 'notes',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Additional Notes',
|
|
},
|
|
{
|
|
displayName: 'Parent',
|
|
name: 'parent',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Parent task identifier. If the task is created at the top level, this parameter is omitted.',
|
|
},
|
|
{
|
|
displayName: 'Previous',
|
|
name: 'previous',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Previous sibling task identifier. If the task is created at the first position among its siblings, this parameter is omitted.',
|
|
},
|
|
{
|
|
displayName: 'Status',
|
|
name: 'status',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Needs Action',
|
|
value: 'needsAction',
|
|
},
|
|
{
|
|
name: 'Completed',
|
|
value: 'completed',
|
|
},
|
|
],
|
|
default: '',
|
|
description: 'Current status of the task',
|
|
},
|
|
|
|
],
|
|
},
|
|
/* -------------------------------------------------------------------------- */
|
|
/* task:delete */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'TaskList',
|
|
name: 'task',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTasks',
|
|
},
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'delete',
|
|
],
|
|
resource: [
|
|
'task',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Task ID',
|
|
name: 'taskId',
|
|
type: 'string',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'delete',
|
|
],
|
|
resource: [
|
|
'task',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
},
|
|
/* -------------------------------------------------------------------------- */
|
|
/* task:get */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'TaskList',
|
|
name: 'task',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTasks',
|
|
},
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'get',
|
|
],
|
|
resource: [
|
|
'task',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Task ID',
|
|
name: 'taskId',
|
|
type: 'string',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'get',
|
|
],
|
|
resource: [
|
|
'task',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
},
|
|
/* -------------------------------------------------------------------------- */
|
|
/* task:getAll */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'TaskList',
|
|
name: 'task',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTasks',
|
|
},
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
resource: [
|
|
'task',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Return All',
|
|
name: 'returnAll',
|
|
type: 'boolean',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
resource: [
|
|
'task',
|
|
],
|
|
},
|
|
},
|
|
default: false,
|
|
description: 'Whether to return all results or only up to a given limit',
|
|
},
|
|
{
|
|
displayName: 'Limit',
|
|
name: 'limit',
|
|
type: 'number',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
resource: [
|
|
'task',
|
|
],
|
|
returnAll: [
|
|
false,
|
|
],
|
|
},
|
|
},
|
|
typeOptions: {
|
|
minValue: 1,
|
|
maxValue: 100,
|
|
},
|
|
default: 20,
|
|
description: 'Max number of results to return',
|
|
},
|
|
{
|
|
displayName: 'Additional Fields',
|
|
name: 'additionalFields',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
resource: [
|
|
'task',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Completed Max',
|
|
name: 'completedMax',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'Upper bound for a task completion date (as a RFC 3339 timestamp) to filter by',
|
|
},
|
|
{
|
|
displayName: 'Completed Min',
|
|
name: 'completedMin',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'Lower bound for a task completion date (as a RFC 3339 timestamp) to filter by',
|
|
},
|
|
{
|
|
displayName: 'Due Min',
|
|
name: 'dueMin',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'Lower bound for a task due date (as a RFC 3339 timestamp) to filter by',
|
|
},
|
|
{
|
|
displayName: 'Due Max',
|
|
name: 'dueMax',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'Upper bound for a task due date (as a RFC 3339 timestamp) to filter by',
|
|
},
|
|
{
|
|
displayName: 'Show Completed',
|
|
name: 'showCompleted',
|
|
type: 'boolean',
|
|
default: true,
|
|
// eslint-disable-next-line n8n-nodes-base/node-param-description-unencoded-angle-brackets
|
|
description: 'Flag indicating whether completed tasks are returned in the result. <strong>Show Hidden</strong> must also be True to show tasks completed in first party clients such as the web UI or Google\'s mobile apps.',
|
|
},
|
|
{
|
|
displayName: 'Show Deleted',
|
|
name: 'showDeleted',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Flag indicating whether deleted tasks are returned in the result',
|
|
},
|
|
{
|
|
displayName: 'Show Hidden',
|
|
name: 'showHidden',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Flag indicating whether hidden tasks are returned in the result',
|
|
},
|
|
{
|
|
displayName: 'Updated Min',
|
|
name: 'updatedMin',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'Lower bound for a task last modification time (as a RFC 3339 timestamp) to filter by',
|
|
},
|
|
],
|
|
},
|
|
/* -------------------------------------------------------------------------- */
|
|
/* task:update */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'TaskList',
|
|
name: 'task',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTasks',
|
|
},
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'update',
|
|
],
|
|
resource: [
|
|
'task',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Task ID',
|
|
name: 'taskId',
|
|
type: 'string',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'update',
|
|
],
|
|
resource: [
|
|
'task',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Update Fields',
|
|
name: 'updateFields',
|
|
type: 'collection',
|
|
placeholder: 'Update Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'update',
|
|
],
|
|
resource: [
|
|
'task',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Completion Date',
|
|
name: 'completed',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.',
|
|
},
|
|
|
|
{
|
|
displayName: 'Deleted',
|
|
name: 'deleted',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Flag indicating whether the task has been deleted',
|
|
},
|
|
{
|
|
displayName: 'Due Date',
|
|
name: 'dueDate',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'Due date of the task',
|
|
},
|
|
{
|
|
displayName: 'Notes',
|
|
name: 'notes',
|
|
type: 'string',
|
|
typeOptions: {
|
|
alwaysOpenEditWindow: true,
|
|
},
|
|
default: '',
|
|
description: 'Additional Notes',
|
|
},
|
|
{
|
|
displayName: 'Previous',
|
|
name: 'previous',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Previous sibling task identifier. If the task is created at the first position among its siblings, this parameter is omitted.',
|
|
},
|
|
{
|
|
displayName: 'Status',
|
|
name: 'status',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Needs Update',
|
|
value: 'needsAction',
|
|
},
|
|
{
|
|
name: 'Completed',
|
|
value: 'completed',
|
|
},
|
|
],
|
|
default: '',
|
|
description: 'Current status of the task',
|
|
},
|
|
{
|
|
displayName: 'Title',
|
|
name: 'title',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Title of the task',
|
|
},
|
|
],
|
|
},
|
|
];
|