@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.
@@ -6,7 +6,7 @@ import { FirebaseError, getDefaultEmulatorHostnameAndPort, deepEqual, createMock
6
6
  import { Integer } from '@firebase/webchannel-wrapper/bloom-blob';
7
7
  import { randomBytes as randomBytes$1 } from 'crypto';
8
8
 
9
- const version$1 = "4.7.7-canary.c8e5b3e77";
9
+ const version$1 = "4.7.7-canary.dcfb3da2e";
10
10
 
11
11
  /**
12
12
  * @license
@@ -59,7 +59,7 @@ User.GOOGLE_CREDENTIALS = new User('google-credentials-uid');
59
59
  User.FIRST_PARTY = new User('first-party-uid');
60
60
  User.MOCK_USER = new User('mock-user');
61
61
 
62
- const version = "11.3.0-canary.c8e5b3e77";
62
+ const version = "11.3.0-canary.dcfb3da2e";
63
63
 
64
64
  /**
65
65
  * @license
@@ -6514,7 +6514,7 @@ function isPrimitiveArrayEqual(left, right) {
6514
6514
  */
6515
6515
  /**
6516
6516
  * Represents a vector type in Firestore documents.
6517
- * Create an instance with {@link FieldValue.vector}.
6517
+ * Create an instance with <code>{@link vector}</code>.
6518
6518
  *
6519
6519
  * @class VectorValue
6520
6520
  */
@@ -6534,7 +6534,7 @@ class VectorValue {
6534
6534
  return this._values.map(n => n);
6535
6535
  }
6536
6536
  /**
6537
- * Returns `true` if the two VectorValue has the same raw number arrays, returns `false` otherwise.
6537
+ * Returns `true` if the two `VectorValue` values have the same raw number arrays, returns `false` otherwise.
6538
6538
  */
6539
6539
  isEqual(other) {
6540
6540
  return isPrimitiveArrayEqual(this._values, other._values);