@karmaniverous/jeeves-server 3.5.1 → 3.5.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/.tsbuildinfo +1 -1
- package/CHANGELOG.md +12 -1
- package/client/package.json +0 -1
- package/dist/src/cli/index.js +2 -0
- package/package.json +2 -3
- package/src/cli/index.ts +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,11 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
|
|
4
4
|
|
|
5
|
-
#### [3.5.
|
|
5
|
+
#### [3.5.2](https://github.com/karmaniverous/jeeves-server/compare/service/3.5.1...3.5.2)
|
|
6
|
+
|
|
7
|
+
- [53] Fix pre-existing lint + knip errors (Commander type resolution) [`#140`](https://github.com/karmaniverous/jeeves-server/pull/140)
|
|
8
|
+
- [53] Integrate core v0.4.6: init() before descriptor.run() + knip fixes [`#139`](https://github.com/karmaniverous/jeeves-server/pull/139)
|
|
9
|
+
- [53] chore: bump core to v0.4.6 (init before run) + fix knip issues [`e5f466a`](https://github.com/karmaniverous/jeeves-server/commit/e5f466a0df574e1052601fc99b0110aaf2136666)
|
|
10
|
+
- [53] chore: bump core to v0.4.6 (init before run) + fix knip issues [`cc2adb6`](https://github.com/karmaniverous/jeeves-server/commit/cc2adb6c4d2a540a145bdcb04a712b2f6b77fa9e)
|
|
11
|
+
- chore: release @karmaniverous/jeeves-server-openclaw v0.6.1 [`b0a4bec`](https://github.com/karmaniverous/jeeves-server/commit/b0a4bec47f5141d13e59070683f7d459e82a9faa)
|
|
12
|
+
|
|
13
|
+
#### [service/3.5.1](https://github.com/karmaniverous/jeeves-server/compare/service/3.5.0...service/3.5.1)
|
|
14
|
+
|
|
15
|
+
> 31 March 2026
|
|
6
16
|
|
|
7
17
|
- [51] Integrate descriptor.run from core v0.4.5 [`#137`](https://github.com/karmaniverous/jeeves-server/pull/137)
|
|
8
18
|
- chore: release @karmaniverous/jeeves-server-openclaw v0.6.0 [`bfa7501`](https://github.com/karmaniverous/jeeves-server/commit/bfa7501f80fb1c2c8a29f7e548b4092f1bc44395)
|
|
9
19
|
- [51] feat: integrate descriptor.run from core v0.4.5 [`74bebef`](https://github.com/karmaniverous/jeeves-server/commit/74bebef9adfe433621c1f4dd1b4877634ee65f6f)
|
|
20
|
+
- chore: release @karmaniverous/jeeves-server v3.5.1 [`fd56acc`](https://github.com/karmaniverous/jeeves-server/commit/fd56accdacacc97bf47f18e489df6d87b8d6be35)
|
|
10
21
|
|
|
11
22
|
#### [service/3.5.0](https://github.com/karmaniverous/jeeves-server/compare/service/3.4.2...service/3.5.0)
|
|
12
23
|
|
package/client/package.json
CHANGED
|
@@ -28,7 +28,6 @@
|
|
|
28
28
|
"@codemirror/state": "^6.6.0",
|
|
29
29
|
"@codemirror/theme-one-dark": "^6.1.3",
|
|
30
30
|
"@codemirror/view": "^6.40.0",
|
|
31
|
-
"@karmaniverous/jeeves": "^0.4.5",
|
|
32
31
|
"@panzoom/panzoom": "^4.6.1",
|
|
33
32
|
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
34
33
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
package/dist/src/cli/index.js
CHANGED
|
@@ -10,5 +10,7 @@
|
|
|
10
10
|
*/
|
|
11
11
|
import { createServiceCli } from '@karmaniverous/jeeves';
|
|
12
12
|
import { serverDescriptor } from '../descriptor.js';
|
|
13
|
+
// Type assertion: core's bundled .d.ts doesn't fully resolve the Command
|
|
14
|
+
// return type for eslint, but the runtime value is a Commander instance.
|
|
13
15
|
const cli = createServiceCli(serverDescriptor);
|
|
14
16
|
cli.parse();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@karmaniverous/jeeves-server",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.2",
|
|
4
4
|
"description": "Secure file browser, markdown viewer, and webhook gateway with PDF/DOCX export and expiring share links",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fastify",
|
|
@@ -46,10 +46,9 @@
|
|
|
46
46
|
"author": "Jeeves",
|
|
47
47
|
"license": "MIT",
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@commander-js/extra-typings": "^14.0.0",
|
|
50
49
|
"@fastify/cookie": "^11.0.2",
|
|
51
50
|
"@fastify/static": "^8.3.0",
|
|
52
|
-
"@karmaniverous/jeeves": "^0.4.
|
|
51
|
+
"@karmaniverous/jeeves": "^0.4.6",
|
|
53
52
|
"@karmaniverous/jsonmap": "^0.3.1",
|
|
54
53
|
"@mermaid-js/mermaid-cli": "^11.12.0",
|
|
55
54
|
"@turbodocx/html-to-docx": "^1.1.0",
|
package/src/cli/index.ts
CHANGED
|
@@ -13,6 +13,10 @@ import { createServiceCli } from '@karmaniverous/jeeves';
|
|
|
13
13
|
|
|
14
14
|
import { serverDescriptor } from '../descriptor.js';
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
// Type assertion: core's bundled .d.ts doesn't fully resolve the Command
|
|
17
|
+
// return type for eslint, but the runtime value is a Commander instance.
|
|
18
|
+
const cli = createServiceCli(serverDescriptor) as {
|
|
19
|
+
parse: (argv?: string[]) => void;
|
|
20
|
+
};
|
|
17
21
|
|
|
18
22
|
cli.parse();
|