@contractspec/example.agent-console 1.44.0 → 1.45.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 +30 -30
- package/.turbo/turbo-build.log +26 -26
- package/CHANGELOG.md +41 -0
- package/dist/agent/agent.event.js +4 -4
- package/dist/agent/agent.event.js.map +1 -1
- package/dist/agent/agent.operation.d.ts +118 -118
- package/dist/agent/agent.operation.d.ts.map +1 -1
- package/dist/agent/agent.operation.js +7 -7
- package/dist/agent/agent.operation.js.map +1 -1
- package/dist/agent/agent.presentation.d.ts.map +1 -1
- package/dist/agent/agent.presentation.js +3 -3
- package/dist/agent/agent.presentation.js.map +1 -1
- package/dist/agent/agent.schema.d.ts +95 -95
- package/dist/agent.feature.js +60 -60
- package/dist/agent.feature.js.map +1 -1
- package/dist/example.d.ts +3 -36
- package/dist/example.d.ts.map +1 -1
- package/dist/example.js +16 -11
- package/dist/example.js.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 +71 -71
- package/dist/run/run.event.d.ts.map +1 -1
- package/dist/run/run.event.js +7 -7
- package/dist/run/run.event.js.map +1 -1
- package/dist/run/run.operation.d.ts +176 -176
- package/dist/run/run.operation.js +9 -9
- package/dist/run/run.operation.js.map +1 -1
- package/dist/run/run.presentation.js +2 -2
- package/dist/run/run.presentation.js.map +1 -1
- package/dist/run/run.schema.d.ts +99 -99
- 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.event.js +3 -3
- package/dist/tool/tool.event.js.map +1 -1
- package/dist/tool/tool.operation.d.ts +103 -103
- package/dist/tool/tool.operation.js +7 -7
- package/dist/tool/tool.operation.js.map +1 -1
- package/dist/tool/tool.presentation.d.ts.map +1 -1
- package/dist/tool/tool.presentation.js +2 -2
- package/dist/tool/tool.presentation.js.map +1 -1
- package/package.json +8 -8
- package/src/agent/agent.event.ts +4 -4
- package/src/agent/agent.operation.ts +8 -8
- package/src/agent/agent.presentation.ts +3 -3
- package/src/agent.feature.ts +60 -60
- package/src/example.ts +16 -9
- package/src/run/run.event.ts +7 -7
- package/src/run/run.operation.ts +9 -9
- package/src/run/run.presentation.ts +2 -2
- package/src/tool/tool.event.ts +3 -3
- package/src/tool/tool.operation.ts +7 -7
- package/src/tool/tool.presentation.ts +2 -2
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -19,7 +19,7 @@ const OWNERS = ['@agent-console-team'] as const;
|
|
|
19
19
|
export const CreateToolCommand = defineCommand({
|
|
20
20
|
meta: {
|
|
21
21
|
key: 'agent.tool.create',
|
|
22
|
-
version: 1,
|
|
22
|
+
version: '1.0.0',
|
|
23
23
|
stability: 'stable',
|
|
24
24
|
owners: [...OWNERS],
|
|
25
25
|
tags: ['tool', 'create'],
|
|
@@ -52,7 +52,7 @@ export const CreateToolCommand = defineCommand({
|
|
|
52
52
|
emits: [
|
|
53
53
|
{
|
|
54
54
|
key: 'tool.created',
|
|
55
|
-
version: 1,
|
|
55
|
+
version: '1.0.0',
|
|
56
56
|
stability: 'stable',
|
|
57
57
|
owners: [...OWNERS],
|
|
58
58
|
tags: ['tool', 'created'],
|
|
@@ -103,7 +103,7 @@ export const CreateToolCommand = defineCommand({
|
|
|
103
103
|
export const UpdateToolCommand = defineCommand({
|
|
104
104
|
meta: {
|
|
105
105
|
key: 'agent.tool.update',
|
|
106
|
-
version: 1,
|
|
106
|
+
version: '1.0.0',
|
|
107
107
|
stability: 'stable',
|
|
108
108
|
owners: [...OWNERS],
|
|
109
109
|
tags: ['tool', 'update'],
|
|
@@ -136,7 +136,7 @@ export const UpdateToolCommand = defineCommand({
|
|
|
136
136
|
emits: [
|
|
137
137
|
{
|
|
138
138
|
key: 'tool.updated',
|
|
139
|
-
version: 1,
|
|
139
|
+
version: '1.0.0',
|
|
140
140
|
stability: 'stable',
|
|
141
141
|
owners: [...OWNERS],
|
|
142
142
|
tags: ['tool', 'updated'],
|
|
@@ -176,7 +176,7 @@ export const UpdateToolCommand = defineCommand({
|
|
|
176
176
|
export const GetToolQuery = defineQuery({
|
|
177
177
|
meta: {
|
|
178
178
|
key: 'agent.tool.get',
|
|
179
|
-
version: 1,
|
|
179
|
+
version: '1.0.0',
|
|
180
180
|
stability: 'stable',
|
|
181
181
|
owners: [...OWNERS],
|
|
182
182
|
tags: ['tool', 'get'],
|
|
@@ -232,7 +232,7 @@ export const GetToolQuery = defineQuery({
|
|
|
232
232
|
export const ListToolsQuery = defineQuery({
|
|
233
233
|
meta: {
|
|
234
234
|
key: 'agent.tool.list',
|
|
235
|
-
version: 1,
|
|
235
|
+
version: '1.0.0',
|
|
236
236
|
stability: 'stable',
|
|
237
237
|
owners: [...OWNERS],
|
|
238
238
|
tags: ['tool', 'list'],
|
|
@@ -298,7 +298,7 @@ export const ListToolsQuery = defineQuery({
|
|
|
298
298
|
export const TestToolCommand = defineCommand({
|
|
299
299
|
meta: {
|
|
300
300
|
key: 'agent.tool.test',
|
|
301
|
-
version: 1,
|
|
301
|
+
version: '1.0.0',
|
|
302
302
|
stability: 'stable',
|
|
303
303
|
owners: [...OWNERS],
|
|
304
304
|
tags: ['tool', 'test'],
|
|
@@ -8,7 +8,7 @@ import { ToolSummaryModel } from './tool.schema';
|
|
|
8
8
|
export const ToolListPresentation: PresentationSpec = {
|
|
9
9
|
meta: {
|
|
10
10
|
key: 'agent-console.tool.list',
|
|
11
|
-
version: 1,
|
|
11
|
+
version: '1.0.0',
|
|
12
12
|
title: 'Tool List',
|
|
13
13
|
description:
|
|
14
14
|
'List view of AI tools with category, status, and version info',
|
|
@@ -35,7 +35,7 @@ export const ToolListPresentation: PresentationSpec = {
|
|
|
35
35
|
export const ToolDetailPresentation: PresentationSpec = {
|
|
36
36
|
meta: {
|
|
37
37
|
key: 'agent-console.tool.detail',
|
|
38
|
-
version: 1,
|
|
38
|
+
version: '1.0.0',
|
|
39
39
|
title: 'Tool Details',
|
|
40
40
|
description:
|
|
41
41
|
'Detailed view of an AI tool with configuration and test panel',
|