2020-10-13 04:00:14 -07:00
import {
INodeProperties ,
} from 'n8n-workflow' ;
2021-12-03 00:44:16 -08:00
export const checklistItemOperations : INodeProperties [ ] = [
2020-10-13 04:00:14 -07:00
// ----------------------------------
// checklistItem
// ----------------------------------
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2020-10-13 04:00:14 -07:00
displayOptions : {
show : {
resource : [
'checklistItem' ,
] ,
} ,
} ,
options : [
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete a checklist item' ,
2022-07-10 13:50:51 -07:00
action : 'Delete a checklist item' ,
2020-10-13 04:00:14 -07:00
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Get a checklist item' ,
2022-07-10 13:50:51 -07:00
action : 'Get a checklist item' ,
2020-10-13 04:00:14 -07:00
} ,
{
name : 'Update' ,
value : 'update' ,
description : 'Update a checklist item' ,
2022-07-10 13:50:51 -07:00
action : 'Update a checklist item' ,
2020-10-13 04:00:14 -07:00
} ,
] ,
default : 'getAll' ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2020-10-13 04:00:14 -07:00
2021-12-03 00:44:16 -08:00
export const checklistItemFields : INodeProperties [ ] = [
2020-10-13 04:00:14 -07:00
// ----------------------------------
// checklistItem:delete
// ----------------------------------
{
2022-06-03 10:23:49 -07:00
displayName : 'Board Name or ID' ,
2020-10-13 04:00:14 -07:00
name : 'boardId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getBoards' ,
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
operation : [
'delete' ,
] ,
resource : [
'checklistItem' ,
] ,
} ,
} ,
2022-07-14 13:05:11 -07:00
description : 'The ID of the board that card belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'List Name or ID' ,
2020-10-13 04:00:14 -07:00
name : 'listId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getLists' ,
loadOptionsDependsOn : [
'boardId' ,
] ,
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
operation : [
'delete' ,
] ,
resource : [
'checklistItem' ,
] ,
} ,
} ,
2022-07-14 13:05:11 -07:00
description : 'The ID of the list that card belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Card Name or ID' ,
2020-10-13 04:00:14 -07:00
name : 'cardId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getCards' ,
loadOptionsDependsOn : [
'boardId' ,
'listId' ,
] ,
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
operation : [
'delete' ,
] ,
resource : [
'checklistItem' ,
] ,
} ,
} ,
2022-07-14 13:05:11 -07:00
description : 'The ID of the card that checklistItem belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Checklist Name or ID' ,
2020-10-13 04:00:14 -07:00
name : 'checklistId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getChecklists' ,
loadOptionsDependsOn : [
'boardId' ,
'cardId' ,
] ,
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
operation : [
'delete' ,
] ,
resource : [
'checklistItem' ,
] ,
} ,
} ,
2022-07-14 13:05:11 -07:00
description : 'The ID of the checklistItem that card belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Checklist Item Name or ID' ,
2020-10-13 04:00:14 -07:00
name : 'checklistItemId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getChecklistItems' ,
loadOptionsDependsOn : [
'boardId' ,
'cardId' ,
'checklistId' ,
] ,
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
operation : [
'delete' ,
] ,
resource : [
'checklistItem' ,
] ,
} ,
} ,
2022-07-14 13:05:11 -07:00
description : 'The ID of the checklistItem item to get. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-10-13 04:00:14 -07:00
} ,
// ----------------------------------
// checklistItem:get
// ----------------------------------
{
2022-06-03 10:23:49 -07:00
displayName : 'Board Name or ID' ,
2020-10-13 04:00:14 -07:00
name : 'boardId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getBoards' ,
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
operation : [
'get' ,
] ,
resource : [
'checklistItem' ,
] ,
} ,
} ,
2022-07-14 13:05:11 -07:00
description : 'The ID of the board that card belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'List Name or ID' ,
2020-10-13 04:00:14 -07:00
name : 'listId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getLists' ,
loadOptionsDependsOn : [
'boardId' ,
] ,
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
operation : [
'get' ,
] ,
resource : [
'checklistItem' ,
] ,
} ,
} ,
2022-07-14 13:05:11 -07:00
description : 'The ID of the list that card belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Card Name or ID' ,
2020-10-13 04:00:14 -07:00
name : 'cardId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getCards' ,
loadOptionsDependsOn : [
'boardId' ,
'listId' ,
] ,
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
operation : [
'get' ,
] ,
resource : [
'checklistItem' ,
] ,
} ,
} ,
2022-07-14 13:05:11 -07:00
description : 'The ID of the card that checklistItem belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-10-13 04:00:14 -07:00
} ,
{
displayName : 'Checklist ID' ,
name : 'checklistId' ,
2020-10-13 04:01:34 -07:00
type : 'string' ,
2020-10-13 04:00:14 -07:00
default : '' ,
required : true ,
displayOptions : {
show : {
operation : [
'get' ,
] ,
resource : [
'checklistItem' ,
] ,
} ,
} ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the checklistItem that card belongs to' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Checklist Item Name or ID' ,
2020-10-13 04:00:14 -07:00
name : 'checklistItemId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getChecklistItems' ,
loadOptionsDependsOn : [
'boardId' ,
'cardId' ,
'checklistId' ,
] ,
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
operation : [
'get' ,
] ,
resource : [
'checklistItem' ,
] ,
} ,
} ,
2022-07-14 13:05:11 -07:00
description : 'The ID of the checklistItem item to get. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-10-13 04:00:14 -07:00
} ,
// ----------------------------------
// checklistItem:update
// ----------------------------------
{
2022-06-03 10:23:49 -07:00
displayName : 'Board Name or ID' ,
2020-10-13 04:00:14 -07:00
name : 'boardId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getBoards' ,
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
operation : [
'update' ,
] ,
resource : [
'checklistItem' ,
] ,
} ,
} ,
2022-07-14 13:05:11 -07:00
description : 'The ID of the board that card belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'List Name or ID' ,
2020-10-13 04:00:14 -07:00
name : 'listId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getLists' ,
loadOptionsDependsOn : [
'boardId' ,
] ,
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
operation : [
'update' ,
] ,
resource : [
'checklistItem' ,
] ,
} ,
} ,
2022-07-14 13:05:11 -07:00
description : 'The ID of the list that card belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Card Name or ID' ,
2020-10-13 04:00:14 -07:00
name : 'cardId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getCards' ,
loadOptionsDependsOn : [
'boardId' ,
'listId' ,
] ,
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
operation : [
'update' ,
] ,
resource : [
'checklistItem' ,
] ,
} ,
} ,
2022-07-14 13:05:11 -07:00
description : 'The ID of the card that checklistItem belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'CheckList Name or ID' ,
2020-10-13 04:00:14 -07:00
name : 'checklistId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getChecklists' ,
loadOptionsDependsOn : [
'boardId' ,
'cardId' ,
] ,
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
operation : [
'update' ,
] ,
resource : [
'checklistItem' ,
] ,
} ,
} ,
2022-07-14 13:05:11 -07:00
description : 'The ID of the checklistItem that card belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Checklist Item Name or ID' ,
2020-10-13 04:00:14 -07:00
name : 'checklistItemId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getChecklistItems' ,
loadOptionsDependsOn : [
'boardId' ,
'cardId' ,
'checklistId' ,
] ,
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
operation : [
'update' ,
] ,
resource : [
'checklistItem' ,
] ,
} ,
} ,
2022-07-14 13:05:11 -07:00
description : 'The ID of the checklistItem item to update. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-10-13 04:00:14 -07:00
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
displayOptions : {
show : {
operation : [
'update' ,
] ,
resource : [
'checklistItem' ,
] ,
} ,
} ,
default : { } ,
options : [
{
displayName : 'Title' ,
name : 'title' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The new title for the checklistItem item' ,
2020-10-13 04:00:14 -07:00
} ,
{
displayName : 'Finished' ,
name : 'isFinished' ,
type : 'boolean' ,
default : false ,
2022-06-20 07:54:01 -07:00
description : 'Whether the item is checked' ,
2020-10-13 04:00:14 -07:00
} ,
] ,
} ,
2021-12-03 00:44:16 -08:00
] ;