2023-01-27 03:22:44 -08:00
|
|
|
import type { INodeProperties } from 'n8n-workflow';
|
2020-02-03 09:51:22 -08:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const listOperations: INodeProperties[] = [
|
2020-02-03 09:51:22 -08:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2020-02-03 09:51:22 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
2020-02-03 09:51:22 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
2020-04-20 07:35:58 -07:00
|
|
|
{
|
|
|
|
name: 'Create',
|
|
|
|
value: 'create',
|
|
|
|
description: 'Create a list',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Create a list',
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
2020-02-03 09:51:22 -08:00
|
|
|
{
|
|
|
|
name: 'Custom Fields',
|
|
|
|
value: 'customFields',
|
2022-08-01 13:47:55 -07:00
|
|
|
description: "Retrieve list's custom fields",
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Get custom fields from a list',
|
2020-02-03 09:51:22 -08:00
|
|
|
},
|
2020-04-20 07:35:58 -07:00
|
|
|
{
|
|
|
|
name: 'Delete',
|
|
|
|
value: 'delete',
|
|
|
|
description: 'Delete a list',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Delete a list',
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get',
|
|
|
|
value: 'get',
|
|
|
|
description: 'Get a list',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Get a list',
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
{
|
2022-09-07 07:51:14 -07:00
|
|
|
name: 'Get Many',
|
2020-04-20 07:35:58 -07:00
|
|
|
value: 'getAll',
|
2022-09-13 03:36:36 -07:00
|
|
|
description: 'Get many lists',
|
2022-09-08 08:10:13 -07:00
|
|
|
action: 'Get many lists',
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
2020-09-06 12:38:18 -07:00
|
|
|
{
|
|
|
|
name: 'Member',
|
|
|
|
value: 'member',
|
|
|
|
description: 'Get list members',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Get list members',
|
2020-09-06 12:38:18 -07:00
|
|
|
},
|
2020-04-20 07:35:58 -07:00
|
|
|
{
|
|
|
|
name: 'Update',
|
|
|
|
value: 'update',
|
|
|
|
description: 'Update a list',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Update a list',
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
2020-02-03 09:51:22 -08:00
|
|
|
],
|
|
|
|
default: 'customFields',
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|
2020-02-03 09:51:22 -08:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const listFields: INodeProperties[] = [
|
2021-03-24 15:01:12 -07:00
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* list:create */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2020-04-20 07:35:58 -07:00
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Team Name or ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'team',
|
2020-04-20 07:35:58 -07:00
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-04-20 07:35:58 -07:00
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['create'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getTeams',
|
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Space Name or ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'space',
|
2020-04-20 07:35:58 -07:00
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-04-20 07:35:58 -07:00
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['create'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getSpaces',
|
2022-08-01 13:47:55 -07:00
|
|
|
loadOptionsDependsOn: ['team'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Folderless List',
|
|
|
|
name: 'folderless',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['create'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Folder Name or ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'folder',
|
2020-04-20 07:35:58 -07:00
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-04-20 07:35:58 -07:00
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['create'],
|
|
|
|
folderless: [false],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getFolders',
|
2022-08-01 13:47:55 -07:00
|
|
|
loadOptionsDependsOn: ['space'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Name',
|
|
|
|
name: 'name',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['create'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
name: 'additionalFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['create'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Assignee',
|
|
|
|
name: 'assignee',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Content',
|
|
|
|
name: 'content',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Due Date',
|
|
|
|
name: 'dueDate',
|
|
|
|
type: 'dateTime',
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Due Date Time',
|
|
|
|
name: 'dueDateTime',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Priority',
|
|
|
|
name: 'priority',
|
|
|
|
type: 'number',
|
|
|
|
typeOptions: {
|
|
|
|
minValue: 1,
|
|
|
|
maxValue: 4,
|
|
|
|
},
|
|
|
|
description: 'Integer mapping as 1 : Urgent, 2 : High, 3 : Normal, 4 : Low',
|
|
|
|
default: 3,
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Status Name or ID',
|
2020-04-20 07:35:58 -07:00
|
|
|
name: 'status',
|
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-04-20 07:35:58 -07:00
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getStatuses',
|
2022-08-01 13:47:55 -07:00
|
|
|
loadOptionsDependsOn: ['list'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2021-03-24 15:01:12 -07:00
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* list:member */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2020-09-06 12:38:18 -07:00
|
|
|
{
|
|
|
|
displayName: 'List ID',
|
|
|
|
name: 'id',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['member'],
|
2020-09-06 12:38:18 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'Task ID',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Return All',
|
|
|
|
name: 'returnAll',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['member'],
|
2020-09-06 12:38:18 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: true,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Whether to return all results or only up to a given limit',
|
2020-09-06 12:38:18 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Limit',
|
|
|
|
name: 'limit',
|
|
|
|
type: 'number',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['member'],
|
|
|
|
returnAll: [false],
|
2020-09-06 12:38:18 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
minValue: 1,
|
|
|
|
maxValue: 100,
|
|
|
|
},
|
|
|
|
default: 50,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Max number of results to return',
|
2020-09-06 12:38:18 -07:00
|
|
|
},
|
2021-03-24 15:01:12 -07:00
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* list:customFields */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2020-02-03 09:51:22 -08:00
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Team Name or ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'team',
|
2020-02-03 09:51:22 -08:00
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-02-03 09:51:22 -08:00
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['customFields'],
|
2020-02-03 09:51:22 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getTeams',
|
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Space Name or ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'space',
|
2020-02-03 09:51:22 -08:00
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-02-03 09:51:22 -08:00
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['customFields'],
|
2020-02-03 09:51:22 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getSpaces',
|
2022-08-01 13:47:55 -07:00
|
|
|
loadOptionsDependsOn: ['teamId'],
|
2020-02-03 09:51:22 -08:00
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Folderless List',
|
|
|
|
name: 'folderless',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['customFields'],
|
2020-02-03 09:51:22 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Folder Name or ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'folder',
|
2020-02-03 09:51:22 -08:00
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-02-03 09:51:22 -08:00
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['customFields'],
|
|
|
|
folderless: [false],
|
2020-02-03 09:51:22 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getFolders',
|
2022-08-01 13:47:55 -07:00
|
|
|
loadOptionsDependsOn: ['space'],
|
2020-02-03 09:51:22 -08:00
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'List Name or ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'list',
|
2020-02-03 09:51:22 -08:00
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-02-03 09:51:22 -08:00
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['customFields'],
|
|
|
|
folderless: [true],
|
2020-02-03 09:51:22 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getFolderlessLists',
|
2022-08-01 13:47:55 -07:00
|
|
|
loadOptionsDependsOn: ['space'],
|
2020-02-03 09:51:22 -08:00
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'List Name or ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'list',
|
2020-02-03 09:51:22 -08:00
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-02-03 09:51:22 -08:00
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['customFields'],
|
|
|
|
folderless: [false],
|
2020-02-03 09:51:22 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getLists',
|
2022-08-01 13:47:55 -07:00
|
|
|
loadOptionsDependsOn: ['folder'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
2021-03-24 15:01:12 -07:00
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* list:delete */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2020-04-20 07:35:58 -07:00
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Team Name or ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'team',
|
2020-04-20 07:35:58 -07:00
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-04-20 07:35:58 -07:00
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['delete'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getTeams',
|
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Space Name or ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'space',
|
2020-04-20 07:35:58 -07:00
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-04-20 07:35:58 -07:00
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['delete'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getSpaces',
|
2022-08-01 13:47:55 -07:00
|
|
|
loadOptionsDependsOn: ['team'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Folderless List',
|
|
|
|
name: 'folderless',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['delete'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Folder Name or ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'folder',
|
2020-04-20 07:35:58 -07:00
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-04-20 07:35:58 -07:00
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['delete'],
|
|
|
|
folderless: [false],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getFolders',
|
2022-08-01 13:47:55 -07:00
|
|
|
loadOptionsDependsOn: ['space'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'List ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'list',
|
2020-04-20 07:35:58 -07:00
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['delete'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
2021-03-24 15:01:12 -07:00
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* list:get */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2020-04-20 07:35:58 -07:00
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Team Name or ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'team',
|
2020-04-20 07:35:58 -07:00
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-04-20 07:35:58 -07:00
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['get'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getTeams',
|
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Space Name or ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'space',
|
2020-04-20 07:35:58 -07:00
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-04-20 07:35:58 -07:00
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['get'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getSpaces',
|
2022-08-01 13:47:55 -07:00
|
|
|
loadOptionsDependsOn: ['team'],
|
2020-02-03 09:51:22 -08:00
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
2020-04-20 07:35:58 -07:00
|
|
|
{
|
|
|
|
displayName: 'Folderless List',
|
|
|
|
name: 'folderless',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['get'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Folder Name or ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'folder',
|
2020-04-20 07:35:58 -07:00
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-04-20 07:35:58 -07:00
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['get'],
|
|
|
|
folderless: [false],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getFolders',
|
2022-08-01 13:47:55 -07:00
|
|
|
loadOptionsDependsOn: ['space'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'List ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'list',
|
2020-04-20 07:35:58 -07:00
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['get'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
2021-03-24 15:01:12 -07:00
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* list:getAll */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2020-04-20 07:35:58 -07:00
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Team Name or ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'team',
|
2020-04-20 07:35:58 -07:00
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-04-20 07:35:58 -07:00
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['getAll'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getTeams',
|
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Space Name or ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'space',
|
2020-04-20 07:35:58 -07:00
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-04-20 07:35:58 -07:00
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['getAll'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getSpaces',
|
2022-08-01 13:47:55 -07:00
|
|
|
loadOptionsDependsOn: ['team'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Folderless List',
|
|
|
|
name: 'folderless',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['getAll'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Folder Name or ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'folder',
|
2020-04-20 07:35:58 -07:00
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-04-20 07:35:58 -07:00
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['getAll'],
|
|
|
|
folderless: [false],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getFolders',
|
2022-08-01 13:47:55 -07:00
|
|
|
loadOptionsDependsOn: ['space'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Limit',
|
|
|
|
name: 'limit',
|
|
|
|
type: 'number',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['getAll'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
minValue: 1,
|
|
|
|
maxValue: 100,
|
|
|
|
},
|
|
|
|
default: 50,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Max number of results to return',
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Filters',
|
|
|
|
name: 'filters',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Filter',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['getAll'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Archived',
|
|
|
|
name: 'archived',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2021-03-24 15:01:12 -07:00
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* list:update */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2020-04-20 07:35:58 -07:00
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Team Name or ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'team',
|
2020-04-20 07:35:58 -07:00
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-04-20 07:35:58 -07:00
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['update'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getTeams',
|
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Space Name or ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'space',
|
2020-04-20 07:35:58 -07:00
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-04-20 07:35:58 -07:00
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['update'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getSpaces',
|
2022-08-01 13:47:55 -07:00
|
|
|
loadOptionsDependsOn: ['team'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Folderless List',
|
|
|
|
name: 'folderless',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['update'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Folder Name or ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'folder',
|
2020-04-20 07:35:58 -07:00
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-04-20 07:35:58 -07:00
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['update'],
|
|
|
|
folderless: [false],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getFolders',
|
2022-08-01 13:47:55 -07:00
|
|
|
loadOptionsDependsOn: ['space'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'List ID',
|
2020-04-20 21:57:39 -07:00
|
|
|
name: 'list',
|
2020-04-20 07:35:58 -07:00
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['update'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Update Fields',
|
|
|
|
name: 'updateFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['list'],
|
|
|
|
operation: ['update'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Assignee Name or ID',
|
2020-04-20 07:35:58 -07:00
|
|
|
name: 'assignee',
|
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-04-20 07:35:58 -07:00
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getAssignees',
|
2022-08-01 13:47:55 -07:00
|
|
|
loadOptionsDependsOn: ['list'],
|
2020-04-20 07:35:58 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Content',
|
|
|
|
name: 'content',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Due Date',
|
|
|
|
name: 'dueDate',
|
|
|
|
type: 'dateTime',
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Due Date Time',
|
|
|
|
name: 'dueDateTime',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Name',
|
|
|
|
name: 'name',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Priority',
|
|
|
|
name: 'priority',
|
|
|
|
type: 'number',
|
|
|
|
typeOptions: {
|
|
|
|
minValue: 1,
|
|
|
|
maxValue: 4,
|
|
|
|
},
|
|
|
|
description: 'Integer mapping as 1 : Urgent, 2 : High, 3 : Normal, 4 : Low',
|
|
|
|
default: 3,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Unset Status',
|
|
|
|
name: 'unsetStatus',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|