@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/internal.d.ts
CHANGED
|
@@ -5931,7 +5931,7 @@ export declare function vector(values?: number[]): VectorValue;
|
|
|
5931
5931
|
*/
|
|
5932
5932
|
/**
|
|
5933
5933
|
* Represents a vector type in Firestore documents.
|
|
5934
|
-
* Create an instance with {@link
|
|
5934
|
+
* Create an instance with <code>{@link vector}</code>.
|
|
5935
5935
|
*
|
|
5936
5936
|
* @class VectorValue
|
|
5937
5937
|
*/
|
|
@@ -5947,7 +5947,7 @@ export declare class VectorValue {
|
|
|
5947
5947
|
*/
|
|
5948
5948
|
toArray(): number[];
|
|
5949
5949
|
/**
|
|
5950
|
-
* Returns `true` if the two VectorValue
|
|
5950
|
+
* Returns `true` if the two `VectorValue` values have the same raw number arrays, returns `false` otherwise.
|
|
5951
5951
|
*/
|
|
5952
5952
|
isEqual(other: VectorValue): boolean;
|
|
5953
5953
|
}
|
package/dist/lite/private.d.ts
CHANGED
|
@@ -5707,7 +5707,7 @@ export declare function vector(values?: number[]): VectorValue;
|
|
|
5707
5707
|
*/
|
|
5708
5708
|
/**
|
|
5709
5709
|
* Represents a vector type in Firestore documents.
|
|
5710
|
-
* Create an instance with {@link
|
|
5710
|
+
* Create an instance with <code>{@link vector}</code>.
|
|
5711
5711
|
*
|
|
5712
5712
|
* @class VectorValue
|
|
5713
5713
|
*/
|
|
@@ -5719,7 +5719,7 @@ export declare class VectorValue {
|
|
|
5719
5719
|
*/
|
|
5720
5720
|
toArray(): number[];
|
|
5721
5721
|
/**
|
|
5722
|
-
* Returns `true` if the two VectorValue
|
|
5722
|
+
* Returns `true` if the two `VectorValue` values have the same raw number arrays, returns `false` otherwise.
|
|
5723
5723
|
*/
|
|
5724
5724
|
isEqual(other: VectorValue): boolean;
|
|
5725
5725
|
}
|
package/dist/private.d.ts
CHANGED
|
@@ -7109,7 +7109,7 @@ export declare function vector(values?: number[]): VectorValue;
|
|
|
7109
7109
|
*/
|
|
7110
7110
|
/**
|
|
7111
7111
|
* Represents a vector type in Firestore documents.
|
|
7112
|
-
* Create an instance with {@link
|
|
7112
|
+
* Create an instance with <code>{@link vector}</code>.
|
|
7113
7113
|
*
|
|
7114
7114
|
* @class VectorValue
|
|
7115
7115
|
*/
|
|
@@ -7121,7 +7121,7 @@ export declare class VectorValue {
|
|
|
7121
7121
|
*/
|
|
7122
7122
|
toArray(): number[];
|
|
7123
7123
|
/**
|
|
7124
|
-
* Returns `true` if the two VectorValue
|
|
7124
|
+
* Returns `true` if the two `VectorValue` values have the same raw number arrays, returns `false` otherwise.
|
|
7125
7125
|
*/
|
|
7126
7126
|
isEqual(other: VectorValue): boolean;
|
|
7127
7127
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firebase/firestore",
|
|
3
|
-
"version": "4.7.7-canary.
|
|
3
|
+
"version": "4.7.7-canary.dcfb3da2e",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=18.0.0"
|
|
6
6
|
},
|
|
@@ -94,21 +94,21 @@
|
|
|
94
94
|
"lite/package.json"
|
|
95
95
|
],
|
|
96
96
|
"dependencies": {
|
|
97
|
-
"@firebase/component": "0.6.12-canary.
|
|
98
|
-
"@firebase/logger": "0.4.4-canary.
|
|
99
|
-
"@firebase/util": "1.10.3-canary.
|
|
100
|
-
"@firebase/webchannel-wrapper": "1.0.3-canary.
|
|
97
|
+
"@firebase/component": "0.6.12-canary.dcfb3da2e",
|
|
98
|
+
"@firebase/logger": "0.4.4-canary.dcfb3da2e",
|
|
99
|
+
"@firebase/util": "1.10.3-canary.dcfb3da2e",
|
|
100
|
+
"@firebase/webchannel-wrapper": "1.0.3-canary.dcfb3da2e",
|
|
101
101
|
"@grpc/grpc-js": "~1.9.0",
|
|
102
102
|
"@grpc/proto-loader": "^0.7.8",
|
|
103
103
|
"tslib": "^2.1.0"
|
|
104
104
|
},
|
|
105
105
|
"peerDependencies": {
|
|
106
|
-
"@firebase/app": "0.11.0-canary.
|
|
106
|
+
"@firebase/app": "0.11.0-canary.dcfb3da2e"
|
|
107
107
|
},
|
|
108
108
|
"devDependencies": {
|
|
109
|
-
"@firebase/app": "0.11.0-canary.
|
|
110
|
-
"@firebase/app-compat": "0.2.49-canary.
|
|
111
|
-
"@firebase/auth": "1.9.0-canary.
|
|
109
|
+
"@firebase/app": "0.11.0-canary.dcfb3da2e",
|
|
110
|
+
"@firebase/app-compat": "0.2.49-canary.dcfb3da2e",
|
|
111
|
+
"@firebase/auth": "1.9.0-canary.dcfb3da2e",
|
|
112
112
|
"@rollup/plugin-alias": "5.1.1",
|
|
113
113
|
"@rollup/plugin-json": "6.1.0",
|
|
114
114
|
"@types/eslint": "7.29.0",
|