@firebase/auth-compat 0.6.10 → 0.6.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -101,7 +101,7 @@ declare module "@firebase/auth" {
101
101
  function updateEmail(user: types.User, newEmail: string): Promise<void>;
102
102
  function updatePassword(user: types.User, newPassword: string): Promise<void>;
103
103
  function updatePhoneNumber(user: types.User, credential: PhoneAuthCredential): Promise<void>;
104
- function updateProfile(user: types.User, { displayName, photoURL: photoUrl }: {
104
+ function updateProfile(user: types.User, profile: {
105
105
  displayName?: string | null;
106
106
  photoURL?: string | null;
107
107
  }): Promise<void>;
@@ -5,7 +5,7 @@ import { Component } from '@firebase/component';
5
5
  import { isBrowserExtension, getUA, isReactNative, isNode, isIndexedDBAvailable, isIE, FirebaseError } from '@firebase/util';
6
6
 
7
7
  var name = "@firebase/auth-compat";
8
- var version = "0.6.10";
8
+ var version = "0.6.11";
9
9
 
10
10
  /**
11
11
  * @license