@contractspec/example.policy-safe-knowledge-assistant 2.4.0 → 2.6.0
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 +43 -0
- package/package.json +13 -13
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=14
|
|
6
|
-
Bundled 14 modules in
|
|
6
|
+
Bundled 14 modules in 16ms
|
|
7
7
|
|
|
8
8
|
docs/index.js 1.86 KB (entry point)
|
|
9
9
|
seeders/index.js 0.51 KB (entry point)
|
|
@@ -21,7 +21,7 @@ Bundled 14 modules in 42ms
|
|
|
21
21
|
./policy-safe-knowledge-assistant.feature.js 2.33 KB (entry point)
|
|
22
22
|
|
|
23
23
|
[contractspec-bun-build] transpile target=node root=src entries=14
|
|
24
|
-
Bundled 14 modules in
|
|
24
|
+
Bundled 14 modules in 14ms
|
|
25
25
|
|
|
26
26
|
docs/index.js 1.85 KB (entry point)
|
|
27
27
|
seeders/index.js 506 bytes (entry point)
|
|
@@ -39,7 +39,7 @@ Bundled 14 modules in 23ms
|
|
|
39
39
|
./policy-safe-knowledge-assistant.feature.js 2.32 KB (entry point)
|
|
40
40
|
|
|
41
41
|
[contractspec-bun-build] transpile target=browser root=src entries=14
|
|
42
|
-
Bundled 14 modules in
|
|
42
|
+
Bundled 14 modules in 18ms
|
|
43
43
|
|
|
44
44
|
docs/index.js 1.85 KB (entry point)
|
|
45
45
|
seeders/index.js 506 bytes (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# @contractspec/example.policy-safe-knowledge-assistant
|
|
2
2
|
|
|
3
|
+
## 2.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- bae3db1: fix: build issues
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [bae3db1]
|
|
12
|
+
- @contractspec/example.kb-update-pipeline@2.6.0
|
|
13
|
+
- @contractspec/example.learning-patterns@2.6.0
|
|
14
|
+
- @contractspec/example.locale-jurisdiction-gate@2.6.0
|
|
15
|
+
- @contractspec/example.versioned-knowledge-base@2.6.0
|
|
16
|
+
- @contractspec/lib.contracts-spec@2.6.0
|
|
17
|
+
- @contractspec/lib.design-system@2.6.0
|
|
18
|
+
- @contractspec/lib.example-shared-ui@2.6.0
|
|
19
|
+
- @contractspec/lib.runtime-sandbox@1.6.0
|
|
20
|
+
- @contractspec/lib.ui-kit-web@2.6.0
|
|
21
|
+
- @contractspec/module.learning-journey@2.6.0
|
|
22
|
+
|
|
23
|
+
## 2.5.0
|
|
24
|
+
|
|
25
|
+
### Minor Changes
|
|
26
|
+
|
|
27
|
+
- c83c323: feat: major change to content generation
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- Updated dependencies [4fa3bd4]
|
|
32
|
+
- Updated dependencies [63eee9b]
|
|
33
|
+
- Updated dependencies [284cbe2]
|
|
34
|
+
- Updated dependencies [c83c323]
|
|
35
|
+
- @contractspec/lib.contracts-spec@2.5.0
|
|
36
|
+
- @contractspec/module.learning-journey@2.5.0
|
|
37
|
+
- @contractspec/example.locale-jurisdiction-gate@2.5.0
|
|
38
|
+
- @contractspec/example.versioned-knowledge-base@2.5.0
|
|
39
|
+
- @contractspec/example.kb-update-pipeline@2.5.0
|
|
40
|
+
- @contractspec/example.learning-patterns@2.5.0
|
|
41
|
+
- @contractspec/lib.example-shared-ui@2.5.0
|
|
42
|
+
- @contractspec/lib.runtime-sandbox@1.5.0
|
|
43
|
+
- @contractspec/lib.design-system@2.5.0
|
|
44
|
+
- @contractspec/lib.ui-kit-web@2.5.0
|
|
45
|
+
|
|
3
46
|
## 2.4.0
|
|
4
47
|
|
|
5
48
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.policy-safe-knowledge-assistant",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.0",
|
|
4
4
|
"description": "All-in-one template example: policy-safe knowledge assistant with locale/jurisdiction gating, versioned KB snapshots, HITL update pipeline, and learning hub.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -155,25 +155,25 @@
|
|
|
155
155
|
"typecheck": "tsc --noEmit"
|
|
156
156
|
},
|
|
157
157
|
"dependencies": {
|
|
158
|
-
"@contractspec/example.kb-update-pipeline": "2.
|
|
159
|
-
"@contractspec/example.learning-patterns": "2.
|
|
160
|
-
"@contractspec/example.locale-jurisdiction-gate": "2.
|
|
161
|
-
"@contractspec/example.versioned-knowledge-base": "2.
|
|
162
|
-
"@contractspec/lib.contracts-spec": "2.
|
|
163
|
-
"@contractspec/lib.design-system": "2.
|
|
164
|
-
"@contractspec/lib.example-shared-ui": "2.
|
|
165
|
-
"@contractspec/lib.runtime-sandbox": "1.
|
|
166
|
-
"@contractspec/lib.ui-kit-web": "2.
|
|
167
|
-
"@contractspec/module.learning-journey": "2.
|
|
158
|
+
"@contractspec/example.kb-update-pipeline": "2.6.0",
|
|
159
|
+
"@contractspec/example.learning-patterns": "2.6.0",
|
|
160
|
+
"@contractspec/example.locale-jurisdiction-gate": "2.6.0",
|
|
161
|
+
"@contractspec/example.versioned-knowledge-base": "2.6.0",
|
|
162
|
+
"@contractspec/lib.contracts-spec": "2.6.0",
|
|
163
|
+
"@contractspec/lib.design-system": "2.6.0",
|
|
164
|
+
"@contractspec/lib.example-shared-ui": "2.6.0",
|
|
165
|
+
"@contractspec/lib.runtime-sandbox": "1.6.0",
|
|
166
|
+
"@contractspec/lib.ui-kit-web": "2.6.0",
|
|
167
|
+
"@contractspec/module.learning-journey": "2.6.0",
|
|
168
168
|
"react": "19.2.4",
|
|
169
169
|
"react-dom": "19.2.4"
|
|
170
170
|
},
|
|
171
171
|
"devDependencies": {
|
|
172
|
-
"@contractspec/tool.typescript": "2.
|
|
172
|
+
"@contractspec/tool.typescript": "2.6.0",
|
|
173
173
|
"typescript": "^5.9.3",
|
|
174
174
|
"@types/react": "^19.2.14",
|
|
175
175
|
"@types/react-dom": "^19.2.2",
|
|
176
|
-
"@contractspec/tool.bun": "2.
|
|
176
|
+
"@contractspec/tool.bun": "2.6.0"
|
|
177
177
|
},
|
|
178
178
|
"publishConfig": {
|
|
179
179
|
"access": "public",
|