@apholdings/jensen-web-ui 0.57.1 → 0.57.2
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 +47 -3
- package/README.md +1 -1
- package/package.json +11 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,47 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.57.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @apholdings/jensen-ai@0.57.2
|
|
8
|
+
- @apholdings/jensen-tui@0.57.2
|
|
9
|
+
|
|
10
|
+
## 0.1.3
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Promote `JENSEN.md` as the preferred project instruction file, keep `AGENTS.md` as a supported fallback with deprecation diagnostics, and update the related interactive messaging and documentation.
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
- @apholdings/jensen-ai@0.1.3
|
|
17
|
+
- @apholdings/jensen-tui@0.1.3
|
|
18
|
+
|
|
19
|
+
## 0.1.0
|
|
20
|
+
|
|
21
|
+
### Minor Changes
|
|
22
|
+
|
|
23
|
+
- 2f3d37c: chore: version bump all packages
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- a55721e: Normalize package publish metadata and internal dependency ranges for the Changesets-based release flow.
|
|
28
|
+
- Updated dependencies [a55721e]
|
|
29
|
+
- Updated dependencies [2f3d37c]
|
|
30
|
+
- @apholdings/jensen-ai@0.1.0
|
|
31
|
+
- @apholdings/jensen-tui@0.1.0
|
|
32
|
+
|
|
3
33
|
## [Unreleased]
|
|
4
34
|
|
|
35
|
+
## [0.0.1] - 2026-03-15
|
|
36
|
+
|
|
37
|
+
- Reset version for Jensen Code fork
|
|
38
|
+
- Updated branding to Jensen Code
|
|
39
|
+
- Synchronized with monorepo baseline
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## Inherited Upstream History (pi-mono)
|
|
44
|
+
|
|
5
45
|
## [0.57.1] - 2026-03-07
|
|
6
46
|
|
|
7
47
|
## [0.57.0] - 2026-03-07
|
|
@@ -231,6 +271,7 @@
|
|
|
231
271
|
- **`createStreamFn`**: Creates a stream function with CORS proxy support. Reads proxy settings on each call for dynamic configuration.
|
|
232
272
|
|
|
233
273
|
- **Default `streamFn` and `getApiKey`**: `AgentInterface` now sets sensible defaults if not provided:
|
|
274
|
+
|
|
234
275
|
- `streamFn`: Uses `createStreamFn` with proxy settings from storage
|
|
235
276
|
- `getApiKey`: Reads from `providerKeys` storage
|
|
236
277
|
|
|
@@ -249,6 +290,7 @@
|
|
|
249
290
|
### Migration Guide
|
|
250
291
|
|
|
251
292
|
**Before (0.30.x):**
|
|
293
|
+
|
|
252
294
|
```typescript
|
|
253
295
|
import { Agent, ProviderTransport, type AppMessage } from '@apholdings/jensen-web-ui';
|
|
254
296
|
|
|
@@ -259,20 +301,22 @@ const agent = new Agent({
|
|
|
259
301
|
```
|
|
260
302
|
|
|
261
303
|
**After:**
|
|
304
|
+
|
|
262
305
|
```typescript
|
|
263
|
-
import { Agent, type AgentMessage } from
|
|
264
|
-
import { defaultConvertToLlm } from
|
|
306
|
+
import { Agent, type AgentMessage } from "@apholdings/jensen-agent-core";
|
|
307
|
+
import { defaultConvertToLlm } from "@apholdings/jensen-web-ui";
|
|
265
308
|
|
|
266
309
|
const agent = new Agent({
|
|
267
310
|
convertToLlm: (messages: AgentMessage[]) => {
|
|
268
311
|
// Extend defaultConvertToLlm for custom types
|
|
269
312
|
return defaultConvertToLlm(messages);
|
|
270
|
-
}
|
|
313
|
+
},
|
|
271
314
|
});
|
|
272
315
|
// AgentInterface will set streamFn and getApiKey defaults automatically
|
|
273
316
|
```
|
|
274
317
|
|
|
275
318
|
**Custom message types:**
|
|
319
|
+
|
|
276
320
|
```typescript
|
|
277
321
|
// Before: declaration merging on CustomMessages
|
|
278
322
|
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.57.
|
|
3
|
+
"version": "0.57.2",
|
|
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",
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
"check": "biome check --write --error-on-warnings . && tsc --noEmit && cd example && biome check --write --error-on-warnings . && tsc --noEmit"
|
|
18
18
|
},
|
|
19
19
|
"publishConfig": {
|
|
20
|
-
"access": "public"
|
|
20
|
+
"access": "public",
|
|
21
|
+
"provenance": true
|
|
21
22
|
},
|
|
22
23
|
"dependencies": {
|
|
23
24
|
"@lmstudio/sdk": "^1.5.0",
|
|
@@ -27,8 +28,8 @@
|
|
|
27
28
|
"ollama": "^0.6.0",
|
|
28
29
|
"pdfjs-dist": "5.4.394",
|
|
29
30
|
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz",
|
|
30
|
-
"@apholdings/jensen-tui": "
|
|
31
|
-
"@apholdings/jensen-ai": "
|
|
31
|
+
"@apholdings/jensen-tui": "0.57.2",
|
|
32
|
+
"@apholdings/jensen-ai": "0.57.2"
|
|
32
33
|
},
|
|
33
34
|
"peerDependencies": {
|
|
34
35
|
"@mariozechner/mini-lit": "^0.2.0",
|
|
@@ -50,5 +51,10 @@
|
|
|
50
51
|
"mini-lit"
|
|
51
52
|
],
|
|
52
53
|
"author": "AP Holdings",
|
|
53
|
-
"license": "MIT"
|
|
54
|
+
"license": "MIT",
|
|
55
|
+
"repository": {
|
|
56
|
+
"type": "git",
|
|
57
|
+
"url": "git+https://github.com/apholdings/jensen-code.git",
|
|
58
|
+
"directory": "packages/web-ui"
|
|
59
|
+
}
|
|
54
60
|
}
|