@axlsdk/studio 0.17.6 → 0.17.8
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 +7 -2
- package/dist/{chunk-LLJHLJ63.js → chunk-WUCCIBQ6.js} +187 -117
- package/dist/chunk-WUCCIBQ6.js.map +1 -0
- package/dist/cli.cjs +190 -120
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +1 -1
- package/dist/{connection-manager-DAuqk9lM.d.cts → connection-manager-8TQqoUtk.d.cts} +11 -0
- package/dist/{connection-manager-DAuqk9lM.d.ts → connection-manager-8TQqoUtk.d.ts} +11 -0
- package/dist/middleware.cjs +189 -119
- package/dist/middleware.cjs.map +1 -1
- package/dist/middleware.d.cts +1 -1
- package/dist/middleware.d.ts +1 -1
- package/dist/middleware.js +1 -1
- package/dist/server/index.cjs +186 -116
- package/dist/server/index.cjs.map +1 -1
- package/dist/server/index.d.cts +5 -2
- package/dist/server/index.d.ts +5 -2
- package/dist/server/index.js +1 -1
- package/package.json +4 -4
- package/dist/chunk-LLJHLJ63.js.map +0 -1
package/dist/server/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as hono_ws from 'hono/ws';
|
|
2
|
-
import { C as ConnectionManager, a as BufferCaps, S as StudioEnv, b as CostData } from '../connection-manager-
|
|
3
|
-
export { B as BroadcastTarget } from '../connection-manager-
|
|
2
|
+
import { C as ConnectionManager, a as BufferCaps, S as StudioEnv, b as CostData } from '../connection-manager-8TQqoUtk.cjs';
|
|
3
|
+
export { B as BroadcastTarget } from '../connection-manager-8TQqoUtk.cjs';
|
|
4
4
|
import * as hono_types from 'hono/types';
|
|
5
5
|
import { Hono } from 'hono';
|
|
6
6
|
import { AxlRuntime, AxlEvent, ExecutionInfo, EvalHistoryEntry } from '@axlsdk/axl';
|
|
@@ -102,6 +102,7 @@ declare class TraceAggregator<State> {
|
|
|
102
102
|
private snaps;
|
|
103
103
|
private interval?;
|
|
104
104
|
private listener?;
|
|
105
|
+
private deleteListener?;
|
|
105
106
|
private options;
|
|
106
107
|
constructor(options: TraceAggregatorOptions<State>);
|
|
107
108
|
start(): Promise<void>;
|
|
@@ -133,6 +134,7 @@ declare class ExecutionAggregator<State> {
|
|
|
133
134
|
private snaps;
|
|
134
135
|
private interval?;
|
|
135
136
|
private listener?;
|
|
137
|
+
private deleteListener?;
|
|
136
138
|
private options;
|
|
137
139
|
/** Generation counter to prevent stale async fold after rebuild. */
|
|
138
140
|
private generation;
|
|
@@ -165,6 +167,7 @@ declare class EvalAggregator<State> {
|
|
|
165
167
|
private snaps;
|
|
166
168
|
private interval?;
|
|
167
169
|
private listener?;
|
|
170
|
+
private deleteListener?;
|
|
168
171
|
private options;
|
|
169
172
|
constructor(options: EvalAggregatorOptions<State>);
|
|
170
173
|
start(): Promise<void>;
|
package/dist/server/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as hono_ws from 'hono/ws';
|
|
2
|
-
import { C as ConnectionManager, a as BufferCaps, S as StudioEnv, b as CostData } from '../connection-manager-
|
|
3
|
-
export { B as BroadcastTarget } from '../connection-manager-
|
|
2
|
+
import { C as ConnectionManager, a as BufferCaps, S as StudioEnv, b as CostData } from '../connection-manager-8TQqoUtk.js';
|
|
3
|
+
export { B as BroadcastTarget } from '../connection-manager-8TQqoUtk.js';
|
|
4
4
|
import * as hono_types from 'hono/types';
|
|
5
5
|
import { Hono } from 'hono';
|
|
6
6
|
import { AxlRuntime, AxlEvent, ExecutionInfo, EvalHistoryEntry } from '@axlsdk/axl';
|
|
@@ -102,6 +102,7 @@ declare class TraceAggregator<State> {
|
|
|
102
102
|
private snaps;
|
|
103
103
|
private interval?;
|
|
104
104
|
private listener?;
|
|
105
|
+
private deleteListener?;
|
|
105
106
|
private options;
|
|
106
107
|
constructor(options: TraceAggregatorOptions<State>);
|
|
107
108
|
start(): Promise<void>;
|
|
@@ -133,6 +134,7 @@ declare class ExecutionAggregator<State> {
|
|
|
133
134
|
private snaps;
|
|
134
135
|
private interval?;
|
|
135
136
|
private listener?;
|
|
137
|
+
private deleteListener?;
|
|
136
138
|
private options;
|
|
137
139
|
/** Generation counter to prevent stale async fold after rebuild. */
|
|
138
140
|
private generation;
|
|
@@ -165,6 +167,7 @@ declare class EvalAggregator<State> {
|
|
|
165
167
|
private snaps;
|
|
166
168
|
private interval?;
|
|
167
169
|
private listener?;
|
|
170
|
+
private deleteListener?;
|
|
168
171
|
private options;
|
|
169
172
|
constructor(options: EvalAggregatorOptions<State>);
|
|
170
173
|
start(): Promise<void>;
|
package/dist/server/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axlsdk/studio",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.8",
|
|
4
4
|
"description": "Local development UI for debugging, testing, and iterating on Axl agents and workflows",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/server/index.cjs",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"hono": "^4.7.0",
|
|
41
41
|
"tsx": "^4.19.0",
|
|
42
42
|
"ws": "^8.0.0",
|
|
43
|
-
"@axlsdk/axl": "0.17.
|
|
43
|
+
"@axlsdk/axl": "0.17.8"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@tailwindcss/vite": "^4.1.0",
|
|
@@ -65,10 +65,10 @@
|
|
|
65
65
|
"vite": "^6.0.0",
|
|
66
66
|
"vitest": "^3.0.0",
|
|
67
67
|
"zod": "^4.0.0",
|
|
68
|
-
"@axlsdk/testing": "0.17.
|
|
68
|
+
"@axlsdk/testing": "0.17.8"
|
|
69
69
|
},
|
|
70
70
|
"peerDependencies": {
|
|
71
|
-
"@axlsdk/eval": "0.17.
|
|
71
|
+
"@axlsdk/eval": "0.17.8"
|
|
72
72
|
},
|
|
73
73
|
"peerDependenciesMeta": {
|
|
74
74
|
"@axlsdk/eval": {
|