@objectstack/service-ai 4.0.3 → 4.0.4
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/.turbo/turbo-build.log +8 -8
- package/CHANGELOG.md +8 -0
- package/README.md +293 -0
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/__tests__/ai-service.test.ts +17 -0
- package/src/plugin.ts +2 -2
- package/vitest.config.ts +23 -0
package/dist/index.js
CHANGED
|
@@ -2640,8 +2640,8 @@ var AIServicePlugin = class {
|
|
|
2640
2640
|
setupNav.contribute({
|
|
2641
2641
|
areaId: "area_ai",
|
|
2642
2642
|
items: [
|
|
2643
|
-
{ id: "nav_ai_conversations", type: "object", label:
|
|
2644
|
-
{ id: "nav_ai_messages", type: "object", label:
|
|
2643
|
+
{ id: "nav_ai_conversations", type: "object", label: "Conversations", objectName: "conversations", icon: "message-square", order: 10 },
|
|
2644
|
+
{ id: "nav_ai_messages", type: "object", label: "Messages", objectName: "messages", icon: "messages-square", order: 20 }
|
|
2645
2645
|
]
|
|
2646
2646
|
});
|
|
2647
2647
|
ctx.logger.info("[AI] Navigation items contributed to Setup App");
|