@contractspec/example.agent-console 3.8.7 → 3.8.8
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 +4 -5
- package/CHANGELOG.md +13 -0
- package/package.json +11 -11
- package/.turbo/turbo-prebuild.log +0 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
$ contractspec-bun-build prebuild
|
|
2
|
-
$ bun run
|
|
3
|
-
$ contractspec-bun-build prebuild
|
|
2
|
+
$ bun run build:bundle && bun run build:types
|
|
4
3
|
$ contractspec-bun-build transpile
|
|
5
4
|
[contractspec-bun-build] transpile target=bun root=src entries=73 noBundle=false
|
|
6
|
-
Bundled 79 modules in
|
|
5
|
+
Bundled 79 modules in 105ms
|
|
7
6
|
|
|
8
7
|
./agent.capability.js 442 bytes (entry point)
|
|
9
8
|
tool/tool.test-spec.js 1.38 KB (entry point)
|
|
@@ -80,7 +79,7 @@ Bundled 79 modules in 167ms
|
|
|
80
79
|
agent/agent.enum.js 467 bytes (entry point)
|
|
81
80
|
|
|
82
81
|
[contractspec-bun-build] transpile target=node root=src entries=73 noBundle=false
|
|
83
|
-
Bundled 79 modules in
|
|
82
|
+
Bundled 79 modules in 108ms
|
|
84
83
|
|
|
85
84
|
./agent.capability.js 434 bytes (entry point)
|
|
86
85
|
tool/tool.test-spec.js 1.38 KB (entry point)
|
|
@@ -157,7 +156,7 @@ Bundled 79 modules in 113ms
|
|
|
157
156
|
agent/agent.enum.js 459 bytes (entry point)
|
|
158
157
|
|
|
159
158
|
[contractspec-bun-build] transpile target=browser root=src entries=73 noBundle=false
|
|
160
|
-
Bundled 79 modules in
|
|
159
|
+
Bundled 79 modules in 88ms
|
|
161
160
|
|
|
162
161
|
./agent.capability.js 434 bytes (entry point)
|
|
163
162
|
tool/tool.test-spec.js 1.38 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @contractspec/example.agent-console
|
|
2
2
|
|
|
3
|
+
## 3.8.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2b59171: fix: crypto package issue due to nodejs only runtime
|
|
8
|
+
- Updated dependencies [2b59171]
|
|
9
|
+
- @contractspec/lib.presentation-runtime-core@3.9.4
|
|
10
|
+
- @contractspec/lib.example-shared-ui@6.0.16
|
|
11
|
+
- @contractspec/lib.runtime-sandbox@2.7.13
|
|
12
|
+
- @contractspec/lib.contracts-spec@5.0.4
|
|
13
|
+
- @contractspec/lib.design-system@3.8.9
|
|
14
|
+
- @contractspec/lib.schema@3.7.13
|
|
15
|
+
|
|
3
16
|
## 3.8.7
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.agent-console",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.8",
|
|
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",
|
|
@@ -520,7 +520,7 @@
|
|
|
520
520
|
"scripts": {
|
|
521
521
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|
|
522
522
|
"publish:pkg:canary": "bun publish:pkg --tag canary",
|
|
523
|
-
"build": "bun run
|
|
523
|
+
"build": "bun run build:bundle && bun run build:types",
|
|
524
524
|
"build:bundle": "contractspec-bun-build transpile",
|
|
525
525
|
"build:types": "contractspec-bun-build types",
|
|
526
526
|
"dev": "contractspec-bun-build dev",
|
|
@@ -535,19 +535,19 @@
|
|
|
535
535
|
"typecheck": "tsc --noEmit"
|
|
536
536
|
},
|
|
537
537
|
"dependencies": {
|
|
538
|
-
"@contractspec/lib.schema": "3.7.
|
|
539
|
-
"@contractspec/lib.contracts-spec": "5.0.
|
|
540
|
-
"@contractspec/lib.example-shared-ui": "6.0.
|
|
541
|
-
"@contractspec/lib.design-system": "3.8.
|
|
542
|
-
"@contractspec/lib.runtime-sandbox": "2.7.
|
|
538
|
+
"@contractspec/lib.schema": "3.7.13",
|
|
539
|
+
"@contractspec/lib.contracts-spec": "5.0.4",
|
|
540
|
+
"@contractspec/lib.example-shared-ui": "6.0.16",
|
|
541
|
+
"@contractspec/lib.design-system": "3.8.9",
|
|
542
|
+
"@contractspec/lib.runtime-sandbox": "2.7.13",
|
|
543
543
|
"react": "19.2.0",
|
|
544
544
|
"react-dom": "19.2.0",
|
|
545
|
-
"@contractspec/lib.presentation-runtime-core": "3.9.
|
|
545
|
+
"@contractspec/lib.presentation-runtime-core": "3.9.4"
|
|
546
546
|
},
|
|
547
547
|
"devDependencies": {
|
|
548
|
-
"@contractspec/lib.harness": "0.2.
|
|
549
|
-
"@contractspec/tool.bun": "3.7.
|
|
550
|
-
"@contractspec/tool.typescript": "3.7.
|
|
548
|
+
"@contractspec/lib.harness": "0.2.9",
|
|
549
|
+
"@contractspec/tool.bun": "3.7.12",
|
|
550
|
+
"@contractspec/tool.typescript": "3.7.12",
|
|
551
551
|
"@types/react": "^19.2.14",
|
|
552
552
|
"@types/react-dom": "^19.2.2",
|
|
553
553
|
"happy-dom": "^20.8.8",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
$ contractspec-bun-build prebuild
|