@rulvar/core 1.83.0 → 1.85.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/dist/index.js +1 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -10124,7 +10124,7 @@ async function streamTurn(adapter, req, options) {
|
|
|
10124
10124
|
if (sawFinish || wireError !== void 0) break;
|
|
10125
10125
|
}
|
|
10126
10126
|
} catch (thrown) {
|
|
10127
|
-
if (!combined.aborted) wireError = {
|
|
10127
|
+
if (!combined.aborted) wireError = thrown instanceof RulvarError ? thrown.toWire() : {
|
|
10128
10128
|
code: "agent",
|
|
10129
10129
|
message: thrown instanceof Error ? thrown.message : String(thrown),
|
|
10130
10130
|
retryable: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rulvar/core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.85.0",
|
|
4
4
|
"description": "Rulvar core: L0 contracts, journal kernel, ctx primitives, agent runtime, model router, tool system, dynamic orchestrator, InMemory and JSONL stores, event stream.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"access": "public"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@types/node": "^22.20.
|
|
26
|
-
"arktype": "^2.2.
|
|
27
|
-
"fast-check": "^4.
|
|
28
|
-
"tsdown": "^0.22.
|
|
25
|
+
"@types/node": "^22.20.1",
|
|
26
|
+
"arktype": "^2.2.3",
|
|
27
|
+
"fast-check": "^4.9.0",
|
|
28
|
+
"tsdown": "^0.22.14",
|
|
29
29
|
"typescript": "~6.0.3",
|
|
30
30
|
"valibot": "^1.4.2",
|
|
31
31
|
"zod": "^4.4.3"
|