@firebase/firestore 3.10.1-canary.2d141ed9d → 3.10.1

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.
@@ -33,7 +33,7 @@ var grpc__namespace = /*#__PURE__*/_interopNamespace(grpc);
33
33
  var protoLoader__namespace = /*#__PURE__*/_interopNamespace(protoLoader);
34
34
 
35
35
  const name = "@firebase/firestore";
36
- const version$1 = "3.10.1-canary.2d141ed9d";
36
+ const version$1 = "3.10.1";
37
37
 
38
38
  /**
39
39
  * @license
@@ -86,7 +86,7 @@ User.GOOGLE_CREDENTIALS = new User('google-credentials-uid');
86
86
  User.FIRST_PARTY = new User('first-party-uid');
87
87
  User.MOCK_USER = new User('mock-user');
88
88
 
89
- const version = "9.20.0-canary.2d141ed9d";
89
+ const version = "9.20.0";
90
90
 
91
91
  /**
92
92
  * @license
@@ -4279,17 +4279,6 @@ function serverTimestamp$1(localWriteTime, previousValue) {
4279
4279
  }
4280
4280
  }
4281
4281
  };
4282
- // We should avoid storing deeply nested server timestamp map values
4283
- // because we never use the intermediate "previous values".
4284
- // For example:
4285
- // previous: 42L, add: t1, result: t1 -> 42L
4286
- // previous: t1, add: t2, result: t2 -> 42L (NOT t2 -> t1 -> 42L)
4287
- // previous: t2, add: t3, result: t3 -> 42L (NOT t3 -> t2 -> t1 -> 42L)
4288
- // `getPreviousValue` recursively traverses server timestamps to find the
4289
- // least recent Value.
4290
- if (previousValue && isServerTimestamp(previousValue)) {
4291
- previousValue = getPreviousValue(previousValue);
4292
- }
4293
4282
  if (previousValue) {
4294
4283
  mapValue.fields[PREVIOUS_VALUE_KEY] = previousValue;
4295
4284
  }