2022-08-17 08:50:24 -07:00
import { INodeProperties } from 'n8n-workflow' ;
2021-02-07 12:39:39 -08:00
2021-12-03 00:44:16 -08:00
export const taskOperations : INodeProperties [ ] = [
2021-02-07 12:39:39 -08:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-04-25 02:22:16 -07:00
noDataExpression : true ,
2021-02-07 12:39:39 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'task' ] ,
2021-02-07 12:39:39 -08:00
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
description : 'Create a task' ,
2022-07-10 13:50:51 -07:00
action : 'Create a task' ,
2021-02-07 12:39:39 -08:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete a task' ,
2022-07-10 13:50:51 -07:00
action : 'Delete a task' ,
2021-02-07 12:39:39 -08:00
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Get a task' ,
2022-07-10 13:50:51 -07:00
action : 'Get a task' ,
2021-02-07 12:39:39 -08:00
} ,
{
2022-09-07 07:51:14 -07:00
name : 'Get Many' ,
2021-02-07 12:39:39 -08:00
value : 'getAll' ,
2022-09-13 03:36:36 -07:00
description : 'Get many tasks' ,
2022-09-08 08:10:13 -07:00
action : 'Get many tasks' ,
2021-02-07 12:39:39 -08:00
} ,
{
name : 'Update' ,
value : 'update' ,
description : 'Update a task' ,
2022-07-10 13:50:51 -07:00
action : 'Update a task' ,
2021-02-07 12:39:39 -08:00
} ,
] ,
default : 'create' ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2021-02-07 12:39:39 -08:00
2021-12-03 00:44:16 -08:00
export const taskFields : INodeProperties [ ] = [
2022-04-25 02:22:16 -07:00
{
displayName : 'Group Source' ,
name : 'groupSource' ,
required : true ,
type : 'options' ,
default : 'all' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'getAll' , 'create' , 'update' ] ,
resource : [ 'task' ] ,
2022-04-25 02:22:16 -07:00
} ,
} ,
options : [
{
name : 'All Groups' ,
value : 'all' ,
description : 'From all groups' ,
} ,
{
name : 'My Groups' ,
value : 'mine' ,
description : 'Only load groups that account is member of' ,
} ,
] ,
} ,
2021-02-07 12:39:39 -08:00
/* -------------------------------------------------------------------------- */
/* task:create */
/* -------------------------------------------------------------------------- */
2022-04-25 02:22:16 -07:00
2021-02-07 12:39:39 -08:00
{
2022-06-03 10:23:49 -07:00
displayName : 'Group Name or ID' ,
2021-02-07 12:39:39 -08:00
name : 'groupId' ,
required : true ,
type : 'options' ,
2022-08-17 08:50:24 -07:00
description :
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>' ,
2021-02-07 12:39:39 -08:00
typeOptions : {
loadOptionsMethod : 'getGroups' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'groupSource' ] ,
2021-02-07 12:39:39 -08:00
} ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'create' ] ,
resource : [ 'task' ] ,
2021-02-07 12:39:39 -08:00
} ,
} ,
default : '' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Plan Name or ID' ,
2021-02-07 12:39:39 -08:00
name : 'planId' ,
required : true ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getPlans' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'groupId' ] ,
2021-02-07 12:39:39 -08:00
} ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'create' ] ,
resource : [ 'task' ] ,
2021-02-07 12:39:39 -08:00
} ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'The plan for the task to belong to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-02-07 12:39:39 -08:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Bucket Name or ID' ,
2021-02-07 12:39:39 -08:00
name : 'bucketId' ,
required : true ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getBuckets' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'planId' ] ,
2021-02-07 12:39:39 -08:00
} ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'create' ] ,
resource : [ 'task' ] ,
2021-02-07 12:39:39 -08:00
} ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'The bucket for the task to belong to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-02-07 12:39:39 -08:00
} ,
{
displayName : 'Title' ,
name : 'title' ,
required : true ,
type : 'string' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'create' ] ,
resource : [ 'task' ] ,
2021-02-07 12:39:39 -08:00
} ,
} ,
default : '' ,
2022-04-25 02:22:16 -07:00
description : 'Title of the task' ,
2021-02-07 12:39:39 -08:00
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'create' ] ,
resource : [ 'task' ] ,
2021-02-07 12:39:39 -08:00
} ,
} ,
default : { } ,
placeholder : 'Add Field' ,
options : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Assigned To Name or ID' ,
2021-02-07 12:39:39 -08:00
name : 'assignedTo' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getMembers' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'groupId' ] ,
2021-02-07 12:39:39 -08:00
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'Who the task should be assigned to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-02-07 12:39:39 -08:00
} ,
{
displayName : 'Due Date Time' ,
name : 'dueDateTime' ,
type : 'dateTime' ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'Date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time.' ,
2021-02-07 12:39:39 -08:00
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Label Names or IDs' ,
2021-02-07 12:39:39 -08:00
name : 'labels' ,
type : 'multiOptions' ,
typeOptions : {
loadOptionsMethod : 'getLabels' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'planId' ] ,
2021-02-07 12:39:39 -08:00
} ,
default : [ ] ,
2022-08-17 08:50:24 -07:00
description :
'Labels to assign to the task. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-02-07 12:39:39 -08:00
} ,
{
displayName : 'Percent Complete' ,
name : 'percentComplete' ,
type : 'number' ,
typeOptions : {
minValue : 0 ,
maxValue : 100 ,
} ,
default : 0 ,
2022-08-17 08:50:24 -07:00
description :
'Percentage of task completion. When set to 100, the task is considered completed.' ,
2021-02-07 12:39:39 -08:00
} ,
] ,
} ,
/* -------------------------------------------------------------------------- */
/* task:delete */
/* -------------------------------------------------------------------------- */
{
displayName : 'Task ID' ,
name : 'taskId' ,
required : true ,
type : 'string' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'delete' ] ,
resource : [ 'task' ] ,
2021-02-07 12:39:39 -08:00
} ,
} ,
default : '' ,
} ,
/* -------------------------------------------------------------------------- */
/* task:get */
/* -------------------------------------------------------------------------- */
{
displayName : 'Task ID' ,
name : 'taskId' ,
required : true ,
type : 'string' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'get' ] ,
resource : [ 'task' ] ,
2021-02-07 12:39:39 -08:00
} ,
} ,
default : '' ,
} ,
/* -------------------------------------------------------------------------- */
/* task:getAll */
/* -------------------------------------------------------------------------- */
2022-04-25 02:22:16 -07:00
{
displayName : 'Tasks For' ,
name : 'tasksFor' ,
default : 'member' ,
required : true ,
type : 'options' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'getAll' ] ,
resource : [ 'task' ] ,
2022-04-25 02:22:16 -07:00
} ,
} ,
options : [
{
name : 'Group Member' ,
value : 'member' ,
description : 'Tasks assigned to group member' ,
} ,
{
name : 'Plan' ,
value : 'plan' ,
description : 'Tasks in group plan' ,
} ,
] ,
} ,
2021-02-07 12:39:39 -08:00
{
2022-06-03 10:23:49 -07:00
displayName : 'Group Name or ID' ,
2021-02-07 12:39:39 -08:00
name : 'groupId' ,
required : true ,
type : 'options' ,
2022-08-17 08:50:24 -07:00
description :
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>' ,
2021-02-07 12:39:39 -08:00
typeOptions : {
loadOptionsMethod : 'getGroups' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'groupSource' ] ,
2021-02-07 12:39:39 -08:00
} ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'getAll' ] ,
resource : [ 'task' ] ,
2021-02-07 12:39:39 -08:00
} ,
} ,
default : '' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Member Name or ID' ,
2021-02-07 12:39:39 -08:00
name : 'memberId' ,
type : 'options' ,
2022-08-17 08:50:24 -07:00
description :
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>' ,
2021-02-07 12:39:39 -08:00
typeOptions : {
loadOptionsMethod : 'getMembers' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'groupId' ] ,
2021-02-07 12:39:39 -08:00
} ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'getAll' ] ,
resource : [ 'task' ] ,
tasksFor : [ 'member' ] ,
2022-04-25 02:22:16 -07:00
} ,
} ,
default : '' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Plan Name or ID' ,
2022-04-25 02:22:16 -07:00
name : 'planId' ,
type : 'options' ,
2022-08-17 08:50:24 -07:00
description :
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>' ,
2022-04-25 02:22:16 -07:00
typeOptions : {
loadOptionsMethod : 'getPlans' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'groupId' ] ,
2022-04-25 02:22:16 -07:00
} ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'getAll' ] ,
resource : [ 'task' ] ,
tasksFor : [ 'plan' ] ,
2021-02-07 12:39:39 -08:00
} ,
} ,
default : '' ,
} ,
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'getAll' ] ,
resource : [ 'task' ] ,
2021-02-07 12:39:39 -08:00
} ,
} ,
default : false ,
2022-04-25 02:22:16 -07:00
description : 'Whether to return all results or only up to a given limit' ,
2021-02-07 12:39:39 -08:00
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'getAll' ] ,
resource : [ 'task' ] ,
returnAll : [ false ] ,
2021-02-07 12:39:39 -08:00
} ,
} ,
typeOptions : {
minValue : 1 ,
maxValue : 500 ,
} ,
2022-04-25 02:22:16 -07:00
default : 50 ,
description : 'Max number of results to return' ,
2021-02-07 12:39:39 -08:00
} ,
/* -------------------------------------------------------------------------- */
/* task:update */
/* -------------------------------------------------------------------------- */
{
displayName : 'Task ID' ,
name : 'taskId' ,
required : true ,
type : 'string' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'update' ] ,
resource : [ 'task' ] ,
2021-02-07 12:39:39 -08:00
} ,
} ,
default : '' ,
2022-04-25 02:22:16 -07:00
description : 'The ID of the Task' ,
2021-02-07 12:39:39 -08:00
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'update' ] ,
resource : [ 'task' ] ,
2021-02-07 12:39:39 -08:00
} ,
} ,
default : { } ,
placeholder : 'Add Field' ,
options : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Assigned To Name or ID' ,
2021-02-07 12:39:39 -08:00
name : 'assignedTo' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getMembers' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'groupId' ] ,
2021-02-07 12:39:39 -08:00
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'Who the task should be assigned to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-02-07 12:39:39 -08:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Bucket Name or ID' ,
2021-02-07 12:39:39 -08:00
name : 'bucketId' ,
2022-04-25 02:22:16 -07:00
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getBuckets' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'updateFields.planId' ] ,
2022-04-25 02:22:16 -07:00
} ,
2021-02-07 12:39:39 -08:00
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'The bucket for the task to belong to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-02-07 12:39:39 -08:00
} ,
{
displayName : 'Due Date Time' ,
name : 'dueDateTime' ,
type : 'dateTime' ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'Date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time.' ,
2021-02-07 12:39:39 -08:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Group Name or ID' ,
2021-02-07 12:39:39 -08:00
name : 'groupId' ,
2022-04-25 02:22:16 -07:00
type : 'options' ,
2022-08-17 08:50:24 -07:00
description :
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>' ,
2022-04-25 02:22:16 -07:00
typeOptions : {
loadOptionsMethod : 'getGroups' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'groupSource' ] ,
2022-04-25 02:22:16 -07:00
} ,
2021-02-07 12:39:39 -08:00
default : '' ,
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Label Names or IDs' ,
2021-02-07 12:39:39 -08:00
name : 'labels' ,
type : 'multiOptions' ,
typeOptions : {
loadOptionsMethod : 'getLabels' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'updateFields.planId' ] ,
2021-02-07 12:39:39 -08:00
} ,
default : [ ] ,
2022-08-17 08:50:24 -07:00
description :
'Labels to assign to the task. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-02-07 12:39:39 -08:00
} ,
{
displayName : 'Percent Complete' ,
name : 'percentComplete' ,
type : 'number' ,
typeOptions : {
minValue : 0 ,
maxValue : 100 ,
} ,
default : 0 ,
2022-08-17 08:50:24 -07:00
description :
'Percentage of task completion. When set to 100, the task is considered completed.' ,
2021-02-07 12:39:39 -08:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Plan Name or ID' ,
2021-02-07 12:39:39 -08:00
name : 'planId' ,
2022-04-25 02:22:16 -07:00
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getPlans' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'groupId' ] ,
2022-04-25 02:22:16 -07:00
} ,
2021-02-07 12:39:39 -08:00
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'The plan for the task to belong to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-02-07 12:39:39 -08:00
} ,
{
displayName : 'Title' ,
name : 'title' ,
type : 'string' ,
default : '' ,
2022-04-25 02:22:16 -07:00
description : 'Title of the task' ,
2021-02-07 12:39:39 -08:00
} ,
] ,
} ,
2021-12-03 00:44:16 -08:00
] ;