fix(open-api): clean up incorrect null type in OpenAPI (#6293)

This commit is contained in:
Taesu
2025-11-27 01:54:13 +09:00
committed by GitHub
parent b66d8744ff
commit c4ef516678
2 changed files with 3 additions and 2 deletions

View File

@@ -408,7 +408,7 @@ export const signInEmail = <O extends BetterAuthOptions>() =>
description: "Session token",
},
url: {
type: "null",
type: "string",
nullable: true,
},
user: {

View File

@@ -689,7 +689,8 @@ export const rejectInvitation = <O extends OrganizationOptions>(options: O) =>
type: "object",
},
member: {
type: "null",
type: "object",
nullable: true,
},
},
},