entropic-bond 1.53.7 → 1.53.9
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/entropic-bond.js +3 -3
- package/lib/entropic-bond.js.map +1 -1
- package/lib/entropic-bond.umd.cjs +1 -1
- package/lib/entropic-bond.umd.cjs.map +1 -1
- package/lib/persistent/persistent.d.ts +10 -8
- package/lib/store/data-source.d.ts +1 -10
- package/lib/store/model.d.ts +1 -1
- package/package.json +1 -1
package/lib/entropic-bond.js
CHANGED
|
@@ -636,11 +636,11 @@ const U = class U {
|
|
|
636
636
|
next(e) {
|
|
637
637
|
return this.mapToInstance(() => this._stream.next(e));
|
|
638
638
|
}
|
|
639
|
-
onDocumentChange(e, t
|
|
639
|
+
onDocumentChange(e, t) {
|
|
640
640
|
return this._stream.onDocumentChange(
|
|
641
|
+
this.collectionName,
|
|
641
642
|
e,
|
|
642
|
-
t
|
|
643
|
-
(s) => r(this.toPersistentChangeObject(s))
|
|
643
|
+
(r) => t(this.toPersistentChangeObject(r))
|
|
644
644
|
);
|
|
645
645
|
}
|
|
646
646
|
onCollectionChange(e, t) {
|