@hexabot-ai/api 3.2.2-alpha.5 → 3.2.2-alpha.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/extensions/actions/ai/mcp.binding.js +4 -3
- package/dist/extensions/actions/ai/mcp.binding.js.map +1 -1
- package/dist/static/assets/{browser-ponyfill-Rvin9Ku3.js → browser-ponyfill-CEwoCVSx.js} +1 -1
- package/dist/static/assets/{cssMode-BKJJKPS9.js → cssMode--IlDJz7y.js} +1 -1
- package/dist/static/assets/{freemarker2-DjU_PvHQ.js → freemarker2-bg_Owo1H.js} +1 -1
- package/dist/static/assets/{handlebars-Da7m7VT9.js → handlebars-CO-ZB4C_.js} +1 -1
- package/dist/static/assets/{html-CwWST0K9.js → html-jwF9Nzjc.js} +1 -1
- package/dist/static/assets/{htmlMode-BQ61_ox3.js → htmlMode-DRaYXCag.js} +1 -1
- package/dist/static/assets/{index-BXf2qIjh.js → index-C1EyZVnd.js} +2007 -2007
- package/dist/static/assets/{javascript-sKC6uuoK.js → javascript-BXVcPsQH.js} +1 -1
- package/dist/static/assets/{jsonMode-BZQ1ER6P.js → jsonMode-DnXHebnn.js} +1 -1
- package/dist/static/assets/{liquid-DnTqZQQw.js → liquid-K9ivjSXd.js} +1 -1
- package/dist/static/assets/{lspLanguageFeatures-CWyqg7zG.js → lspLanguageFeatures-Bec2yhP4.js} +1 -1
- package/dist/static/assets/{mdx-BBVoKyR7.js → mdx-CjD0T1se.js} +1 -1
- package/dist/static/assets/{python-CJvKRo4Z.js → python-DRkLfGvI.js} +1 -1
- package/dist/static/assets/{razor-CMT0JFg5.js → razor-DSBkwv0Q.js} +1 -1
- package/dist/static/assets/{tsMode-uByaAPGE.js → tsMode-F8_-k2jz.js} +1 -1
- package/dist/static/assets/{typescript-ZSO8tx9G.js → typescript-fuBu-iOB.js} +1 -1
- package/dist/static/assets/{xml-CgZcfrRz.js → xml-BlB1OdEv.js} +1 -1
- package/dist/static/assets/{yaml-DTsTIIIk.js → yaml-BIRHigS_.js} +1 -1
- package/dist/static/index.html +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/src/extensions/actions/ai/mcp.binding.ts +4 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hexabot-ai/api",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "3.2.2-alpha.
|
|
4
|
+
"version": "3.2.2-alpha.7",
|
|
5
5
|
"description": "Hexabot is a solution for creating and managing chatbots across multiple channels, leveraging AI for advanced conversational capabilities. It provides a user-friendly interface for building, training, and deploying chatbots with integrated support for various messaging platforms.",
|
|
6
6
|
"author": "Hexastack",
|
|
7
7
|
"license": "FCL-1.0-ALv2",
|
|
@@ -90,8 +90,8 @@
|
|
|
90
90
|
"typeorm": "^0.3.28",
|
|
91
91
|
"yaml": "^2.8.3",
|
|
92
92
|
"zod": "^4.3.6",
|
|
93
|
-
"@hexabot-ai/agentic": "3.1.2-alpha.
|
|
94
|
-
"@hexabot-ai/types": "3.0.2-alpha.
|
|
93
|
+
"@hexabot-ai/agentic": "3.1.2-alpha.7",
|
|
94
|
+
"@hexabot-ai/types": "3.0.2-alpha.7"
|
|
95
95
|
},
|
|
96
96
|
"devDependencies": {
|
|
97
97
|
"@compodoc/compodoc": "^1.1.31",
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
"tsconfig-paths": "^4.2.0",
|
|
143
143
|
"tsconfig-paths-jest": "^0.0.1",
|
|
144
144
|
"typescript": "^5.1.3",
|
|
145
|
-
"@hexabot-ai/frontend": "3.2.2-alpha.
|
|
145
|
+
"@hexabot-ai/frontend": "3.2.2-alpha.7"
|
|
146
146
|
},
|
|
147
147
|
"optionalDependencies": {
|
|
148
148
|
"@css-inline/css-inline-linux-arm64-musl": "^0.14.1",
|
|
@@ -30,12 +30,13 @@ export const aiMcpToolBindingSchema = z.strictObject({
|
|
|
30
30
|
'Optional allow-list of MCP tool names. Leave empty to expose all server tools.',
|
|
31
31
|
'ui:widget': 'AutoCompleteWidget',
|
|
32
32
|
'ui:options': {
|
|
33
|
-
|
|
34
|
-
valueKey: 'name',
|
|
33
|
+
apiPath: '/mcpserver/:id/tools',
|
|
35
34
|
labelKey: 'name',
|
|
35
|
+
idKey: 'name',
|
|
36
|
+
valueKey: 'name',
|
|
36
37
|
idFormPath: 'server_id',
|
|
37
|
-
routeParamKey: 'id',
|
|
38
38
|
disableSearch: true,
|
|
39
|
+
multiple: true,
|
|
39
40
|
},
|
|
40
41
|
}),
|
|
41
42
|
});
|