@data-weave/backend-firestore 0.4.25 → 0.4.27
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/lib/FirestoreList.js +3 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
package/lib/FirestoreList.js
CHANGED
|
@@ -31,7 +31,9 @@ class FirestoreList extends datamanager_1.LiveList {
|
|
|
31
31
|
this.handleInitialDataChange(querySnapshot.docs);
|
|
32
32
|
}
|
|
33
33
|
else {
|
|
34
|
-
|
|
34
|
+
// handle every change as inital dataload
|
|
35
|
+
this.handleInitialDataChange(querySnapshot.docs);
|
|
36
|
+
// this.handleSubsequentDataChanges(querySnapshot.docChanges())
|
|
35
37
|
}
|
|
36
38
|
// TODO: When calling ".resolve()" with realtime listener,
|
|
37
39
|
// the snapshot data might be stale from cache.
|
package/lib/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@data-weave/backend-firestore",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.27",
|
|
4
4
|
"author": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"registry": "https://registry.npmjs.org/"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@data-weave/datamanager": "~0.4.
|
|
26
|
+
"@data-weave/datamanager": "~0.4.26",
|
|
27
27
|
"firebase": ">=11.0.0"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "c4cad422f49b38e42ab4da335bd0420519f37396"
|
|
30
30
|
}
|