@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.
package/dist/backend/index.js
CHANGED
|
@@ -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.
|
|
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
|
@@ -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.
|
|
27
|
+
const VERSION = "0.5.7";
|
|
28
28
|
|
|
29
29
|
const program = new Command();
|
|
30
30
|
program
|