@firebase/firestore 3.4.3-canary.4983f4d5a → 3.4.3-canary.73fcec982

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.
@@ -53,6 +53,7 @@ export declare class FirestoreClient {
53
53
  private user;
54
54
  private readonly clientId;
55
55
  private authCredentialListener;
56
+ private appCheckCredentialListener;
56
57
  offlineComponents?: OfflineComponentProvider;
57
58
  onlineComponents?: OnlineComponentProvider;
58
59
  constructor(authCredentials: CredentialsProvider<User>, appCheckCredentials: CredentialsProvider<string>,
@@ -67,6 +68,7 @@ export declare class FirestoreClient {
67
68
  asyncQueue: AsyncQueue, databaseInfo: DatabaseInfo);
68
69
  getConfiguration(): Promise<ComponentConfiguration>;
69
70
  setCredentialChangeListener(listener: (user: User) => Promise<void>): void;
71
+ setAppCheckTokenChangeListener(listener: (appCheckToken: string, user: User) => Promise<void>): void;
70
72
  /**
71
73
  * Checks that the client has not been terminated. Ensures that other methods on
72
74
  * this class cannot be called after the client is terminated.