2023-01-27 03:22:44 -08:00
import type { INodeProperties } from 'n8n-workflow' ;
2020-10-13 04:00:14 -07:00
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 : {
2022-08-17 08:50:24 -07:00
resource : [ 'checklistItem' ] ,
2020-10-13 04:00:14 -07:00
} ,
} ,
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 : {
2022-08-17 08:50:24 -07:00
operation : [ 'delete' ] ,
resource : [ 'checklistItem' ] ,
2020-10-13 04:00:14 -07:00
} ,
} ,
2022-08-17 08:50:24 -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' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'boardId' ] ,
2020-10-13 04:00:14 -07:00
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'delete' ] ,
resource : [ 'checklistItem' ] ,
2020-10-13 04:00:14 -07:00
} ,
} ,
2022-08-17 08:50:24 -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' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'boardId' , 'listId' ] ,
2020-10-13 04:00:14 -07:00
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'delete' ] ,
resource : [ 'checklistItem' ] ,
2020-10-13 04:00:14 -07:00
} ,
} ,
2022-08-17 08:50:24 -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' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'boardId' , 'cardId' ] ,
2020-10-13 04:00:14 -07:00
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'delete' ] ,
resource : [ 'checklistItem' ] ,
2020-10-13 04:00:14 -07:00
} ,
} ,
2022-08-17 08:50:24 -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' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'boardId' , 'cardId' , 'checklistId' ] ,
2020-10-13 04:00:14 -07:00
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'delete' ] ,
resource : [ 'checklistItem' ] ,
2020-10-13 04:00:14 -07:00
} ,
} ,
2022-08-17 08:50:24 -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 : {
2022-08-17 08:50:24 -07:00
operation : [ 'get' ] ,
resource : [ 'checklistItem' ] ,
2020-10-13 04:00:14 -07:00
} ,
} ,
2022-08-17 08:50:24 -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' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'boardId' ] ,
2020-10-13 04:00:14 -07:00
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'get' ] ,
resource : [ 'checklistItem' ] ,
2020-10-13 04:00:14 -07:00
} ,
} ,
2022-08-17 08:50:24 -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' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'boardId' , 'listId' ] ,
2020-10-13 04:00:14 -07:00
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'get' ] ,
resource : [ 'checklistItem' ] ,
2020-10-13 04:00:14 -07:00
} ,
} ,
2022-08-17 08:50:24 -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 : {
2022-08-17 08:50:24 -07:00
operation : [ 'get' ] ,
resource : [ 'checklistItem' ] ,
2020-10-13 04:00:14 -07:00
} ,
} ,
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' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'boardId' , 'cardId' , 'checklistId' ] ,
2020-10-13 04:00:14 -07:00
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'get' ] ,
resource : [ 'checklistItem' ] ,
2020-10-13 04:00:14 -07:00
} ,
} ,
2022-08-17 08:50:24 -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 : {
2022-08-17 08:50:24 -07:00
operation : [ 'update' ] ,
resource : [ 'checklistItem' ] ,
2020-10-13 04:00:14 -07:00
} ,
} ,
2022-08-17 08:50:24 -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' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'boardId' ] ,
2020-10-13 04:00:14 -07:00
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'update' ] ,
resource : [ 'checklistItem' ] ,
2020-10-13 04:00:14 -07:00
} ,
} ,
2022-08-17 08:50:24 -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' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'boardId' , 'listId' ] ,
2020-10-13 04:00:14 -07:00
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'update' ] ,
resource : [ 'checklistItem' ] ,
2020-10-13 04:00:14 -07:00
} ,
} ,
2022-08-17 08:50:24 -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' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'boardId' , 'cardId' ] ,
2020-10-13 04:00:14 -07:00
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'update' ] ,
resource : [ 'checklistItem' ] ,
2020-10-13 04:00:14 -07:00
} ,
} ,
2022-08-17 08:50:24 -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' ,
2022-08-17 08:50:24 -07:00
loadOptionsDependsOn : [ 'boardId' , 'cardId' , 'checklistId' ] ,
2020-10-13 04:00:14 -07:00
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'update' ] ,
resource : [ 'checklistItem' ] ,
2020-10-13 04:00:14 -07:00
} ,
} ,
2022-08-17 08:50:24 -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 : {
2022-08-17 08:50:24 -07:00
operation : [ 'update' ] ,
resource : [ 'checklistItem' ] ,
2020-10-13 04:00:14 -07:00
} ,
} ,
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
] ;