@contractspec/example.agent-console 0.0.0-canary-20260119222405 → 0.0.0-canary-20260119224109
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 +28 -28
- package/.turbo/turbo-build.log +27 -27
- package/CHANGELOG.md +4 -4
- package/dist/agent/agent.entity.d.ts +36 -36
- package/dist/agent/agent.entity.d.ts.map +1 -1
- package/dist/agent/agent.enum.d.ts +4 -4
- package/dist/agent/agent.event.d.ts +31 -31
- package/dist/agent/agent.event.d.ts.map +1 -1
- package/dist/agent/agent.operation.d.ts +117 -117
- package/dist/agent/agent.operation.d.ts.map +1 -1
- package/dist/agent/agent.presentation.d.ts +4 -4
- package/dist/agent/agent.schema.d.ts +95 -95
- package/dist/agent/agent.test-spec.d.ts +3 -3
- package/dist/run/run.entity.d.ts +56 -56
- package/dist/run/run.entity.d.ts.map +1 -1
- package/dist/run/run.enum.d.ts +5 -5
- package/dist/run/run.enum.d.ts.map +1 -1
- package/dist/run/run.event.d.ts +71 -71
- package/dist/run/run.event.d.ts.map +1 -1
- package/dist/run/run.operation.d.ts +175 -175
- package/dist/run/run.presentation.d.ts +3 -3
- package/dist/run/run.schema.d.ts +99 -99
- package/dist/run/run.test-spec.d.ts +3 -3
- package/dist/tool/tool.entity.d.ts +24 -24
- package/dist/tool/tool.event.d.ts +4 -4
- package/dist/tool/tool.presentation.d.ts +3 -3
- 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 +4 -4
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -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-20260119224109",
|
|
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",
|
|
@@ -88,9 +88,9 @@
|
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
90
|
"@contractspec/lib.schema": "1.48.0",
|
|
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-
|
|
91
|
+
"@contractspec/lib.contracts": "0.0.0-canary-20260119224109",
|
|
92
|
+
"@contractspec/lib.example-shared-ui": "0.0.0-canary-20260119224109",
|
|
93
|
+
"@contractspec/lib.design-system": "0.0.0-canary-20260119224109",
|
|
94
94
|
"@contractspec/lib.runtime-sandbox": "0.3.0",
|
|
95
95
|
"react": "19.2.3",
|
|
96
96
|
"react-dom": "19.2.3"
|