2021-02-07 12:39:39 -08:00
import {
INodeProperties ,
} from 'n8n-workflow' ;
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 : {
resource : [
'task' ,
] ,
} ,
} ,
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
} ,
{
name : 'Get All' ,
value : 'getAll' ,
description : 'Get all tasks' ,
2022-07-10 13:50:51 -07:00
action : 'Get all 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 : {
operation : [
'getAll' ,
'create' ,
'update' ,
] ,
resource : [
'task' ,
] ,
} ,
} ,
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-06-20 07:54:01 -07:00
description : 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>' ,
2021-02-07 12:39:39 -08:00
typeOptions : {
loadOptionsMethod : 'getGroups' ,
2022-04-25 02:22:16 -07:00
loadOptionsDependsOn : [
'groupSource' ,
] ,
2021-02-07 12:39:39 -08:00
} ,
displayOptions : {
show : {
operation : [
'create' ,
] ,
resource : [
'task' ,
] ,
} ,
} ,
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' ,
loadOptionsDependsOn : [
'groupId' ,
] ,
} ,
displayOptions : {
show : {
operation : [
'create' ,
] ,
resource : [
'task' ,
] ,
} ,
} ,
default : '' ,
2022-06-03 10:23:49 -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/nodes/expressions.html#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' ,
loadOptionsDependsOn : [
'planId' ,
] ,
} ,
displayOptions : {
show : {
operation : [
'create' ,
] ,
resource : [
'task' ,
] ,
} ,
} ,
default : '' ,
2022-06-03 10:23:49 -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/nodes/expressions.html#expressions">expression</a>.' ,
2021-02-07 12:39:39 -08:00
} ,
{
displayName : 'Title' ,
name : 'title' ,
required : true ,
type : 'string' ,
displayOptions : {
show : {
operation : [
'create' ,
] ,
resource : [
'task' ,
] ,
} ,
} ,
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 : {
operation : [
'create' ,
] ,
resource : [
'task' ,
] ,
} ,
} ,
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' ,
loadOptionsDependsOn : [
'groupId' ,
] ,
} ,
default : '' ,
2022-06-03 10:23:49 -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/nodes/expressions.html#expressions">expression</a>.' ,
2021-02-07 12:39:39 -08:00
} ,
{
displayName : 'Due Date Time' ,
name : 'dueDateTime' ,
type : 'dateTime' ,
default : '' ,
2022-04-25 02:22:16 -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' ,
loadOptionsDependsOn : [
'planId' ,
] ,
} ,
default : [ ] ,
2022-06-20 07:54:01 -07:00
description : 'Labels to assign to the task. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/nodes/expressions.html#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-04-25 02:22:16 -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 : {
operation : [
'delete' ,
] ,
resource : [
'task' ,
] ,
} ,
} ,
default : '' ,
} ,
/* -------------------------------------------------------------------------- */
/* task:get */
/* -------------------------------------------------------------------------- */
{
displayName : 'Task ID' ,
name : 'taskId' ,
required : true ,
type : 'string' ,
displayOptions : {
show : {
operation : [
'get' ,
] ,
resource : [
'task' ,
] ,
} ,
} ,
default : '' ,
} ,
/* -------------------------------------------------------------------------- */
/* task:getAll */
/* -------------------------------------------------------------------------- */
2022-04-25 02:22:16 -07:00
{
displayName : 'Tasks For' ,
name : 'tasksFor' ,
default : 'member' ,
required : true ,
type : 'options' ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'task' ,
] ,
} ,
} ,
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-06-20 07:54:01 -07:00
description : 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>' ,
2021-02-07 12:39:39 -08:00
typeOptions : {
loadOptionsMethod : 'getGroups' ,
2022-04-25 02:22:16 -07:00
loadOptionsDependsOn : [
'groupSource' ,
] ,
2021-02-07 12:39:39 -08:00
} ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'task' ,
] ,
} ,
} ,
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-06-20 07:54:01 -07:00
description : 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>' ,
2021-02-07 12:39:39 -08:00
typeOptions : {
loadOptionsMethod : 'getMembers' ,
loadOptionsDependsOn : [
'groupId' ,
] ,
} ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'task' ,
] ,
2022-04-25 02:22:16 -07:00
tasksFor : [
'member' ,
] ,
} ,
} ,
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-06-20 07:54:01 -07:00
description : 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>' ,
2022-04-25 02:22:16 -07:00
typeOptions : {
loadOptionsMethod : 'getPlans' ,
loadOptionsDependsOn : [
'groupId' ,
] ,
} ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'task' ,
] ,
tasksFor : [
'plan' ,
] ,
2021-02-07 12:39:39 -08:00
} ,
} ,
default : '' ,
} ,
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'task' ,
] ,
} ,
} ,
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 : {
operation : [
'getAll' ,
] ,
resource : [
'task' ,
] ,
returnAll : [
false ,
] ,
} ,
} ,
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 : {
operation : [
'update' ,
] ,
resource : [
'task' ,
] ,
} ,
} ,
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 : {
operation : [
'update' ,
] ,
resource : [
'task' ,
] ,
} ,
} ,
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' ,
loadOptionsDependsOn : [
'groupId' ,
] ,
} ,
default : '' ,
2022-06-03 10:23:49 -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/nodes/expressions.html#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' ,
loadOptionsDependsOn : [
'updateFields.planId' ,
] ,
} ,
2021-02-07 12:39:39 -08:00
default : '' ,
2022-06-03 10:23:49 -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/nodes/expressions.html#expressions">expression</a>.' ,
2021-02-07 12:39:39 -08:00
} ,
{
displayName : 'Due Date Time' ,
name : 'dueDateTime' ,
type : 'dateTime' ,
default : '' ,
2022-04-25 02:22:16 -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-06-20 07:54:01 -07:00
description : 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>' ,
2022-04-25 02:22:16 -07:00
typeOptions : {
loadOptionsMethod : 'getGroups' ,
loadOptionsDependsOn : [
'groupSource' ,
] ,
} ,
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' ,
loadOptionsDependsOn : [
2022-04-25 02:22:16 -07:00
'updateFields.planId' ,
2021-02-07 12:39:39 -08:00
] ,
} ,
default : [ ] ,
2022-06-20 07:54:01 -07:00
description : 'Labels to assign to the task. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/nodes/expressions.html#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-04-25 02:22:16 -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' ,
loadOptionsDependsOn : [
'groupId' ,
] ,
} ,
2021-02-07 12:39:39 -08:00
default : '' ,
2022-06-03 10:23:49 -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/nodes/expressions.html#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
] ;