mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-25 08:31:37 -05:00
fix(open-api): clean up incorrect null type in OpenAPI (#6293)
This commit is contained in:
@@ -408,7 +408,7 @@ export const signInEmail = <O extends BetterAuthOptions>() =>
|
||||
description: "Session token",
|
||||
},
|
||||
url: {
|
||||
type: "null",
|
||||
type: "string",
|
||||
nullable: true,
|
||||
},
|
||||
user: {
|
||||
|
||||
@@ -689,7 +689,8 @@ export const rejectInvitation = <O extends OrganizationOptions>(options: O) =>
|
||||
type: "object",
|
||||
},
|
||||
member: {
|
||||
type: "null",
|
||||
type: "object",
|
||||
nullable: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user