@case-framework/survey-assistant 0.1.1 → 0.2.0
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/README.md +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -183,7 +183,7 @@ plus the narrow browser-safe `survey-core/editor/colors` runtime dependency;
|
|
|
183
183
|
`/engine` may use the full `survey-core` API. `/server` is
|
|
184
184
|
server-only and may import Mastra, AI SDK, and Node APIs, but never React,
|
|
185
185
|
Next.js, or `survey-ui`. The separate server entries prevent handler-only
|
|
186
|
-
consumers from eagerly loading Agent/Memory code. `@case-framework/survey-ui`
|
|
186
|
+
consumers from eagerly loading Agent/Memory code. `@case-framework/survey-editor-ui`
|
|
187
187
|
owns the optional live-editor bridge, snapshot/apply functions, and snapshot-backed
|
|
188
188
|
one-shot provider because those functions must operate on its editor instance
|
|
189
189
|
and item registry. The assistant package supplies the standard task Web handler
|
|
@@ -224,7 +224,7 @@ export const ratingAssistantCapability = {
|
|
|
224
224
|
} satisfies AssistantItemCapabilityAdapter;
|
|
225
225
|
|
|
226
226
|
// rating-entry.tsx (client/editor module)
|
|
227
|
-
import type { ItemRegistryEntry } from "@case-framework/survey-ui";
|
|
227
|
+
import type { ItemRegistryEntry } from "@case-framework/survey-editor-ui";
|
|
228
228
|
|
|
229
229
|
export const ratingQuestionEntry = {
|
|
230
230
|
itemType: "ratingQuestion",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@case-framework/survey-assistant",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Shared protocol, engine, and runtime for the CASE survey assistant.",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"files": [
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"tw-animate-css": "^1.4.0",
|
|
98
98
|
"use-stick-to-bottom": "^1.1.6",
|
|
99
99
|
"zod": "^4.3.6",
|
|
100
|
-
"@case-framework/ui-localization": "0.2.
|
|
100
|
+
"@case-framework/ui-localization": "0.2.1"
|
|
101
101
|
},
|
|
102
102
|
"devDependencies": {
|
|
103
103
|
"@ai-sdk/react": "^4.0.10",
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
"tsdown": "^0.21.10",
|
|
118
118
|
"typescript": "^6.0.3",
|
|
119
119
|
"vite": "^8.0.10",
|
|
120
|
-
"@case-framework/survey-core": "0.
|
|
120
|
+
"@case-framework/survey-core": "0.5.0"
|
|
121
121
|
},
|
|
122
122
|
"peerDependencies": {
|
|
123
123
|
"@ai-sdk/react": "^4.0.10",
|