@kmmao/happy-wire 0.2.7 → 0.2.9
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/index.cjs +3 -1
- package/dist/index.d.cts +389 -4862
- package/dist/index.d.mts +389 -4862
- package/dist/index.mjs +3 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -100,7 +100,9 @@ const sessionTaskProgressEventSchema = z.object({
|
|
|
100
100
|
toolUses: z.number(),
|
|
101
101
|
durationMs: z.number()
|
|
102
102
|
}),
|
|
103
|
-
lastToolName: z.string().optional()
|
|
103
|
+
lastToolName: z.string().optional(),
|
|
104
|
+
/** AI-generated progress summary (~30s interval, from agentProgressSummaries) */
|
|
105
|
+
summary: z.string().optional()
|
|
104
106
|
});
|
|
105
107
|
const sessionTaskEndEventSchema = z.object({
|
|
106
108
|
t: z.literal("task-end"),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmmao/happy-wire",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.9",
|
|
4
4
|
"description": "Shared message wire types and Zod schemas for Happy clients and services",
|
|
5
5
|
"author": "kmmao",
|
|
6
6
|
"license": "MIT",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@paralleldrive/cuid2": "^2.2.2",
|
|
40
|
-
"zod": "
|
|
40
|
+
"zod": "4"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/node": ">=20",
|