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
4568

1.0.0-alpha14

Diff
hannojg
published 1.0.0-alpha14 •

Changelog

Source

1.0.0-alpha14

  • Fixed issue where android SDK was crashing when started listening without having started a session.
hannojg
published 1.0.0-alpha13 •

Changelog

Source

1.0.0-alpha13

  • Fixed issue where credentials returned by login were a string instead of an object.
hannojg
published 1.0.0-alpha12 •

Changelog

Source

1.0.0-alpha12

  • Added getLastEventsForAllRooms API for android
hannojg
published 1.0.0-alpha11 •

Changelog

Source

1.0.0-alpha11

  • Added listen (and unlisten) API to listen to the overall global events of a user
hannojg
published 1.0.0-alpha9 •

Changelog

Source

1.0.0-alpha9

  • Added following methods for android:
    • createRoom(userId: string): Promise<MXRoomAttributes>;
    • getJoinedRooms(): Promise<[MXRoomAttributes]>;
    • listenToRoom(roomId: string): Promise<void>; -> will send events to RN
    • sendMessageToRoom(roomId: string, messageType: string, data: any): Promise<SuccessResponse>;
hannojg
published 1.0.0-alpha8 •

Changelog

Source

1.0.0-alpha8

  • Added following methods for iOS - android will follow tomorrow. (Not all methods have been intensively tested yet!):
    • createRoom(userId: string): Promise<MXRoomAttributes>;
    • joinRoom(roomId: string): Promise<MXRoomAttributes>;
    • getInvitedRooms(): Promise<MXRoomAttributes>;
    • getPublicRooms(url: string): Promise<PublicRooms>;
    • getUnreadEventTypes(): Promise<[string]>;
    • getLastEventsForAllRooms(): Promise<[MXMessageEvent]>;
    • getJoinedRooms(): Promise<[MXRoomAttributes]>;
    • listenToRoom(roomId: string): Promise<void>; -> will send events to RN
    • unlistenToRoom(roomId: string): Promise<void>;
    • loadMessagesInRoom(roomId: string, perPage: number, initialLoad: boolean): Promise<void>;
    • searchMessagesInRoom(roomId: string, searchTerm: string, nextBatch: string, beforeLimit: string, afterLimit: string);
    • getMessages(roomId: string, from: string, direction: string, limit: string): Promise<MessagesFromRoom>;
    • sendMessageToRoom(roomId: string, messageType: string, data: any): Promise<SuccessResponse>;
    • sendReadReceipt(roomId: string, eventId: string): Promise<SuccessResponse>;
hannojg
published 1.0.0-alpha7 •

Changelog

Source

1.0.0-alpha7

  • Fixed iOS implementation of login
  • Android and iOS do now resolve according to the types/index.d.ts
hannojg
published 1.0.0-alpha6 •

Changelog

Source

1.0.0-alpha6

  • Added iOS build setup and added implementation of methods in iOS (not tested yet).
hannojg
published 1.0.0-alpha5 •

Changelog

Source

1.0.0-alpha5

  • Removing unnecessary files
hannojg
published 1.0.0-alpha4 •

Changelog

Source

1.0.0-alpha4

  • Actually implemented configure, login, startSession functionality in library
    • This is for android only implemented, next version will implement those in iOS
  • Renamed API MatrixSdk -> MatrixSDK
  • Using appropriate versioning, and suffixing library version with -alpha o give clear indication that this isn't ready yet.