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
description="The status of the item. [See more about status values here](https://view.monday.com/1073554546-ad9f20a427a16e67ded630108994c11b?r=use1).";
30
+
options=constants.STATUS_OPTIONS;
27
31
}elseif(column==="person"){
28
32
description="The ID of a person/user.";
29
33
}elseif(column==="date4"){
30
34
description="A date string in `YYYY-MM-DD` format, e.g. `2022-09-02`.";
31
35
}else{
32
-
description=`Value for column ${column}. See the [Column Type Reference](https://developer.monday.com/api-reference/docs/column-types-reference) to learn more about entering column type values.`;
36
+
description=`Value for column ${column}. See the [Column Type Reference](https://developer.monday.com/api-reference/reference/column-types-reference) to learn more about entering column type values.`;
Copy file name to clipboardExpand all lines: components/monday/actions/get-column-values/get-column-values.mjs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ export default {
4
4
...common,
5
5
key: "monday-get-column-values",
6
6
name: "Get Column Values",
7
-
description: "Return values of specific column(s) for a board item. [See the documentation](https://developer.monday.com/api-reference/docs/column-values-v2)",
7
+
description: "Return values of specific column(s) for a board item. [See the documentation](https://developer.monday.com/api-reference/reference/column-values-v2)",
Copy file name to clipboardExpand all lines: components/monday/actions/get-items-by-column-value/get-items-by-column-value.mjs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ export default {
4
4
...common,
5
5
key: "monday-get-items-by-column-value",
6
6
name: "Get Items By Column Value",
7
-
description: "Searches a column for items matching a value. [See the documentation](https://developer.monday.com/api-reference/docs/items-page-by-column-values)",
7
+
description: "Searches a column for items matching a value. [See the documentation](https://developer.monday.com/api-reference/reference/items-page-by-column-values)",
8
8
version: "0.0.6",
9
9
type: "action",
10
10
props: {
@@ -22,7 +22,7 @@ export default {
22
22
value: {
23
23
type: "string",
24
24
label: "Value",
25
-
description: "The value to search for. [See the documentation](https://developer.monday.com/api-reference/docs/items-by-column-values#supported-limited-support-and-unsupported-columns) for additional information about column values.",
25
+
description: "The value to search for. [See the documentation](https://developer.monday.com/api-reference/reference/items-page-by-column-values#supported-and-unsupported-columns) for additional information about column values.",
Copy file name to clipboardExpand all lines: components/monday/actions/update-column-values/update-column-values.mjs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,15 +7,15 @@ export default {
7
7
...common,
8
8
key: "monday-update-column-values",
9
9
name: "Update Column Values",
10
-
description: "Update multiple column values of an item. [See the documentation](https://developer.monday.com/api-reference/docs/columns#change-multiple-column-values)",
10
+
description: "Update multiple column values of an item. [See the documentation](https://developer.monday.com/api-reference/reference/columns#change-multiple-column-values)",
11
11
version: "0.0.6",
12
12
type: "action",
13
13
props: {
14
14
...common.props,
15
15
updateInfoBox: {
16
16
type: "alert",
17
17
alertType: "info",
18
-
content: "See the [Column types reference](https://developer.monday.com/api-reference/docs/column-types-reference) to find the proper data structures for supported column types.",
18
+
content: "See the [Column types reference](https://developer.monday.com/api-reference/reference/column-types-reference) to find the proper data structures for supported column types.",
0 commit comments