@apholdings/jensen-web-ui 0.1.0 → 0.57.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/CHANGELOG.md +3 -31
- package/README.md +1 -1
- package/package.json +4 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,31 +1,7 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.0
|
|
4
|
-
|
|
5
|
-
### Minor Changes
|
|
6
|
-
|
|
7
|
-
- 2f3d37c: chore: version bump all packages
|
|
8
|
-
|
|
9
|
-
### Patch Changes
|
|
10
|
-
|
|
11
|
-
- a55721e: Normalize package publish metadata and internal dependency ranges for the Changesets-based release flow.
|
|
12
|
-
- Updated dependencies [a55721e]
|
|
13
|
-
- Updated dependencies [2f3d37c]
|
|
14
|
-
- @apholdings/jensen-ai@0.1.0
|
|
15
|
-
- @apholdings/jensen-tui@0.1.0
|
|
16
|
-
|
|
17
3
|
## [Unreleased]
|
|
18
4
|
|
|
19
|
-
## [0.0.1] - 2026-03-15
|
|
20
|
-
|
|
21
|
-
- Reset version for Jensen Code fork
|
|
22
|
-
- Updated branding to Jensen Code
|
|
23
|
-
- Synchronized with monorepo baseline
|
|
24
|
-
|
|
25
|
-
---
|
|
26
|
-
|
|
27
|
-
## Inherited Upstream History (pi-mono)
|
|
28
|
-
|
|
29
5
|
## [0.57.1] - 2026-03-07
|
|
30
6
|
|
|
31
7
|
## [0.57.0] - 2026-03-07
|
|
@@ -255,7 +231,6 @@
|
|
|
255
231
|
- **`createStreamFn`**: Creates a stream function with CORS proxy support. Reads proxy settings on each call for dynamic configuration.
|
|
256
232
|
|
|
257
233
|
- **Default `streamFn` and `getApiKey`**: `AgentInterface` now sets sensible defaults if not provided:
|
|
258
|
-
|
|
259
234
|
- `streamFn`: Uses `createStreamFn` with proxy settings from storage
|
|
260
235
|
- `getApiKey`: Reads from `providerKeys` storage
|
|
261
236
|
|
|
@@ -274,7 +249,6 @@
|
|
|
274
249
|
### Migration Guide
|
|
275
250
|
|
|
276
251
|
**Before (0.30.x):**
|
|
277
|
-
|
|
278
252
|
```typescript
|
|
279
253
|
import { Agent, ProviderTransport, type AppMessage } from '@apholdings/jensen-web-ui';
|
|
280
254
|
|
|
@@ -285,22 +259,20 @@ const agent = new Agent({
|
|
|
285
259
|
```
|
|
286
260
|
|
|
287
261
|
**After:**
|
|
288
|
-
|
|
289
262
|
```typescript
|
|
290
|
-
import { Agent, type AgentMessage } from
|
|
291
|
-
import { defaultConvertToLlm } from
|
|
263
|
+
import { Agent, type AgentMessage } from '@apholdings/jensen-agent-core';
|
|
264
|
+
import { defaultConvertToLlm } from '@apholdings/jensen-web-ui';
|
|
292
265
|
|
|
293
266
|
const agent = new Agent({
|
|
294
267
|
convertToLlm: (messages: AgentMessage[]) => {
|
|
295
268
|
// Extend defaultConvertToLlm for custom types
|
|
296
269
|
return defaultConvertToLlm(messages);
|
|
297
|
-
}
|
|
270
|
+
}
|
|
298
271
|
});
|
|
299
272
|
// AgentInterface will set streamFn and getApiKey defaults automatically
|
|
300
273
|
```
|
|
301
274
|
|
|
302
275
|
**Custom message types:**
|
|
303
|
-
|
|
304
276
|
```typescript
|
|
305
277
|
// Before: declaration merging on CustomMessages
|
|
306
278
|
declare module "@apholdings/jensen-web-ui" {
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apholdings/jensen-web-ui",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.57.1",
|
|
4
4
|
"description": "Reusable web UI components for AI chat interfaces powered by @apholdings/jensen-ai",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"ollama": "^0.6.0",
|
|
28
28
|
"pdfjs-dist": "5.4.394",
|
|
29
29
|
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz",
|
|
30
|
-
"@apholdings/jensen-tui": "0.
|
|
31
|
-
"@apholdings/jensen-ai": "0.1
|
|
30
|
+
"@apholdings/jensen-tui": "^0.0.4",
|
|
31
|
+
"@apholdings/jensen-ai": "^0.0.1"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"@mariozechner/mini-lit": "^0.2.0",
|
|
@@ -50,10 +50,5 @@
|
|
|
50
50
|
"mini-lit"
|
|
51
51
|
],
|
|
52
52
|
"author": "AP Holdings",
|
|
53
|
-
"license": "MIT"
|
|
54
|
-
"repository": {
|
|
55
|
-
"type": "git",
|
|
56
|
-
"url": "https://github.com/apholdings/jensen-code",
|
|
57
|
-
"directory": "packages/web-ui"
|
|
58
|
-
}
|
|
53
|
+
"license": "MIT"
|
|
59
54
|
}
|