@firebase/firestore 3.7.1 → 3.7.2

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.
@@ -8,7 +8,7 @@ import * as grpc from '@grpc/grpc-js';
8
8
  import * as protoLoader from '@grpc/proto-loader';
9
9
 
10
10
  const name = "@firebase/firestore";
11
- const version$1 = "3.7.1";
11
+ const version$1 = "3.7.2";
12
12
 
13
13
  /**
14
14
  * @license
@@ -61,7 +61,7 @@ User.GOOGLE_CREDENTIALS = new User('google-credentials-uid');
61
61
  User.FIRST_PARTY = new User('first-party-uid');
62
62
  User.MOCK_USER = new User('mock-user');
63
63
 
64
- const version = "9.12.1";
64
+ const version = "9.13.0";
65
65
 
66
66
  /**
67
67
  * @license
@@ -28846,6 +28846,7 @@ function changesFromSnapshot(querySnapshot, includeMetadataChanges) {
28846
28846
  let index = 0;
28847
28847
  return querySnapshot._snapshot.docChanges.map(change => {
28848
28848
  const doc = new QueryDocumentSnapshot(querySnapshot._firestore, querySnapshot._userDataWriter, change.doc.key, change.doc, new SnapshotMetadata(querySnapshot._snapshot.mutatedKeys.has(change.doc.key), querySnapshot._snapshot.fromCache), querySnapshot.query.converter);
28849
+ change.doc;
28849
28850
  return {
28850
28851
  type: 'added',
28851
28852
  doc,