@contractspec/example.agent-console 3.8.7 → 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 +4 -5
- package/CHANGELOG.md +29 -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 104ms
|
|
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 139ms
|
|
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 91ms
|
|
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,34 @@
|
|
|
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
|
+
|
|
19
|
+
## 3.8.8
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- 2b59171: fix: crypto package issue due to nodejs only runtime
|
|
24
|
+
- Updated dependencies [2b59171]
|
|
25
|
+
- @contractspec/lib.presentation-runtime-core@3.9.4
|
|
26
|
+
- @contractspec/lib.example-shared-ui@6.0.16
|
|
27
|
+
- @contractspec/lib.runtime-sandbox@2.7.13
|
|
28
|
+
- @contractspec/lib.contracts-spec@5.0.4
|
|
29
|
+
- @contractspec/lib.design-system@3.8.9
|
|
30
|
+
- @contractspec/lib.schema@3.7.13
|
|
31
|
+
|
|
3
32
|
## 3.8.7
|
|
4
33
|
|
|
5
34
|
### 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",
|
|
@@ -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.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",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
$ contractspec-bun-build prebuild
|