@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.
Files changed (55) hide show
  1. package/.turbo/turbo-build$colon$bundle.log +30 -30
  2. package/.turbo/turbo-build.log +26 -26
  3. package/CHANGELOG.md +41 -0
  4. package/dist/agent/agent.event.js +4 -4
  5. package/dist/agent/agent.event.js.map +1 -1
  6. package/dist/agent/agent.operation.d.ts +118 -118
  7. package/dist/agent/agent.operation.d.ts.map +1 -1
  8. package/dist/agent/agent.operation.js +7 -7
  9. package/dist/agent/agent.operation.js.map +1 -1
  10. package/dist/agent/agent.presentation.d.ts.map +1 -1
  11. package/dist/agent/agent.presentation.js +3 -3
  12. package/dist/agent/agent.presentation.js.map +1 -1
  13. package/dist/agent/agent.schema.d.ts +95 -95
  14. package/dist/agent.feature.js +60 -60
  15. package/dist/agent.feature.js.map +1 -1
  16. package/dist/example.d.ts +3 -36
  17. package/dist/example.d.ts.map +1 -1
  18. package/dist/example.js +16 -11
  19. package/dist/example.js.map +1 -1
  20. package/dist/run/run.entity.d.ts +56 -56
  21. package/dist/run/run.enum.d.ts +5 -5
  22. package/dist/run/run.event.d.ts +71 -71
  23. package/dist/run/run.event.d.ts.map +1 -1
  24. package/dist/run/run.event.js +7 -7
  25. package/dist/run/run.event.js.map +1 -1
  26. package/dist/run/run.operation.d.ts +176 -176
  27. package/dist/run/run.operation.js +9 -9
  28. package/dist/run/run.operation.js.map +1 -1
  29. package/dist/run/run.presentation.js +2 -2
  30. package/dist/run/run.presentation.js.map +1 -1
  31. package/dist/run/run.schema.d.ts +99 -99
  32. package/dist/tool/tool.entity.d.ts +24 -24
  33. package/dist/tool/tool.enum.d.ts +4 -4
  34. package/dist/tool/tool.event.d.ts +25 -25
  35. package/dist/tool/tool.event.js +3 -3
  36. package/dist/tool/tool.event.js.map +1 -1
  37. package/dist/tool/tool.operation.d.ts +103 -103
  38. package/dist/tool/tool.operation.js +7 -7
  39. package/dist/tool/tool.operation.js.map +1 -1
  40. package/dist/tool/tool.presentation.d.ts.map +1 -1
  41. package/dist/tool/tool.presentation.js +2 -2
  42. package/dist/tool/tool.presentation.js.map +1 -1
  43. package/package.json +8 -8
  44. package/src/agent/agent.event.ts +4 -4
  45. package/src/agent/agent.operation.ts +8 -8
  46. package/src/agent/agent.presentation.ts +3 -3
  47. package/src/agent.feature.ts +60 -60
  48. package/src/example.ts +16 -9
  49. package/src/run/run.event.ts +7 -7
  50. package/src/run/run.operation.ts +9 -9
  51. package/src/run/run.presentation.ts +2 -2
  52. package/src/tool/tool.event.ts +3 -3
  53. package/src/tool/tool.operation.ts +7 -7
  54. package/src/tool/tool.presentation.ts +2 -2
  55. 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',