New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-native-matrix-sdk

Package Overview
Dependencies
Maintainers
1
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-matrix-sdk - npm Package Versions

1
4578

1.0.0-alpha24

Diff
hannojg
published 1.0.0-alpha24 •

Changelog

Source

1.0.0-alpha24

  • Fixed issue in iOS where getLastEventsForAllRooms caused a crash
  • Added sendReadReceipt(roomId: string, eventId: string) in android
  • Added markRoomAsRead(roomId)
hannojg
published 1.0.0-alpha23 •
hannojg
published 1.0.0-alpha22 •

Changelog

Source

1.0.0-alpha22

  • base64 encoding device token when doing iOS push notification registration
  • add appId parameter to registerPushNotification
hannojg
published 1.0.0-alpha21 •

Changelog

Source

1.0.0-alpha21

  • Changing name of application when doing registerPushNotifications to yourpackagename.(android|ios)
hannojg
published 1.0.0-alpha20 •

Changelog

Source

1.0.0-alpha20

  • Fixed implementation issues with registerPushNotifications API
hannojg
published 1.0.0-alpha19 •

Changelog

Source

1.0.0-alpha19

  • Added registerPushNotifications API (android and iOS)
    /**
     * Adds a new pusher (service) to the user at the matrix homeserver. The matrix homeserver will
     * use this pusher service to broadcast (push) notifications to the user's device (using FCM, APNS).
     * @param appDisplayName
     * @param pushServiceUrl
     * @param token (FCM ID, or APNS device token)
     */
    registerPushNotifications(appDisplayName: string, pushServiceUrl: string, token: string): Promise<void>;
hannojg
published 1.0.0-alpha18 •

Changelog

Source

1.0.0-alpha18

  • Corrected MXRoomAttributes name from notificationcount -> notification_count, thus fixing that undefined is returned
hannojg
published 1.0.0-alpha17 •

Changelog

Source

1.0.0-alpha17

  • Android and iOS use now a file store instead of a memory store, which is a performance optimization
hannojg
published 1.0.0-alpha16 •

Changelog

Source

1.0.0-alpha16

  • Changed how loadMessagesInRoom works. Instead of needing to register a listener, it now returns the events of the room as a promise array Promise<MXMessageEvents[]> (docs updated accordingly)
hannojg
published 1.0.0-alpha15 •