Skip to content

Commit 3cec6d7

Browse files
authored
v0.6.3 (#171)
* fix(populates): `getPopulateChild` includes object Id - #169 - @nemo * fix(typings): add `createFirestoreInstance` to typings - #168
1 parent 547284f commit 3cec6d7

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

index.d.ts

+5
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,11 @@ export function getFirestore(firebaseInstance: object, otherConfig?: object): an
9797
*/
9898
export function firestoreReducer(state: object, action: object): any;
9999

100+
/**
101+
* Create a firestore instance that has helpers attached for dispatching actions
102+
*/
103+
export function createFirestoreInstance(firebaseInstance: object, configs: object, dispatch: func): object;
104+
100105
/**
101106
* A redux store reducer for Firestore state
102107
*/

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "redux-firestore",
3-
"version": "0.6.2",
3+
"version": "0.6.3",
44
"description": "Redux bindings for Firestore.",
55
"main": "lib/index.js",
66
"module": "es/index.js",

0 commit comments

Comments
 (0)