mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-12 07:14:23 +00:00
parent
760ddd578f
commit
c6753efe5a
@ -17,6 +17,7 @@ Server and open synchronized Realms (#1276).
|
|||||||
### Bug fixes
|
### Bug fixes
|
||||||
* Removed a false negative warning when using `User.createConfiguration`.
|
* Removed a false negative warning when using `User.createConfiguration`.
|
||||||
* Fixed the type definition for `User.authenticate`.
|
* Fixed the type definition for `User.authenticate`.
|
||||||
|
* Added `Realm.Sync.Subscription.removeAllListeners()` to the `Subscription` proxy class used when debugging a React Native app (#479).
|
||||||
* Fixed the type definitions for `Session.addConnectionNotification` and `Session.removeConnectionNotification`
|
* Fixed the type definitions for `Session.addConnectionNotification` and `Session.removeConnectionNotification`
|
||||||
|
|
||||||
### Internal
|
### Internal
|
||||||
|
@ -34,7 +34,8 @@ Object.defineProperties(Subscription.prototype, {
|
|||||||
createMethods(Subscription.prototype, objectTypes.SUBSCRIPTION, [
|
createMethods(Subscription.prototype, objectTypes.SUBSCRIPTION, [
|
||||||
'unsubscribe',
|
'unsubscribe',
|
||||||
'addListener',
|
'addListener',
|
||||||
'removeListener'
|
'removeListener',
|
||||||
|
'removeAllListeners'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
export function createSubscription(realmId, info) {
|
export function createSubscription(realmId, info) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user