@hiai-gg/docsmint 0.5.6 → 0.5.7

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.
@@ -226452,7 +226452,7 @@ async function invalidateDocListCache(userId) {
226452
226452
  }
226453
226453
  }
226454
226454
  async function invalidateDocCache(docId) {
226455
- const pattern = `${SINGLE_PREFIX}*:${docId}`;
226455
+ const pattern = `${SINGLE_PREFIX}*:${docId}:scope:*`;
226456
226456
  try {
226457
226457
  let cursor = "0";
226458
226458
  do {
@@ -234279,7 +234279,7 @@ var swaggerConfig = {
234279
234279
  },
234280
234280
  info: {
234281
234281
  title: "DocsMint API",
234282
- version: "0.5.6",
234282
+ version: "0.5.7",
234283
234283
  description: "Self-hosted AI-first documentation platform. Full-text + semantic search, version history, sharing, and folder organization.",
234284
234284
  contact: { name: "HiAi-gg", url: "https://github.com/HiAi-gg/docsmint" },
234285
234285
  license: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hiai-gg/docsmint",
3
- "version": "0.5.6",
3
+ "version": "0.5.7",
4
4
  "type": "module",
5
5
  "browser": {
6
6
  "./dist/backend-launcher.js": false,
@@ -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.5.6";
27
+ const VERSION = "0.5.7";
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.5.6",
38
+ version: "0.5.7",
39
39
  });
40
40
 
41
41
  /**