@contractspec/example.personalization 3.7.14 → 3.7.15
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 +15 -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=10 noBundle=false
|
|
6
|
-
Bundled 10 modules in
|
|
6
|
+
Bundled 10 modules in 10ms
|
|
7
7
|
|
|
8
8
|
./behavior-tracking.js 1.33 KB (entry point)
|
|
9
9
|
./index.js 10.57 KB (entry point)
|
|
@@ -17,7 +17,7 @@ Bundled 10 modules in 14ms
|
|
|
17
17
|
./personalization.feature.js 0.71 KB (entry point)
|
|
18
18
|
|
|
19
19
|
[contractspec-bun-build] transpile target=node root=src entries=10 noBundle=false
|
|
20
|
-
Bundled 10 modules in
|
|
20
|
+
Bundled 10 modules in 9ms
|
|
21
21
|
|
|
22
22
|
./behavior-tracking.js 1.32 KB (entry point)
|
|
23
23
|
./index.js 10.56 KB (entry point)
|
|
@@ -31,7 +31,7 @@ Bundled 10 modules in 15ms
|
|
|
31
31
|
./personalization.feature.js 0.70 KB (entry point)
|
|
32
32
|
|
|
33
33
|
[contractspec-bun-build] transpile target=browser root=src entries=10 noBundle=false
|
|
34
|
-
Bundled 10 modules in
|
|
34
|
+
Bundled 10 modules in 6ms
|
|
35
35
|
|
|
36
36
|
./behavior-tracking.js 1.32 KB (entry point)
|
|
37
37
|
./index.js 10.56 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @contractspec/example.personalization
|
|
2
2
|
|
|
3
|
+
## 3.7.15
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 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.
|
|
8
|
+
|
|
9
|
+
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.
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [cce2b13]
|
|
12
|
+
- @contractspec/lib.workflow-composer@3.7.15
|
|
13
|
+
- @contractspec/lib.personalization@6.0.15
|
|
14
|
+
- @contractspec/lib.contracts-spec@5.0.3
|
|
15
|
+
- @contractspec/lib.overlay-engine@3.7.15
|
|
16
|
+
- @contractspec/lib.logger@3.7.11
|
|
17
|
+
|
|
3
18
|
## 3.7.14
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.personalization",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.15",
|
|
4
4
|
"description": "Personalization examples: behavior tracking, overlay customization, workflow extension.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -92,16 +92,16 @@
|
|
|
92
92
|
"typecheck": "tsc --noEmit"
|
|
93
93
|
},
|
|
94
94
|
"dependencies": {
|
|
95
|
-
"@contractspec/lib.personalization": "6.0.
|
|
96
|
-
"@contractspec/lib.overlay-engine": "3.7.
|
|
97
|
-
"@contractspec/lib.workflow-composer": "3.7.
|
|
98
|
-
"@contractspec/lib.contracts-spec": "5.0.
|
|
99
|
-
"@contractspec/lib.logger": "3.7.
|
|
95
|
+
"@contractspec/lib.personalization": "6.0.15",
|
|
96
|
+
"@contractspec/lib.overlay-engine": "3.7.15",
|
|
97
|
+
"@contractspec/lib.workflow-composer": "3.7.15",
|
|
98
|
+
"@contractspec/lib.contracts-spec": "5.0.3",
|
|
99
|
+
"@contractspec/lib.logger": "3.7.11"
|
|
100
100
|
},
|
|
101
101
|
"devDependencies": {
|
|
102
|
-
"@contractspec/tool.typescript": "3.7.
|
|
102
|
+
"@contractspec/tool.typescript": "3.7.11",
|
|
103
103
|
"typescript": "^5.9.3",
|
|
104
|
-
"@contractspec/tool.bun": "3.7.
|
|
104
|
+
"@contractspec/tool.bun": "3.7.11"
|
|
105
105
|
},
|
|
106
106
|
"publishConfig": {
|
|
107
107
|
"access": "public",
|