@vitnode/core 1.2.0-canary.22 → 1.2.0-canary.24
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/scripts/plugin.d.ts.map +1 -1
- package/dist/scripts/scripts.js +2 -9
- package/dist/scripts/shared/file-utils.d.ts.map +1 -1
- package/dist/src/api/{plugins → adapters}/email/nodemailer.d.ts +1 -1
- package/dist/src/api/adapters/email/nodemailer.d.ts.map +1 -0
- package/dist/src/api/{plugins → adapters}/email/nodemailer.js +1 -1
- package/dist/src/api/{plugins → adapters}/email/resend.d.ts +1 -1
- package/dist/src/api/adapters/email/resend.d.ts.map +1 -0
- package/dist/src/api/{plugins → adapters}/email/resend.js +1 -1
- package/dist/src/api/adapters/sso/discord.d.ts.map +1 -0
- package/dist/src/api/adapters/sso/facebook.d.ts.map +1 -0
- package/dist/src/api/adapters/sso/google.d.ts.map +1 -0
- package/dist/src/api/config.d.ts.map +1 -1
- package/dist/src/api/config.js +6 -5
- package/dist/src/api/lib/logger-middleware.d.ts +8 -0
- package/dist/src/api/lib/logger-middleware.d.ts.map +1 -0
- package/dist/src/api/lib/logger-middleware.js +30 -0
- package/dist/src/api/lib/route.d.ts +1 -1
- package/dist/src/api/lib/route.d.ts.map +1 -1
- package/dist/src/api/lib/route.js +1 -1
- package/dist/src/api/middlewares/{global/global.d.ts → global.middleware.d.ts} +10 -8
- package/dist/src/api/middlewares/global.middleware.d.ts.map +1 -0
- package/dist/src/api/middlewares/global.middleware.js +86 -0
- package/dist/src/api/middlewares/rate-limiter.middleware.d.ts +4 -0
- package/dist/src/api/middlewares/rate-limiter.middleware.d.ts.map +1 -0
- package/dist/src/api/middlewares/rate-limiter.middleware.js +26 -0
- package/dist/src/api/models/device.d.ts +4 -1
- package/dist/src/api/models/device.d.ts.map +1 -1
- package/dist/src/api/models/device.js +21 -14
- package/dist/src/api/models/email.d.ts +1 -2
- package/dist/src/api/models/email.d.ts.map +1 -1
- package/dist/src/api/models/email.js +9 -16
- package/dist/src/api/models/password.d.ts.map +1 -1
- package/dist/src/api/models/password.js +8 -1
- package/dist/src/api/models/session-admin.d.ts +1 -1
- package/dist/src/api/models/session-admin.d.ts.map +1 -1
- package/dist/src/api/models/session-admin.js +40 -16
- package/dist/src/api/models/session.d.ts +1 -1
- package/dist/src/api/models/session.d.ts.map +1 -1
- package/dist/src/api/models/session.js +28 -12
- package/dist/src/api/models/sso.js +1 -1
- package/dist/src/api/models/user/sign-up.d.ts +1 -1
- package/dist/src/api/models/user/sign-up.d.ts.map +1 -1
- package/dist/src/api/models/user/sign-up.js +2 -3
- package/dist/src/api/models/user.d.ts +1 -1
- package/dist/src/api/models/user.d.ts.map +1 -1
- package/dist/src/api/modules/admin/admin.module.d.ts +161 -8
- package/dist/src/api/modules/admin/admin.module.d.ts.map +1 -1
- package/dist/src/api/modules/admin/admin.module.js +3 -1
- package/dist/src/api/modules/admin/debug/debug.admin.module.d.ts +159 -0
- package/dist/src/api/modules/admin/debug/debug.admin.module.d.ts.map +1 -0
- package/dist/src/api/modules/admin/debug/debug.admin.module.js +10 -0
- package/dist/src/api/modules/admin/debug/routes/logs.route.d.ts +160 -0
- package/dist/src/api/modules/admin/debug/routes/logs.route.d.ts.map +1 -0
- package/dist/src/api/modules/admin/debug/routes/logs.route.js +70 -0
- package/dist/src/api/modules/admin/routes/session.route.d.ts +1 -5
- package/dist/src/api/modules/admin/routes/session.route.d.ts.map +1 -1
- package/dist/src/api/modules/admin/routes/session.route.js +0 -4
- package/dist/src/api/modules/admin/users/routes/list.route.d.ts +1 -1
- package/dist/src/api/modules/admin/users/routes/users.route.d.ts +1 -1
- package/dist/src/api/modules/admin/users/users.admin.module.d.ts +1 -1
- package/dist/src/api/modules/middleware/middleware.module.d.ts +1 -1
- package/dist/src/api/modules/middleware/route.d.ts +1 -1
- package/dist/src/api/modules/middleware/route.d.ts.map +1 -1
- package/dist/src/api/modules/middleware/route.js +2 -4
- package/dist/src/api/modules/users/routes/session.route.d.ts +1 -1
- package/dist/src/api/modules/users/routes/sign-in.route.d.ts +1 -1
- package/dist/src/api/modules/users/routes/sign-out.route.d.ts +1 -1
- package/dist/src/api/modules/users/routes/sign-up.route.d.ts +1 -1
- package/dist/src/api/modules/users/routes/test.route.d.ts +1 -1
- package/dist/src/api/modules/users/routes/test.route.d.ts.map +1 -1
- package/dist/src/api/modules/users/routes/test.route.js +8 -0
- package/dist/src/api/modules/users/sso/routes/callback.route.d.ts +1 -1
- package/dist/src/api/modules/users/sso/routes/create-url.route.d.ts +1 -1
- package/dist/src/api/modules/users/sso/sso.module.d.ts +2 -2
- package/dist/src/api/modules/users/users.module.d.ts +7 -7
- package/dist/src/app_admin/core/debug/page.d.ts +11 -0
- package/dist/src/app_admin/core/debug/page.d.ts.map +1 -0
- package/dist/src/app_admin/core/debug/page.js +44 -0
- package/dist/src/app_admin/core/users/page.d.ts +4 -1
- package/dist/src/app_admin/core/users/page.d.ts.map +1 -1
- package/dist/src/app_admin/core/users/page.js +4 -2
- package/dist/src/components/confirm-action/confirm-action-alert-dialog.d.ts +15 -0
- package/dist/src/components/confirm-action/confirm-action-alert-dialog.d.ts.map +1 -0
- package/dist/src/components/confirm-action/confirm-action-alert-dialog.js +41 -0
- package/dist/src/components/confirm-action/content.d.ts +7 -0
- package/dist/src/components/confirm-action/content.d.ts.map +1 -0
- package/dist/src/components/confirm-action/content.js +31 -0
- package/dist/src/components/date-format.d.ts +2 -1
- package/dist/src/components/date-format.d.ts.map +1 -1
- package/dist/src/components/date-format.js +4 -1
- package/dist/src/components/form/auto-form.js +1 -1
- package/dist/src/components/form/fields/combobox-async.d.ts +21 -0
- package/dist/src/components/form/fields/combobox-async.d.ts.map +1 -0
- package/dist/src/components/form/fields/combobox-async.js +115 -0
- package/dist/src/components/form/fields/combobox.d.ts +2 -1
- package/dist/src/components/form/fields/combobox.d.ts.map +1 -1
- package/dist/src/components/form/fields/combobox.js +4 -5
- package/dist/src/components/switchers/langs/language-swietcher.d.ts +5 -0
- package/dist/src/components/switchers/langs/language-swietcher.d.ts.map +1 -0
- package/dist/src/components/switchers/langs/language-swietcher.js +45 -0
- package/dist/src/components/switchers/themes/theme-switcher.d.ts.map +1 -0
- package/dist/src/components/switchers/{theme-switcher.js → themes/theme-switcher.js} +1 -1
- package/dist/src/components/table/content.js +1 -1
- package/dist/src/components/table/data-table.d.ts.map +1 -1
- package/dist/src/components/table/data-table.js +2 -7
- package/dist/src/components/table/pagination.js +3 -3
- package/dist/src/components/ui/alert-dialog.d.ts +7 -2
- package/dist/src/components/ui/alert-dialog.d.ts.map +1 -1
- package/dist/src/components/ui/alert-dialog.js +41 -7
- package/dist/src/components/ui/dialog.d.ts.map +1 -1
- package/dist/src/components/ui/dialog.js +1 -1
- package/dist/src/database/logs.d.ts +116 -0
- package/dist/src/database/logs.d.ts.map +1 -0
- package/dist/src/database/logs.js +18 -0
- package/dist/src/database/sessions.d.ts +19 -0
- package/dist/src/database/sessions.d.ts.map +1 -1
- package/dist/src/database/sessions.js +3 -0
- package/dist/src/lib/fetcher/core.d.ts +16 -0
- package/dist/src/lib/fetcher/core.d.ts.map +1 -0
- package/dist/src/lib/fetcher/core.js +39 -0
- package/dist/src/lib/fetcher/helpers-server.d.ts +3 -0
- package/dist/src/lib/fetcher/helpers-server.d.ts.map +1 -0
- package/dist/src/lib/fetcher/helpers-server.js +18 -0
- package/dist/src/lib/fetcher/helpers.d.ts +0 -1
- package/dist/src/lib/fetcher/helpers.d.ts.map +1 -1
- package/dist/src/lib/fetcher/helpers.js +0 -17
- package/dist/src/lib/fetcher-client.d.ts +9 -0
- package/dist/src/lib/fetcher-client.d.ts.map +1 -0
- package/dist/src/lib/fetcher-client.js +12 -0
- package/dist/src/lib/fetcher.d.ts +3 -1
- package/dist/src/lib/fetcher.d.ts.map +1 -1
- package/dist/src/lib/fetcher.js +15 -33
- package/dist/src/lib/helpers/auto-form.d.ts.map +1 -1
- package/dist/src/lib/helpers/auto-form.js +28 -16
- package/dist/src/lib/helpers/auto-form.test.js +49 -0
- package/dist/src/views/admin/layouts/admin-layout.d.ts.map +1 -1
- package/dist/src/views/admin/layouts/admin-layout.js +5 -1
- package/dist/src/views/admin/layouts/sidebar/nav/item.d.ts.map +1 -1
- package/dist/src/views/admin/layouts/sidebar/nav/item.js +24 -3
- package/dist/src/views/admin/layouts/user-bar/client.d.ts.map +1 -1
- package/dist/src/views/admin/layouts/user-bar/client.js +26 -18
- package/dist/src/views/admin/views/core/dashboard/dashboard-admin-view.js +1 -1
- package/dist/src/views/admin/views/core/debug/actions/clear-cache/clear-cache.d.ts +2 -0
- package/dist/src/views/admin/views/core/debug/actions/clear-cache/clear-cache.d.ts.map +1 -0
- package/dist/src/views/admin/views/core/debug/actions/clear-cache/clear-cache.js +35 -0
- package/dist/src/views/admin/views/core/debug/actions/clear-cache/mutation-api.d.ts +2 -0
- package/dist/src/views/admin/views/core/debug/actions/clear-cache/mutation-api.d.ts.map +1 -0
- package/dist/src/views/admin/views/core/debug/actions/clear-cache/mutation-api.js +5 -0
- package/dist/src/views/admin/views/core/debug/debug-admin-view.d.ts +4 -0
- package/dist/src/views/admin/views/core/debug/debug-admin-view.d.ts.map +1 -0
- package/dist/src/views/admin/views/core/debug/debug-admin-view.js +110 -0
- package/dist/src/views/admin/views/core/test.d.ts.map +1 -1
- package/dist/src/views/admin/views/core/test.js +108 -103
- package/dist/src/views/auth/sso/buttons/sso-buttons.d.ts +1 -1
- package/dist/src/views/auth/sso/buttons/sso-buttons.d.ts.map +1 -1
- package/dist/src/views/auth/sso/buttons/sso-buttons.js +5 -2
- package/dist/src/views/layouts/theme/header/header.d.ts +4 -1
- package/dist/src/views/layouts/theme/header/header.d.ts.map +1 -1
- package/dist/src/views/layouts/theme/header/header.js +30 -23
- package/dist/src/views/layouts/theme/layout.d.ts +3 -1
- package/dist/src/views/layouts/theme/layout.d.ts.map +1 -1
- package/dist/src/views/layouts/theme/layout.js +4 -3
- package/dist/src/vitnode.config.d.ts +11 -5
- package/dist/src/vitnode.config.d.ts.map +1 -1
- package/dist/src/vitnode.config.js +2 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +40 -22
- package/src/app_admin/core/debug/page.tsx +43 -0
- package/src/app_admin/core/users/page.tsx +7 -2
- package/src/locales/en.json +37 -1
- package/src/vitnode.config.ts +16 -6
- package/dist/src/api/lib/get-user-ip.d.ts +0 -3
- package/dist/src/api/lib/get-user-ip.d.ts.map +0 -1
- package/dist/src/api/lib/get-user-ip.js +0 -8
- package/dist/src/api/middlewares/global/global.d.ts.map +0 -1
- package/dist/src/api/middlewares/global/global.js +0 -47
- package/dist/src/api/plugins/email/nodemailer.d.ts.map +0 -1
- package/dist/src/api/plugins/email/resend.d.ts.map +0 -1
- package/dist/src/api/plugins/sso/discord.d.ts.map +0 -1
- package/dist/src/api/plugins/sso/facebook.d.ts.map +0 -1
- package/dist/src/api/plugins/sso/google.d.ts.map +0 -1
- package/dist/src/components/switchers/theme-switcher.d.ts.map +0 -1
- /package/dist/src/api/{plugins → adapters}/sso/discord.d.ts +0 -0
- /package/dist/src/api/{plugins → adapters}/sso/discord.js +0 -0
- /package/dist/src/api/{plugins → adapters}/sso/facebook.d.ts +0 -0
- /package/dist/src/api/{plugins → adapters}/sso/facebook.js +0 -0
- /package/dist/src/api/{plugins → adapters}/sso/google.d.ts +0 -0
- /package/dist/src/api/{plugins → adapters}/sso/google.js +0 -0
- /package/dist/src/components/switchers/{theme-switcher.d.ts → themes/theme-switcher.d.ts} +0 -0
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { and, count, eq, or } from "drizzle-orm";
|
|
2
2
|
import { HTTPException } from "hono/http-exception";
|
|
3
|
-
import { getUserIp } from "../../lib/get-user-ip.js";
|
|
4
3
|
import { generateAvatarColor } from "../../modules/users/avatar-color.js";
|
|
5
4
|
import { core_roles } from "../../../database/roles.js";
|
|
6
5
|
import { core_users } from "../../../database/users.js";
|
|
@@ -34,7 +33,7 @@ const getDefaultData = async (c)=>{
|
|
|
34
33
|
}
|
|
35
34
|
return {
|
|
36
35
|
roleId: defaultRole.id,
|
|
37
|
-
emailVerified: !c.get('core').
|
|
36
|
+
emailVerified: !c.get('core').emailAdapter
|
|
38
37
|
};
|
|
39
38
|
};
|
|
40
39
|
export const signUp = async ({ email, name, newsletter, hashedPassword }, c)=>{
|
|
@@ -66,7 +65,7 @@ export const signUp = async ({ email, name, newsletter, hashedPassword }, c)=>{
|
|
|
66
65
|
avatarColor: generateAvatarColor(name),
|
|
67
66
|
roleId,
|
|
68
67
|
emailVerified,
|
|
69
|
-
ipAddress:
|
|
68
|
+
ipAddress: c.get('ipAddress')
|
|
70
69
|
}).returning();
|
|
71
70
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
72
71
|
const { password: _, ...user } = data;
|
|
@@ -28,6 +28,7 @@ export declare class UserModel {
|
|
|
28
28
|
name: string;
|
|
29
29
|
newsletter?: boolean;
|
|
30
30
|
}, c: import("hono").Context) => Promise<{
|
|
31
|
+
ipAddress: string;
|
|
31
32
|
id: number;
|
|
32
33
|
name: string;
|
|
33
34
|
createdAt: Date;
|
|
@@ -39,7 +40,6 @@ export declare class UserModel {
|
|
|
39
40
|
emailVerified: boolean;
|
|
40
41
|
roleId: number;
|
|
41
42
|
birthday: Date | null;
|
|
42
|
-
ipAddress: string;
|
|
43
43
|
}>;
|
|
44
44
|
}
|
|
45
45
|
//# sourceMappingURL=user.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.d.ts","sourceRoot":"","sources":["../../../../src/api/models/user.ts"],"names":[],"mappings":"AAIA,qBAAa,SAAS;IACpB,WAAW;;;;;;;;;;;;;;cAAe;IAC1B,kBAAkB;;;;;;;OAAsB;IACxC,MAAM;;;;
|
|
1
|
+
{"version":3,"file":"user.d.ts","sourceRoot":"","sources":["../../../../src/api/models/user.ts"],"names":[],"mappings":"AAIA,qBAAa,SAAS;IACpB,WAAW;;;;;;;;;;;;;;cAAe;IAC1B,kBAAkB;;;;;;;OAAsB;IACxC,MAAM;;;;kBAEo3C,CAAC;;;;;;;;;;;;;;OAF32C;CACjB"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const adminModule: import("../../../api/lib/module").BuildModuleReturn<"@vitnode/core", "admin", [{
|
|
2
|
-
handler: (c: import("hono").Context<import("../../middlewares/global
|
|
2
|
+
handler: (c: import("hono").Context<import("../../middlewares/global.middleware").EnvVitNode, "/session", {}>) => Response & import("hono").TypedResponse<{
|
|
3
3
|
user: {
|
|
4
4
|
avatarColor: string;
|
|
5
5
|
birthday: string | null;
|
|
@@ -18,10 +18,6 @@ export declare const adminModule: import("../../../api/lib/module").BuildModuleR
|
|
|
18
18
|
route: {
|
|
19
19
|
method: "get";
|
|
20
20
|
description: string;
|
|
21
|
-
pluginConfig: {
|
|
22
|
-
id: string;
|
|
23
|
-
name: string;
|
|
24
|
-
};
|
|
25
21
|
path: "/session";
|
|
26
22
|
responses: {
|
|
27
23
|
200: {
|
|
@@ -103,8 +99,165 @@ export declare const adminModule: import("../../../api/lib/module").BuildModuleR
|
|
|
103
99
|
} & {
|
|
104
100
|
getRoutingPath: () => "/session";
|
|
105
101
|
};
|
|
106
|
-
}], import("../../../api/lib/module").BuildModuleReturn<"@vitnode/core", "
|
|
107
|
-
handler: (c: import("hono").Context<import("../../middlewares/global
|
|
102
|
+
}], (import("../../../api/lib/module").BuildModuleReturn<"@vitnode/core", "debug", [{
|
|
103
|
+
handler: (c: import("hono").Context<import("../../middlewares/global.middleware").EnvVitNode, "/logs", {
|
|
104
|
+
in: {
|
|
105
|
+
query: {
|
|
106
|
+
orderBy?: "createdAt" | "type" | "pluginId" | undefined;
|
|
107
|
+
cursor?: string | undefined;
|
|
108
|
+
order?: "asc" | "desc" | undefined;
|
|
109
|
+
first?: string | undefined;
|
|
110
|
+
last?: string | undefined;
|
|
111
|
+
};
|
|
112
|
+
};
|
|
113
|
+
out: {
|
|
114
|
+
query: {
|
|
115
|
+
orderBy?: "createdAt" | "type" | "pluginId" | undefined;
|
|
116
|
+
cursor?: string | undefined;
|
|
117
|
+
order?: "asc" | "desc" | undefined;
|
|
118
|
+
first?: string | undefined;
|
|
119
|
+
last?: string | undefined;
|
|
120
|
+
};
|
|
121
|
+
};
|
|
122
|
+
}>) => Promise<Response & import("hono").TypedResponse<{
|
|
123
|
+
edges: {
|
|
124
|
+
id: number;
|
|
125
|
+
pluginId: string;
|
|
126
|
+
type: "warn" | "error" | "debug";
|
|
127
|
+
content: string;
|
|
128
|
+
createdAt: string;
|
|
129
|
+
ipAddress: string;
|
|
130
|
+
}[];
|
|
131
|
+
pageInfo: {
|
|
132
|
+
count: number;
|
|
133
|
+
endCursor: null | number;
|
|
134
|
+
hasNextPage: boolean;
|
|
135
|
+
hasPreviousPage: boolean;
|
|
136
|
+
startCursor: null | number;
|
|
137
|
+
totalCount: number;
|
|
138
|
+
};
|
|
139
|
+
}, 200, "json">>;
|
|
140
|
+
pluginId: "@vitnode/core";
|
|
141
|
+
route: {
|
|
142
|
+
method: "get";
|
|
143
|
+
description: string;
|
|
144
|
+
path: "/logs";
|
|
145
|
+
request: {
|
|
146
|
+
query: import("zod").ZodObject<{
|
|
147
|
+
cursor: import("zod").ZodOptional<import("zod").ZodString>;
|
|
148
|
+
first: import("zod").ZodOptional<import("zod").ZodString>;
|
|
149
|
+
last: import("zod").ZodOptional<import("zod").ZodString>;
|
|
150
|
+
} & {
|
|
151
|
+
order: import("zod").ZodOptional<import("zod").ZodEnum<["asc", "desc"]>>;
|
|
152
|
+
orderBy: import("zod").ZodOptional<import("zod").ZodEnum<["type", "createdAt", "pluginId"]>>;
|
|
153
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
154
|
+
orderBy?: "createdAt" | "type" | "pluginId" | undefined;
|
|
155
|
+
cursor?: string | undefined;
|
|
156
|
+
order?: "asc" | "desc" | undefined;
|
|
157
|
+
first?: string | undefined;
|
|
158
|
+
last?: string | undefined;
|
|
159
|
+
}, {
|
|
160
|
+
orderBy?: "createdAt" | "type" | "pluginId" | undefined;
|
|
161
|
+
cursor?: string | undefined;
|
|
162
|
+
order?: "asc" | "desc" | undefined;
|
|
163
|
+
first?: string | undefined;
|
|
164
|
+
last?: string | undefined;
|
|
165
|
+
}>;
|
|
166
|
+
};
|
|
167
|
+
responses: {
|
|
168
|
+
200: {
|
|
169
|
+
content: {
|
|
170
|
+
'application/json': {
|
|
171
|
+
schema: import("zod").ZodObject<{
|
|
172
|
+
edges: import("zod").ZodArray<import("zod").ZodObject<{
|
|
173
|
+
id: import("zod").ZodNumber;
|
|
174
|
+
pluginId: import("zod").ZodString;
|
|
175
|
+
type: import("zod").ZodEnum<["warn", "error", "debug"]>;
|
|
176
|
+
content: import("zod").ZodString;
|
|
177
|
+
createdAt: import("zod").ZodDate;
|
|
178
|
+
ipAddress: import("zod").ZodString;
|
|
179
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
180
|
+
ipAddress: string;
|
|
181
|
+
id: number;
|
|
182
|
+
createdAt: Date;
|
|
183
|
+
type: "warn" | "error" | "debug";
|
|
184
|
+
pluginId: string;
|
|
185
|
+
content: string;
|
|
186
|
+
}, {
|
|
187
|
+
ipAddress: string;
|
|
188
|
+
id: number;
|
|
189
|
+
createdAt: Date;
|
|
190
|
+
type: "warn" | "error" | "debug";
|
|
191
|
+
pluginId: string;
|
|
192
|
+
content: string;
|
|
193
|
+
}>, "many">;
|
|
194
|
+
pageInfo: import("zod").ZodObject<{
|
|
195
|
+
totalCount: import("zod").ZodNumber;
|
|
196
|
+
count: import("zod").ZodNumber;
|
|
197
|
+
hasNextPage: import("zod").ZodBoolean;
|
|
198
|
+
hasPreviousPage: import("zod").ZodBoolean;
|
|
199
|
+
startCursor: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
200
|
+
endCursor: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
201
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
202
|
+
count: number;
|
|
203
|
+
totalCount: number;
|
|
204
|
+
hasNextPage: boolean;
|
|
205
|
+
hasPreviousPage: boolean;
|
|
206
|
+
startCursor: number | null;
|
|
207
|
+
endCursor: number | null;
|
|
208
|
+
}, {
|
|
209
|
+
count: number;
|
|
210
|
+
totalCount: number;
|
|
211
|
+
hasNextPage: boolean;
|
|
212
|
+
hasPreviousPage: boolean;
|
|
213
|
+
startCursor: number | null;
|
|
214
|
+
endCursor: number | null;
|
|
215
|
+
}>;
|
|
216
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
217
|
+
edges: {
|
|
218
|
+
ipAddress: string;
|
|
219
|
+
id: number;
|
|
220
|
+
createdAt: Date;
|
|
221
|
+
type: "warn" | "error" | "debug";
|
|
222
|
+
pluginId: string;
|
|
223
|
+
content: string;
|
|
224
|
+
}[];
|
|
225
|
+
pageInfo: {
|
|
226
|
+
count: number;
|
|
227
|
+
totalCount: number;
|
|
228
|
+
hasNextPage: boolean;
|
|
229
|
+
hasPreviousPage: boolean;
|
|
230
|
+
startCursor: number | null;
|
|
231
|
+
endCursor: number | null;
|
|
232
|
+
};
|
|
233
|
+
}, {
|
|
234
|
+
edges: {
|
|
235
|
+
ipAddress: string;
|
|
236
|
+
id: number;
|
|
237
|
+
createdAt: Date;
|
|
238
|
+
type: "warn" | "error" | "debug";
|
|
239
|
+
pluginId: string;
|
|
240
|
+
content: string;
|
|
241
|
+
}[];
|
|
242
|
+
pageInfo: {
|
|
243
|
+
count: number;
|
|
244
|
+
totalCount: number;
|
|
245
|
+
hasNextPage: boolean;
|
|
246
|
+
hasPreviousPage: boolean;
|
|
247
|
+
startCursor: number | null;
|
|
248
|
+
endCursor: number | null;
|
|
249
|
+
};
|
|
250
|
+
}>;
|
|
251
|
+
};
|
|
252
|
+
};
|
|
253
|
+
description: string;
|
|
254
|
+
};
|
|
255
|
+
};
|
|
256
|
+
} & {
|
|
257
|
+
getRoutingPath: () => "/logs";
|
|
258
|
+
};
|
|
259
|
+
}], import("../../../api/lib/module").BaseBuildModuleReturn<"@vitnode/core", string, import("../../lib/route").Route<"@vitnode/core", import("@hono/zod-openapi").RouteConfig, import("@hono/zod-openapi").RouteHandler<import("@hono/zod-openapi").RouteConfig>>[]>[]> | import("../../../api/lib/module").BuildModuleReturn<"@vitnode/core", "users", [{
|
|
260
|
+
handler: (c: import("hono").Context<import("../../middlewares/global.middleware").EnvVitNode, "/list", {
|
|
108
261
|
in: {
|
|
109
262
|
query: {
|
|
110
263
|
orderBy?: "name" | "createdAt" | undefined;
|
|
@@ -290,5 +443,5 @@ export declare const adminModule: import("../../../api/lib/module").BuildModuleR
|
|
|
290
443
|
} & {
|
|
291
444
|
getRoutingPath: () => "/list";
|
|
292
445
|
};
|
|
293
|
-
}], import("../../../api/lib/module").BaseBuildModuleReturn<"@vitnode/core", string, import("../../lib/route").Route<"@vitnode/core", import("@hono/zod-openapi").RouteConfig, import("@hono/zod-openapi").RouteHandler<import("@hono/zod-openapi").RouteConfig>>[]>[]>[]>;
|
|
446
|
+
}], import("../../../api/lib/module").BaseBuildModuleReturn<"@vitnode/core", string, import("../../lib/route").Route<"@vitnode/core", import("@hono/zod-openapi").RouteConfig, import("@hono/zod-openapi").RouteHandler<import("@hono/zod-openapi").RouteConfig>>[]>[]>)[]>;
|
|
294
447
|
//# sourceMappingURL=admin.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"admin.module.d.ts","sourceRoot":"","sources":["../../../../../src/api/modules/admin/admin.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"admin.module.d.ts","sourceRoot":"","sources":["../../../../../src/api/modules/admin/admin.module.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oQAKtB,CAAC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { buildModule } from "../../lib/module.js";
|
|
2
2
|
import { CONFIG_PLUGIN } from "../../../config.js";
|
|
3
|
+
import { debugAdminModule } from "./debug/debug.admin.module.js";
|
|
3
4
|
import { sessionAdminRoute } from "./routes/session.route.js";
|
|
4
5
|
import { usersAdminModule } from "./users/users.admin.module.js";
|
|
5
6
|
export const adminModule = buildModule({
|
|
@@ -9,6 +10,7 @@ export const adminModule = buildModule({
|
|
|
9
10
|
sessionAdminRoute
|
|
10
11
|
],
|
|
11
12
|
modules: [
|
|
12
|
-
usersAdminModule
|
|
13
|
+
usersAdminModule,
|
|
14
|
+
debugAdminModule
|
|
13
15
|
]
|
|
14
16
|
});
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
export declare const debugAdminModule: import("../../../lib/module").BuildModuleReturn<"@vitnode/core", "debug", [{
|
|
2
|
+
handler: (c: import("hono").Context<import("../../../middlewares/global.middleware").EnvVitNode, "/logs", {
|
|
3
|
+
in: {
|
|
4
|
+
query: {
|
|
5
|
+
orderBy?: "createdAt" | "type" | "pluginId" | undefined;
|
|
6
|
+
cursor?: string | undefined;
|
|
7
|
+
order?: "asc" | "desc" | undefined;
|
|
8
|
+
first?: string | undefined;
|
|
9
|
+
last?: string | undefined;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
out: {
|
|
13
|
+
query: {
|
|
14
|
+
orderBy?: "createdAt" | "type" | "pluginId" | undefined;
|
|
15
|
+
cursor?: string | undefined;
|
|
16
|
+
order?: "asc" | "desc" | undefined;
|
|
17
|
+
first?: string | undefined;
|
|
18
|
+
last?: string | undefined;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
}>) => Promise<Response & import("hono").TypedResponse<{
|
|
22
|
+
edges: {
|
|
23
|
+
id: number;
|
|
24
|
+
pluginId: string;
|
|
25
|
+
type: "warn" | "error" | "debug";
|
|
26
|
+
content: string;
|
|
27
|
+
createdAt: string;
|
|
28
|
+
ipAddress: string;
|
|
29
|
+
}[];
|
|
30
|
+
pageInfo: {
|
|
31
|
+
count: number;
|
|
32
|
+
endCursor: null | number;
|
|
33
|
+
hasNextPage: boolean;
|
|
34
|
+
hasPreviousPage: boolean;
|
|
35
|
+
startCursor: null | number;
|
|
36
|
+
totalCount: number;
|
|
37
|
+
};
|
|
38
|
+
}, 200, "json">>;
|
|
39
|
+
pluginId: "@vitnode/core";
|
|
40
|
+
route: {
|
|
41
|
+
method: "get";
|
|
42
|
+
description: string;
|
|
43
|
+
path: "/logs";
|
|
44
|
+
request: {
|
|
45
|
+
query: import("zod").ZodObject<{
|
|
46
|
+
cursor: import("zod").ZodOptional<import("zod").ZodString>;
|
|
47
|
+
first: import("zod").ZodOptional<import("zod").ZodString>;
|
|
48
|
+
last: import("zod").ZodOptional<import("zod").ZodString>;
|
|
49
|
+
} & {
|
|
50
|
+
order: import("zod").ZodOptional<import("zod").ZodEnum<["asc", "desc"]>>;
|
|
51
|
+
orderBy: import("zod").ZodOptional<import("zod").ZodEnum<["type", "createdAt", "pluginId"]>>;
|
|
52
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
53
|
+
orderBy?: "createdAt" | "type" | "pluginId" | undefined;
|
|
54
|
+
cursor?: string | undefined;
|
|
55
|
+
order?: "asc" | "desc" | undefined;
|
|
56
|
+
first?: string | undefined;
|
|
57
|
+
last?: string | undefined;
|
|
58
|
+
}, {
|
|
59
|
+
orderBy?: "createdAt" | "type" | "pluginId" | undefined;
|
|
60
|
+
cursor?: string | undefined;
|
|
61
|
+
order?: "asc" | "desc" | undefined;
|
|
62
|
+
first?: string | undefined;
|
|
63
|
+
last?: string | undefined;
|
|
64
|
+
}>;
|
|
65
|
+
};
|
|
66
|
+
responses: {
|
|
67
|
+
200: {
|
|
68
|
+
content: {
|
|
69
|
+
'application/json': {
|
|
70
|
+
schema: import("zod").ZodObject<{
|
|
71
|
+
edges: import("zod").ZodArray<import("zod").ZodObject<{
|
|
72
|
+
id: import("zod").ZodNumber;
|
|
73
|
+
pluginId: import("zod").ZodString;
|
|
74
|
+
type: import("zod").ZodEnum<["warn", "error", "debug"]>;
|
|
75
|
+
content: import("zod").ZodString;
|
|
76
|
+
createdAt: import("zod").ZodDate;
|
|
77
|
+
ipAddress: import("zod").ZodString;
|
|
78
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
79
|
+
ipAddress: string;
|
|
80
|
+
id: number;
|
|
81
|
+
createdAt: Date;
|
|
82
|
+
type: "warn" | "error" | "debug";
|
|
83
|
+
pluginId: string;
|
|
84
|
+
content: string;
|
|
85
|
+
}, {
|
|
86
|
+
ipAddress: string;
|
|
87
|
+
id: number;
|
|
88
|
+
createdAt: Date;
|
|
89
|
+
type: "warn" | "error" | "debug";
|
|
90
|
+
pluginId: string;
|
|
91
|
+
content: string;
|
|
92
|
+
}>, "many">;
|
|
93
|
+
pageInfo: import("zod").ZodObject<{
|
|
94
|
+
totalCount: import("zod").ZodNumber;
|
|
95
|
+
count: import("zod").ZodNumber;
|
|
96
|
+
hasNextPage: import("zod").ZodBoolean;
|
|
97
|
+
hasPreviousPage: import("zod").ZodBoolean;
|
|
98
|
+
startCursor: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
99
|
+
endCursor: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
100
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
101
|
+
count: number;
|
|
102
|
+
totalCount: number;
|
|
103
|
+
hasNextPage: boolean;
|
|
104
|
+
hasPreviousPage: boolean;
|
|
105
|
+
startCursor: number | null;
|
|
106
|
+
endCursor: number | null;
|
|
107
|
+
}, {
|
|
108
|
+
count: number;
|
|
109
|
+
totalCount: number;
|
|
110
|
+
hasNextPage: boolean;
|
|
111
|
+
hasPreviousPage: boolean;
|
|
112
|
+
startCursor: number | null;
|
|
113
|
+
endCursor: number | null;
|
|
114
|
+
}>;
|
|
115
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
116
|
+
edges: {
|
|
117
|
+
ipAddress: string;
|
|
118
|
+
id: number;
|
|
119
|
+
createdAt: Date;
|
|
120
|
+
type: "warn" | "error" | "debug";
|
|
121
|
+
pluginId: string;
|
|
122
|
+
content: string;
|
|
123
|
+
}[];
|
|
124
|
+
pageInfo: {
|
|
125
|
+
count: number;
|
|
126
|
+
totalCount: number;
|
|
127
|
+
hasNextPage: boolean;
|
|
128
|
+
hasPreviousPage: boolean;
|
|
129
|
+
startCursor: number | null;
|
|
130
|
+
endCursor: number | null;
|
|
131
|
+
};
|
|
132
|
+
}, {
|
|
133
|
+
edges: {
|
|
134
|
+
ipAddress: string;
|
|
135
|
+
id: number;
|
|
136
|
+
createdAt: Date;
|
|
137
|
+
type: "warn" | "error" | "debug";
|
|
138
|
+
pluginId: string;
|
|
139
|
+
content: string;
|
|
140
|
+
}[];
|
|
141
|
+
pageInfo: {
|
|
142
|
+
count: number;
|
|
143
|
+
totalCount: number;
|
|
144
|
+
hasNextPage: boolean;
|
|
145
|
+
hasPreviousPage: boolean;
|
|
146
|
+
startCursor: number | null;
|
|
147
|
+
endCursor: number | null;
|
|
148
|
+
};
|
|
149
|
+
}>;
|
|
150
|
+
};
|
|
151
|
+
};
|
|
152
|
+
description: string;
|
|
153
|
+
};
|
|
154
|
+
};
|
|
155
|
+
} & {
|
|
156
|
+
getRoutingPath: () => "/logs";
|
|
157
|
+
};
|
|
158
|
+
}], import("../../../lib/module").BaseBuildModuleReturn<"@vitnode/core", string, import("../../../lib/route").Route<"@vitnode/core", import("@hono/zod-openapi").RouteConfig, import("@hono/zod-openapi").RouteHandler<import("@hono/zod-openapi").RouteConfig>>[]>[]>;
|
|
159
|
+
//# sourceMappingURL=debug.admin.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"debug.admin.module.d.ts","sourceRoot":"","sources":["../../../../../../src/api/modules/admin/debug/debug.admin.module.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sQAI3B,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CONFIG_PLUGIN } from "../../../../config.js";
|
|
2
|
+
import { buildModule } from "../../../lib/module.js";
|
|
3
|
+
import { logsDebugAdminRoute } from "./routes/logs.route.js";
|
|
4
|
+
export const debugAdminModule = buildModule({
|
|
5
|
+
...CONFIG_PLUGIN,
|
|
6
|
+
name: 'debug',
|
|
7
|
+
routes: [
|
|
8
|
+
logsDebugAdminRoute
|
|
9
|
+
]
|
|
10
|
+
});
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const logsDebugAdminRoute: {
|
|
3
|
+
handler: (c: import("hono").Context<import("../../../../middlewares/global.middleware").EnvVitNode, "/logs", {
|
|
4
|
+
in: {
|
|
5
|
+
query: {
|
|
6
|
+
orderBy?: "createdAt" | "type" | "pluginId" | undefined;
|
|
7
|
+
cursor?: string | undefined;
|
|
8
|
+
order?: "asc" | "desc" | undefined;
|
|
9
|
+
first?: string | undefined;
|
|
10
|
+
last?: string | undefined;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
out: {
|
|
14
|
+
query: {
|
|
15
|
+
orderBy?: "createdAt" | "type" | "pluginId" | undefined;
|
|
16
|
+
cursor?: string | undefined;
|
|
17
|
+
order?: "asc" | "desc" | undefined;
|
|
18
|
+
first?: string | undefined;
|
|
19
|
+
last?: string | undefined;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
}>) => Promise<Response & import("hono").TypedResponse<{
|
|
23
|
+
edges: {
|
|
24
|
+
id: number;
|
|
25
|
+
pluginId: string;
|
|
26
|
+
type: "warn" | "error" | "debug";
|
|
27
|
+
content: string;
|
|
28
|
+
createdAt: string;
|
|
29
|
+
ipAddress: string;
|
|
30
|
+
}[];
|
|
31
|
+
pageInfo: {
|
|
32
|
+
count: number;
|
|
33
|
+
endCursor: null | number;
|
|
34
|
+
hasNextPage: boolean;
|
|
35
|
+
hasPreviousPage: boolean;
|
|
36
|
+
startCursor: null | number;
|
|
37
|
+
totalCount: number;
|
|
38
|
+
};
|
|
39
|
+
}, 200, "json">>;
|
|
40
|
+
pluginId: "@vitnode/core";
|
|
41
|
+
route: {
|
|
42
|
+
method: "get";
|
|
43
|
+
description: string;
|
|
44
|
+
path: "/logs";
|
|
45
|
+
request: {
|
|
46
|
+
query: z.ZodObject<{
|
|
47
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
48
|
+
first: z.ZodOptional<z.ZodString>;
|
|
49
|
+
last: z.ZodOptional<z.ZodString>;
|
|
50
|
+
} & {
|
|
51
|
+
order: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
52
|
+
orderBy: z.ZodOptional<z.ZodEnum<["type", "createdAt", "pluginId"]>>;
|
|
53
|
+
}, "strip", z.ZodTypeAny, {
|
|
54
|
+
orderBy?: "createdAt" | "type" | "pluginId" | undefined;
|
|
55
|
+
cursor?: string | undefined;
|
|
56
|
+
order?: "asc" | "desc" | undefined;
|
|
57
|
+
first?: string | undefined;
|
|
58
|
+
last?: string | undefined;
|
|
59
|
+
}, {
|
|
60
|
+
orderBy?: "createdAt" | "type" | "pluginId" | undefined;
|
|
61
|
+
cursor?: string | undefined;
|
|
62
|
+
order?: "asc" | "desc" | undefined;
|
|
63
|
+
first?: string | undefined;
|
|
64
|
+
last?: string | undefined;
|
|
65
|
+
}>;
|
|
66
|
+
};
|
|
67
|
+
responses: {
|
|
68
|
+
200: {
|
|
69
|
+
content: {
|
|
70
|
+
'application/json': {
|
|
71
|
+
schema: z.ZodObject<{
|
|
72
|
+
edges: z.ZodArray<z.ZodObject<{
|
|
73
|
+
id: z.ZodNumber;
|
|
74
|
+
pluginId: z.ZodString;
|
|
75
|
+
type: z.ZodEnum<["warn", "error", "debug"]>;
|
|
76
|
+
content: z.ZodString;
|
|
77
|
+
createdAt: z.ZodDate;
|
|
78
|
+
ipAddress: z.ZodString;
|
|
79
|
+
}, "strip", z.ZodTypeAny, {
|
|
80
|
+
ipAddress: string;
|
|
81
|
+
id: number;
|
|
82
|
+
createdAt: Date;
|
|
83
|
+
type: "warn" | "error" | "debug";
|
|
84
|
+
pluginId: string;
|
|
85
|
+
content: string;
|
|
86
|
+
}, {
|
|
87
|
+
ipAddress: string;
|
|
88
|
+
id: number;
|
|
89
|
+
createdAt: Date;
|
|
90
|
+
type: "warn" | "error" | "debug";
|
|
91
|
+
pluginId: string;
|
|
92
|
+
content: string;
|
|
93
|
+
}>, "many">;
|
|
94
|
+
pageInfo: z.ZodObject<{
|
|
95
|
+
totalCount: z.ZodNumber;
|
|
96
|
+
count: z.ZodNumber;
|
|
97
|
+
hasNextPage: z.ZodBoolean;
|
|
98
|
+
hasPreviousPage: z.ZodBoolean;
|
|
99
|
+
startCursor: z.ZodNullable<z.ZodNumber>;
|
|
100
|
+
endCursor: z.ZodNullable<z.ZodNumber>;
|
|
101
|
+
}, "strip", z.ZodTypeAny, {
|
|
102
|
+
count: number;
|
|
103
|
+
totalCount: number;
|
|
104
|
+
hasNextPage: boolean;
|
|
105
|
+
hasPreviousPage: boolean;
|
|
106
|
+
startCursor: number | null;
|
|
107
|
+
endCursor: number | null;
|
|
108
|
+
}, {
|
|
109
|
+
count: number;
|
|
110
|
+
totalCount: number;
|
|
111
|
+
hasNextPage: boolean;
|
|
112
|
+
hasPreviousPage: boolean;
|
|
113
|
+
startCursor: number | null;
|
|
114
|
+
endCursor: number | null;
|
|
115
|
+
}>;
|
|
116
|
+
}, "strip", z.ZodTypeAny, {
|
|
117
|
+
edges: {
|
|
118
|
+
ipAddress: string;
|
|
119
|
+
id: number;
|
|
120
|
+
createdAt: Date;
|
|
121
|
+
type: "warn" | "error" | "debug";
|
|
122
|
+
pluginId: string;
|
|
123
|
+
content: string;
|
|
124
|
+
}[];
|
|
125
|
+
pageInfo: {
|
|
126
|
+
count: number;
|
|
127
|
+
totalCount: number;
|
|
128
|
+
hasNextPage: boolean;
|
|
129
|
+
hasPreviousPage: boolean;
|
|
130
|
+
startCursor: number | null;
|
|
131
|
+
endCursor: number | null;
|
|
132
|
+
};
|
|
133
|
+
}, {
|
|
134
|
+
edges: {
|
|
135
|
+
ipAddress: string;
|
|
136
|
+
id: number;
|
|
137
|
+
createdAt: Date;
|
|
138
|
+
type: "warn" | "error" | "debug";
|
|
139
|
+
pluginId: string;
|
|
140
|
+
content: string;
|
|
141
|
+
}[];
|
|
142
|
+
pageInfo: {
|
|
143
|
+
count: number;
|
|
144
|
+
totalCount: number;
|
|
145
|
+
hasNextPage: boolean;
|
|
146
|
+
hasPreviousPage: boolean;
|
|
147
|
+
startCursor: number | null;
|
|
148
|
+
endCursor: number | null;
|
|
149
|
+
};
|
|
150
|
+
}>;
|
|
151
|
+
};
|
|
152
|
+
};
|
|
153
|
+
description: string;
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
} & {
|
|
157
|
+
getRoutingPath: () => "/logs";
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
//# sourceMappingURL=logs.route.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"logs.route.d.ts","sourceRoot":"","sources":["../../../../../../../src/api/modules/admin/debug/routes/logs.route.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAYxB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmE9B,CAAC"}
|