@hiai-gg/docsmint 0.4.6 → 0.4.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/backend/src/lib/api-key-facade.ts +15 -0
- package/dist/backend/index.js +1 -1
- package/dist/frontend/{HiaiDocsExtensionProvider-DHWLzRUu.js → HiaiDocsExtensionProvider-CMiTXi2J.js} +1 -1
- package/dist/frontend/{SettingsDialog-LyZUxxku.js → SettingsDialog-BB7h7GWw.js} +1 -1
- package/dist/frontend/{Sidebar-BsJsD1mJ.js → Sidebar-fbtYC3qs.js} +241 -225
- package/dist/frontend/app-shell.js +4 -4
- package/dist/frontend/components/settings.js +1 -1
- package/dist/frontend/components/sidebar.js +1 -1
- package/dist/frontend/{context-BMD6XTPe.js → context-KLiM3QQ0.js} +1 -0
- package/dist/frontend/dashboard.js +1 -1
- package/dist/frontend/extension.d.ts +2 -1
- package/dist/frontend/extension.js +1 -1
- package/dist/frontend/search.js +1 -1
- package/dist/frontend/shared-document.js +1 -1
- package/dist/frontend-ssr/app-shell.js +4 -4
- package/dist/frontend-ssr/assets/{HiaiDocsExtensionProvider-DAM-lX4R.js → HiaiDocsExtensionProvider-B_MrN08c.js} +1 -1
- package/dist/frontend-ssr/assets/{SettingsDialog-Dg97vv83.js → SettingsDialog-C2SMWJL8.js} +1 -1
- package/dist/frontend-ssr/assets/{Sidebar-CrDk_HYY.js → Sidebar-DKqmwreh.js} +38 -11
- package/dist/frontend-ssr/assets/{context-jz1GGEUi.js → context-BtCMqdVe.js} +1 -0
- package/dist/frontend-ssr/components/settings.js +1 -1
- package/dist/frontend-ssr/components/sidebar.js +1 -1
- package/dist/frontend-ssr/dashboard.js +1 -1
- package/dist/frontend-ssr/extension.js +1 -1
- package/dist/frontend-ssr/search.js +1 -1
- package/dist/frontend-ssr/shared-document.js +1 -1
- package/package.json +6 -1
- package/packages/cli/src/index.ts +1 -1
- package/packages/mcp-server/src/index.ts +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Server-only credential lifecycle facade for product hosts.
|
|
3
|
+
*
|
|
4
|
+
* DocsMint OSS remains the sole owner of key generation, hashing, encrypted
|
|
5
|
+
* category secrets, revocation, and verification. Downstream hosts may only
|
|
6
|
+
* add their own target overlay after calling these functions.
|
|
7
|
+
*/
|
|
8
|
+
export {
|
|
9
|
+
buildCategoryApiKeyScopes,
|
|
10
|
+
createApiKey as issueApiKey,
|
|
11
|
+
GLOBAL_API_SCOPE,
|
|
12
|
+
revealCategoryApiKey,
|
|
13
|
+
revokeApiKey,
|
|
14
|
+
validateApiKey as verifyApiKey,
|
|
15
|
+
} from "./api-keys";
|
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.7",
|
|
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: {
|
|
@@ -10,7 +10,7 @@ import { r as ce, t as le } from "./auth-client-Cygmp1I2.js";
|
|
|
10
10
|
import { a as ue, r as de } from "./settings-DSrUl4hW.js";
|
|
11
11
|
import { a as k, i as A, n as j, o as M, s as N, t as P } from "./api-keys-CpkrA8rD.js";
|
|
12
12
|
import { i as F } from "./categories-Drnns7N6.js";
|
|
13
|
-
import { t as fe } from "./context-
|
|
13
|
+
import { t as fe } from "./context-KLiM3QQ0.js";
|
|
14
14
|
import { t as pe } from "./resolve-BG4HgzpN.js";
|
|
15
15
|
import { n as I, t as L } from "./db-ByrlYfaI.js";
|
|
16
16
|
import { a as R, t as z } from "./identity-DyWeNzu_.js";
|