@edgedev/firebase 1.9.12 → 1.9.14
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/edgeFirebase.ts +3 -0
- package/index.ts +2 -2
- package/package.json +1 -1
package/edgeFirebase.ts
CHANGED
|
@@ -1410,7 +1410,10 @@ export const EdgeFirebase = class {
|
|
|
1410
1410
|
private usersSnapshotStarting = false;
|
|
1411
1411
|
|
|
1412
1412
|
public startUsersSnapshot = async(collectionPath = ''): Promise<void> => {
|
|
1413
|
+
console.log('startUsersSnapshot', collectionPath);
|
|
1414
|
+
console.log(this.usersSnapshotStarting)
|
|
1413
1415
|
if (!this.usersSnapshotStarting) {
|
|
1416
|
+
console.log('startUsersSnapshot', collectionPath);
|
|
1414
1417
|
this.usersSnapshotStarting = true;
|
|
1415
1418
|
this.stopSnapshot("staged-users");
|
|
1416
1419
|
this.state.users = {};
|
package/index.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EdgeFirebase } from "./edgeFirebase";
|
|
2
2
|
export default {
|
|
3
|
-
install: (app, options, isPersistant) => {
|
|
4
|
-
const eFb = new EdgeFirebase(options, isPersistant);
|
|
3
|
+
install: (app, options, isPersistant, enablePopupRedirect) => {
|
|
4
|
+
const eFb = new EdgeFirebase(options, isPersistant, enablePopupRedirect);
|
|
5
5
|
app.provide("edgeFirebase", eFb);
|
|
6
6
|
}
|
|
7
7
|
};
|