@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.
- package/dist/firestore/src/global_index.d.ts +2 -2
- package/dist/firestore/src/lite-api/vector_value.d.ts +2 -2
- package/dist/index.cjs.js +4 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.esm2017.js +4 -4
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.node.cjs.js +4 -4
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/index.node.mjs +4 -4
- package/dist/index.node.mjs.map +1 -1
- package/dist/index.rn.js +4 -4
- package/dist/index.rn.js.map +1 -1
- package/dist/internal.d.ts +2 -2
- package/dist/lite/firestore/src/lite-api/vector_value.d.ts +2 -2
- package/dist/lite/index.browser.esm2017.js +4 -4
- package/dist/lite/index.browser.esm2017.js.map +1 -1
- package/dist/lite/index.cjs.js +4 -4
- package/dist/lite/index.cjs.js.map +1 -1
- package/dist/lite/index.d.ts +2 -2
- package/dist/lite/index.node.cjs.js +4 -4
- package/dist/lite/index.node.cjs.js.map +1 -1
- package/dist/lite/index.node.mjs +4 -4
- package/dist/lite/index.node.mjs.map +1 -1
- package/dist/lite/index.rn.esm2017.js +4 -4
- package/dist/lite/index.rn.esm2017.js.map +1 -1
- package/dist/lite/internal.d.ts +2 -2
- package/dist/lite/private.d.ts +2 -2
- package/dist/private.d.ts +2 -2
- package/package.json +9 -9
package/dist/lite/index.d.ts
CHANGED
|
@@ -1864,7 +1864,7 @@ export declare function vector(values?: number[]): VectorValue;
|
|
|
1864
1864
|
*/
|
|
1865
1865
|
/**
|
|
1866
1866
|
* Represents a vector type in Firestore documents.
|
|
1867
|
-
* Create an instance with {@link
|
|
1867
|
+
* Create an instance with <code>{@link vector}</code>.
|
|
1868
1868
|
*
|
|
1869
1869
|
* @class VectorValue
|
|
1870
1870
|
*/
|
|
@@ -1875,7 +1875,7 @@ export declare class VectorValue {
|
|
|
1875
1875
|
*/
|
|
1876
1876
|
toArray(): number[];
|
|
1877
1877
|
/**
|
|
1878
|
-
* Returns `true` if the two VectorValue
|
|
1878
|
+
* Returns `true` if the two `VectorValue` values have the same raw number arrays, returns `false` otherwise.
|
|
1879
1879
|
*/
|
|
1880
1880
|
isEqual(other: VectorValue): boolean;
|
|
1881
1881
|
}
|
|
@@ -10,7 +10,7 @@ var util = require('@firebase/util');
|
|
|
10
10
|
var bloomBlob = require('@firebase/webchannel-wrapper/bloom-blob');
|
|
11
11
|
var crypto = require('crypto');
|
|
12
12
|
|
|
13
|
-
const version$1 = "4.7.7-canary.
|
|
13
|
+
const version$1 = "4.7.7-canary.dcfb3da2e";
|
|
14
14
|
|
|
15
15
|
/**
|
|
16
16
|
* @license
|
|
@@ -63,7 +63,7 @@ User.GOOGLE_CREDENTIALS = new User('google-credentials-uid');
|
|
|
63
63
|
User.FIRST_PARTY = new User('first-party-uid');
|
|
64
64
|
User.MOCK_USER = new User('mock-user');
|
|
65
65
|
|
|
66
|
-
const version = "11.3.0-canary.
|
|
66
|
+
const version = "11.3.0-canary.dcfb3da2e";
|
|
67
67
|
|
|
68
68
|
/**
|
|
69
69
|
* @license
|
|
@@ -6518,7 +6518,7 @@ function isPrimitiveArrayEqual(left, right) {
|
|
|
6518
6518
|
*/
|
|
6519
6519
|
/**
|
|
6520
6520
|
* Represents a vector type in Firestore documents.
|
|
6521
|
-
* Create an instance with {@link
|
|
6521
|
+
* Create an instance with <code>{@link vector}</code>.
|
|
6522
6522
|
*
|
|
6523
6523
|
* @class VectorValue
|
|
6524
6524
|
*/
|
|
@@ -6538,7 +6538,7 @@ class VectorValue {
|
|
|
6538
6538
|
return this._values.map(n => n);
|
|
6539
6539
|
}
|
|
6540
6540
|
/**
|
|
6541
|
-
* Returns `true` if the two VectorValue
|
|
6541
|
+
* Returns `true` if the two `VectorValue` values have the same raw number arrays, returns `false` otherwise.
|
|
6542
6542
|
*/
|
|
6543
6543
|
isEqual(other) {
|
|
6544
6544
|
return isPrimitiveArrayEqual(this._values, other._values);
|