Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/firebase/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1026,7 +1026,7 @@ declare namespace firebase {
/** Always set to PROJECT_ID */
aud: string;

/** The user's unique id */
/** The user's unique ID */
sub: string;

/** The token issue time, in seconds since epoch */
Expand All @@ -1035,7 +1035,7 @@ declare namespace firebase {
/** The token expiry time, normally 'iat' + 3600 */
exp: number;

/** The user's unique id, must be equal to 'sub' */
/** The user's unique ID. Must be equal to 'sub' */
user_id: string;

/** The time the user authenticated, normally 'iat' */
Expand Down
4 changes: 2 additions & 2 deletions packages/util/src/emulator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ interface FirebaseIdToken {
// Always set to PROJECT_ID
aud: string;

// The user's unique id
// The user's unique ID
sub: string;

// The token issue time, in seconds since epoch
Expand All @@ -49,7 +49,7 @@ interface FirebaseIdToken {
// The token expiry time, normally 'iat' + 3600
exp: number;

// The user's unique id, must be equal to 'sub'
// The user's unique ID. Must be equal to 'sub'
user_id: string;

// The time the user authenticated, normally 'iat'
Expand Down