2020-10-13 04:00:14 -07:00
import {
INodeProperties ,
} from 'n8n-workflow' ;
2021-12-03 00:44:16 -08:00
export const cardOperations : INodeProperties [ ] = [
2020-10-13 04:00:14 -07:00
// ----------------------------------
// card
// ----------------------------------
{
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 : [
'card' ,
] ,
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
description : 'Create a new card' ,
} ,
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete a card' ,
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Get a card' ,
} ,
{
name : 'Get All' ,
value : 'getAll' ,
description : 'Get all cards' ,
} ,
{
name : 'Update' ,
value : 'update' ,
description : 'Update a card' ,
} ,
] ,
default : 'create' ,
} ,
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 cardFields : INodeProperties [ ] = [
2020-10-13 04:00:14 -07:00
// ----------------------------------
// card: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 : [
'card' ,
] ,
} ,
} ,
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 : [
'create' ,
] ,
resource : [
'card' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'The ID of the list to create card 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
} ,
{
displayName : 'Title' ,
name : 'title' ,
type : 'string' ,
default : '' ,
placeholder : 'My card' ,
required : true ,
displayOptions : {
show : {
operation : [
'create' ,
] ,
resource : [
'card' ,
] ,
} ,
} ,
2022-05-06 14:01:25 -07:00
description : 'The title of the card' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Swimlane Name or ID' ,
2020-10-13 04:00:14 -07:00
name : 'swimlaneId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getSwimlanes' ,
loadOptionsDependsOn : [
'boardId' ,
] ,
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
operation : [
'create' ,
] ,
resource : [
'card' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'The swimlane ID of the new card. 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 : 'Author Name or ID' ,
2020-10-13 04:00:14 -07:00
name : 'authorId' ,
type : 'options' ,
2022-06-20 07:54:01 -07:00
description : '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
typeOptions : {
loadOptionsMethod : 'getUsers' ,
} ,
default : '' ,
required : true ,
displayOptions : {
show : {
operation : [
'create' ,
] ,
resource : [
'card' ,
] ,
} ,
} ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
displayOptions : {
show : {
operation : [
'create' ,
] ,
resource : [
'card' ,
] ,
} ,
} ,
default : { } ,
options : [
{
2022-06-20 07:54:01 -07:00
displayName : 'Assignee Names or IDs' ,
2020-10-13 04:00:14 -07:00
name : 'assignees' ,
type : 'multiOptions' ,
typeOptions : {
loadOptionsMethod : 'getUsers' ,
} ,
2022-04-22 09:29:51 -07:00
default : [ ] ,
2022-06-20 07:54:01 -07:00
description : 'The new list of assignee IDs attached to the card. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2020-10-13 04:00:14 -07:00
} ,
{
displayName : 'Description' ,
name : 'description' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The new description of the card' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Member Names or IDs' ,
2020-10-13 04:00:14 -07:00
name : 'members' ,
type : 'multiOptions' ,
typeOptions : {
loadOptionsMethod : 'getUsers' ,
} ,
2022-04-22 09:29:51 -07:00
default : [ ] ,
2022-06-20 07:54:01 -07:00
description : 'The new list of member IDs attached to the card. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2020-10-13 04:00:14 -07:00
} ,
] ,
} ,
// ----------------------------------
// card: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 : [
'card' ,
] ,
} ,
} ,
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 : [
'delete' ,
] ,
resource : [
'card' ,
] ,
} ,
} ,
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 : [
'card' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'The ID of the card 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
} ,
// ----------------------------------
// card: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 : [
'card' ,
] ,
} ,
} ,
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 : [
'get' ,
] ,
resource : [
'card' ,
] ,
} ,
} ,
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
} ,
{
displayName : 'Card ID' ,
name : 'cardId' ,
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 : [
'card' ,
] ,
} ,
} ,
2022-05-06 14:01:25 -07:00
description : 'The ID of the card to get' ,
2020-10-13 04:00:14 -07:00
} ,
// ----------------------------------
// card: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 : [
'card' ,
] ,
} ,
} ,
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
} ,
{
displayName : 'From Object' ,
name : 'fromObject' ,
type : 'options' ,
required : true ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'card' ,
] ,
} ,
} ,
options : [
{
name : 'List' ,
value : 'list' ,
} ,
{
name : 'Swimlane' ,
value : 'swimlane' ,
} ,
] ,
default : '' ,
} ,
{
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 : {
fromObject : [
'list' ,
] ,
operation : [
'getAll' ,
] ,
resource : [
'card' ,
] ,
} ,
} ,
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 : 'Swimlane Name or ID' ,
2020-10-13 04:00:14 -07:00
name : 'swimlaneId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getSwimlanes' ,
loadOptionsDependsOn : [
'boardId' ,
] ,
} ,
default : '' ,
displayOptions : {
show : {
fromObject : [
'swimlane' ,
] ,
operation : [
'getAll' ,
] ,
resource : [
'card' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'The ID of the swimlane 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
} ,
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'card' ,
] ,
} ,
} ,
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 : [
'card' ,
] ,
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
} ,
// ----------------------------------
// card: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 : [
'card' ,
] ,
} ,
} ,
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 : [
'update' ,
] ,
resource : [
'card' ,
] ,
} ,
} ,
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 : [
'update' ,
] ,
resource : [
'card' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'The ID of the card to update. 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 : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
displayOptions : {
show : {
operation : [
'update' ,
] ,
resource : [
'card' ,
] ,
} ,
} ,
default : { } ,
options : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Author Name or ID' ,
2020-10-13 04:00:14 -07:00
name : 'authorId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getUsers' ,
} ,
default : '' ,
2022-06-03 10:23:49 -07:00
description : 'Update the owner of the card. 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-20 07:54:01 -07:00
displayName : 'Assignee Names or IDs' ,
2020-10-13 04:00:14 -07:00
name : 'assignees' ,
type : 'multiOptions' ,
typeOptions : {
loadOptionsMethod : 'getUsers' ,
} ,
2022-04-22 09:29:51 -07:00
default : [ ] ,
2022-06-20 07:54:01 -07:00
description : 'The new list of assignee IDs attached to the card. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2020-10-13 04:00:14 -07:00
} ,
{
displayName : 'Color' ,
name : 'color' ,
type : 'options' ,
options : [
{
2022-06-03 10:23:49 -07:00
value : 'black' ,
name : 'Black' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'blue' ,
name : 'Blue' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'crimson' ,
name : 'Crimson' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'darkgreen' ,
name : 'Darkgreen' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'gold' ,
name : 'Gold' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'gray' ,
name : 'Gray' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'green' ,
name : 'Green' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'indigo' ,
name : 'Indigo' ,
2020-10-13 04:00:14 -07:00
} ,
{
value : 'lime' ,
2020-10-22 06:46:03 -07:00
name : 'Lime' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'magenta' ,
name : 'Magenta' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'mistyrose' ,
name : 'Mistyrose' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'navy' ,
name : 'Navy' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'orange' ,
name : 'Orange' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'paleturquoise' ,
name : 'Paleturquoise' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'peachpuff' ,
name : 'Peachpuff' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'pink' ,
name : 'Pink' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'plum' ,
name : 'Plum' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'purple' ,
name : 'Purple' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'red' ,
name : 'Red' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'saddlebrown' ,
name : 'Saddlebrown' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'silver' ,
name : 'Silver' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'sky' ,
name : 'Sky' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'slateblue' ,
name : 'Slateblue' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'white' ,
name : 'White' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
value : 'yellow' ,
name : 'Yellow' ,
2020-10-13 04:00:14 -07:00
} ,
] ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The new color of the card' ,
2020-10-13 04:00:14 -07:00
} ,
{
displayName : 'Description' ,
name : 'description' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The new description of the card' ,
2020-10-13 04:00:14 -07:00
} ,
{
displayName : 'Due At' ,
name : 'dueAt' ,
type : 'dateTime' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The new due at field of the card' ,
2020-10-13 04:00:14 -07:00
} ,
{
displayName : 'End At' ,
name : 'endAt' ,
type : 'dateTime' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The new end at field of the card' ,
2020-10-13 04:00:14 -07:00
} ,
{
displayName : 'Label IDs' ,
name : 'labelIds' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The label IDs attached to the card' ,
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 : '' ,
2022-06-03 10:23:49 -07:00
description : 'The new list ID of the card (move operation). 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-20 07:54:01 -07:00
displayName : 'Member Names or IDs' ,
2020-10-13 04:00:14 -07:00
name : 'members' ,
type : 'multiOptions' ,
typeOptions : {
loadOptionsMethod : 'getUsers' ,
} ,
2022-04-22 09:29:51 -07:00
default : [ ] ,
2022-06-20 07:54:01 -07:00
description : 'The new list of member IDs attached to the card. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2020-10-13 04:00:14 -07:00
} ,
{
displayName : 'Over Time' ,
name : 'isOverTime' ,
type : 'boolean' ,
default : false ,
2022-06-20 07:54:01 -07:00
// eslint-disable-next-line n8n-nodes-base/node-param-description-boolean-without-whether
2022-05-06 14:01:25 -07:00
description : 'The new over time field of the card' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Parent Name or ID' ,
2020-10-13 04:00:14 -07:00
name : 'parentId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getCards' ,
loadOptionsDependsOn : [
'boardId' ,
'listId' ,
] ,
} ,
default : '' ,
2022-06-03 10:23:49 -07:00
description : 'The parent of the card. 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 : 'Received At' ,
name : 'receivedAt' ,
type : 'dateTime' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The new received at field of the card' ,
2020-10-13 04:00:14 -07:00
} ,
2021-09-11 03:46:24 -07:00
{
displayName : 'Sort' ,
name : 'sort' ,
type : 'number' ,
default : 0 ,
2022-05-06 14:01:25 -07:00
description : 'The internally used sort value of a card' ,
2021-09-11 03:46:24 -07:00
} ,
2020-10-13 04:00:14 -07:00
{
displayName : 'Spent Time' ,
name : 'spentTime' ,
type : 'number' ,
typeOptions : {
minValue : 0 ,
} ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The new spent time field of the card' ,
2020-10-13 04:00:14 -07:00
} ,
{
displayName : 'Start At' ,
name : 'startAt' ,
type : 'dateTime' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The new start at field of the card' ,
2020-10-13 04:00:14 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Swimlane Name or ID' ,
2020-10-13 04:00:14 -07:00
name : 'swimlaneId' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getSwimlanes' ,
loadOptionsDependsOn : [
'boardId' ,
] ,
} ,
default : '' ,
2022-06-03 10:23:49 -07:00
description : 'The new swimlane ID of the card. 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 : '' ,
2022-05-06 14:01:25 -07:00
description : 'The new title of the card' ,
2020-10-13 04:00:14 -07:00
} ,
] ,
} ,
2021-12-03 00:44:16 -08:00
] ;