mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-06-18 13:45:23 +02:00
refactor(auth): update auth client to enhance type inference for user fields in auth structure
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
import type { auth } from "@dokploy/server";
|
||||
import {
|
||||
adminClient,
|
||||
apiKeyClient,
|
||||
@@ -15,6 +14,12 @@ export const authClient = createAuthClient({
|
||||
twoFactorClient(),
|
||||
apiKeyClient(),
|
||||
adminClient(),
|
||||
inferAdditionalFields<typeof auth.api>(),
|
||||
inferAdditionalFields({
|
||||
user: {
|
||||
lastName: {
|
||||
type: "string",
|
||||
},
|
||||
},
|
||||
}),
|
||||
],
|
||||
});
|
||||
|
||||
@@ -271,14 +271,9 @@ const { handler, api } = betterAuth({
|
||||
],
|
||||
});
|
||||
|
||||
export const auth: {
|
||||
handler: typeof handler;
|
||||
createApiKey: typeof api.createApiKey;
|
||||
api: typeof api;
|
||||
} = {
|
||||
handler: handler,
|
||||
export const auth = {
|
||||
handler,
|
||||
createApiKey: api.createApiKey,
|
||||
api: api,
|
||||
};
|
||||
|
||||
export const validateRequest = async (request: IncomingMessage) => {
|
||||
|
||||
Reference in New Issue
Block a user