Skip to content

Commit e884c7d

Browse files
committed
Description updates
1 parent 232b3a2 commit e884c7d

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

components/monday/actions/create-board/create-board.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import monday from "../../monday.app.mjs";
44
export default {
55
key: "monday-create-board",
66
name: "Create Board",
7-
description: "Creates a new board. [See the documentation](https://api.developer.monday.com/docs/boards#create-a-board)",
7+
description: "Creates a new board. [See the documentation](https://developer.monday.com/api-reference/reference/boards#create-a-board)",
88
type: "action",
99
version: "0.0.7",
1010
props: {

components/monday/actions/create-group/create-group.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import monday from "../../monday.app.mjs";
33
export default {
44
key: "monday-create-group",
55
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)",
77
type: "action",
88
version: "0.0.8",
99
props: {

components/monday/actions/create-item/create-item.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
...commonCreateItem,
77
key: "monday-create-item",
88
name: "Create Item",
9-
description: "Creates an item. [See the documentation](https://api.developer.monday.com/docs/items-queries#create-an-item)",
9+
description: "Creates an item. [See the documentation](https://developer.monday.com/api-reference/reference/items#create-an-item)",
1010
type: "action",
1111
version: "0.0.10",
1212
props: {

components/monday/actions/update-item-name/update-item-name.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import monday from "../../monday.app.mjs";
33
export default {
44
key: "monday-update-item-name",
55
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)",
77
type: "action",
88
version: "0.0.9",
99
props: {

components/monday/monday.app.mjs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default {
1313
boardId: {
1414
type: "string",
1515
label: "Board ID",
16-
description: "The board's unique identifier",
16+
description: "Select a board, or provide a board ID.",
1717
async options({ page }) {
1818
return this.listBoardsOptions({
1919
page: page + 1,
@@ -23,18 +23,18 @@ export default {
2323
boardName: {
2424
type: "string",
2525
label: "Board Name",
26-
description: "The board's name",
26+
description: "The new board's name",
2727
},
2828
boardKind: {
2929
type: "string",
3030
label: "Board Kind",
31-
description: "The board's kind (`public` / `private` / `share`)",
31+
description: "The new board's kind (`public` / `private` / `share`)",
3232
options: constants.BOARD_KIND_OPTIONS,
3333
},
3434
folderId: {
3535
type: "integer",
3636
label: "Folder ID",
37-
description: "Board folder ID",
37+
description: "Optionally select a folder to create the board in, or provide a folder ID.",
3838
optional: true,
3939
async options({ workspaceId }) {
4040
return this.listFolderOptions({
@@ -45,7 +45,7 @@ export default {
4545
workspaceId: {
4646
type: "integer",
4747
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.",
4949
optional: true,
5050
async options() {
5151
return this.listWorkspacesOptions();
@@ -54,18 +54,18 @@ export default {
5454
templateId: {
5555
type: "integer",
5656
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.",
5858
optional: true,
5959
},
6060
groupName: {
6161
type: "string",
6262
label: "Group Name",
63-
description: "The name of the new group",
63+
description: "The name of the new group.",
6464
},
6565
groupId: {
6666
type: "string",
6767
label: "Group ID",
68-
description: "The group's unique identifier",
68+
description: "Select a group or provide a group ID.",
6969
optional: true,
7070
async options({ boardId }) {
7171
return this.listGroupsOptions({
@@ -76,7 +76,7 @@ export default {
7676
itemName: {
7777
type: "string",
7878
label: "Item Name",
79-
description: "The item's name",
79+
description: "The new item's name",
8080
},
8181
itemColumnValues: {
8282
type: "object",
@@ -98,7 +98,7 @@ export default {
9898
itemId: {
9999
type: "string",
100100
label: "Item ID",
101-
description: "The item's unique identifier",
101+
description: "Select an item or provide an item ID.",
102102
optional: true,
103103
async options({
104104
boardId, prevContext,
@@ -112,7 +112,7 @@ export default {
112112
updateId: {
113113
type: "string",
114114
label: "Update ID",
115-
description: "The update's unique identifier",
115+
description: "Select an update or provide an update ID.",
116116
optional: true,
117117
async options({
118118
page, boardId,
@@ -126,7 +126,7 @@ export default {
126126
column: {
127127
type: "string",
128128
label: "Column",
129-
description: "Column to watch for changes",
129+
description: "Select a column to watch for changes.",
130130
async options({ boardId }) {
131131
const columns = await this.listColumns({
132132
boardId: +boardId,

0 commit comments

Comments
 (0)