@firebase/firestore 4.7.7-canary.c8e5b3e77 → 4.7.7-canary.dcfb3da2e

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.
@@ -9,7 +9,7 @@ import * as grpc from '@grpc/grpc-js';
9
9
  import * as protoLoader from '@grpc/proto-loader';
10
10
 
11
11
  const name = "@firebase/firestore";
12
- const version$1 = "4.7.7-canary.c8e5b3e77";
12
+ const version$1 = "4.7.7-canary.dcfb3da2e";
13
13
 
14
14
  /**
15
15
  * @license
@@ -62,7 +62,7 @@ User.GOOGLE_CREDENTIALS = new User('google-credentials-uid');
62
62
  User.FIRST_PARTY = new User('first-party-uid');
63
63
  User.MOCK_USER = new User('mock-user');
64
64
 
65
- const version = "11.3.0-canary.c8e5b3e77";
65
+ const version = "11.3.0-canary.dcfb3da2e";
66
66
 
67
67
  /**
68
68
  * @license
@@ -29311,7 +29311,7 @@ class GeoPoint {
29311
29311
  */
29312
29312
  /**
29313
29313
  * Represents a vector type in Firestore documents.
29314
- * Create an instance with {@link FieldValue.vector}.
29314
+ * Create an instance with <code>{@link vector}</code>.
29315
29315
  *
29316
29316
  * @class VectorValue
29317
29317
  */
@@ -29331,7 +29331,7 @@ class VectorValue {
29331
29331
  return this._values.map(n => n);
29332
29332
  }
29333
29333
  /**
29334
- * Returns `true` if the two VectorValue has the same raw number arrays, returns `false` otherwise.
29334
+ * Returns `true` if the two `VectorValue` values have the same raw number arrays, returns `false` otherwise.
29335
29335
  */
29336
29336
  isEqual(other) {
29337
29337
  return isPrimitiveArrayEqual(this._values, other._values);