2020-10-13 04:00:14 -07:00
import {
INodeProperties ,
} from 'n8n-workflow' ;
2021-12-03 00:44:16 -08:00
export const checklistOperations : INodeProperties [ ] = [
2020-10-13 04:00:14 -07:00
// ----------------------------------
// checklist
// ----------------------------------
{
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 : [
'checklist' ,
] ,
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
description : 'Create a new checklist' ,
2022-07-10 13:50:51 -07:00
action : 'Create a checklist' ,
2020-10-13 04:00:14 -07:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete a checklist' ,
2022-07-10 13:50:51 -07:00
action : 'Delete a checklist' ,
2020-10-13 04:00:14 -07:00
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Get the data of a checklist' ,
2022-07-10 13:50:51 -07:00
action : 'Get a checklist' ,
2020-10-13 04:00:14 -07:00
} ,
{
name : 'Get All' ,
value : 'getAll' ,
description : 'Returns all checklists for the card' ,
2022-07-10 13:50:51 -07:00
action : 'Get all checklists' ,
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 checklistFields : INodeProperties [ ] = [
2020-10-13 04:00:14 -07:00
// ----------------------------------
// checklist:create
// ----------------------------------
{
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 : [
'create' ,
] ,
resource : [
'checklist' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'The ID of the board where the card is in. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#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 : [
'create' ,
] ,
resource : [
'checklist' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -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/nodes/expressions.html#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 : [
'create' ,
] ,
resource : [
'checklist' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'The ID of the card to add checklist to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2020-10-13 04:00:14 -07:00
} ,
{
displayName : 'Title' ,
name : 'title' ,
type : 'string' ,
default : '' ,
required : true ,
displayOptions : {
show : {
operation : [
'create' ,
] ,
resource : [
'checklist' ,
] ,
} ,
} ,
2022-05-06 14:01:25 -07:00
description : 'The title of the checklist to add' ,
2020-10-13 04:00:14 -07:00
} ,
{
displayName : 'Items' ,
name : 'items' ,
type : 'string' ,
typeOptions : {
multipleValues : true ,
multipleValueButtonText : 'Add Item' ,
} ,
displayOptions : {
show : {
operation : [
'create' ,
] ,
resource : [
'checklist' ,
] ,
} ,
} ,
default : [ ] ,
2022-05-06 14:01:25 -07:00
description : 'Items to be added to the checklist' ,
2020-10-13 04:00:14 -07:00
} ,
// ----------------------------------
// checklist: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 : [
'checklist' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -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/nodes/expressions.html#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 : [
'checklist' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -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/nodes/expressions.html#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 : [
'checklist' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'The ID of the card that checklist belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#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 : [
'checklist' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'The ID of the checklist to delete. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2020-10-13 04:00:14 -07:00
} ,
// ----------------------------------
// checklist: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 : [
'checklist' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -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/nodes/expressions.html#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 : [
'checklist' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -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/nodes/expressions.html#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 : [
'checklist' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'The ID of the card that checklist belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#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 : [
'get' ,
] ,
resource : [
'checklist' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'The ID of the checklist to get. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2020-10-13 04:00:14 -07:00
} ,
// ----------------------------------
// checklist:getAll
// ----------------------------------
{
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 : [
'getAll' ,
] ,
resource : [
'checklist' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'The ID of the board that list belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#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 : [
'getAll' ,
] ,
resource : [
'checklist' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -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/nodes/expressions.html#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 : [
'getAll' ,
] ,
resource : [
'checklist' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'The ID of the card to get checklists. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2020-10-13 04:00:14 -07:00
} ,
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'checklist' ,
] ,
} ,
} ,
default : false ,
2022-05-06 14:01:25 -07:00
description : 'Whether to return all results or only up to a given limit' ,
2020-10-13 04:00:14 -07:00
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'checklist' ,
] ,
returnAll : [
false ,
] ,
} ,
} ,
typeOptions : {
minValue : 1 ,
maxValue : 200 ,
} ,
default : 100 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2020-10-13 04:00:14 -07:00
} ,
2021-12-03 00:44:16 -08:00
] ;