@contractspec/example.agent-console 3.7.4 → 3.7.6
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 +24 -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 noBundle=false
|
|
6
|
-
Bundled 66 modules in
|
|
6
|
+
Bundled 66 modules in 143ms
|
|
7
7
|
|
|
8
8
|
./agent.capability.js 442 bytes (entry point)
|
|
9
9
|
tool/tool.test-spec.js 1.38 KB (entry point)
|
|
@@ -73,7 +73,7 @@ Bundled 66 modules in 90ms
|
|
|
73
73
|
agent/agent.enum.js 467 bytes (entry point)
|
|
74
74
|
|
|
75
75
|
[contractspec-bun-build] transpile target=node root=src entries=66 noBundle=false
|
|
76
|
-
Bundled 66 modules in
|
|
76
|
+
Bundled 66 modules in 111ms
|
|
77
77
|
|
|
78
78
|
./agent.capability.js 434 bytes (entry point)
|
|
79
79
|
tool/tool.test-spec.js 1.38 KB (entry point)
|
|
@@ -143,7 +143,7 @@ Bundled 66 modules in 79ms
|
|
|
143
143
|
agent/agent.enum.js 459 bytes (entry point)
|
|
144
144
|
|
|
145
145
|
[contractspec-bun-build] transpile target=browser root=src entries=66 noBundle=false
|
|
146
|
-
Bundled 66 modules in
|
|
146
|
+
Bundled 66 modules in 108ms
|
|
147
147
|
|
|
148
148
|
./agent.capability.js 434 bytes (entry point)
|
|
149
149
|
tool/tool.test-spec.js 1.38 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @contractspec/example.agent-console
|
|
2
2
|
|
|
3
|
+
## 3.7.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix: release manifest
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @contractspec/lib.example-shared-ui@6.0.6
|
|
10
|
+
- @contractspec/lib.runtime-sandbox@2.7.6
|
|
11
|
+
- @contractspec/lib.contracts-spec@3.7.6
|
|
12
|
+
- @contractspec/lib.design-system@3.7.6
|
|
13
|
+
- @contractspec/lib.schema@3.7.6
|
|
14
|
+
|
|
15
|
+
## 3.7.5
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- ecf195a: fix: release security
|
|
20
|
+
- Updated dependencies [ecf195a]
|
|
21
|
+
- @contractspec/lib.example-shared-ui@6.0.5
|
|
22
|
+
- @contractspec/lib.runtime-sandbox@2.7.5
|
|
23
|
+
- @contractspec/lib.contracts-spec@3.7.5
|
|
24
|
+
- @contractspec/lib.design-system@3.7.5
|
|
25
|
+
- @contractspec/lib.schema@3.7.5
|
|
26
|
+
|
|
3
27
|
## 3.7.4
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.agent-console",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.6",
|
|
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",
|
|
@@ -484,20 +484,20 @@
|
|
|
484
484
|
"typecheck": "tsc --noEmit"
|
|
485
485
|
},
|
|
486
486
|
"dependencies": {
|
|
487
|
-
"@contractspec/lib.schema": "3.7.
|
|
488
|
-
"@contractspec/lib.contracts-spec": "3.7.
|
|
489
|
-
"@contractspec/lib.example-shared-ui": "6.0.
|
|
490
|
-
"@contractspec/lib.design-system": "3.7.
|
|
491
|
-
"@contractspec/lib.runtime-sandbox": "2.7.
|
|
487
|
+
"@contractspec/lib.schema": "3.7.6",
|
|
488
|
+
"@contractspec/lib.contracts-spec": "3.7.6",
|
|
489
|
+
"@contractspec/lib.example-shared-ui": "6.0.6",
|
|
490
|
+
"@contractspec/lib.design-system": "3.7.6",
|
|
491
|
+
"@contractspec/lib.runtime-sandbox": "2.7.6",
|
|
492
492
|
"react": "19.2.0",
|
|
493
493
|
"react-dom": "19.2.0"
|
|
494
494
|
},
|
|
495
495
|
"devDependencies": {
|
|
496
|
-
"@contractspec/tool.typescript": "3.7.
|
|
496
|
+
"@contractspec/tool.typescript": "3.7.6",
|
|
497
497
|
"typescript": "^5.9.3",
|
|
498
498
|
"@types/react": "^19.2.14",
|
|
499
499
|
"@types/react-dom": "^19.2.2",
|
|
500
|
-
"@contractspec/tool.bun": "3.7.
|
|
500
|
+
"@contractspec/tool.bun": "3.7.6"
|
|
501
501
|
},
|
|
502
502
|
"publishConfig": {
|
|
503
503
|
"exports": {
|