@firebase/firestore-compat 0.4.12 → 0.4.13
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/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.node.cjs.js +1 -1
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/index.rn.js +1 -1
- package/dist/index.rn.js.map +1 -1
- package/dist/node-esm/index.node.esm.js +1 -1
- package/dist/node-esm/index.node.esm.js.map +1 -1
- package/dist/node-esm/src/api/database.d.ts +3 -3
- package/dist/node-esm/src/api/field_path.d.ts +1 -1
- package/dist/node-esm/src/api/field_value.d.ts +1 -1
- package/dist/node-esm/src/config.d.ts +1 -1
- package/dist/node-esm/src/index.d.ts +1 -1
- package/dist/node-esm/src/index.node.d.ts +1 -1
- package/dist/node-esm/src/index.rn.d.ts +1 -1
- package/dist/node-esm/src/register-module.d.ts +1 -1
- package/dist/node-esm/src/util/input_validation.d.ts +1 -1
- package/dist/node-esm/test/util/events_accumulator.d.ts +1 -1
- package/dist/node-esm/test/util/firebase_export.d.ts +2 -2
- package/dist/node-esm/test/util/helpers.d.ts +1 -1
- package/dist/src/api/database.d.ts +3 -3
- package/dist/src/api/field_path.d.ts +1 -1
- package/dist/src/api/field_value.d.ts +1 -1
- package/dist/src/config.d.ts +1 -1
- package/dist/src/index.d.ts +1 -1
- package/dist/src/index.node.d.ts +1 -1
- package/dist/src/index.rn.d.ts +1 -1
- package/dist/src/register-module.d.ts +1 -1
- package/dist/src/util/input_validation.d.ts +1 -1
- package/dist/test/util/events_accumulator.d.ts +1 -1
- package/dist/test/util/firebase_export.d.ts +2 -2
- package/dist/test/util/helpers.d.ts +1 -1
- package/package.json +6 -10
|
@@ -14,5 +14,5 @@
|
|
|
14
14
|
* See the License for the specific language governing permissions and
|
|
15
15
|
* limitations under the License.
|
|
16
16
|
*/
|
|
17
|
-
import { SetOptions } from '@firebase/firestore-types';
|
|
17
|
+
import type { SetOptions } from '@firebase/firestore-types';
|
|
18
18
|
export declare function validateSetOptions(methodName: string, options: SetOptions | undefined): SetOptions;
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
* See the License for the specific language governing permissions and
|
|
15
15
|
* limitations under the License.
|
|
16
16
|
*/
|
|
17
|
-
import * as firestore from '@firebase/firestore-types';
|
|
17
|
+
import type * as firestore from '@firebase/firestore-types';
|
|
18
18
|
/**
|
|
19
19
|
* A helper object that can accumulate an arbitrary amount of events and resolve
|
|
20
20
|
* a promise when expected number has been emitted.
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
* See the License for the specific language governing permissions and
|
|
15
15
|
* limitations under the License.
|
|
16
16
|
*/
|
|
17
|
-
import { FirebaseApp } from '@firebase/app-types';
|
|
17
|
+
import type { FirebaseApp } from '@firebase/app-types';
|
|
18
18
|
import { GeoPoint, Timestamp } from '@firebase/firestore';
|
|
19
|
-
import * as firestore from '@firebase/firestore-types';
|
|
19
|
+
import type * as firestore from '@firebase/firestore-types';
|
|
20
20
|
import { Blob } from '../../src/api/blob';
|
|
21
21
|
import { Firestore, DocumentReference, QueryDocumentSnapshot } from '../../src/api/database';
|
|
22
22
|
import { FieldPath } from '../../src/api/field_path';
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
* See the License for the specific language governing permissions and
|
|
15
15
|
* limitations under the License.
|
|
16
16
|
*/
|
|
17
|
-
import * as firestore from '@firebase/firestore-types';
|
|
17
|
+
import type * as firestore from '@firebase/firestore-types';
|
|
18
18
|
export declare function isPersistenceAvailable(): boolean;
|
|
19
19
|
type ApiSuiteFunction = (message: string, testSuite: (persistence: boolean) => void) => void;
|
|
20
20
|
interface ApiDescribe {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firebase/firestore-compat",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.13",
|
|
4
4
|
"description": "The Cloud Firestore component of the Firebase JS SDK.",
|
|
5
5
|
"author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
|
|
6
6
|
"main": "dist/index.node.cjs.js",
|
|
@@ -47,21 +47,17 @@
|
|
|
47
47
|
"@firebase/app-compat": "0.x"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@firebase/component": "0.7.
|
|
51
|
-
"@firebase/firestore": "4.17.
|
|
52
|
-
"@firebase/util": "1.15.
|
|
53
|
-
"@firebase/firestore-types": "3.0.
|
|
50
|
+
"@firebase/component": "0.7.5",
|
|
51
|
+
"@firebase/firestore": "4.17.1",
|
|
52
|
+
"@firebase/util": "1.15.3",
|
|
53
|
+
"@firebase/firestore-types": "3.0.5",
|
|
54
54
|
"tslib": "^2.1.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@firebase/app-compat": "0.5.
|
|
58
|
-
"@types/eslint": "7.29.0",
|
|
57
|
+
"@firebase/app-compat": "0.5.17",
|
|
59
58
|
"rollup": "4.62.2",
|
|
60
|
-
"rollup-plugin-sourcemaps": "0.6.3",
|
|
61
|
-
"@rollup/plugin-terser": "0.4.4",
|
|
62
59
|
"rollup-plugin-typescript2": "0.37.0",
|
|
63
60
|
"@rollup/plugin-node-resolve": "16.0.0",
|
|
64
|
-
"ts-node": "10.9.2",
|
|
65
61
|
"typescript": "5.5.4"
|
|
66
62
|
},
|
|
67
63
|
"license": "Apache-2.0",
|