@hiai-gg/docsmint 0.4.4 → 0.4.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hiai-gg/docsmint",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "type": "module",
5
5
  "browser": {
6
6
  "./dist/backend-launcher.js": false,
@@ -10,7 +10,8 @@
10
10
  "./dist/pipeline-cancellation.js": false,
11
11
  "./dist/storage-quota.js": false,
12
12
  "./dist/workspace.js": false,
13
- "./dist/backend-pipeline-cancellation.js": false
13
+ "./dist/backend-pipeline-cancellation.js": false,
14
+ "./dist/backend-account-runtime-cleanup.js": false
14
15
  },
15
16
  "license": "Apache-2.0",
16
17
  "description": "The lightweight, AI-native self-hosted knowledge base — built-in RAG, hybrid semantic search, and a clean REST API for AI agents.",
@@ -306,6 +307,11 @@
306
307
  "browser": "./dist/server-only-browser-entry.js",
307
308
  "import": "./dist/backend-pipeline-cancellation.js",
308
309
  "types": "./dist/backend-pipeline-cancellation.d.ts"
310
+ },
311
+ "./backend/account-runtime-cleanup": {
312
+ "browser": "./dist/server-only-browser-entry.js",
313
+ "import": "./dist/backend-account-runtime-cleanup.js",
314
+ "types": "./dist/backend-account-runtime-cleanup.d.ts"
309
315
  }
310
316
  },
311
317
  "bin": {
@@ -352,12 +358,12 @@
352
358
  "@modelcontextprotocol/sdk": "^1.12.1",
353
359
  "bullmq": "^5.80.2",
354
360
  "commander": "^13.1.0",
361
+ "ioredis": "^5.11.1",
355
362
  "zod": "^4.0.0"
356
363
  },
357
364
  "peerDependencies": {
358
365
  "drizzle-orm": "^0.45.2",
359
366
  "postgres": "^3.4.9",
360
- "ioredis": "^5.4.0",
361
367
  "@aws-sdk/client-s3": "^3.0.0",
362
368
  "pino": "^10.0.0",
363
369
  "@sveltejs/kit": "^2.68.0",
@@ -370,9 +376,6 @@
370
376
  "postgres": {
371
377
  "optional": true
372
378
  },
373
- "ioredis": {
374
- "optional": true
375
- },
376
379
  "@aws-sdk/client-s3": {
377
380
  "optional": true
378
381
  },
@@ -24,7 +24,7 @@ import { registerSearch } from "./commands/search.js";
24
24
  import { registerSnapshot } from "./commands/snapshot.js";
25
25
  import { registerUpdate } from "./commands/update.js";
26
26
 
27
- const VERSION = "0.4.4";
27
+ const VERSION = "0.4.5";
28
28
 
29
29
  const program = new Command();
30
30
  program
@@ -35,7 +35,7 @@ interface McpToolResult {
35
35
 
36
36
  const server = new McpServer({
37
37
  name: "hiai-docs",
38
- version: "0.4.4",
38
+ version: "0.4.5",
39
39
  });
40
40
 
41
41
  /**