@contractspec/example.agent-console 1.53.0 → 1.54.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/.turbo/turbo-build$colon$bundle.log +17 -17
- package/.turbo/turbo-build.log +18 -18
- package/CHANGELOG.md +15 -0
- package/dist/agent/agent.event.d.ts +5 -5
- package/dist/agent/agent.handler.d.ts +1 -1
- package/dist/agent/agent.operation.d.ts +8 -8
- 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/agent.capability.d.ts +2 -2
- package/dist/agent.capability.d.ts.map +1 -1
- package/dist/run/run.entity.d.ts +56 -56
- package/dist/run/run.enum.d.ts +5 -5
- package/dist/run/run.event.d.ts +8 -8
- 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.enum.d.ts +4 -4
- package/dist/tool/tool.event.d.ts +25 -25
- package/dist/tool/tool.handler.d.ts +1 -1
- package/dist/tool/tool.handler.d.ts.map +1 -1
- package/dist/tool/tool.operation.d.ts +101 -101
- package/dist/tool/tool.presentation.d.ts +3 -3
- package/dist/tool/tool.schema.d.ts +52 -52
- package/dist/tool/tool.test-spec.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/package.json +10 -10
- package/tsconfig.tsbuildinfo +1 -1
package/dist/run/run.enum.d.ts
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_schema235 from "@contractspec/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/run/run.enum.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Run status enum.
|
|
6
6
|
*/
|
|
7
|
-
declare const RunStatusEnum:
|
|
7
|
+
declare const RunStatusEnum: _contractspec_lib_schema235.EnumType<[string, string, string, string, string, string]>;
|
|
8
8
|
/**
|
|
9
9
|
* Run step type enum.
|
|
10
10
|
*/
|
|
11
|
-
declare const RunStepTypeEnum:
|
|
11
|
+
declare const RunStepTypeEnum: _contractspec_lib_schema235.EnumType<[string, string, string, string]>;
|
|
12
12
|
/**
|
|
13
13
|
* Log level enum.
|
|
14
14
|
*/
|
|
15
|
-
declare const LogLevelEnum:
|
|
15
|
+
declare const LogLevelEnum: _contractspec_lib_schema235.EnumType<[string, string, string, string]>;
|
|
16
16
|
/**
|
|
17
17
|
* Granularity enum for metrics.
|
|
18
18
|
*/
|
|
19
|
-
declare const GranularityEnum:
|
|
19
|
+
declare const GranularityEnum: _contractspec_lib_schema235.EnumType<[string, string, string, string]>;
|
|
20
20
|
//#endregion
|
|
21
21
|
export { GranularityEnum, LogLevelEnum, RunStatusEnum, RunStepTypeEnum };
|
|
22
22
|
//# sourceMappingURL=run.enum.d.ts.map
|
package/dist/run/run.event.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts17 from "@contractspec/lib.contracts";
|
|
2
2
|
import * as _contractspec_lib_schema333 from "@contractspec/lib.schema";
|
|
3
3
|
|
|
4
4
|
//#region src/run/run.event.d.ts
|
|
5
5
|
/**
|
|
6
6
|
* RunStartedEvent - An agent run was started.
|
|
7
7
|
*/
|
|
8
|
-
declare const RunStartedEvent:
|
|
8
|
+
declare const RunStartedEvent: _contractspec_lib_contracts17.EventSpec<_contractspec_lib_schema333.SchemaModel<{
|
|
9
9
|
runId: {
|
|
10
10
|
type: _contractspec_lib_schema333.FieldType<string, string>;
|
|
11
11
|
isOptional: false;
|
|
@@ -42,7 +42,7 @@ declare const RunStartedEvent: _contractspec_lib_contracts16.EventSpec<_contract
|
|
|
42
42
|
/**
|
|
43
43
|
* RunCompletedEvent - An agent run completed successfully.
|
|
44
44
|
*/
|
|
45
|
-
declare const RunCompletedEvent:
|
|
45
|
+
declare const RunCompletedEvent: _contractspec_lib_contracts17.EventSpec<_contractspec_lib_schema333.SchemaModel<{
|
|
46
46
|
runId: {
|
|
47
47
|
type: _contractspec_lib_schema333.FieldType<string, string>;
|
|
48
48
|
isOptional: false;
|
|
@@ -99,7 +99,7 @@ declare const RunCompletedEvent: _contractspec_lib_contracts16.EventSpec<_contra
|
|
|
99
99
|
/**
|
|
100
100
|
* RunFailedEvent - An agent run failed.
|
|
101
101
|
*/
|
|
102
|
-
declare const RunFailedEvent:
|
|
102
|
+
declare const RunFailedEvent: _contractspec_lib_contracts17.EventSpec<_contractspec_lib_schema333.SchemaModel<{
|
|
103
103
|
runId: {
|
|
104
104
|
type: _contractspec_lib_schema333.FieldType<string, string>;
|
|
105
105
|
isOptional: false;
|
|
@@ -148,7 +148,7 @@ declare const RunFailedEvent: _contractspec_lib_contracts16.EventSpec<_contracts
|
|
|
148
148
|
/**
|
|
149
149
|
* RunCancelledEvent - An agent run was cancelled.
|
|
150
150
|
*/
|
|
151
|
-
declare const RunCancelledEvent:
|
|
151
|
+
declare const RunCancelledEvent: _contractspec_lib_contracts17.EventSpec<_contractspec_lib_schema333.SchemaModel<{
|
|
152
152
|
runId: {
|
|
153
153
|
type: _contractspec_lib_schema333.FieldType<string, string>;
|
|
154
154
|
isOptional: false;
|
|
@@ -189,7 +189,7 @@ declare const RunCancelledEvent: _contractspec_lib_contracts16.EventSpec<_contra
|
|
|
189
189
|
/**
|
|
190
190
|
* ToolInvokedEvent - A tool was invoked during a run.
|
|
191
191
|
*/
|
|
192
|
-
declare const ToolInvokedEvent:
|
|
192
|
+
declare const ToolInvokedEvent: _contractspec_lib_contracts17.EventSpec<_contractspec_lib_schema333.SchemaModel<{
|
|
193
193
|
runId: {
|
|
194
194
|
type: _contractspec_lib_schema333.FieldType<string, string>;
|
|
195
195
|
isOptional: false;
|
|
@@ -218,7 +218,7 @@ declare const ToolInvokedEvent: _contractspec_lib_contracts16.EventSpec<_contrac
|
|
|
218
218
|
/**
|
|
219
219
|
* ToolCompletedEvent - A tool invocation completed.
|
|
220
220
|
*/
|
|
221
|
-
declare const ToolCompletedEvent:
|
|
221
|
+
declare const ToolCompletedEvent: _contractspec_lib_contracts17.EventSpec<_contractspec_lib_schema333.SchemaModel<{
|
|
222
222
|
runId: {
|
|
223
223
|
type: _contractspec_lib_schema333.FieldType<string, string>;
|
|
224
224
|
isOptional: false;
|
|
@@ -259,7 +259,7 @@ declare const ToolCompletedEvent: _contractspec_lib_contracts16.EventSpec<_contr
|
|
|
259
259
|
/**
|
|
260
260
|
* MessageGeneratedEvent - Agent generated a message.
|
|
261
261
|
*/
|
|
262
|
-
declare const MessageGeneratedEvent:
|
|
262
|
+
declare const MessageGeneratedEvent: _contractspec_lib_contracts17.EventSpec<_contractspec_lib_schema333.SchemaModel<{
|
|
263
263
|
runId: {
|
|
264
264
|
type: _contractspec_lib_schema333.FieldType<string, string>;
|
|
265
265
|
isOptional: false;
|