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/zoho_desk/actions/get-article/get-article.mjs
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,9 @@ import zohoDesk from "../../zoho_desk.app.mjs";
3
3
exportdefault{
4
4
key: "zoho_desk-get-article",
5
5
name: "Get Article",
6
-
description: "Retrieves the details of a knowledge base article. [See the docs here](https://desk.zoho.com/portal/APIDocument.do#KnowledgeBase_Getarticle)",
6
+
description: "Retrieves the details of a knowledge base article. [See the documentation](https://desk.zoho.com/portal/APIDocument.do#KnowledgeBase_Getarticle)",
Copy file name to clipboardExpand all lines: components/zoho_desk/actions/list-articles/list-articles.mjs
+11-8Lines changed: 11 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,9 @@ import zohoDesk from "../../zoho_desk.app.mjs";
2
2
exportdefault{
3
3
key: "zoho_desk-list-articles",
4
4
name: "List Articles",
5
-
description: "Lists knowledge base articles for a help center. [See the docs here](https://desk.zoho.com/portal/APIDocument.do#KnowledgeBase#KnowledgeBase_Listarticles)",
5
+
description: "Lists knowledge base articles for a help center. [See the documentation](https://desk.zoho.com/portal/APIDocument.do#KnowledgeBase#KnowledgeBase_Listarticles)",
6
6
type: "action",
7
-
version: "0.0.1",
7
+
version: "0.0.2",
8
8
annotations: {
9
9
destructiveHint: false,
10
10
openWorldHint: true,
@@ -28,15 +28,18 @@ export default {
28
28
],
29
29
},
30
30
categoryId: {
31
-
type: "string",
32
-
label: "Category ID",
33
-
description: "Filter by the ID(s) of the categories the articles belong to. Use comma-separated IDs to include multiple categories.",
34
-
optional: true,
31
+
propDefinition: [
32
+
zohoDesk,
33
+
"categoryId",
34
+
({ portalId })=>({
35
+
portalId,
36
+
}),
37
+
],
35
38
},
36
39
sortBy: {
37
40
type: "string",
38
41
label: "Sort By",
39
-
description: "Sort articles by the specified attribute.",
42
+
description: "Sort articles by the specified attribute",
Copy file name to clipboardExpand all lines: components/zoho_desk/actions/list-help-centers/list-help-centers.mjs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,9 @@ import zohoDesk from "../../zoho_desk.app.mjs";
3
3
exportdefault{
4
4
key: "zoho_desk-list-help-centers",
5
5
name: "List Help Centers",
6
-
description: "Lists the help centers configured in an organization. [See the docs here](https://desk.zoho.com/portal/APIDocument.do#HelpCenters_Listhelpcenters)",
6
+
description: "Lists the help centers configured in an organization. [See the documentation](https://desk.zoho.com/portal/APIDocument.do#HelpCenters_Listhelpcenters)",
Copy file name to clipboardExpand all lines: components/zoho_desk/actions/list-root-categories/list-root-categories.mjs
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,9 @@ import zohoDesk from "../../zoho_desk.app.mjs";
2
2
exportdefault{
3
3
key: "zoho_desk-list-root-categories",
4
4
name: "List Root Categories",
5
-
description: "Lists root knowledge base categories for a help center. [See the docs here](https://desk.zoho.com/portal/APIDocument.do#KnowledgeBase_Listallrootcategoriesofthehelpcenter)",
5
+
description: "Lists root knowledge base categories for a help center. [See the documentation](https://desk.zoho.com/portal/APIDocument.do#KnowledgeBase_Listallrootcategoriesofthehelpcenter)",
6
6
type: "action",
7
-
version: "0.0.1",
7
+
version: "0.0.2",
8
8
annotations: {
9
9
destructiveHint: false,
10
10
openWorldHint: true,
@@ -50,8 +50,10 @@ export default {
50
50
optional: true,
51
51
},
52
52
departmentId: {
53
-
type: "string",
54
-
label: "Department ID",
53
+
propDefinition: [
54
+
zohoDesk,
55
+
"departmentId",
56
+
],
55
57
description: "Filter categories associated with the specified department.",
Copy file name to clipboardExpand all lines: components/zoho_desk/actions/search-articles/search-articles.mjs
+9-6Lines changed: 9 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,9 @@ import zohoDesk from "../../zoho_desk.app.mjs";
2
2
exportdefault{
3
3
key: "zoho_desk-search-articles",
4
4
name: "Search Articles",
5
-
description: "Searches for knowledge base articles. [See the docs here](https://desk.zoho.com/portal/APIDocument.do#KnowledgeBase_Searcharticles)",
5
+
description: "Searches for knowledge base articles. [See the documentation](https://desk.zoho.com/portal/APIDocument.do#KnowledgeBase_Searcharticles)",
6
6
type: "action",
7
-
version: "0.0.1",
7
+
version: "0.0.2",
8
8
annotations: {
9
9
destructiveHint: false,
10
10
openWorldHint: true,
@@ -33,10 +33,13 @@ export default {
33
33
description: "The keywords to search for within articles.",
34
34
},
35
35
categoryId: {
36
-
type: "string",
37
-
label: "Category ID",
38
-
description: "Filter by articles belonging to the specified category.",
0 commit comments