2021-06-04 20:39:39 -07:00
|
|
|
import {
|
|
|
|
INodeProperties,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const taskOperations: INodeProperties[] = [
|
2021-06-04 20:39:39 -07:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Create',
|
|
|
|
value: 'create',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Delete',
|
|
|
|
value: 'delete',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get',
|
|
|
|
value: 'get',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get All',
|
|
|
|
value: 'getAll',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Update',
|
|
|
|
value: 'update',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'get',
|
|
|
|
description: 'The operation to perform.',
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|
2021-06-04 20:39:39 -07:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const taskFields: INodeProperties[] = [
|
2021-06-04 20:39:39 -07:00
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* task:create */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'List ID',
|
|
|
|
name: 'taskListId',
|
|
|
|
type: 'options',
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getTaskLists',
|
|
|
|
},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The identifier of the list, unique in the user\'s mailbox',
|
2021-06-04 20:39:39 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Subject',
|
|
|
|
name: 'title',
|
|
|
|
type: 'string',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'A brief description of the task',
|
2021-06-04 20:39:39 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
name: 'additionalFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Content',
|
|
|
|
name: 'content',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The content of the task',
|
2021-06-04 20:39:39 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Due',
|
|
|
|
name: 'dueDateTime',
|
|
|
|
type: 'dateTime',
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The date in the specified time zone that the task is to be finished',
|
2021-06-04 20:39:39 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Importance',
|
|
|
|
name: 'importance',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Low',
|
|
|
|
value: 'low',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Normal',
|
|
|
|
value: 'normal',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'High',
|
|
|
|
value: 'high',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'normal',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The importance of the task',
|
2021-06-04 20:39:39 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Status',
|
|
|
|
name: 'status',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Not started',
|
|
|
|
value: 'notStarted',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'In progress',
|
|
|
|
value: 'inProgress',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Completed',
|
|
|
|
value: 'completed',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Waiting On Others',
|
|
|
|
value: 'waitingOnOthers',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Deferred',
|
|
|
|
value: 'deferred',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'notStarted',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Indicates the state or progress of the task',
|
2021-06-04 20:39:39 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* task:get/delete/update/getAll */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'List ID',
|
|
|
|
name: 'taskListId',
|
|
|
|
type: 'options',
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getTaskLists',
|
|
|
|
},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'delete',
|
|
|
|
'get',
|
|
|
|
'getAll',
|
|
|
|
'update',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The identifier of the list, unique in the user\'s mailbox',
|
2021-06-04 20:39:39 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Task ID',
|
|
|
|
name: 'taskId',
|
|
|
|
type: 'string',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'delete',
|
|
|
|
'get',
|
|
|
|
'update',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* task:getAll */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'Return All',
|
|
|
|
name: 'returnAll',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'getAll',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: false,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Whether to return all results or only up to a given limit',
|
2021-06-04 20:39:39 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Limit',
|
|
|
|
name: 'limit',
|
|
|
|
type: 'number',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'getAll',
|
|
|
|
],
|
|
|
|
returnAll: [false],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
minValue: 1,
|
|
|
|
maxValue: 100,
|
|
|
|
},
|
|
|
|
default: 50,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Max number of results to return',
|
2021-06-04 20:39:39 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* task:update */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'Update Fields',
|
|
|
|
name: 'updateFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'update',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Content',
|
|
|
|
name: 'content',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The content of the task',
|
2021-06-04 20:39:39 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Due Date Time',
|
|
|
|
name: 'dueDateTime',
|
|
|
|
type: 'dateTime',
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The date in the specified time zone that the task is to be finished',
|
2021-06-04 20:39:39 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Importance',
|
|
|
|
name: 'importance',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Low',
|
|
|
|
value: 'low',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Normal',
|
|
|
|
value: 'normal',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'High',
|
|
|
|
value: 'high',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'normal',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The importance of the task',
|
2021-06-04 20:39:39 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Status',
|
|
|
|
name: 'status',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Not started',
|
|
|
|
value: 'notStarted',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'In progress',
|
|
|
|
value: 'inProgress',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Completed',
|
|
|
|
value: 'completed',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Waiting On Others',
|
|
|
|
value: 'waitingOnOthers',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Deferred',
|
|
|
|
value: 'deferred',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'notStarted',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Indicates the state or progress of the task',
|
2021-06-04 20:39:39 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Subject',
|
|
|
|
name: 'title',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'A brief description of the task',
|
2021-06-04 20:39:39 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|