You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/monday/actions/create-group/create-group.mjs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ import monday from "../../monday.app.mjs";
3
3
exportdefault{
4
4
key: "monday-create-group",
5
5
name: "Create Group",
6
-
description: "Creates a new group in a specific board. [See the documentation](https://api.developer.monday.com/docs/groups-queries#create-a-group)",
6
+
description: "Creates a new group in a specific board. [See the documentation](https://developer.monday.com/api-reference/reference/groups#create-a-group)",
Copy file name to clipboardExpand all lines: components/monday/actions/update-item-name/update-item-name.mjs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ import monday from "../../monday.app.mjs";
3
3
exportdefault{
4
4
key: "monday-update-item-name",
5
5
name: "Update Item Name",
6
-
description: "Update an item's name. [See the documentation](https://api.developer.monday.com/docs/item-name)",
6
+
description: "Update an item's name. [See the documentation](https://developer.monday.com/api-reference/reference/columns#change-multiple-column-values)",
Copy file name to clipboardExpand all lines: components/monday/monday.app.mjs
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ export default {
13
13
boardId: {
14
14
type: "string",
15
15
label: "Board ID",
16
-
description: "The board's unique identifier",
16
+
description: "Select a board, or provide a board ID.",
17
17
asyncoptions({ page }){
18
18
returnthis.listBoardsOptions({
19
19
page: page+1,
@@ -23,18 +23,18 @@ export default {
23
23
boardName: {
24
24
type: "string",
25
25
label: "Board Name",
26
-
description: "The board's name",
26
+
description: "The new board's name",
27
27
},
28
28
boardKind: {
29
29
type: "string",
30
30
label: "Board Kind",
31
-
description: "The board's kind (`public` / `private` / `share`)",
31
+
description: "The new board's kind (`public` / `private` / `share`)",
32
32
options: constants.BOARD_KIND_OPTIONS,
33
33
},
34
34
folderId: {
35
35
type: "integer",
36
36
label: "Folder ID",
37
-
description: "Board folder ID",
37
+
description: "Optionally select a folder to create the board in, or provide a folder ID.",
38
38
optional: true,
39
39
asyncoptions({ workspaceId }){
40
40
returnthis.listFolderOptions({
@@ -45,7 +45,7 @@ export default {
45
45
workspaceId: {
46
46
type: "integer",
47
47
label: "Workspace ID",
48
-
description: "Board workspace ID. If you don't specify this field, the board will be created in the **Main Workspace**",
48
+
description: "Select a workspace to create the board in, or provide a workspace ID. If not specified, the **Main Workspace** will be used.",
49
49
optional: true,
50
50
asyncoptions(){
51
51
returnthis.listWorkspacesOptions();
@@ -54,18 +54,18 @@ export default {
54
54
templateId: {
55
55
type: "integer",
56
56
label: "Board Template ID",
57
-
description: "Board ID saved as a custom template. The ID can be obteined from the url in browser selecting the corresponding board (e.g. `https://{subdomain}.monday.com/boards/2419687965`) where `2419687965` is the ID of the template",
57
+
description: "The board's template ID. You can obtain it from the URL when selecting the desired board (e.g. `https://{subdomain}.monday.com/boards/2419687965`) where `2419687965` is the template ID. [See the documentation](https://developer.monday.com/api-reference/reference/boards#create-a-board) for more information.",
58
58
optional: true,
59
59
},
60
60
groupName: {
61
61
type: "string",
62
62
label: "Group Name",
63
-
description: "The name of the new group",
63
+
description: "The name of the new group.",
64
64
},
65
65
groupId: {
66
66
type: "string",
67
67
label: "Group ID",
68
-
description: "The group's unique identifier",
68
+
description: "Select a group or provide a group ID.",
69
69
optional: true,
70
70
asyncoptions({ boardId }){
71
71
returnthis.listGroupsOptions({
@@ -76,7 +76,7 @@ export default {
76
76
itemName: {
77
77
type: "string",
78
78
label: "Item Name",
79
-
description: "The item's name",
79
+
description: "The new item's name",
80
80
},
81
81
itemColumnValues: {
82
82
type: "object",
@@ -98,7 +98,7 @@ export default {
98
98
itemId: {
99
99
type: "string",
100
100
label: "Item ID",
101
-
description: "The item's unique identifier",
101
+
description: "Select an item or provide an item ID.",
102
102
optional: true,
103
103
asyncoptions({
104
104
boardId, prevContext,
@@ -112,7 +112,7 @@ export default {
112
112
updateId: {
113
113
type: "string",
114
114
label: "Update ID",
115
-
description: "The update's unique identifier",
115
+
description: "Select an update or provide an update ID.",
116
116
optional: true,
117
117
asyncoptions({
118
118
page, boardId,
@@ -126,7 +126,7 @@ export default {
126
126
column: {
127
127
type: "string",
128
128
label: "Column",
129
-
description: "Column to watch for changes",
129
+
description: "Select a column to watch for changes.",
0 commit comments