interface MondayComNodeParameters {
additionalFields?:
| { templateId?: number }
| { defaults?: string }
| { columnValues?: string };
authentication?: "oAuth2" | "accessToken";
boardId?: string;
columnId?: string;
columnType?:
| "person"
| "text"
| "email"
| "status"
| "tags"
| "hour"
| "week"
| "date"
| "checkbox"
| "dropdown"
| "phone"
| "team"
| "country"
| "Link"
| "longText"
| "numbers"
| "people"
| "rating"
| "timeline"
| "timezone"
| "worldClock";
columnValue?: string;
columnValues?: string;
groupId?: string;
itemId?: string;
kind?: "public"
| "private"
| "share";
limit?: number;
name?: string;
operation?:
| "create"
| "get"
| "getAll"
| "delete"
| "move"
| "archive"
| "addUpdate"
| "changeColumnValue"
| "changeMultipleColumnValues"
| "getByColumnValue";
resource?: | "board"
| "boardColumn"
| "boardGroup"
| "boardItem";
returnAll?: boolean;
title?: string;
value?: string;
}Properties§
readonly additional Fields?:
| { templateId?: number }
| { defaults?: string }
| { columnValues?: string }readonly authentication?: "oAuth2" | "accessToken"Default: "accessToken"
readonly board Id?: stringBoard unique identifiers. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getBoards"}
readonly column Id?: stringThe column's unique identifier. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getColumns","loadOptionsDependsOn":["boardId"]}
readonly column Type?:
| "person"
| "text"
| "email"
| "status"
| "tags"
| "hour"
| "week"
| "date"
| "checkbox"
| "dropdown"
| "phone"
| "team"
| "country"
| "Link"
| "longText"
| "numbers"
| "people"
| "rating"
| "timeline"
| "timezone"
| "worldClock"§readonly column Value?: stringThe column value to search items by
readonly column Values?: stringThe column fields and values in JSON format. Documentation can be found here. Type options: {"alwaysOpenEditWindow":true}
readonly group Id?: stringChoose from the list, or specify an ID using an expression Type options: {"loadOptionsMethod":"getGroups","loadOptionsDependsOn":["boardId"]}
readonly item Id?: stringThe unique identifier of the item to add update to
readonly kind?: "public" | "private" | "share"The board's kind (public / private / share)
readonly limit?: numberMax number of results to return Default: 50 Type options: {"minValue":1,"maxValue":100}
readonly name?: stringThe board's name
readonly operation?:
| "create"
| "get"
| "getAll"
| "delete"
| "move"
| "archive"
| "addUpdate"
| "changeColumnValue"
| "changeMultipleColumnValues"
| "getByColumnValue"Default: "create"
readonly resource?: "board" | "boardColumn" | "boardGroup" | "boardItem"Default: "board"
readonly return All?: booleanWhether to return all results or only up to a given limit
readonly title?: string§readonly value?: stringThe update text to add
Default: {}