@contractspec/example.agent-console 3.8.8 → 3.8.9
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 +16 -0
- package/package.json +10 -10
package/.turbo/turbo-build.log
CHANGED
|
@@ -2,7 +2,7 @@ $ contractspec-bun-build prebuild
|
|
|
2
2
|
$ bun run build:bundle && bun run build:types
|
|
3
3
|
$ contractspec-bun-build transpile
|
|
4
4
|
[contractspec-bun-build] transpile target=bun root=src entries=73 noBundle=false
|
|
5
|
-
Bundled 79 modules in
|
|
5
|
+
Bundled 79 modules in 104ms
|
|
6
6
|
|
|
7
7
|
./agent.capability.js 442 bytes (entry point)
|
|
8
8
|
tool/tool.test-spec.js 1.38 KB (entry point)
|
|
@@ -79,7 +79,7 @@ Bundled 79 modules in 105ms
|
|
|
79
79
|
agent/agent.enum.js 467 bytes (entry point)
|
|
80
80
|
|
|
81
81
|
[contractspec-bun-build] transpile target=node root=src entries=73 noBundle=false
|
|
82
|
-
Bundled 79 modules in
|
|
82
|
+
Bundled 79 modules in 139ms
|
|
83
83
|
|
|
84
84
|
./agent.capability.js 434 bytes (entry point)
|
|
85
85
|
tool/tool.test-spec.js 1.38 KB (entry point)
|
|
@@ -156,7 +156,7 @@ Bundled 79 modules in 108ms
|
|
|
156
156
|
agent/agent.enum.js 459 bytes (entry point)
|
|
157
157
|
|
|
158
158
|
[contractspec-bun-build] transpile target=browser root=src entries=73 noBundle=false
|
|
159
|
-
Bundled 79 modules in
|
|
159
|
+
Bundled 79 modules in 91ms
|
|
160
160
|
|
|
161
161
|
./agent.capability.js 434 bytes (entry point)
|
|
162
162
|
tool/tool.test-spec.js 1.38 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @contractspec/example.agent-console
|
|
2
2
|
|
|
3
|
+
## 3.8.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix workflow runtime imports for sandboxed workflow execution and keep workflow authoring on safe subpaths.
|
|
8
|
+
- Migration: Keep Node-only workflow runner code out of "use workflow" entrypoints.
|
|
9
|
+
- Deprecations: Importing the broad `@contractspec/lib.contracts-spec/workflow` barrel from sandboxed workflow entrypoints is discouraged.
|
|
10
|
+
- Updated dependencies because of Fix workflow runtime imports for sandboxed workflow execution and keep workflow authoring on safe subpaths.
|
|
11
|
+
- Updated dependencies because of Add versioning-backed release capsules, generated patch notes, and guided upgrade flows.
|
|
12
|
+
- @contractspec/lib.presentation-runtime-core@3.9.5
|
|
13
|
+
- @contractspec/lib.example-shared-ui@6.0.17
|
|
14
|
+
- @contractspec/lib.runtime-sandbox@2.7.14
|
|
15
|
+
- @contractspec/lib.contracts-spec@5.1.0
|
|
16
|
+
- @contractspec/lib.design-system@3.8.10
|
|
17
|
+
- @contractspec/lib.schema@3.7.14
|
|
18
|
+
|
|
3
19
|
## 3.8.8
|
|
4
20
|
|
|
5
21
|
### 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.9",
|
|
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",
|
|
@@ -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.14",
|
|
539
|
+
"@contractspec/lib.contracts-spec": "5.1.0",
|
|
540
|
+
"@contractspec/lib.example-shared-ui": "6.0.17",
|
|
541
|
+
"@contractspec/lib.design-system": "3.8.10",
|
|
542
|
+
"@contractspec/lib.runtime-sandbox": "2.7.14",
|
|
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.5"
|
|
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.10",
|
|
549
|
+
"@contractspec/tool.bun": "3.7.13",
|
|
550
|
+
"@contractspec/tool.typescript": "3.7.13",
|
|
551
551
|
"@types/react": "^19.2.14",
|
|
552
552
|
"@types/react-dom": "^19.2.2",
|
|
553
553
|
"happy-dom": "^20.8.8",
|