@contractspec/example.policy-safe-knowledge-assistant 1.59.0 → 1.60.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 +20 -0
- package/package.json +146 -32
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 34ms
|
|
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 21ms
|
|
|
21
21
|
./policy-safe-knowledge-assistant.feature.js 2.32 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 45ms
|
|
25
25
|
|
|
26
26
|
docs/index.js 1.84 KB (entry point)
|
|
27
27
|
seeders/index.js 506 bytes (entry point)
|
|
@@ -39,7 +39,7 @@ Bundled 14 modules in 34ms
|
|
|
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 36ms
|
|
43
43
|
|
|
44
44
|
docs/index.js 1.84 KB (entry point)
|
|
45
45
|
seeders/index.js 506 bytes (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @contractspec/example.policy-safe-knowledge-assistant
|
|
2
2
|
|
|
3
|
+
## 1.60.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- fix: publish with bun
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @contractspec/example.locale-jurisdiction-gate@1.60.0
|
|
13
|
+
- @contractspec/example.versioned-knowledge-base@1.60.0
|
|
14
|
+
- @contractspec/example.kb-update-pipeline@1.60.0
|
|
15
|
+
- @contractspec/example.learning-patterns@1.60.0
|
|
16
|
+
- @contractspec/module.learning-journey@1.60.0
|
|
17
|
+
- @contractspec/lib.example-shared-ui@1.14.0
|
|
18
|
+
- @contractspec/lib.runtime-sandbox@0.15.0
|
|
19
|
+
- @contractspec/lib.design-system@1.60.0
|
|
20
|
+
- @contractspec/lib.ui-kit-web@1.60.0
|
|
21
|
+
- @contractspec/lib.contracts@1.60.0
|
|
22
|
+
|
|
3
23
|
## 1.59.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,29 +1,143 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.policy-safe-knowledge-assistant",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.60.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",
|
|
7
7
|
"exports": {
|
|
8
|
-
".":
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"./
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"./
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"bun": "./dist/index.js",
|
|
11
|
+
"node": "./dist/node/index.mjs",
|
|
12
|
+
"browser": "./dist/browser/index.js",
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./docs": {
|
|
16
|
+
"types": "./dist/docs/index.d.ts",
|
|
17
|
+
"bun": "./dist/docs/index.js",
|
|
18
|
+
"node": "./dist/node/docs/index.mjs",
|
|
19
|
+
"browser": "./dist/browser/docs/index.js",
|
|
20
|
+
"default": "./dist/docs/index.js"
|
|
21
|
+
},
|
|
22
|
+
"./docs/index": {
|
|
23
|
+
"types": "./dist/docs/index.d.ts",
|
|
24
|
+
"bun": "./dist/docs/index.js",
|
|
25
|
+
"node": "./dist/node/docs/index.mjs",
|
|
26
|
+
"browser": "./dist/browser/docs/index.js",
|
|
27
|
+
"default": "./dist/docs/index.js"
|
|
28
|
+
},
|
|
29
|
+
"./docs/policy-safe-knowledge-assistant.docblock": {
|
|
30
|
+
"types": "./dist/docs/policy-safe-knowledge-assistant.docblock.d.ts",
|
|
31
|
+
"bun": "./dist/docs/policy-safe-knowledge-assistant.docblock.js",
|
|
32
|
+
"node": "./dist/node/docs/policy-safe-knowledge-assistant.docblock.mjs",
|
|
33
|
+
"browser": "./dist/browser/docs/policy-safe-knowledge-assistant.docblock.js",
|
|
34
|
+
"default": "./dist/docs/policy-safe-knowledge-assistant.docblock.js"
|
|
35
|
+
},
|
|
36
|
+
"./example": {
|
|
37
|
+
"types": "./dist/example.d.ts",
|
|
38
|
+
"bun": "./dist/example.js",
|
|
39
|
+
"node": "./dist/node/example.mjs",
|
|
40
|
+
"browser": "./dist/browser/example.js",
|
|
41
|
+
"default": "./dist/example.js"
|
|
42
|
+
},
|
|
43
|
+
"./handlers": {
|
|
44
|
+
"types": "./dist/handlers/index.d.ts",
|
|
45
|
+
"bun": "./dist/handlers/index.js",
|
|
46
|
+
"node": "./dist/node/handlers/index.mjs",
|
|
47
|
+
"browser": "./dist/browser/handlers/index.js",
|
|
48
|
+
"default": "./dist/handlers/index.js"
|
|
49
|
+
},
|
|
50
|
+
"./handlers/index": {
|
|
51
|
+
"types": "./dist/handlers/index.d.ts",
|
|
52
|
+
"bun": "./dist/handlers/index.js",
|
|
53
|
+
"node": "./dist/node/handlers/index.mjs",
|
|
54
|
+
"browser": "./dist/browser/handlers/index.js",
|
|
55
|
+
"default": "./dist/handlers/index.js"
|
|
56
|
+
},
|
|
57
|
+
"./handlers/policy-safe-knowledge-assistant.handlers": {
|
|
58
|
+
"types": "./dist/handlers/policy-safe-knowledge-assistant.handlers.d.ts",
|
|
59
|
+
"bun": "./dist/handlers/policy-safe-knowledge-assistant.handlers.js",
|
|
60
|
+
"node": "./dist/node/handlers/policy-safe-knowledge-assistant.handlers.mjs",
|
|
61
|
+
"browser": "./dist/browser/handlers/policy-safe-knowledge-assistant.handlers.js",
|
|
62
|
+
"default": "./dist/handlers/policy-safe-knowledge-assistant.handlers.js"
|
|
63
|
+
},
|
|
64
|
+
"./orchestrator/buildAnswer": {
|
|
65
|
+
"types": "./dist/orchestrator/buildAnswer.d.ts",
|
|
66
|
+
"bun": "./dist/orchestrator/buildAnswer.js",
|
|
67
|
+
"node": "./dist/node/orchestrator/buildAnswer.mjs",
|
|
68
|
+
"browser": "./dist/browser/orchestrator/buildAnswer.js",
|
|
69
|
+
"default": "./dist/orchestrator/buildAnswer.js"
|
|
70
|
+
},
|
|
71
|
+
"./policy-safe-knowledge-assistant.feature": {
|
|
72
|
+
"types": "./dist/policy-safe-knowledge-assistant.feature.d.ts",
|
|
73
|
+
"bun": "./dist/policy-safe-knowledge-assistant.feature.js",
|
|
74
|
+
"node": "./dist/node/policy-safe-knowledge-assistant.feature.mjs",
|
|
75
|
+
"browser": "./dist/browser/policy-safe-knowledge-assistant.feature.js",
|
|
76
|
+
"default": "./dist/policy-safe-knowledge-assistant.feature.js"
|
|
77
|
+
},
|
|
78
|
+
"./seed": {
|
|
79
|
+
"types": "./dist/seed/index.d.ts",
|
|
80
|
+
"bun": "./dist/seed/index.js",
|
|
81
|
+
"node": "./dist/node/seed/index.mjs",
|
|
82
|
+
"browser": "./dist/browser/seed/index.js",
|
|
83
|
+
"default": "./dist/seed/index.js"
|
|
84
|
+
},
|
|
85
|
+
"./seed/fixtures": {
|
|
86
|
+
"types": "./dist/seed/fixtures.d.ts",
|
|
87
|
+
"bun": "./dist/seed/fixtures.js",
|
|
88
|
+
"node": "./dist/node/seed/fixtures.mjs",
|
|
89
|
+
"browser": "./dist/browser/seed/fixtures.js",
|
|
90
|
+
"default": "./dist/seed/fixtures.js"
|
|
91
|
+
},
|
|
92
|
+
"./seed/index": {
|
|
93
|
+
"types": "./dist/seed/index.d.ts",
|
|
94
|
+
"bun": "./dist/seed/index.js",
|
|
95
|
+
"node": "./dist/node/seed/index.mjs",
|
|
96
|
+
"browser": "./dist/browser/seed/index.js",
|
|
97
|
+
"default": "./dist/seed/index.js"
|
|
98
|
+
},
|
|
99
|
+
"./seeders": {
|
|
100
|
+
"types": "./dist/seeders/index.d.ts",
|
|
101
|
+
"bun": "./dist/seeders/index.js",
|
|
102
|
+
"node": "./dist/node/seeders/index.mjs",
|
|
103
|
+
"browser": "./dist/browser/seeders/index.js",
|
|
104
|
+
"default": "./dist/seeders/index.js"
|
|
105
|
+
},
|
|
106
|
+
"./seeders/index": {
|
|
107
|
+
"types": "./dist/seeders/index.d.ts",
|
|
108
|
+
"bun": "./dist/seeders/index.js",
|
|
109
|
+
"node": "./dist/node/seeders/index.mjs",
|
|
110
|
+
"browser": "./dist/browser/seeders/index.js",
|
|
111
|
+
"default": "./dist/seeders/index.js"
|
|
112
|
+
},
|
|
113
|
+
"./ui": {
|
|
114
|
+
"types": "./dist/ui/index.d.ts",
|
|
115
|
+
"bun": "./dist/ui/index.js",
|
|
116
|
+
"node": "./dist/node/ui/index.mjs",
|
|
117
|
+
"browser": "./dist/browser/ui/index.js",
|
|
118
|
+
"default": "./dist/ui/index.js"
|
|
119
|
+
},
|
|
120
|
+
"./ui/hooks/usePolicySafeKnowledgeAssistant": {
|
|
121
|
+
"types": "./dist/ui/hooks/usePolicySafeKnowledgeAssistant.d.ts",
|
|
122
|
+
"bun": "./dist/ui/hooks/usePolicySafeKnowledgeAssistant.js",
|
|
123
|
+
"node": "./dist/node/ui/hooks/usePolicySafeKnowledgeAssistant.mjs",
|
|
124
|
+
"browser": "./dist/browser/ui/hooks/usePolicySafeKnowledgeAssistant.js",
|
|
125
|
+
"default": "./dist/ui/hooks/usePolicySafeKnowledgeAssistant.js"
|
|
126
|
+
},
|
|
127
|
+
"./ui/index": {
|
|
128
|
+
"types": "./dist/ui/index.d.ts",
|
|
129
|
+
"bun": "./dist/ui/index.js",
|
|
130
|
+
"node": "./dist/node/ui/index.mjs",
|
|
131
|
+
"browser": "./dist/browser/ui/index.js",
|
|
132
|
+
"default": "./dist/ui/index.js"
|
|
133
|
+
},
|
|
134
|
+
"./ui/PolicySafeKnowledgeAssistantDashboard": {
|
|
135
|
+
"types": "./dist/ui/PolicySafeKnowledgeAssistantDashboard.d.ts",
|
|
136
|
+
"bun": "./dist/ui/PolicySafeKnowledgeAssistantDashboard.js",
|
|
137
|
+
"node": "./dist/node/ui/PolicySafeKnowledgeAssistantDashboard.mjs",
|
|
138
|
+
"browser": "./dist/browser/ui/PolicySafeKnowledgeAssistantDashboard.js",
|
|
139
|
+
"default": "./dist/ui/PolicySafeKnowledgeAssistantDashboard.js"
|
|
140
|
+
}
|
|
27
141
|
},
|
|
28
142
|
"scripts": {
|
|
29
143
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|
|
@@ -41,25 +155,25 @@
|
|
|
41
155
|
"typecheck": "tsc --noEmit"
|
|
42
156
|
},
|
|
43
157
|
"dependencies": {
|
|
44
|
-
"@contractspec/example.kb-update-pipeline": "1.
|
|
45
|
-
"@contractspec/example.learning-patterns": "1.
|
|
46
|
-
"@contractspec/example.locale-jurisdiction-gate": "1.
|
|
47
|
-
"@contractspec/example.versioned-knowledge-base": "1.
|
|
48
|
-
"@contractspec/lib.contracts": "1.
|
|
49
|
-
"@contractspec/lib.design-system": "1.
|
|
50
|
-
"@contractspec/lib.example-shared-ui": "1.
|
|
51
|
-
"@contractspec/lib.runtime-sandbox": "0.
|
|
52
|
-
"@contractspec/lib.ui-kit-web": "1.
|
|
53
|
-
"@contractspec/module.learning-journey": "1.
|
|
158
|
+
"@contractspec/example.kb-update-pipeline": "1.60.0",
|
|
159
|
+
"@contractspec/example.learning-patterns": "1.60.0",
|
|
160
|
+
"@contractspec/example.locale-jurisdiction-gate": "1.60.0",
|
|
161
|
+
"@contractspec/example.versioned-knowledge-base": "1.60.0",
|
|
162
|
+
"@contractspec/lib.contracts": "1.60.0",
|
|
163
|
+
"@contractspec/lib.design-system": "1.60.0",
|
|
164
|
+
"@contractspec/lib.example-shared-ui": "1.14.0",
|
|
165
|
+
"@contractspec/lib.runtime-sandbox": "0.15.0",
|
|
166
|
+
"@contractspec/lib.ui-kit-web": "1.60.0",
|
|
167
|
+
"@contractspec/module.learning-journey": "1.60.0",
|
|
54
168
|
"react": "19.2.4",
|
|
55
169
|
"react-dom": "19.2.4"
|
|
56
170
|
},
|
|
57
171
|
"devDependencies": {
|
|
58
|
-
"@contractspec/tool.typescript": "1.
|
|
172
|
+
"@contractspec/tool.typescript": "1.60.0",
|
|
59
173
|
"typescript": "^5.9.3",
|
|
60
174
|
"@types/react": "^19.2.13",
|
|
61
175
|
"@types/react-dom": "^19.2.2",
|
|
62
|
-
"@contractspec/tool.bun": "1.
|
|
176
|
+
"@contractspec/tool.bun": "1.59.0"
|
|
63
177
|
},
|
|
64
178
|
"publishConfig": {
|
|
65
179
|
"access": "public",
|