@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/dist/backend/index.js
CHANGED
|
@@ -214361,7 +214361,7 @@ var swaggerConfig = {
|
|
|
214361
214361
|
documentation: {
|
|
214362
214362
|
info: {
|
|
214363
214363
|
title: "DocsMint API",
|
|
214364
|
-
version: "0.4.
|
|
214364
|
+
version: "0.4.5",
|
|
214365
214365
|
description: "Self-hosted AI-first documentation platform. Full-text + semantic search, version history, sharing, and folder organization.",
|
|
214366
214366
|
contact: { name: "HiAi-gg", url: "https://github.com/HiAi-gg/docsmint" },
|
|
214367
214367
|
license: {
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export type AccountRuntimeCleanup = Readonly<{
|
|
2
|
+
removeCollaborationState(actorUserId: string, signal?: AbortSignal): Promise<number>;
|
|
3
|
+
clearAccountRedisState(actorUserId: string, signal?: AbortSignal): Promise<number>;
|
|
4
|
+
close(): Promise<void>;
|
|
5
|
+
}>;
|
|
6
|
+
export declare function createAccountRuntimeCleanup(options: {
|
|
7
|
+
redisUrl: string;
|
|
8
|
+
databaseUrl: string;
|
|
9
|
+
}): AccountRuntimeCleanup;
|