@contractspec/example.agent-console 1.56.0 → 1.57.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 +96 -91
- package/.turbo/turbo-build.log +283 -283
- package/CHANGELOG.md +32 -0
- package/dist/agent/agent.entity.d.ts.map +1 -1
- package/dist/agent/agent.enum.d.ts +4 -4
- package/dist/agent/agent.enum.d.ts.map +1 -1
- package/dist/agent/agent.event.d.ts +31 -31
- package/dist/agent/agent.event.d.ts.map +1 -1
- package/dist/agent/agent.handler.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.presentation.d.ts.map +1 -1
- package/dist/agent/agent.schema.d.ts +95 -95
- package/dist/agent/agent.schema.d.ts.map +1 -1
- package/dist/agent/agent.test-spec.d.ts +3 -3
- package/dist/agent/agent.test-spec.d.ts.map +1 -1
- package/dist/agent.capability.d.ts.map +1 -1
- package/dist/agent.feature.d.ts +0 -1
- package/dist/agent.feature.d.ts.map +1 -1
- package/dist/example.d.ts.map +1 -1
- package/dist/example.js +1 -2
- package/dist/example.js.map +1 -1
- package/dist/handlers/agent.handlers.d.ts +0 -1
- package/dist/handlers/agent.handlers.d.ts.map +1 -1
- package/dist/index.js +2 -2
- 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.handler.d.ts.map +1 -1
- package/dist/run/run.operation.d.ts +175 -175
- package/dist/run/run.operation.d.ts.map +1 -1
- package/dist/run/run.presentation.d.ts +3 -3
- package/dist/run/run.presentation.d.ts.map +1 -1
- package/dist/run/run.schema.d.ts +99 -99
- package/dist/run/run.schema.d.ts.map +1 -1
- package/dist/run/run.test-spec.d.ts +3 -3
- package/dist/run/run.test-spec.d.ts.map +1 -1
- package/dist/seeders/index.d.ts.map +1 -1
- package/dist/shared/mock-agents.d.ts.map +1 -1
- package/dist/shared/mock-runs.d.ts.map +1 -1
- package/dist/shared/mock-tools.d.ts.map +1 -1
- package/dist/shared/overlay-types.d.ts.map +1 -1
- package/dist/tool/tool.entity.d.ts +24 -24
- package/dist/tool/tool.entity.d.ts.map +1 -1
- package/dist/tool/tool.enum.d.ts +4 -4
- package/dist/tool/tool.enum.d.ts.map +1 -1
- package/dist/tool/tool.event.d.ts +25 -25
- package/dist/tool/tool.event.d.ts.map +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.operation.d.ts.map +1 -1
- package/dist/tool/tool.presentation.d.ts +3 -3
- package/dist/tool/tool.presentation.d.ts.map +1 -1
- package/dist/tool/tool.schema.d.ts +52 -52
- package/dist/tool/tool.schema.d.ts.map +1 -1
- package/dist/tool/tool.test-spec.d.ts +3 -3
- package/dist/tool/tool.test-spec.d.ts.map +1 -1
- package/dist/ui/AgentDashboard.d.ts.map +1 -1
- package/dist/ui/hooks/useAgentList.d.ts.map +1 -1
- package/dist/ui/hooks/useAgentMutations.d.ts.map +1 -1
- package/dist/ui/hooks/useRunList.d.ts.map +1 -1
- package/dist/ui/hooks/useToolList.d.ts.map +1 -1
- package/dist/ui/modals/AgentActionsModal.d.ts +2 -2
- package/dist/ui/modals/AgentActionsModal.d.ts.map +1 -1
- package/dist/ui/modals/CreateAgentModal.d.ts +2 -2
- package/dist/ui/modals/CreateAgentModal.d.ts.map +1 -1
- package/dist/ui/overlays/demo-overlays.d.ts +0 -1
- package/dist/ui/overlays/demo-overlays.d.ts.map +1 -1
- package/dist/ui/renderers/agent-list.markdown.d.ts +0 -1
- package/dist/ui/renderers/agent-list.markdown.d.ts.map +1 -1
- package/dist/ui/renderers/agent-list.renderer.d.ts +0 -1
- package/dist/ui/renderers/agent-list.renderer.d.ts.map +1 -1
- package/dist/ui/renderers/dashboard.markdown.d.ts +0 -1
- package/dist/ui/renderers/dashboard.markdown.d.ts.map +1 -1
- package/dist/ui/renderers/run-list.markdown.d.ts +0 -1
- package/dist/ui/renderers/run-list.markdown.d.ts.map +1 -1
- package/dist/ui/renderers/tool-registry.markdown.d.ts +0 -1
- package/dist/ui/renderers/tool-registry.markdown.d.ts.map +1 -1
- package/dist/ui/views/AgentListView.d.ts.map +1 -1
- package/dist/ui/views/RunListView.d.ts +2 -2
- package/dist/ui/views/RunListView.d.ts.map +1 -1
- package/dist/ui/views/ToolRegistryView.d.ts +2 -2
- package/dist/ui/views/ToolRegistryView.d.ts.map +1 -1
- package/package.json +10 -10
- package/tsconfig.tsbuildinfo +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @contractspec/example.agent-console
|
|
2
2
|
|
|
3
|
+
## 1.57.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 11a5a05: feat: improve product intent
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [8ecf3c1]
|
|
12
|
+
- Updated dependencies [47c48c2]
|
|
13
|
+
- Updated dependencies [a119963]
|
|
14
|
+
- Updated dependencies [4651e06]
|
|
15
|
+
- Updated dependencies [ad9d10a]
|
|
16
|
+
- Updated dependencies [11a5a05]
|
|
17
|
+
- @contractspec/lib.contracts@1.57.0
|
|
18
|
+
- @contractspec/lib.example-shared-ui@1.11.0
|
|
19
|
+
- @contractspec/lib.runtime-sandbox@0.12.0
|
|
20
|
+
- @contractspec/lib.design-system@1.57.0
|
|
21
|
+
- @contractspec/lib.schema@1.57.0
|
|
22
|
+
|
|
23
|
+
## 1.56.1
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- fix: improve publish config
|
|
28
|
+
- Updated dependencies
|
|
29
|
+
- @contractspec/lib.example-shared-ui@1.10.1
|
|
30
|
+
- @contractspec/lib.runtime-sandbox@0.11.1
|
|
31
|
+
- @contractspec/lib.design-system@1.56.1
|
|
32
|
+
- @contractspec/lib.contracts@1.56.1
|
|
33
|
+
- @contractspec/lib.schema@1.56.1
|
|
34
|
+
|
|
3
35
|
## 1.56.0
|
|
4
36
|
|
|
5
37
|
### Minor Changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent.entity.d.ts","names":[],"sources":["../../src/agent/agent.entity.ts"],"
|
|
1
|
+
{"version":3,"file":"agent.entity.d.ts","names":[],"sources":["../../src/agent/agent.entity.ts"],"mappings":";;;;;;cAUa,qBAAA,EAIX,yBAAA,CAJgC,aAAA;;;;cASrB,uBAAA,EAIX,yBAAA,CAJkC,aAAA;AAApC;;;AAAA,cASa,WAAA,4BAAW,UAAA;MA2EtB,yBAAA,CAAA,iBAAA;;;;;;;;;;;;;;;;;;;;;;;;;;cAKW,eAAA,4BAAe,UAAA;MA4B1B,yBAAA,CAAA,iBAAA"}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_schema0 from "@contractspec/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/agent/agent.enum.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Agent status enum.
|
|
6
6
|
*/
|
|
7
|
-
declare const AgentStatusEnum:
|
|
7
|
+
declare const AgentStatusEnum: _contractspec_lib_schema0.EnumType<[string, string, string, string]>;
|
|
8
8
|
/**
|
|
9
9
|
* Model provider enum.
|
|
10
10
|
*/
|
|
11
|
-
declare const ModelProviderEnum:
|
|
11
|
+
declare const ModelProviderEnum: _contractspec_lib_schema0.EnumType<[string, string, string, string, string]>;
|
|
12
12
|
/**
|
|
13
13
|
* Tool choice mode enum.
|
|
14
14
|
*/
|
|
15
|
-
declare const ToolChoiceEnum:
|
|
15
|
+
declare const ToolChoiceEnum: _contractspec_lib_schema0.EnumType<[string, string, string]>;
|
|
16
16
|
//#endregion
|
|
17
17
|
export { AgentStatusEnum, ModelProviderEnum, ToolChoiceEnum };
|
|
18
18
|
//# sourceMappingURL=agent.enum.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent.enum.d.ts","names":[],"sources":["../../src/agent/agent.enum.ts"],"
|
|
1
|
+
{"version":3,"file":"agent.enum.d.ts","names":[],"sources":["../../src/agent/agent.enum.ts"],"mappings":";;;;;;cAKa,eAAA,EAKX,yBAAA,CAL0B,QAAA;;;;cAUf,iBAAA,EAMX,yBAAA,CAN4B,QAAA;AAA9B;;;AAAA,cAWa,cAAA,EAIX,yBAAA,CAJyB,QAAA"}
|
|
@@ -1,125 +1,125 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts0 from "@contractspec/lib.contracts";
|
|
2
|
+
import * as _contractspec_lib_schema0 from "@contractspec/lib.schema";
|
|
3
3
|
|
|
4
4
|
//#region src/agent/agent.event.d.ts
|
|
5
5
|
/**
|
|
6
6
|
* AgentCreatedEvent - A new agent was created.
|
|
7
7
|
*/
|
|
8
|
-
declare const AgentCreatedEvent:
|
|
8
|
+
declare const AgentCreatedEvent: _contractspec_lib_contracts0.EventSpec<_contractspec_lib_schema0.SchemaModel<{
|
|
9
9
|
id: {
|
|
10
|
-
type:
|
|
10
|
+
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
11
11
|
isOptional: false;
|
|
12
12
|
};
|
|
13
13
|
organizationId: {
|
|
14
|
-
type:
|
|
14
|
+
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
15
15
|
isOptional: false;
|
|
16
16
|
};
|
|
17
17
|
name: {
|
|
18
|
-
type:
|
|
18
|
+
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
19
19
|
isOptional: false;
|
|
20
20
|
};
|
|
21
21
|
slug: {
|
|
22
|
-
type:
|
|
22
|
+
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
23
23
|
isOptional: false;
|
|
24
24
|
};
|
|
25
25
|
modelProvider: {
|
|
26
|
-
type:
|
|
26
|
+
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
27
27
|
isOptional: false;
|
|
28
28
|
};
|
|
29
29
|
modelName: {
|
|
30
|
-
type:
|
|
30
|
+
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
31
31
|
isOptional: false;
|
|
32
32
|
};
|
|
33
33
|
toolCount: {
|
|
34
|
-
type:
|
|
34
|
+
type: _contractspec_lib_schema0.FieldType<number, number>;
|
|
35
35
|
isOptional: false;
|
|
36
36
|
};
|
|
37
37
|
createdById: {
|
|
38
|
-
type:
|
|
38
|
+
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
39
39
|
isOptional: true;
|
|
40
40
|
};
|
|
41
41
|
createdAt: {
|
|
42
|
-
type:
|
|
42
|
+
type: _contractspec_lib_schema0.FieldType<Date, string>;
|
|
43
43
|
isOptional: false;
|
|
44
44
|
};
|
|
45
45
|
}>>;
|
|
46
46
|
/**
|
|
47
47
|
* AgentUpdatedEvent - An agent was updated.
|
|
48
48
|
*/
|
|
49
|
-
declare const AgentUpdatedEvent:
|
|
49
|
+
declare const AgentUpdatedEvent: _contractspec_lib_contracts0.EventSpec<_contractspec_lib_schema0.SchemaModel<{
|
|
50
50
|
id: {
|
|
51
|
-
type:
|
|
51
|
+
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
52
52
|
isOptional: false;
|
|
53
53
|
};
|
|
54
54
|
organizationId: {
|
|
55
|
-
type:
|
|
55
|
+
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
56
56
|
isOptional: false;
|
|
57
57
|
};
|
|
58
58
|
name: {
|
|
59
|
-
type:
|
|
59
|
+
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
60
60
|
isOptional: false;
|
|
61
61
|
};
|
|
62
62
|
status: {
|
|
63
|
-
type:
|
|
63
|
+
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
64
64
|
isOptional: false;
|
|
65
65
|
};
|
|
66
66
|
updatedFields: {
|
|
67
|
-
type:
|
|
67
|
+
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
68
68
|
isArray: true;
|
|
69
69
|
isOptional: false;
|
|
70
70
|
};
|
|
71
71
|
updatedAt: {
|
|
72
|
-
type:
|
|
72
|
+
type: _contractspec_lib_schema0.FieldType<Date, string>;
|
|
73
73
|
isOptional: false;
|
|
74
74
|
};
|
|
75
75
|
}>>;
|
|
76
76
|
/**
|
|
77
77
|
* AgentToolAssignedEvent - A tool was assigned to an agent.
|
|
78
78
|
*/
|
|
79
|
-
declare const AgentToolAssignedEvent:
|
|
79
|
+
declare const AgentToolAssignedEvent: _contractspec_lib_contracts0.EventSpec<_contractspec_lib_schema0.SchemaModel<{
|
|
80
80
|
agentId: {
|
|
81
|
-
type:
|
|
81
|
+
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
82
82
|
isOptional: false;
|
|
83
83
|
};
|
|
84
84
|
toolId: {
|
|
85
|
-
type:
|
|
85
|
+
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
86
86
|
isOptional: false;
|
|
87
87
|
};
|
|
88
88
|
agentName: {
|
|
89
|
-
type:
|
|
89
|
+
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
90
90
|
isOptional: false;
|
|
91
91
|
};
|
|
92
92
|
toolName: {
|
|
93
|
-
type:
|
|
93
|
+
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
94
94
|
isOptional: false;
|
|
95
95
|
};
|
|
96
96
|
assignedAt: {
|
|
97
|
-
type:
|
|
97
|
+
type: _contractspec_lib_schema0.FieldType<Date, string>;
|
|
98
98
|
isOptional: false;
|
|
99
99
|
};
|
|
100
100
|
}>>;
|
|
101
101
|
/**
|
|
102
102
|
* AgentToolRemovedEvent - A tool was removed from an agent.
|
|
103
103
|
*/
|
|
104
|
-
declare const AgentToolRemovedEvent:
|
|
104
|
+
declare const AgentToolRemovedEvent: _contractspec_lib_contracts0.EventSpec<_contractspec_lib_schema0.SchemaModel<{
|
|
105
105
|
agentId: {
|
|
106
|
-
type:
|
|
106
|
+
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
107
107
|
isOptional: false;
|
|
108
108
|
};
|
|
109
109
|
toolId: {
|
|
110
|
-
type:
|
|
110
|
+
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
111
111
|
isOptional: false;
|
|
112
112
|
};
|
|
113
113
|
agentName: {
|
|
114
|
-
type:
|
|
114
|
+
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
115
115
|
isOptional: false;
|
|
116
116
|
};
|
|
117
117
|
toolName: {
|
|
118
|
-
type:
|
|
118
|
+
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
119
119
|
isOptional: false;
|
|
120
120
|
};
|
|
121
121
|
removedAt: {
|
|
122
|
-
type:
|
|
122
|
+
type: _contractspec_lib_schema0.FieldType<Date, string>;
|
|
123
123
|
isOptional: false;
|
|
124
124
|
};
|
|
125
125
|
}>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent.event.d.ts","names":[],"sources":["../../src/agent/agent.event.ts"],"
|
|
1
|
+
{"version":3,"file":"agent.event.d.ts","names":[],"sources":["../../src/agent/agent.event.ts"],"mappings":";;;;;;;cAiCa,iBAAA,EAAiB,4BAAA,CAAA,SAAA,2BAAA,WAAA;;UAU5B,yBAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA4BW,iBAAA,EAAiB,4BAAA,CAAA,SAAA,2BAAA,WAAA;;UAU5B,yBAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAoBW,sBAAA,EAAsB,4BAAA,CAAA,SAAA,2BAAA,WAAA;;UAUjC,yBAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;cAoBW,qBAAA,EAAqB,4BAAA,CAAA,SAAA,2BAAA,WAAA;;UAUhC,yBAAA,CAAA,SAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent.handler.d.ts","names":[],"sources":["../../src/agent/agent.handler.ts"],"
|
|
1
|
+
{"version":3,"file":"agent.handler.d.ts","names":[],"sources":["../../src/agent/agent.handler.ts"],"mappings":";UAMiB,eAAA;EACf,cAAA;EACA,MAAA;EACA,aAAA;EACA,MAAA;EACA,KAAA;EACA,MAAA;AAAA;AAAA,UAGe,YAAA;EACf,EAAA;EACA,IAAA;EACA,IAAA;EACA,WAAA;EACA,MAAA;EACA,aAAA;EACA,SAAA;EACA,OAAA;EACA,SAAA,EAAW,IAAA;AAAA;AAAA,UAGI,gBAAA;EACf,KAAA,EAAO,YAAA;EACP,KAAA;EACA,OAAA;AAAA;AAAA,UAGe,aAAA;EACf,OAAA;EACA,YAAA;AAAA;AAAA,UAGe,YAAA;EACf,EAAA;EACA,IAAA;EACA,IAAA;EACA,WAAA;EACA,QAAA;AAAA;AAAA,UAGe,cAAA;EACf,EAAA;EACA,cAAA;EACA,IAAA;EACA,IAAA;EACA,WAAA;EACA,MAAA;EACA,aAAA;EACA,SAAA;EACA,WAAA,GAAc,MAAA;EACd,YAAA;EACA,kBAAA;EACA,OAAA;EACA,UAAA;EACA,aAAA;EACA,eAAA;EACA,SAAA;EACA,OAAA;EACA,IAAA;EACA,SAAA,EAAW,IAAA;EACX,SAAA,EAAW,IAAA;EACX,KAAA,GAAQ,YAAA;AAAA;;;;iBAMY,qBAAA,CACpB,KAAA,EAAO,eAAA,GACN,OAAA,CAAQ,gBAAA;;;;iBA2CW,mBAAA,CACpB,KAAA,EAAO,aAAA,GACN,OAAA,CAAQ,cAAA;;;;iBAoBW,sBAAA,CAAuB,KAAA;EAC3C,cAAA;EACA,IAAA;EACA,IAAA;EACA,WAAA;EACA,aAAA;EACA,SAAA;EACA,YAAA;AAAA,IACD,OAAA;;;;;;;;;iBAgBqB,sBAAA,CAAuB,KAAA;EAC3C,OAAA;EACA,IAAA;EACA,MAAA;AAAA,IACD,OAAA;;;;aAJ2C,IAAA;AAAA"}
|