Skip to content

Commit 27def2b

Browse files
committed
Add missing field to firebase claim in token result
1 parent d38eced commit 27def2b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

common/api-review/auth.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -828,4 +828,4 @@ export function verifyBeforeUpdateEmail(user: User, newEmail: string, actionCode
828828
export function verifyPasswordResetCode(auth: Auth, code: string): Promise<string>;
829829

830830

831-
```
831+
```

packages/auth/src/model/public_types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ export interface ParsedToken {
101101
'firebase'?: {
102102
'sign_in_provider'?: string;
103103
'sign_in_second_factor'?: string;
104+
'identities'?: Record<string, string>;
104105
};
105106
/** Map of any additional custom claims. */
106107
[key: string]: string | object | undefined;

0 commit comments

Comments
 (0)