@lssm/example.agent-console 0.0.0-canary-20251206160926 → 0.0.0-canary-20251206181705
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 +14 -14
- package/CHANGELOG.md +6 -6
- package/dist/contracts/agent.d.ts +223 -223
- package/dist/contracts/run.d.ts +277 -277
- package/dist/contracts/tool.d.ts +155 -155
- package/dist/entities/agent.d.ts +36 -36
- package/dist/entities/log.d.ts +17 -17
- package/dist/entities/run.d.ts +60 -60
- package/dist/entities/tool.d.ts +22 -22
- package/dist/events.d.ts +245 -245
- package/dist/presentations/index.d.ts +2 -2
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -2,10 +2,10 @@ import { AgentDetailPresentation, AgentListPresentation } from "./agent-list.js"
|
|
|
2
2
|
import { RunDetailPresentation, RunListPresentation, RunMetricsPresentation } from "./run-list.js";
|
|
3
3
|
import { ToolDetailPresentation, ToolRegistryPresentation } from "./tool-registry.js";
|
|
4
4
|
import { AgentConsoleDashboardPresentation } from "./dashboard.js";
|
|
5
|
-
import * as
|
|
5
|
+
import * as _lssm_lib_contracts31 from "@lssm/lib.contracts";
|
|
6
6
|
|
|
7
7
|
//#region src/presentations/index.d.ts
|
|
8
8
|
|
|
9
|
-
declare const AgentConsolePresentations:
|
|
9
|
+
declare const AgentConsolePresentations: _lssm_lib_contracts31.PresentationDescriptorV2[];
|
|
10
10
|
//#endregion
|
|
11
11
|
export { AgentConsoleDashboardPresentation, AgentConsolePresentations, AgentDetailPresentation, AgentListPresentation, RunDetailPresentation, RunListPresentation, RunMetricsPresentation, ToolDetailPresentation, ToolRegistryPresentation };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lssm/example.agent-console",
|
|
3
|
-
"version": "0.0.0-canary-
|
|
3
|
+
"version": "0.0.0-canary-20251206181705",
|
|
4
4
|
"description": "Agent Console example - AI agent orchestration with tools, runs, and logs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|