@firebase/firestore 4.3.1-canary.6e4e475f6 → 4.3.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.
- package/dist/firestore/test/integration/util/composite_index_test_helper.d.ts +1 -2
- package/dist/index.cjs.js +3 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm2017.js +3 -3
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm5.js +3 -3
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +2 -2
- package/dist/index.node.mjs +2 -2
- package/dist/index.rn.js +3 -3
- package/dist/index.rn.js.map +1 -1
- package/dist/lite/firestore/test/integration/util/composite_index_test_helper.d.ts +1 -2
- package/dist/lite/index.browser.esm2017.js +2 -2
- package/dist/lite/index.browser.esm2017.js.map +1 -1
- package/dist/lite/index.browser.esm5.js +2 -2
- package/dist/lite/index.browser.esm5.js.map +1 -1
- package/dist/lite/index.cjs.js +2 -2
- package/dist/lite/index.cjs.js.map +1 -1
- package/dist/lite/index.node.cjs.js +2 -2
- package/dist/lite/index.node.mjs +2 -2
- package/dist/lite/index.rn.esm2017.js +2 -2
- package/dist/lite/index.rn.esm2017.js.map +1 -1
- package/dist/lite/packages/firestore/test/integration/util/composite_index_test_helper.d.ts +1 -2
- package/dist/packages/firestore/test/integration/util/composite_index_test_helper.d.ts +1 -2
- package/package.json +9 -9
|
@@ -37,10 +37,9 @@ export declare class CompositeIndexTestHelper {
|
|
|
37
37
|
withTestDocs<T>(persistence: PersistenceMode | typeof PERSISTENCE_MODE_UNSPECIFIED, docs: {
|
|
38
38
|
[key: string]: DocumentData;
|
|
39
39
|
}, fn: (collection: CollectionReference, db: Firestore) => Promise<T>): Promise<T>;
|
|
40
|
-
withTestCollection<T>(persistence: PersistenceMode | typeof PERSISTENCE_MODE_UNSPECIFIED, fn: (collection: CollectionReference, db: Firestore) => Promise<T>): Promise<T>;
|
|
41
40
|
private toHashedId;
|
|
42
41
|
private toHashedIds;
|
|
43
|
-
addTestSpecificFieldsToDoc
|
|
42
|
+
private addTestSpecificFieldsToDoc;
|
|
44
43
|
private removeTestSpecificFieldsFromDoc;
|
|
45
44
|
private prepareTestDocuments;
|
|
46
45
|
assertOnlineAndOfflineResultsMatch(query: Query, ...expectedDocs: string[]): Promise<void>;
|
|
@@ -37,10 +37,9 @@ export declare class CompositeIndexTestHelper {
|
|
|
37
37
|
withTestDocs<T>(persistence: PersistenceMode | typeof PERSISTENCE_MODE_UNSPECIFIED, docs: {
|
|
38
38
|
[key: string]: DocumentData;
|
|
39
39
|
}, fn: (collection: CollectionReference, db: Firestore) => Promise<T>): Promise<T>;
|
|
40
|
-
withTestCollection<T>(persistence: PersistenceMode | typeof PERSISTENCE_MODE_UNSPECIFIED, fn: (collection: CollectionReference, db: Firestore) => Promise<T>): Promise<T>;
|
|
41
40
|
private toHashedId;
|
|
42
41
|
private toHashedIds;
|
|
43
|
-
addTestSpecificFieldsToDoc
|
|
42
|
+
private addTestSpecificFieldsToDoc;
|
|
44
43
|
private removeTestSpecificFieldsFromDoc;
|
|
45
44
|
private prepareTestDocuments;
|
|
46
45
|
assertOnlineAndOfflineResultsMatch(query: Query, ...expectedDocs: string[]): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firebase/firestore",
|
|
3
|
-
"version": "4.3.1
|
|
3
|
+
"version": "4.3.1",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=10.10.0"
|
|
6
6
|
},
|
|
@@ -96,22 +96,22 @@
|
|
|
96
96
|
"lite/package.json"
|
|
97
97
|
],
|
|
98
98
|
"dependencies": {
|
|
99
|
-
"@firebase/component": "0.6.4
|
|
100
|
-
"@firebase/logger": "0.4.0
|
|
101
|
-
"@firebase/util": "1.9.3
|
|
102
|
-
"@firebase/webchannel-wrapper": "0.10.3
|
|
99
|
+
"@firebase/component": "0.6.4",
|
|
100
|
+
"@firebase/logger": "0.4.0",
|
|
101
|
+
"@firebase/util": "1.9.3",
|
|
102
|
+
"@firebase/webchannel-wrapper": "0.10.3",
|
|
103
103
|
"@grpc/grpc-js": "~1.9.0",
|
|
104
104
|
"@grpc/proto-loader": "^0.7.8",
|
|
105
105
|
"node-fetch": "2.6.7",
|
|
106
106
|
"tslib": "^2.1.0"
|
|
107
107
|
},
|
|
108
108
|
"peerDependencies": {
|
|
109
|
-
"@firebase/app": "0.
|
|
109
|
+
"@firebase/app": "0.x"
|
|
110
110
|
},
|
|
111
111
|
"devDependencies": {
|
|
112
|
-
"@firebase/app": "0.9.21
|
|
113
|
-
"@firebase/app-compat": "0.2.21
|
|
114
|
-
"@firebase/auth": "1.3.1
|
|
112
|
+
"@firebase/app": "0.9.21",
|
|
113
|
+
"@firebase/app-compat": "0.2.21",
|
|
114
|
+
"@firebase/auth": "1.3.1",
|
|
115
115
|
"@rollup/plugin-alias": "3.1.9",
|
|
116
116
|
"@rollup/plugin-json": "4.1.0",
|
|
117
117
|
"@types/eslint": "7.29.0",
|