mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
chore: update GetUserInfo to accept possible boolean or number typed values (#1938)
This commit is contained in:
parent
c113f59744
commit
3215bc0bc5
1 changed files with 1 additions and 1 deletions
|
@ -110,4 +110,4 @@ export type GetAuthorizationUri = (payload: {
|
||||||
|
|
||||||
export type GetUserInfo = (
|
export type GetUserInfo = (
|
||||||
data: unknown
|
data: unknown
|
||||||
) => Promise<{ id: string } & Record<string, string | undefined>>;
|
) => Promise<{ id: string } & Record<string, string | boolean | number | undefined>>;
|
||||||
|
|
Loading…
Reference in a new issue