Skip to content

Commit 5c60cc4

Browse files
(chore): Export UserProvider type and add it to toc.yaml (#1165)
- Export UserProvider type - Add UserProvider to toc.yaml
1 parent bea66a9 commit 5c60cc4

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

docgen/content-sources/node/toc.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ toc:
9494
path: /docs/reference/admin/node/admin.auth.UserProviderRequest
9595
- title: "UserRecord"
9696
path: /docs/reference/admin/node/admin.auth.UserRecord
97+
- title: "UserProvider"
98+
path: /docs/reference/admin/node/admin.auth.UserProvider
9799
- title: "SessionCookieOptions"
98100
path: /docs/reference/admin/node/admin.auth.SessionCookieOptions
99101
- title: "BaseAuth"

etc/firebase-admin.api.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,6 @@ export namespace auth {
403403
tokensValidAfterTime?: string;
404404
uid: string;
405405
}
406-
{};
407406
}
408407

409408
// @public (undocumented)

src/auth/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ export namespace auth {
156156
/**
157157
* Represents a user identity provider that can be associated with a Firebase user.
158158
*/
159-
interface UserProvider {
159+
export interface UserProvider {
160160

161161
/**
162162
* The user identifier for the linked provider.

0 commit comments

Comments
 (0)