@contractspec/example.agent-console 0.0.0-canary-20260113170453 → 0.0.0-canary-20260114030712
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$colon$bundle.log +16 -16
- package/.turbo/turbo-build.log +29 -29
- package/CHANGELOG.md +6 -6
- package/dist/agent/agent.event.d.ts +5 -5
- package/dist/agent/agent.operation.d.ts +8 -8
- package/dist/agent/agent.presentation.d.ts +4 -4
- package/dist/agent/agent.test-spec.d.ts +3 -3
- package/dist/example.d.ts +2 -2
- package/dist/example.d.ts.map +1 -1
- package/dist/run/run.event.d.ts +8 -8
- package/dist/run/run.operation.d.ts +8 -8
- package/dist/run/run.presentation.d.ts +3 -3
- package/dist/run/run.test-spec.d.ts +3 -3
- package/dist/tool/tool.event.d.ts +4 -4
- package/dist/tool/tool.operation.d.ts +6 -6
- package/dist/tool/tool.presentation.d.ts +3 -3
- package/dist/tool/tool.test-spec.d.ts +3 -3
- package/dist/ui/AgentDashboard.d.ts +2 -2
- package/dist/ui/modals/AgentActionsModal.d.ts +2 -2
- package/dist/ui/modals/CreateAgentModal.d.ts +2 -2
- package/dist/ui/views/AgentListView.d.ts +2 -2
- package/dist/ui/views/RunListView.d.ts +2 -2
- package/dist/ui/views/ToolRegistryView.d.ts +2 -2
- package/package.json +8 -8
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts44 from "@contractspec/lib.contracts";
|
|
2
2
|
|
|
3
3
|
//#region src/tool/tool.test-spec.d.ts
|
|
4
|
-
declare const toolListTest:
|
|
5
|
-
declare const toolGetTest:
|
|
4
|
+
declare const toolListTest: _contractspec_lib_contracts44.TestSpec;
|
|
5
|
+
declare const toolGetTest: _contractspec_lib_contracts44.TestSpec;
|
|
6
6
|
//#endregion
|
|
7
7
|
export { toolGetTest, toolListTest };
|
|
8
8
|
//# sourceMappingURL=tool.test-spec.d.ts.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime4 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/ui/AgentDashboard.d.ts
|
|
4
|
-
declare function AgentDashboard():
|
|
4
|
+
declare function AgentDashboard(): react_jsx_runtime4.JSX.Element;
|
|
5
5
|
//#endregion
|
|
6
6
|
export { AgentDashboard };
|
|
7
7
|
//# sourceMappingURL=AgentDashboard.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Agent } from "../hooks/useAgentList.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime2 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/ui/modals/AgentActionsModal.d.ts
|
|
5
5
|
interface AgentActionsModalProps {
|
|
@@ -21,7 +21,7 @@ declare function AgentActionsModal({
|
|
|
21
21
|
onArchive,
|
|
22
22
|
onExecute,
|
|
23
23
|
isLoading
|
|
24
|
-
}: AgentActionsModalProps):
|
|
24
|
+
}: AgentActionsModalProps): react_jsx_runtime2.JSX.Element | null;
|
|
25
25
|
//#endregion
|
|
26
26
|
export { AgentActionsModal };
|
|
27
27
|
//# sourceMappingURL=AgentActionsModal.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime3 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/ui/modals/CreateAgentModal.d.ts
|
|
4
4
|
interface CreateAgentInput {
|
|
@@ -19,7 +19,7 @@ declare function CreateAgentModal({
|
|
|
19
19
|
onClose,
|
|
20
20
|
onSubmit,
|
|
21
21
|
isLoading
|
|
22
|
-
}: CreateAgentModalProps):
|
|
22
|
+
}: CreateAgentModalProps): react_jsx_runtime3.JSX.Element | null;
|
|
23
23
|
//#endregion
|
|
24
24
|
export { CreateAgentInput, CreateAgentModal };
|
|
25
25
|
//# sourceMappingURL=CreateAgentModal.d.ts.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/ui/views/AgentListView.d.ts
|
|
4
|
-
declare function AgentListView():
|
|
4
|
+
declare function AgentListView(): react_jsx_runtime0.JSX.Element;
|
|
5
5
|
//#endregion
|
|
6
6
|
export { AgentListView };
|
|
7
7
|
//# sourceMappingURL=AgentListView.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/ui/views/RunListView.d.ts
|
|
4
4
|
interface RunListViewProps {
|
|
@@ -8,7 +8,7 @@ interface RunListViewProps {
|
|
|
8
8
|
declare function RunListView({
|
|
9
9
|
agentId,
|
|
10
10
|
onRunClick
|
|
11
|
-
}: RunListViewProps):
|
|
11
|
+
}: RunListViewProps): react_jsx_runtime0.JSX.Element;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { RunListView };
|
|
14
14
|
//# sourceMappingURL=RunListView.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime1 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/ui/views/ToolRegistryView.d.ts
|
|
4
4
|
interface ToolRegistryViewProps {
|
|
@@ -8,7 +8,7 @@ interface ToolRegistryViewProps {
|
|
|
8
8
|
declare function ToolRegistryView({
|
|
9
9
|
onToolClick,
|
|
10
10
|
onCreateTool
|
|
11
|
-
}: ToolRegistryViewProps):
|
|
11
|
+
}: ToolRegistryViewProps): react_jsx_runtime1.JSX.Element;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { ToolRegistryView };
|
|
14
14
|
//# sourceMappingURL=ToolRegistryView.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.agent-console",
|
|
3
|
-
"version": "0.0.0-canary-
|
|
3
|
+
"version": "0.0.0-canary-20260114030712",
|
|
4
4
|
"description": "Agent Console example - AI agent orchestration with tools, runs, and logs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -87,17 +87,17 @@
|
|
|
87
87
|
"test": "bun test"
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
|
-
"@contractspec/lib.schema": "0.0.0-canary-
|
|
91
|
-
"@contractspec/lib.contracts": "0.0.0-canary-
|
|
92
|
-
"@contractspec/lib.example-shared-ui": "0.0.0-canary-
|
|
93
|
-
"@contractspec/lib.design-system": "0.0.0-canary-
|
|
94
|
-
"@contractspec/lib.runtime-sandbox": "0.0.0-canary-
|
|
90
|
+
"@contractspec/lib.schema": "0.0.0-canary-20260114030712",
|
|
91
|
+
"@contractspec/lib.contracts": "0.0.0-canary-20260114030712",
|
|
92
|
+
"@contractspec/lib.example-shared-ui": "0.0.0-canary-20260114030712",
|
|
93
|
+
"@contractspec/lib.design-system": "0.0.0-canary-20260114030712",
|
|
94
|
+
"@contractspec/lib.runtime-sandbox": "0.0.0-canary-20260114030712",
|
|
95
95
|
"react": "19.2.3",
|
|
96
96
|
"react-dom": "19.2.3"
|
|
97
97
|
},
|
|
98
98
|
"devDependencies": {
|
|
99
|
-
"@contractspec/tool.tsdown": "0.0.0-canary-
|
|
100
|
-
"@contractspec/tool.typescript": "0.0.0-canary-
|
|
99
|
+
"@contractspec/tool.tsdown": "0.0.0-canary-20260114030712",
|
|
100
|
+
"@contractspec/tool.typescript": "0.0.0-canary-20260114030712",
|
|
101
101
|
"tsdown": "^0.19.0",
|
|
102
102
|
"typescript": "^5.9.3",
|
|
103
103
|
"@types/react": "^19.2.8",
|