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§
Source§readonly additional Fields?:
| { templateId?: number }
| { defaults?: string }
| { columnValues?: string }
readonly additional Fields?:
| { templateId?: number }
| { defaults?: string }
| { columnValues?: string }
Source§readonly board Id?: string
readonly board Id?: string
Board unique identifiers. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getBoards"}
Source§readonly column Id?: string
readonly column Id?: string
The column's unique identifier. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getColumns","loadOptionsDependsOn":["boardId"]}
Source§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 Type?:
| "person"
| "text"
| "email"
| "status"
| "tags"
| "hour"
| "week"
| "date"
| "checkbox"
| "dropdown"
| "phone"
| "team"
| "country"
| "Link"
| "longText"
| "numbers"
| "people"
| "rating"
| "timeline"
| "timezone"
| "worldClock"
Source§readonly column Values?: string
readonly column Values?: string
The column fields and values in JSON format. Documentation can be found here. Type options: {"alwaysOpenEditWindow":true}
Source§readonly group Id?: string
readonly group Id?: string
Choose from the list, or specify an ID using an expression Type options: {"loadOptionsMethod":"getGroups","loadOptionsDependsOn":["boardId"]}
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 50 Type options: {"minValue":1,"maxValue":100}
Default: {}