@crowi/api 2.0.0-alpha.0 → 2.0.0-alpha.1
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/hono/handlers/access-token.d.ts +55 -55
- package/dist/hono/handlers/activation.d.ts +27 -27
- package/dist/hono/handlers/admin/app.d.ts +26 -26
- package/dist/hono/handlers/admin/auth.d.ts +24 -24
- package/dist/hono/handlers/admin/mail.d.ts +30 -30
- package/dist/hono/handlers/admin/plugins.d.ts +112 -112
- package/dist/hono/handlers/admin/search.d.ts +21 -21
- package/dist/hono/handlers/admin/security.d.ts +24 -24
- package/dist/hono/handlers/admin/storage.d.ts +19 -19
- package/dist/hono/handlers/admin/users.d.ts +305 -305
- package/dist/hono/handlers/adminCrypto.d.ts +32 -32
- package/dist/hono/handlers/app.d.ts +11 -8
- package/dist/hono/handlers/app.js +31 -1
- package/dist/hono/handlers/app.js.map +1 -1
- package/dist/hono/handlers/attachment.d.ts +180 -180
- package/dist/hono/handlers/autocomplete.d.ts +45 -45
- package/dist/hono/handlers/backlink.d.ts +33 -33
- package/dist/hono/handlers/bookmark.d.ts +95 -95
- package/dist/hono/handlers/comment.d.ts +55 -55
- package/dist/hono/handlers/draft.d.ts +27 -27
- package/dist/hono/handlers/emailChange.d.ts +25 -25
- package/dist/hono/handlers/installer.d.ts +16 -16
- package/dist/hono/handlers/inviteAccept.d.ts +37 -37
- package/dist/hono/handlers/me.d.ts +92 -92
- package/dist/hono/handlers/notification.d.ts +94 -94
- package/dist/hono/handlers/oauth.d.ts +58 -58
- package/dist/hono/handlers/page-collab.d.ts +20 -20
- package/dist/hono/handlers/page-preview.d.ts +7 -7
- package/dist/hono/handlers/page.d.ts +333 -333
- package/dist/hono/handlers/passwordReset.d.ts +37 -37
- package/dist/hono/handlers/presence.d.ts +44 -44
- package/dist/hono/handlers/revision.d.ts +99 -99
- package/dist/hono/handlers/search.d.ts +64 -64
- package/dist/hono/handlers/tokenAuth.d.ts +80 -80
- package/dist/hono/handlers/user.d.ts +102 -102
- package/dist/hono/handlers/user.js +15 -5
- package/dist/hono/handlers/user.js.map +1 -1
- package/dist/hono/index.d.ts +94 -94
- package/dist/mcp/result.d.ts +15 -0
- package/dist/mcp/result.js +20 -1
- package/dist/mcp/result.js.map +1 -1
- package/dist/mcp/tools/page.js +9 -4
- package/dist/mcp/tools/page.js.map +1 -1
- package/dist/migration/migrations/index.js +2 -0
- package/dist/migration/migrations/index.js.map +1 -1
- package/dist/migration/migrations/relocate-reserved-api-paths.d.ts +3 -0
- package/dist/migration/migrations/relocate-reserved-api-paths.js +135 -0
- package/dist/migration/migrations/relocate-reserved-api-paths.js.map +1 -0
- package/dist/models/page.js +9 -2
- package/dist/models/page.js.map +1 -1
- package/dist/util/replace-url.d.ts +85 -0
- package/dist/util/replace-url.js +251 -0
- package/dist/util/replace-url.js.map +1 -0
- package/package.json +6 -4
- package/public/images/file-not-found.png +0 -0
- package/views/mail/activation.mjml +9 -0
- package/views/mail/activation.text +13 -0
- package/views/mail/adminApprovalPending.mjml +7 -0
- package/views/mail/adminApprovalPending.text +11 -0
- package/views/mail/emailChange.mjml +9 -0
- package/views/mail/emailChange.text +13 -0
- package/views/mail/invite.mjml +9 -0
- package/views/mail/invite.text +13 -0
- package/views/mail/layout.mjml +36 -0
- package/views/mail/passwordChanged.mjml +4 -0
- package/views/mail/passwordChanged.text +9 -0
- package/views/mail/passwordReset.mjml +9 -0
- package/views/mail/passwordReset.text +13 -0
- package/views/mail/test.mjml +2 -0
- package/views/mail/test.text +7 -0
|
@@ -6,18 +6,13 @@ export declare const registerAdminCryptoRoutes: <E extends OpenAPIHono<CrowiHono
|
|
|
6
6
|
$get: {
|
|
7
7
|
input: {};
|
|
8
8
|
output: {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
ns: string;
|
|
14
|
-
key: string;
|
|
15
|
-
present: boolean;
|
|
16
|
-
encrypted: boolean;
|
|
17
|
-
}[];
|
|
9
|
+
error: {
|
|
10
|
+
code: "INTERNAL_ERROR";
|
|
11
|
+
message: "Internal server error";
|
|
12
|
+
};
|
|
18
13
|
};
|
|
19
14
|
outputFormat: "json";
|
|
20
|
-
status:
|
|
15
|
+
status: 500;
|
|
21
16
|
} | {
|
|
22
17
|
input: {};
|
|
23
18
|
output: {
|
|
@@ -32,24 +27,29 @@ export declare const registerAdminCryptoRoutes: <E extends OpenAPIHono<CrowiHono
|
|
|
32
27
|
} | {
|
|
33
28
|
input: {};
|
|
34
29
|
output: {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
30
|
+
encryptionConfigured: boolean;
|
|
31
|
+
unencryptedCount: number;
|
|
32
|
+
encryptedCount: number;
|
|
33
|
+
entries: {
|
|
34
|
+
ns: string;
|
|
35
|
+
key: string;
|
|
36
|
+
present: boolean;
|
|
37
|
+
encrypted: boolean;
|
|
38
|
+
}[];
|
|
40
39
|
};
|
|
41
40
|
outputFormat: "json";
|
|
42
|
-
status:
|
|
41
|
+
status: 200;
|
|
43
42
|
} | {
|
|
44
43
|
input: {};
|
|
45
44
|
output: {
|
|
46
45
|
error: {
|
|
47
|
-
code: "
|
|
48
|
-
message: "
|
|
46
|
+
code: "ADMIN_REQUIRED";
|
|
47
|
+
message: "Admin permission required";
|
|
48
|
+
redirectTo?: string | undefined;
|
|
49
49
|
};
|
|
50
50
|
};
|
|
51
51
|
outputFormat: "json";
|
|
52
|
-
status:
|
|
52
|
+
status: 403;
|
|
53
53
|
};
|
|
54
54
|
};
|
|
55
55
|
} & {
|
|
@@ -57,12 +57,13 @@ export declare const registerAdminCryptoRoutes: <E extends OpenAPIHono<CrowiHono
|
|
|
57
57
|
$post: {
|
|
58
58
|
input: {};
|
|
59
59
|
output: {
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
60
|
+
error: {
|
|
61
|
+
code: "INTERNAL_ERROR";
|
|
62
|
+
message: "Internal server error";
|
|
63
|
+
};
|
|
63
64
|
};
|
|
64
65
|
outputFormat: "json";
|
|
65
|
-
status:
|
|
66
|
+
status: 500;
|
|
66
67
|
} | {
|
|
67
68
|
input: {};
|
|
68
69
|
output: {
|
|
@@ -77,24 +78,23 @@ export declare const registerAdminCryptoRoutes: <E extends OpenAPIHono<CrowiHono
|
|
|
77
78
|
} | {
|
|
78
79
|
input: {};
|
|
79
80
|
output: {
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
redirectTo?: string | undefined;
|
|
84
|
-
};
|
|
81
|
+
rewritten: number;
|
|
82
|
+
alreadyEncrypted: number;
|
|
83
|
+
missing: number;
|
|
85
84
|
};
|
|
86
85
|
outputFormat: "json";
|
|
87
|
-
status:
|
|
86
|
+
status: 200;
|
|
88
87
|
} | {
|
|
89
88
|
input: {};
|
|
90
89
|
output: {
|
|
91
90
|
error: {
|
|
92
|
-
code: "
|
|
93
|
-
message: "
|
|
91
|
+
code: "ADMIN_REQUIRED";
|
|
92
|
+
message: "Admin permission required";
|
|
93
|
+
redirectTo?: string | undefined;
|
|
94
94
|
};
|
|
95
95
|
};
|
|
96
96
|
outputFormat: "json";
|
|
97
|
-
status:
|
|
97
|
+
status: 403;
|
|
98
98
|
} | {
|
|
99
99
|
input: {};
|
|
100
100
|
output: {
|
|
@@ -4,14 +4,6 @@ import type { CrowiHonoBindings } from '../app';
|
|
|
4
4
|
export declare const registerAppRoutes: <E extends OpenAPIHono<CrowiHonoBindings>>(app: E, crowi: Crowi) => OpenAPIHono<CrowiHonoBindings, {
|
|
5
5
|
"/app/info": {
|
|
6
6
|
$get: {
|
|
7
|
-
input: {};
|
|
8
|
-
output: {
|
|
9
|
-
title: string | null;
|
|
10
|
-
confidential: string | null;
|
|
11
|
-
};
|
|
12
|
-
outputFormat: "json";
|
|
13
|
-
status: 200;
|
|
14
|
-
} | {
|
|
15
7
|
input: {};
|
|
16
8
|
output: {
|
|
17
9
|
error: {
|
|
@@ -21,6 +13,17 @@ export declare const registerAppRoutes: <E extends OpenAPIHono<CrowiHonoBindings
|
|
|
21
13
|
};
|
|
22
14
|
outputFormat: "json";
|
|
23
15
|
status: 500;
|
|
16
|
+
} | {
|
|
17
|
+
input: {};
|
|
18
|
+
output: {
|
|
19
|
+
title: string | null;
|
|
20
|
+
confidential: string | null;
|
|
21
|
+
version: string;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
capabilities: string[];
|
|
24
|
+
};
|
|
25
|
+
outputFormat: "json";
|
|
26
|
+
status: 200;
|
|
24
27
|
};
|
|
25
28
|
};
|
|
26
29
|
}, "/">;
|
|
@@ -16,6 +16,27 @@ exports.registerAppRoutes = void 0;
|
|
|
16
16
|
* §11).
|
|
17
17
|
*/
|
|
18
18
|
const api_contract_1 = require("@crowi/api-contract");
|
|
19
|
+
/**
|
|
20
|
+
* Build the coarse capability list advertised at `GET /app/info`. Static
|
|
21
|
+
* always-on subsystems plus cheap, in-memory dynamic probes:
|
|
22
|
+
* - `search` when a search driver is active (`getSearcher() !== null`);
|
|
23
|
+
* otherwise `GET /search` returns 503 and the CLI can pre-empt it.
|
|
24
|
+
* - `collab` always (Hocuspocus is library-attached unconditionally);
|
|
25
|
+
* `collab:redis` additionally when `REDIS_URL` is set so multi-instance
|
|
26
|
+
* pub/sub is wired up.
|
|
27
|
+
* No I/O — both probes read state already held on the Crowi instance.
|
|
28
|
+
*/
|
|
29
|
+
const buildCapabilities = (crowi) => {
|
|
30
|
+
const capabilities = [...api_contract_1.STATIC_CAPABILITIES];
|
|
31
|
+
if (crowi.getSearcher() != null) {
|
|
32
|
+
capabilities.push('search');
|
|
33
|
+
}
|
|
34
|
+
capabilities.push('collab');
|
|
35
|
+
if (crowi.redis != null) {
|
|
36
|
+
capabilities.push('collab:redis');
|
|
37
|
+
}
|
|
38
|
+
return capabilities;
|
|
39
|
+
};
|
|
19
40
|
const registerAppRoutes = (app, crowi) => app.openapi(api_contract_1.getAppInfoRoute, (c) => {
|
|
20
41
|
const config = crowi.getConfig();
|
|
21
42
|
const raw = config?.crowi?.['app:title'];
|
|
@@ -28,7 +49,16 @@ const registerAppRoutes = (app, crowi) => app.openapi(api_contract_1.getAppInfoR
|
|
|
28
49
|
// Empty/missing collapses to null (banner hidden).
|
|
29
50
|
const confidentialRaw = config?.crowi?.['app:confidential'];
|
|
30
51
|
const confidential = confidentialRaw ? confidentialRaw : null;
|
|
31
|
-
|
|
52
|
+
// Version-skew / feature-detection signal for the @crowi/cli end-user
|
|
53
|
+
// CLI (and any other client). `crowi.version` is the @crowi/api
|
|
54
|
+
// package.json version read at boot.
|
|
55
|
+
return c.json({
|
|
56
|
+
title,
|
|
57
|
+
confidential,
|
|
58
|
+
version: crowi.version,
|
|
59
|
+
apiVersion: api_contract_1.API_SURFACE_VERSION,
|
|
60
|
+
capabilities: buildCapabilities(crowi),
|
|
61
|
+
}, 200);
|
|
32
62
|
});
|
|
33
63
|
exports.registerAppRoutes = registerAppRoutes;
|
|
34
64
|
//# sourceMappingURL=app.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.js","sourceRoot":"","sources":["../../../src/hono/handlers/app.ts"],"names":[],"mappings":";;;AAAA;;;;;;;;;;;;;GAaG;AACH,
|
|
1
|
+
{"version":3,"file":"app.js","sourceRoot":"","sources":["../../../src/hono/handlers/app.ts"],"names":[],"mappings":";;;AAAA;;;;;;;;;;;;;GAaG;AACH,sDAAgG;AAOhG;;;;;;;;;GASG;AACH,MAAM,iBAAiB,GAAG,CAAC,KAAY,EAAY,EAAE;IACnD,MAAM,YAAY,GAAa,CAAC,GAAG,kCAAmB,CAAC,CAAC;IACxD,IAAI,KAAK,CAAC,WAAW,EAAE,IAAI,IAAI,EAAE,CAAC;QAChC,YAAY,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;IAC9B,CAAC;IACD,YAAY,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;IAC5B,IAAI,KAAK,CAAC,KAAK,IAAI,IAAI,EAAE,CAAC;QACxB,YAAY,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;IACpC,CAAC;IACD,OAAO,YAAY,CAAC;AACtB,CAAC,CAAC;AAEK,MAAM,iBAAiB,GAAG,CAA2C,GAAM,EAAE,KAAY,EAAE,EAAE,CAClG,GAAG,CAAC,OAAO,CAAC,8BAAe,EAAE,CAAC,CAAC,EAAE,EAAE;IACjC,MAAM,MAAM,GAAG,KAAK,CAAC,SAAS,EAAE,CAAC;IACjC,MAAM,GAAG,GAAG,MAAM,EAAE,KAAK,EAAE,CAAC,WAAW,CAAuB,CAAC;IAC/D,kEAAkE;IAClE,oEAAoE;IACpE,4DAA4D;IAC5D,MAAM,KAAK,GAAG,GAAG,IAAI,GAAG,KAAK,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC;IAClD,kEAAkE;IAClE,qEAAqE;IACrE,mDAAmD;IACnD,MAAM,eAAe,GAAG,MAAM,EAAE,KAAK,EAAE,CAAC,kBAAkB,CAAuB,CAAC;IAClF,MAAM,YAAY,GAAG,eAAe,CAAC,CAAC,CAAC,eAAe,CAAC,CAAC,CAAC,IAAI,CAAC;IAC9D,sEAAsE;IACtE,gEAAgE;IAChE,qCAAqC;IACrC,OAAO,CAAC,CAAC,IAAI,CACX;QACE,KAAK;QACL,YAAY;QACZ,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,UAAU,EAAE,kCAAmB;QAC/B,YAAY,EAAE,iBAAiB,CAAC,KAAK,CAAC;KACvC,EACD,GAAG,CACJ,CAAC;AACJ,CAAC,CAAC,CAAC;AA1BQ,QAAA,iBAAiB,qBA0BzB"}
|