Skip to content
This repository was archived by the owner on Oct 17, 2024. It is now read-only.

Commit ae9073c

Browse files
authored
Added missing interface for 9.5.0 (#357)
1 parent 5888c31 commit ae9073c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

lib/services/firebase-admin-authentication.service.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ export class FirebaseAuthenticationService implements admin.auth.Auth {
3636
getUserByPhoneNumber(phoneNumber: string): Promise<admin.auth.UserRecord> {
3737
return this.auth.getUserByPhoneNumber(phoneNumber);
3838
}
39+
getUserByProviderUid(providerId: string, uid: string): Promise<admin.auth.UserRecord> {
40+
return this.auth.getUserByProviderUid(providerId, uid);
41+
}
3942
getUsers(identifiers: admin.auth.UserRecord[]): Promise<admin.auth.GetUsersResult> {
4043
return this.auth.getUsers(identifiers);
4144
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"@nestjs/core": "^7.1.2"
3636
},
3737
"dependencies": {
38-
"firebase-admin": "^9.3.0"
38+
"firebase-admin": "^9.5.0"
3939
},
4040
"devDependencies": {
4141
"@nestjs/common": "^7.4.2",

0 commit comments

Comments
 (0)