@contractspec/example.policy-safe-knowledge-assistant 3.6.0 → 3.7.1
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 +37 -0
- package/package.json +37 -107
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 noBundle=false
|
|
6
|
-
Bundled 14 modules in
|
|
6
|
+
Bundled 14 modules in 39ms
|
|
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 37ms
|
|
|
21
21
|
./policy-safe-knowledge-assistant.feature.js 2.67 KB (entry point)
|
|
22
22
|
|
|
23
23
|
[contractspec-bun-build] transpile target=node root=src entries=14 noBundle=false
|
|
24
|
-
Bundled 14 modules in
|
|
24
|
+
Bundled 14 modules in 26ms
|
|
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 34ms
|
|
|
39
39
|
./policy-safe-knowledge-assistant.feature.js 2.66 KB (entry point)
|
|
40
40
|
|
|
41
41
|
[contractspec-bun-build] transpile target=browser root=src entries=14 noBundle=false
|
|
42
|
-
Bundled 14 modules in
|
|
42
|
+
Bundled 14 modules in 22ms
|
|
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,42 @@
|
|
|
1
1
|
# @contractspec/example.policy-safe-knowledge-assistant
|
|
2
2
|
|
|
3
|
+
## 3.7.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5eb8626: fix: package exports
|
|
8
|
+
- Updated dependencies [5eb8626]
|
|
9
|
+
- @contractspec/example.locale-jurisdiction-gate@3.7.1
|
|
10
|
+
- @contractspec/example.versioned-knowledge-base@3.7.1
|
|
11
|
+
- @contractspec/example.kb-update-pipeline@3.7.1
|
|
12
|
+
- @contractspec/example.learning-patterns@3.7.1
|
|
13
|
+
- @contractspec/module.learning-journey@3.7.1
|
|
14
|
+
- @contractspec/lib.example-shared-ui@6.0.1
|
|
15
|
+
- @contractspec/lib.runtime-sandbox@2.7.1
|
|
16
|
+
- @contractspec/lib.contracts-spec@3.7.1
|
|
17
|
+
- @contractspec/lib.design-system@3.7.1
|
|
18
|
+
- @contractspec/lib.ui-kit-web@3.7.1
|
|
19
|
+
|
|
20
|
+
## 3.7.0
|
|
21
|
+
|
|
22
|
+
### Minor Changes
|
|
23
|
+
|
|
24
|
+
- f88df2d: feat: add expo mobile app example
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- Updated dependencies [f88df2d]
|
|
29
|
+
- @contractspec/example.locale-jurisdiction-gate@3.7.0
|
|
30
|
+
- @contractspec/example.versioned-knowledge-base@3.7.0
|
|
31
|
+
- @contractspec/example.kb-update-pipeline@3.7.0
|
|
32
|
+
- @contractspec/example.learning-patterns@3.7.0
|
|
33
|
+
- @contractspec/module.learning-journey@3.7.0
|
|
34
|
+
- @contractspec/lib.example-shared-ui@6.0.0
|
|
35
|
+
- @contractspec/lib.runtime-sandbox@2.7.0
|
|
36
|
+
- @contractspec/lib.contracts-spec@3.7.0
|
|
37
|
+
- @contractspec/lib.design-system@3.7.0
|
|
38
|
+
- @contractspec/lib.ui-kit-web@3.7.0
|
|
39
|
+
|
|
3
40
|
## 3.6.0
|
|
4
41
|
|
|
5
42
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,141 +1,106 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.policy-safe-knowledge-assistant",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.1",
|
|
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
8
|
".": {
|
|
9
9
|
"types": "./dist/index.d.ts",
|
|
10
|
+
"browser": "./dist/browser/index.js",
|
|
10
11
|
"bun": "./dist/index.js",
|
|
11
12
|
"node": "./dist/node/index.js",
|
|
12
|
-
"browser": "./dist/browser/index.js",
|
|
13
13
|
"default": "./dist/index.js"
|
|
14
14
|
},
|
|
15
15
|
"./docs": {
|
|
16
16
|
"types": "./dist/docs/index.d.ts",
|
|
17
|
-
"bun": "./dist/docs/index.js",
|
|
18
|
-
"node": "./dist/node/docs/index.js",
|
|
19
17
|
"browser": "./dist/browser/docs/index.js",
|
|
20
|
-
"default": "./dist/docs/index.js"
|
|
21
|
-
},
|
|
22
|
-
"./docs/index": {
|
|
23
|
-
"types": "./dist/docs/index.d.ts",
|
|
24
18
|
"bun": "./dist/docs/index.js",
|
|
25
19
|
"node": "./dist/node/docs/index.js",
|
|
26
|
-
"browser": "./dist/browser/docs/index.js",
|
|
27
20
|
"default": "./dist/docs/index.js"
|
|
28
21
|
},
|
|
29
22
|
"./docs/policy-safe-knowledge-assistant.docblock": {
|
|
30
23
|
"types": "./dist/docs/policy-safe-knowledge-assistant.docblock.d.ts",
|
|
24
|
+
"browser": "./dist/browser/docs/policy-safe-knowledge-assistant.docblock.js",
|
|
31
25
|
"bun": "./dist/docs/policy-safe-knowledge-assistant.docblock.js",
|
|
32
26
|
"node": "./dist/node/docs/policy-safe-knowledge-assistant.docblock.js",
|
|
33
|
-
"browser": "./dist/browser/docs/policy-safe-knowledge-assistant.docblock.js",
|
|
34
27
|
"default": "./dist/docs/policy-safe-knowledge-assistant.docblock.js"
|
|
35
28
|
},
|
|
36
29
|
"./example": {
|
|
37
30
|
"types": "./dist/example.d.ts",
|
|
31
|
+
"browser": "./dist/browser/example.js",
|
|
38
32
|
"bun": "./dist/example.js",
|
|
39
33
|
"node": "./dist/node/example.js",
|
|
40
|
-
"browser": "./dist/browser/example.js",
|
|
41
34
|
"default": "./dist/example.js"
|
|
42
35
|
},
|
|
43
36
|
"./handlers": {
|
|
44
37
|
"types": "./dist/handlers/index.d.ts",
|
|
45
|
-
"bun": "./dist/handlers/index.js",
|
|
46
|
-
"node": "./dist/node/handlers/index.js",
|
|
47
38
|
"browser": "./dist/browser/handlers/index.js",
|
|
48
|
-
"default": "./dist/handlers/index.js"
|
|
49
|
-
},
|
|
50
|
-
"./handlers/index": {
|
|
51
|
-
"types": "./dist/handlers/index.d.ts",
|
|
52
39
|
"bun": "./dist/handlers/index.js",
|
|
53
40
|
"node": "./dist/node/handlers/index.js",
|
|
54
|
-
"browser": "./dist/browser/handlers/index.js",
|
|
55
41
|
"default": "./dist/handlers/index.js"
|
|
56
42
|
},
|
|
57
43
|
"./handlers/policy-safe-knowledge-assistant.handlers": {
|
|
58
44
|
"types": "./dist/handlers/policy-safe-knowledge-assistant.handlers.d.ts",
|
|
45
|
+
"browser": "./dist/browser/handlers/policy-safe-knowledge-assistant.handlers.js",
|
|
59
46
|
"bun": "./dist/handlers/policy-safe-knowledge-assistant.handlers.js",
|
|
60
47
|
"node": "./dist/node/handlers/policy-safe-knowledge-assistant.handlers.js",
|
|
61
|
-
"browser": "./dist/browser/handlers/policy-safe-knowledge-assistant.handlers.js",
|
|
62
48
|
"default": "./dist/handlers/policy-safe-knowledge-assistant.handlers.js"
|
|
63
49
|
},
|
|
64
50
|
"./orchestrator/buildAnswer": {
|
|
65
51
|
"types": "./dist/orchestrator/buildAnswer.d.ts",
|
|
52
|
+
"browser": "./dist/browser/orchestrator/buildAnswer.js",
|
|
66
53
|
"bun": "./dist/orchestrator/buildAnswer.js",
|
|
67
54
|
"node": "./dist/node/orchestrator/buildAnswer.js",
|
|
68
|
-
"browser": "./dist/browser/orchestrator/buildAnswer.js",
|
|
69
55
|
"default": "./dist/orchestrator/buildAnswer.js"
|
|
70
56
|
},
|
|
71
57
|
"./policy-safe-knowledge-assistant.feature": {
|
|
72
58
|
"types": "./dist/policy-safe-knowledge-assistant.feature.d.ts",
|
|
59
|
+
"browser": "./dist/browser/policy-safe-knowledge-assistant.feature.js",
|
|
73
60
|
"bun": "./dist/policy-safe-knowledge-assistant.feature.js",
|
|
74
61
|
"node": "./dist/node/policy-safe-knowledge-assistant.feature.js",
|
|
75
|
-
"browser": "./dist/browser/policy-safe-knowledge-assistant.feature.js",
|
|
76
62
|
"default": "./dist/policy-safe-knowledge-assistant.feature.js"
|
|
77
63
|
},
|
|
78
64
|
"./seed": {
|
|
79
65
|
"types": "./dist/seed/index.d.ts",
|
|
66
|
+
"browser": "./dist/browser/seed/index.js",
|
|
80
67
|
"bun": "./dist/seed/index.js",
|
|
81
68
|
"node": "./dist/node/seed/index.js",
|
|
82
|
-
"browser": "./dist/browser/seed/index.js",
|
|
83
69
|
"default": "./dist/seed/index.js"
|
|
84
70
|
},
|
|
85
71
|
"./seed/fixtures": {
|
|
86
72
|
"types": "./dist/seed/fixtures.d.ts",
|
|
73
|
+
"browser": "./dist/browser/seed/fixtures.js",
|
|
87
74
|
"bun": "./dist/seed/fixtures.js",
|
|
88
75
|
"node": "./dist/node/seed/fixtures.js",
|
|
89
|
-
"browser": "./dist/browser/seed/fixtures.js",
|
|
90
76
|
"default": "./dist/seed/fixtures.js"
|
|
91
77
|
},
|
|
92
|
-
"./seed/index": {
|
|
93
|
-
"types": "./dist/seed/index.d.ts",
|
|
94
|
-
"bun": "./dist/seed/index.js",
|
|
95
|
-
"node": "./dist/node/seed/index.js",
|
|
96
|
-
"browser": "./dist/browser/seed/index.js",
|
|
97
|
-
"default": "./dist/seed/index.js"
|
|
98
|
-
},
|
|
99
78
|
"./seeders": {
|
|
100
79
|
"types": "./dist/seeders/index.d.ts",
|
|
101
|
-
"bun": "./dist/seeders/index.js",
|
|
102
|
-
"node": "./dist/node/seeders/index.js",
|
|
103
80
|
"browser": "./dist/browser/seeders/index.js",
|
|
104
|
-
"default": "./dist/seeders/index.js"
|
|
105
|
-
},
|
|
106
|
-
"./seeders/index": {
|
|
107
|
-
"types": "./dist/seeders/index.d.ts",
|
|
108
81
|
"bun": "./dist/seeders/index.js",
|
|
109
82
|
"node": "./dist/node/seeders/index.js",
|
|
110
|
-
"browser": "./dist/browser/seeders/index.js",
|
|
111
83
|
"default": "./dist/seeders/index.js"
|
|
112
84
|
},
|
|
113
85
|
"./ui": {
|
|
114
86
|
"types": "./dist/ui/index.d.ts",
|
|
87
|
+
"browser": "./dist/browser/ui/index.js",
|
|
115
88
|
"bun": "./dist/ui/index.js",
|
|
116
89
|
"node": "./dist/node/ui/index.js",
|
|
117
|
-
"browser": "./dist/browser/ui/index.js",
|
|
118
90
|
"default": "./dist/ui/index.js"
|
|
119
91
|
},
|
|
120
92
|
"./ui/hooks/usePolicySafeKnowledgeAssistant": {
|
|
121
93
|
"types": "./dist/ui/hooks/usePolicySafeKnowledgeAssistant.d.ts",
|
|
94
|
+
"browser": "./dist/browser/ui/hooks/usePolicySafeKnowledgeAssistant.js",
|
|
122
95
|
"bun": "./dist/ui/hooks/usePolicySafeKnowledgeAssistant.js",
|
|
123
96
|
"node": "./dist/node/ui/hooks/usePolicySafeKnowledgeAssistant.js",
|
|
124
|
-
"browser": "./dist/browser/ui/hooks/usePolicySafeKnowledgeAssistant.js",
|
|
125
97
|
"default": "./dist/ui/hooks/usePolicySafeKnowledgeAssistant.js"
|
|
126
98
|
},
|
|
127
|
-
"./ui/index": {
|
|
128
|
-
"types": "./dist/ui/index.d.ts",
|
|
129
|
-
"bun": "./dist/ui/index.js",
|
|
130
|
-
"node": "./dist/node/ui/index.js",
|
|
131
|
-
"browser": "./dist/browser/ui/index.js",
|
|
132
|
-
"default": "./dist/ui/index.js"
|
|
133
|
-
},
|
|
134
99
|
"./ui/PolicySafeKnowledgeAssistantDashboard": {
|
|
135
100
|
"types": "./dist/ui/PolicySafeKnowledgeAssistantDashboard.d.ts",
|
|
101
|
+
"browser": "./dist/browser/ui/PolicySafeKnowledgeAssistantDashboard.js",
|
|
136
102
|
"bun": "./dist/ui/PolicySafeKnowledgeAssistantDashboard.js",
|
|
137
103
|
"node": "./dist/node/ui/PolicySafeKnowledgeAssistantDashboard.js",
|
|
138
|
-
"browser": "./dist/browser/ui/PolicySafeKnowledgeAssistantDashboard.js",
|
|
139
104
|
"default": "./dist/ui/PolicySafeKnowledgeAssistantDashboard.js"
|
|
140
105
|
}
|
|
141
106
|
},
|
|
@@ -155,160 +120,125 @@
|
|
|
155
120
|
"typecheck": "tsc --noEmit"
|
|
156
121
|
},
|
|
157
122
|
"dependencies": {
|
|
158
|
-
"@contractspec/example.kb-update-pipeline": "3.
|
|
159
|
-
"@contractspec/example.learning-patterns": "3.
|
|
160
|
-
"@contractspec/example.locale-jurisdiction-gate": "3.
|
|
161
|
-
"@contractspec/example.versioned-knowledge-base": "3.
|
|
162
|
-
"@contractspec/lib.contracts-spec": "3.
|
|
163
|
-
"@contractspec/lib.design-system": "3.
|
|
164
|
-
"@contractspec/lib.example-shared-ui": "
|
|
165
|
-
"@contractspec/lib.runtime-sandbox": "2.
|
|
166
|
-
"@contractspec/lib.ui-kit-web": "3.
|
|
167
|
-
"@contractspec/module.learning-journey": "3.
|
|
168
|
-
"react": "19.2.
|
|
169
|
-
"react-dom": "19.2.
|
|
123
|
+
"@contractspec/example.kb-update-pipeline": "3.7.1",
|
|
124
|
+
"@contractspec/example.learning-patterns": "3.7.1",
|
|
125
|
+
"@contractspec/example.locale-jurisdiction-gate": "3.7.1",
|
|
126
|
+
"@contractspec/example.versioned-knowledge-base": "3.7.1",
|
|
127
|
+
"@contractspec/lib.contracts-spec": "3.7.1",
|
|
128
|
+
"@contractspec/lib.design-system": "3.7.1",
|
|
129
|
+
"@contractspec/lib.example-shared-ui": "6.0.1",
|
|
130
|
+
"@contractspec/lib.runtime-sandbox": "2.7.1",
|
|
131
|
+
"@contractspec/lib.ui-kit-web": "3.7.1",
|
|
132
|
+
"@contractspec/module.learning-journey": "3.7.1",
|
|
133
|
+
"react": "19.2.0",
|
|
134
|
+
"react-dom": "19.2.0"
|
|
170
135
|
},
|
|
171
136
|
"devDependencies": {
|
|
172
|
-
"@contractspec/tool.typescript": "3.
|
|
137
|
+
"@contractspec/tool.typescript": "3.7.1",
|
|
173
138
|
"typescript": "^5.9.3",
|
|
174
139
|
"@types/react": "^19.2.14",
|
|
175
140
|
"@types/react-dom": "^19.2.2",
|
|
176
|
-
"@contractspec/tool.bun": "3.
|
|
141
|
+
"@contractspec/tool.bun": "3.7.1"
|
|
177
142
|
},
|
|
178
143
|
"publishConfig": {
|
|
179
144
|
"access": "public",
|
|
180
145
|
"exports": {
|
|
181
146
|
".": {
|
|
182
147
|
"types": "./dist/index.d.ts",
|
|
148
|
+
"browser": "./dist/browser/index.js",
|
|
183
149
|
"bun": "./dist/index.js",
|
|
184
150
|
"node": "./dist/node/index.js",
|
|
185
|
-
"browser": "./dist/browser/index.js",
|
|
186
151
|
"default": "./dist/index.js"
|
|
187
152
|
},
|
|
188
153
|
"./docs": {
|
|
189
154
|
"types": "./dist/docs/index.d.ts",
|
|
190
|
-
"bun": "./dist/docs/index.js",
|
|
191
|
-
"node": "./dist/node/docs/index.js",
|
|
192
155
|
"browser": "./dist/browser/docs/index.js",
|
|
193
|
-
"default": "./dist/docs/index.js"
|
|
194
|
-
},
|
|
195
|
-
"./docs/index": {
|
|
196
|
-
"types": "./dist/docs/index.d.ts",
|
|
197
156
|
"bun": "./dist/docs/index.js",
|
|
198
157
|
"node": "./dist/node/docs/index.js",
|
|
199
|
-
"browser": "./dist/browser/docs/index.js",
|
|
200
158
|
"default": "./dist/docs/index.js"
|
|
201
159
|
},
|
|
202
160
|
"./docs/policy-safe-knowledge-assistant.docblock": {
|
|
203
161
|
"types": "./dist/docs/policy-safe-knowledge-assistant.docblock.d.ts",
|
|
162
|
+
"browser": "./dist/browser/docs/policy-safe-knowledge-assistant.docblock.js",
|
|
204
163
|
"bun": "./dist/docs/policy-safe-knowledge-assistant.docblock.js",
|
|
205
164
|
"node": "./dist/node/docs/policy-safe-knowledge-assistant.docblock.js",
|
|
206
|
-
"browser": "./dist/browser/docs/policy-safe-knowledge-assistant.docblock.js",
|
|
207
165
|
"default": "./dist/docs/policy-safe-knowledge-assistant.docblock.js"
|
|
208
166
|
},
|
|
209
167
|
"./example": {
|
|
210
168
|
"types": "./dist/example.d.ts",
|
|
169
|
+
"browser": "./dist/browser/example.js",
|
|
211
170
|
"bun": "./dist/example.js",
|
|
212
171
|
"node": "./dist/node/example.js",
|
|
213
|
-
"browser": "./dist/browser/example.js",
|
|
214
172
|
"default": "./dist/example.js"
|
|
215
173
|
},
|
|
216
174
|
"./handlers": {
|
|
217
175
|
"types": "./dist/handlers/index.d.ts",
|
|
218
|
-
"bun": "./dist/handlers/index.js",
|
|
219
|
-
"node": "./dist/node/handlers/index.js",
|
|
220
176
|
"browser": "./dist/browser/handlers/index.js",
|
|
221
|
-
"default": "./dist/handlers/index.js"
|
|
222
|
-
},
|
|
223
|
-
"./handlers/index": {
|
|
224
|
-
"types": "./dist/handlers/index.d.ts",
|
|
225
177
|
"bun": "./dist/handlers/index.js",
|
|
226
178
|
"node": "./dist/node/handlers/index.js",
|
|
227
|
-
"browser": "./dist/browser/handlers/index.js",
|
|
228
179
|
"default": "./dist/handlers/index.js"
|
|
229
180
|
},
|
|
230
181
|
"./handlers/policy-safe-knowledge-assistant.handlers": {
|
|
231
182
|
"types": "./dist/handlers/policy-safe-knowledge-assistant.handlers.d.ts",
|
|
183
|
+
"browser": "./dist/browser/handlers/policy-safe-knowledge-assistant.handlers.js",
|
|
232
184
|
"bun": "./dist/handlers/policy-safe-knowledge-assistant.handlers.js",
|
|
233
185
|
"node": "./dist/node/handlers/policy-safe-knowledge-assistant.handlers.js",
|
|
234
|
-
"browser": "./dist/browser/handlers/policy-safe-knowledge-assistant.handlers.js",
|
|
235
186
|
"default": "./dist/handlers/policy-safe-knowledge-assistant.handlers.js"
|
|
236
187
|
},
|
|
237
188
|
"./orchestrator/buildAnswer": {
|
|
238
189
|
"types": "./dist/orchestrator/buildAnswer.d.ts",
|
|
190
|
+
"browser": "./dist/browser/orchestrator/buildAnswer.js",
|
|
239
191
|
"bun": "./dist/orchestrator/buildAnswer.js",
|
|
240
192
|
"node": "./dist/node/orchestrator/buildAnswer.js",
|
|
241
|
-
"browser": "./dist/browser/orchestrator/buildAnswer.js",
|
|
242
193
|
"default": "./dist/orchestrator/buildAnswer.js"
|
|
243
194
|
},
|
|
244
195
|
"./policy-safe-knowledge-assistant.feature": {
|
|
245
196
|
"types": "./dist/policy-safe-knowledge-assistant.feature.d.ts",
|
|
197
|
+
"browser": "./dist/browser/policy-safe-knowledge-assistant.feature.js",
|
|
246
198
|
"bun": "./dist/policy-safe-knowledge-assistant.feature.js",
|
|
247
199
|
"node": "./dist/node/policy-safe-knowledge-assistant.feature.js",
|
|
248
|
-
"browser": "./dist/browser/policy-safe-knowledge-assistant.feature.js",
|
|
249
200
|
"default": "./dist/policy-safe-knowledge-assistant.feature.js"
|
|
250
201
|
},
|
|
251
202
|
"./seed": {
|
|
252
203
|
"types": "./dist/seed/index.d.ts",
|
|
204
|
+
"browser": "./dist/browser/seed/index.js",
|
|
253
205
|
"bun": "./dist/seed/index.js",
|
|
254
206
|
"node": "./dist/node/seed/index.js",
|
|
255
|
-
"browser": "./dist/browser/seed/index.js",
|
|
256
207
|
"default": "./dist/seed/index.js"
|
|
257
208
|
},
|
|
258
209
|
"./seed/fixtures": {
|
|
259
210
|
"types": "./dist/seed/fixtures.d.ts",
|
|
211
|
+
"browser": "./dist/browser/seed/fixtures.js",
|
|
260
212
|
"bun": "./dist/seed/fixtures.js",
|
|
261
213
|
"node": "./dist/node/seed/fixtures.js",
|
|
262
|
-
"browser": "./dist/browser/seed/fixtures.js",
|
|
263
214
|
"default": "./dist/seed/fixtures.js"
|
|
264
215
|
},
|
|
265
|
-
"./seed/index": {
|
|
266
|
-
"types": "./dist/seed/index.d.ts",
|
|
267
|
-
"bun": "./dist/seed/index.js",
|
|
268
|
-
"node": "./dist/node/seed/index.js",
|
|
269
|
-
"browser": "./dist/browser/seed/index.js",
|
|
270
|
-
"default": "./dist/seed/index.js"
|
|
271
|
-
},
|
|
272
216
|
"./seeders": {
|
|
273
217
|
"types": "./dist/seeders/index.d.ts",
|
|
274
|
-
"bun": "./dist/seeders/index.js",
|
|
275
|
-
"node": "./dist/node/seeders/index.js",
|
|
276
218
|
"browser": "./dist/browser/seeders/index.js",
|
|
277
|
-
"default": "./dist/seeders/index.js"
|
|
278
|
-
},
|
|
279
|
-
"./seeders/index": {
|
|
280
|
-
"types": "./dist/seeders/index.d.ts",
|
|
281
219
|
"bun": "./dist/seeders/index.js",
|
|
282
220
|
"node": "./dist/node/seeders/index.js",
|
|
283
|
-
"browser": "./dist/browser/seeders/index.js",
|
|
284
221
|
"default": "./dist/seeders/index.js"
|
|
285
222
|
},
|
|
286
223
|
"./ui": {
|
|
287
224
|
"types": "./dist/ui/index.d.ts",
|
|
225
|
+
"browser": "./dist/browser/ui/index.js",
|
|
288
226
|
"bun": "./dist/ui/index.js",
|
|
289
227
|
"node": "./dist/node/ui/index.js",
|
|
290
|
-
"browser": "./dist/browser/ui/index.js",
|
|
291
228
|
"default": "./dist/ui/index.js"
|
|
292
229
|
},
|
|
293
230
|
"./ui/hooks/usePolicySafeKnowledgeAssistant": {
|
|
294
231
|
"types": "./dist/ui/hooks/usePolicySafeKnowledgeAssistant.d.ts",
|
|
232
|
+
"browser": "./dist/browser/ui/hooks/usePolicySafeKnowledgeAssistant.js",
|
|
295
233
|
"bun": "./dist/ui/hooks/usePolicySafeKnowledgeAssistant.js",
|
|
296
234
|
"node": "./dist/node/ui/hooks/usePolicySafeKnowledgeAssistant.js",
|
|
297
|
-
"browser": "./dist/browser/ui/hooks/usePolicySafeKnowledgeAssistant.js",
|
|
298
235
|
"default": "./dist/ui/hooks/usePolicySafeKnowledgeAssistant.js"
|
|
299
236
|
},
|
|
300
|
-
"./ui/index": {
|
|
301
|
-
"types": "./dist/ui/index.d.ts",
|
|
302
|
-
"bun": "./dist/ui/index.js",
|
|
303
|
-
"node": "./dist/node/ui/index.js",
|
|
304
|
-
"browser": "./dist/browser/ui/index.js",
|
|
305
|
-
"default": "./dist/ui/index.js"
|
|
306
|
-
},
|
|
307
237
|
"./ui/PolicySafeKnowledgeAssistantDashboard": {
|
|
308
238
|
"types": "./dist/ui/PolicySafeKnowledgeAssistantDashboard.d.ts",
|
|
239
|
+
"browser": "./dist/browser/ui/PolicySafeKnowledgeAssistantDashboard.js",
|
|
309
240
|
"bun": "./dist/ui/PolicySafeKnowledgeAssistantDashboard.js",
|
|
310
241
|
"node": "./dist/node/ui/PolicySafeKnowledgeAssistantDashboard.js",
|
|
311
|
-
"browser": "./dist/browser/ui/PolicySafeKnowledgeAssistantDashboard.js",
|
|
312
242
|
"default": "./dist/ui/PolicySafeKnowledgeAssistantDashboard.js"
|
|
313
243
|
}
|
|
314
244
|
},
|