2020-12-02 02:24:25 -08:00
|
|
|
import {
|
|
|
|
INodeProperties,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const taskOperations: INodeProperties[] = [
|
2020-12-02 02:24:25 -08:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
default: 'getAll',
|
|
|
|
type: 'options',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsDependsOn: [
|
|
|
|
'operation',
|
|
|
|
],
|
|
|
|
loadOptionsMethod: 'loadTaskOptions',
|
|
|
|
},
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|
2020-12-02 02:24:25 -08:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const taskFields: INodeProperties[] = [
|
2020-12-02 02:24:25 -08:00
|
|
|
{
|
|
|
|
displayName: 'Task ID',
|
|
|
|
name: 'id',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'update',
|
|
|
|
'executeResponder',
|
|
|
|
'get',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'ID of the taks',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Case ID',
|
|
|
|
name: 'caseId',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
'getAll',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Return All',
|
|
|
|
name: 'returnAll',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'search',
|
|
|
|
'getAll',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: false,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Whether to return all results or only up to a given limit',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Limit',
|
|
|
|
name: 'limit',
|
|
|
|
type: 'number',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'search',
|
|
|
|
'getAll',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
returnAll: [
|
|
|
|
false,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
minValue: 1,
|
|
|
|
maxValue: 500,
|
|
|
|
},
|
|
|
|
default: 100,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Max number of results to return',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Title',
|
|
|
|
name: 'title',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'Task details',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Status',
|
|
|
|
name: 'status',
|
|
|
|
type: 'options',
|
|
|
|
default: 'Waiting',
|
|
|
|
options: [
|
|
|
|
{
|
2020-12-02 02:54:10 -08:00
|
|
|
name: 'Cancel',
|
|
|
|
value: 'Cancel',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Completed',
|
|
|
|
value: 'Completed',
|
|
|
|
},
|
|
|
|
{
|
2020-12-02 02:54:10 -08:00
|
|
|
name: 'InProgress',
|
|
|
|
value: 'InProgress',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Waiting',
|
|
|
|
value: 'Waiting',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2022-04-22 09:29:51 -07:00
|
|
|
description: 'Status of the task. Default=Waiting.',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Flag',
|
|
|
|
name: 'flag',
|
|
|
|
type: 'boolean',
|
|
|
|
required: true,
|
|
|
|
default: false,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2022-04-22 09:29:51 -07:00
|
|
|
description: 'Flag of the task. Default=false.',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
// required for responder execution
|
|
|
|
{
|
|
|
|
displayName: 'Responder ID',
|
|
|
|
name: 'responder',
|
|
|
|
type: 'options',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsDependsOn: [
|
|
|
|
'id',
|
|
|
|
],
|
|
|
|
loadOptionsMethod: 'loadResponders',
|
|
|
|
},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'executeResponder',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
hide: {
|
|
|
|
id: [
|
|
|
|
'',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// optional attributes (Create operations)
|
|
|
|
{
|
|
|
|
displayName: 'Options',
|
|
|
|
type: 'collection',
|
|
|
|
name: 'options',
|
|
|
|
placeholder: 'Add Option',
|
2022-04-22 09:29:51 -07:00
|
|
|
default: {},
|
2020-12-02 02:24:25 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Description',
|
|
|
|
name: 'description',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
description: 'Task details',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'End Date',
|
|
|
|
name: 'endDate',
|
|
|
|
type: 'dateTime',
|
|
|
|
default: '',
|
2022-04-22 09:29:51 -07:00
|
|
|
description: 'Date of the end of the task. This is automatically set when status is set to Completed.',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Owner',
|
|
|
|
name: 'owner',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-04-22 09:29:51 -07:00
|
|
|
description: 'User who owns the task. This is automatically set to current user when status is set to InProgress.',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Start Date',
|
|
|
|
name: 'startDate',
|
|
|
|
type: 'dateTime',
|
|
|
|
default: '',
|
2022-04-22 09:29:51 -07:00
|
|
|
description: 'Date of the beginning of the task. This is automatically set when status is set to Open.',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
// optional attributes (Update operation)
|
|
|
|
|
|
|
|
{
|
|
|
|
displayName: 'Update Fields',
|
|
|
|
type: 'collection',
|
|
|
|
name: 'updateFields',
|
|
|
|
placeholder: 'Add Field',
|
2022-04-22 09:29:51 -07:00
|
|
|
default: {},
|
2020-12-02 02:24:25 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'update',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Description',
|
|
|
|
name: 'description',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
description: 'Task details',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'End Date',
|
|
|
|
name: 'endDate',
|
|
|
|
type: 'dateTime',
|
|
|
|
default: '',
|
2022-04-22 09:29:51 -07:00
|
|
|
description: 'Date of the end of the task. This is automatically set when status is set to Completed.',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Flag',
|
|
|
|
name: 'flag',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
2022-04-22 09:29:51 -07:00
|
|
|
description: 'Flag of the task. Default=false.',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Owner',
|
|
|
|
name: 'owner',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-04-22 09:29:51 -07:00
|
|
|
description: 'User who owns the task. This is automatically set to current user when status is set to InProgress.',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Start Date',
|
|
|
|
name: 'startDate',
|
|
|
|
type: 'dateTime',
|
|
|
|
default: '',
|
2022-04-22 09:29:51 -07:00
|
|
|
description: 'Date of the beginning of the task. This is automatically set when status is set to Open.',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
{
|
2020-12-02 02:54:10 -08:00
|
|
|
displayName: 'Status',
|
2020-12-02 02:24:25 -08:00
|
|
|
name: 'status',
|
|
|
|
type: 'options',
|
|
|
|
default: 'Waiting',
|
|
|
|
options: [
|
|
|
|
{
|
2020-12-02 02:54:10 -08:00
|
|
|
name: 'Cancel',
|
|
|
|
value: 'Cancel',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Completed',
|
|
|
|
value: 'Completed',
|
|
|
|
},
|
|
|
|
{
|
2020-12-02 02:54:10 -08:00
|
|
|
name: 'In Progress',
|
|
|
|
value: 'InProgress',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Waiting',
|
|
|
|
value: 'Waiting',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
],
|
2022-04-22 09:29:51 -07:00
|
|
|
description: 'Status of the task. Default=Waiting.',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Title',
|
|
|
|
name: 'title',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
description: 'Task details',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
// query options
|
|
|
|
{
|
|
|
|
displayName: 'Options',
|
|
|
|
name: 'options',
|
|
|
|
placeholder: 'Add Option',
|
|
|
|
type: 'collection',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'getAll',
|
|
|
|
'search',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Sort',
|
|
|
|
name: 'sort',
|
|
|
|
type: 'string',
|
|
|
|
placeholder: '±Attribut, exp +status',
|
|
|
|
description: 'Specify the sorting attribut, + for asc, - for desc',
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
// query attributes
|
|
|
|
{
|
|
|
|
displayName: 'Filters',
|
|
|
|
name: 'filters',
|
|
|
|
type: 'collection',
|
|
|
|
default: {},
|
|
|
|
placeholder: 'Add Filter',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'search',
|
|
|
|
'count',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Description',
|
|
|
|
name: 'description',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
description: 'Task details',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'End Date',
|
|
|
|
name: 'endDate',
|
|
|
|
type: 'dateTime',
|
|
|
|
default: '',
|
2022-04-22 09:29:51 -07:00
|
|
|
description: 'Date of the end of the task. This is automatically set when status is set to Completed.',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Flag',
|
|
|
|
name: 'flag',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
2022-04-22 09:29:51 -07:00
|
|
|
description: 'Flag of the task. Default=false.',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Owner',
|
|
|
|
name: 'owner',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-04-22 09:29:51 -07:00
|
|
|
description: 'User who owns the task. This is automatically set to current user when status is set to InProgress.',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Start Date',
|
|
|
|
name: 'startDate',
|
|
|
|
type: 'dateTime',
|
|
|
|
default: '',
|
2022-04-22 09:29:51 -07:00
|
|
|
description: 'Date of the beginning of the task. This is automatically set when status is set to Open.',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Status',
|
|
|
|
name: 'status',
|
|
|
|
type: 'options',
|
|
|
|
default: 'Waiting',
|
|
|
|
options: [
|
|
|
|
{
|
2020-12-02 02:54:10 -08:00
|
|
|
name: 'Cancel',
|
|
|
|
value: 'Cancel',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
{
|
2020-12-02 02:54:10 -08:00
|
|
|
name: 'Completed',
|
|
|
|
value: 'Completed',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
{
|
2020-12-02 02:54:10 -08:00
|
|
|
name: 'In Progress',
|
|
|
|
value: 'InProgress',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
{
|
2020-12-02 02:54:10 -08:00
|
|
|
name: 'Waiting',
|
|
|
|
value: 'Waiting',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
],
|
2022-04-22 09:29:51 -07:00
|
|
|
description: 'Status of the task. Default=Waiting.',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Title',
|
|
|
|
name: 'title',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
description: 'Task details',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|