@contractspec/example.product-intent 3.7.14 → 3.7.16
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 +2 -3
- package/CHANGELOG.md +29 -0
- package/package.json +10 -10
- package/.turbo/turbo-prebuild.log +0 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
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=10 noBundle=false
|
|
6
5
|
Bundled 10 modules in 31ms
|
|
@@ -17,7 +16,7 @@ Bundled 10 modules in 31ms
|
|
|
17
16
|
./product-intent.feature.js 0.60 KB (entry point)
|
|
18
17
|
|
|
19
18
|
[contractspec-bun-build] transpile target=node root=src entries=10 noBundle=false
|
|
20
|
-
Bundled 10 modules in
|
|
19
|
+
Bundled 10 modules in 30ms
|
|
21
20
|
|
|
22
21
|
docs/index.js 1.40 KB (entry point)
|
|
23
22
|
./script.js 16.51 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @contractspec/example.product-intent
|
|
2
2
|
|
|
3
|
+
## 3.7.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2b59171: fix: crypto package issue due to nodejs only runtime
|
|
8
|
+
- Updated dependencies [2b59171]
|
|
9
|
+
- @contractspec/integration.providers-impls@3.8.8
|
|
10
|
+
- @contractspec/lib.contracts-integrations@3.8.8
|
|
11
|
+
- @contractspec/lib.product-intent-utils@3.7.16
|
|
12
|
+
- @contractspec/lib.contracts-spec@5.0.4
|
|
13
|
+
- @contractspec/lib.analytics@3.7.16
|
|
14
|
+
- @contractspec/lib.ai-agent@8.0.4
|
|
15
|
+
|
|
16
|
+
## 3.7.15
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- cce2b13: Add first-class Workflow DevKit support for `WorkflowSpec`, including new runtime metadata, stricter validation for Workflow-backed workflows, a dedicated Workflow DevKit integration package, CLI artifact generation, and Workflow-aware chat route helpers exposed from `@contractspec/module.ai-chat/core/workflow` so standard chat imports do not pull Workflow-only runtime assets into non-Workflow builds.
|
|
21
|
+
|
|
22
|
+
Also harden supporting runtime surfaces by reusing Playwright browser instances in the harness runtime, mapping design-system button `onPress` handlers correctly to DOM clicks, and switching the workspace git adapter to argument-safe subprocess calls while tightening slow test coverage around those flows.
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [cce2b13]
|
|
25
|
+
- @contractspec/integration.providers-impls@3.8.7
|
|
26
|
+
- @contractspec/lib.contracts-integrations@3.8.7
|
|
27
|
+
- @contractspec/lib.product-intent-utils@3.7.15
|
|
28
|
+
- @contractspec/lib.contracts-spec@5.0.3
|
|
29
|
+
- @contractspec/lib.analytics@3.7.15
|
|
30
|
+
- @contractspec/lib.ai-agent@8.0.3
|
|
31
|
+
|
|
3
32
|
## 3.7.14
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.product-intent",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.16",
|
|
4
4
|
"description": "Product intent example: evidence ingestion and prompt-ready outputs.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contractspec",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"scripts": {
|
|
77
77
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|
|
78
78
|
"publish:pkg:canary": "bun publish:pkg --tag canary",
|
|
79
|
-
"build": "bun run
|
|
79
|
+
"build": "bun run build:bundle && bun run build:types",
|
|
80
80
|
"build:bundle": "contractspec-bun-build transpile",
|
|
81
81
|
"build:types": "contractspec-bun-build types",
|
|
82
82
|
"dev": "contractspec-bun-build dev",
|
|
@@ -89,17 +89,17 @@
|
|
|
89
89
|
"typecheck": "tsc --noEmit"
|
|
90
90
|
},
|
|
91
91
|
"dependencies": {
|
|
92
|
-
"@contractspec/lib.analytics": "3.7.
|
|
93
|
-
"@contractspec/lib.contracts-spec": "5.0.
|
|
94
|
-
"@contractspec/lib.contracts-integrations": "3.8.
|
|
95
|
-
"@contractspec/lib.ai-agent": "8.0.
|
|
96
|
-
"@contractspec/lib.product-intent-utils": "3.7.
|
|
97
|
-
"@contractspec/integration.providers-impls": "3.8.
|
|
92
|
+
"@contractspec/lib.analytics": "3.7.16",
|
|
93
|
+
"@contractspec/lib.contracts-spec": "5.0.4",
|
|
94
|
+
"@contractspec/lib.contracts-integrations": "3.8.8",
|
|
95
|
+
"@contractspec/lib.ai-agent": "8.0.4",
|
|
96
|
+
"@contractspec/lib.product-intent-utils": "3.7.16",
|
|
97
|
+
"@contractspec/integration.providers-impls": "3.8.8"
|
|
98
98
|
},
|
|
99
99
|
"devDependencies": {
|
|
100
|
-
"@contractspec/tool.typescript": "3.7.
|
|
100
|
+
"@contractspec/tool.typescript": "3.7.12",
|
|
101
101
|
"typescript": "^5.9.3",
|
|
102
|
-
"@contractspec/tool.bun": "3.7.
|
|
102
|
+
"@contractspec/tool.bun": "3.7.12"
|
|
103
103
|
},
|
|
104
104
|
"publishConfig": {
|
|
105
105
|
"access": "public",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
$ contractspec-bun-build prebuild
|