@contractspec/example.agent-console 1.58.0 → 1.59.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.log +3 -3
- package/CHANGELOG.md +15 -0
- package/package.json +8 -8
package/.turbo/turbo-build.log
CHANGED
|
@@ -3,7 +3,7 @@ $ bun run prebuild && bun run build:bundle && bun run build:types
|
|
|
3
3
|
$ contractspec-bun-build prebuild
|
|
4
4
|
$ contractspec-bun-build transpile
|
|
5
5
|
[contractspec-bun-build] transpile target=bun root=src entries=66
|
|
6
|
-
Bundled 66 modules in
|
|
6
|
+
Bundled 66 modules in 94ms
|
|
7
7
|
|
|
8
8
|
./agent.capability.js 433 bytes (entry point)
|
|
9
9
|
tool/tool.test-spec.js 1.37 KB (entry point)
|
|
@@ -73,7 +73,7 @@ Bundled 66 modules in 97ms
|
|
|
73
73
|
agent/agent.enum.js 467 bytes (entry point)
|
|
74
74
|
|
|
75
75
|
[contractspec-bun-build] transpile target=node root=src entries=66
|
|
76
|
-
Bundled 66 modules in
|
|
76
|
+
Bundled 66 modules in 87ms
|
|
77
77
|
|
|
78
78
|
./agent.capability.js 425 bytes (entry point)
|
|
79
79
|
tool/tool.test-spec.js 1.36 KB (entry point)
|
|
@@ -143,7 +143,7 @@ Bundled 66 modules in 92ms
|
|
|
143
143
|
agent/agent.enum.js 459 bytes (entry point)
|
|
144
144
|
|
|
145
145
|
[contractspec-bun-build] transpile target=browser root=src entries=66
|
|
146
|
-
Bundled 66 modules in
|
|
146
|
+
Bundled 66 modules in 84ms
|
|
147
147
|
|
|
148
148
|
./agent.capability.js 425 bytes (entry point)
|
|
149
149
|
tool/tool.test-spec.js 1.36 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @contractspec/example.agent-console
|
|
2
2
|
|
|
3
|
+
## 1.59.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1a0cf44: fix: publishConfig not supported by bun
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [1a0cf44]
|
|
12
|
+
- @contractspec/lib.example-shared-ui@1.13.0
|
|
13
|
+
- @contractspec/lib.runtime-sandbox@0.14.0
|
|
14
|
+
- @contractspec/lib.design-system@1.59.0
|
|
15
|
+
- @contractspec/lib.contracts@1.59.0
|
|
16
|
+
- @contractspec/lib.schema@1.59.0
|
|
17
|
+
|
|
3
18
|
## 1.58.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.agent-console",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.59.0",
|
|
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",
|
|
@@ -102,20 +102,20 @@
|
|
|
102
102
|
"typecheck": "tsc --noEmit"
|
|
103
103
|
},
|
|
104
104
|
"dependencies": {
|
|
105
|
-
"@contractspec/lib.schema": "1.
|
|
106
|
-
"@contractspec/lib.contracts": "1.
|
|
107
|
-
"@contractspec/lib.example-shared-ui": "1.
|
|
108
|
-
"@contractspec/lib.design-system": "1.
|
|
109
|
-
"@contractspec/lib.runtime-sandbox": "0.
|
|
105
|
+
"@contractspec/lib.schema": "1.59.0",
|
|
106
|
+
"@contractspec/lib.contracts": "1.59.0",
|
|
107
|
+
"@contractspec/lib.example-shared-ui": "1.13.0",
|
|
108
|
+
"@contractspec/lib.design-system": "1.59.0",
|
|
109
|
+
"@contractspec/lib.runtime-sandbox": "0.14.0",
|
|
110
110
|
"react": "19.2.4",
|
|
111
111
|
"react-dom": "19.2.4"
|
|
112
112
|
},
|
|
113
113
|
"devDependencies": {
|
|
114
|
-
"@contractspec/tool.typescript": "1.
|
|
114
|
+
"@contractspec/tool.typescript": "1.59.0",
|
|
115
115
|
"typescript": "^5.9.3",
|
|
116
116
|
"@types/react": "^19.2.13",
|
|
117
117
|
"@types/react-dom": "^19.2.2",
|
|
118
|
-
"@contractspec/tool.bun": "1.
|
|
118
|
+
"@contractspec/tool.bun": "1.58.0"
|
|
119
119
|
},
|
|
120
120
|
"publishConfig": {
|
|
121
121
|
"exports": {
|