File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -59,9 +59,15 @@ export const service = 'firebaseauth.googleapis.com';
5959 * @public
6060 */
6161export interface UserOptions {
62+ /** Options to set configuration at the resource level for blocking functions. */
6263 blockingOptions ?: {
64+ /** Pass the ID Token credential to the function. */
6365 idToken ?: boolean ;
66+
67+ /** Pass the Access Token credential to the function. */
6468 accessToken ?: boolean ;
69+
70+ /** Pass the Refresh Token credential to the function. */
6571 refreshToken ?: boolean ;
6672 } ;
6773}
Original file line number Diff line number Diff line change @@ -23,8 +23,13 @@ interface InternalOptions {
2323 * All function options plus idToken, accessToken, and refreshToken.
2424 */
2525export interface BlockingOptions {
26+ /** Pass the ID Token credential to the function. */
2627 idToken ?: boolean ;
28+
29+ /** Pass the Access Token credential to the function. */
2730 accessToken ?: boolean ;
31+
32+ /** Pass the Refresh Token credential to the function. */
2833 refreshToken ?: boolean ;
2934
3035 /**
You can’t perform that action at this time.
0 commit comments