fix: Missing RoomCreationTypes
This commit is contained in:
parent
ddce012498
commit
a5af392fb8
|
|
@ -1,3 +1,6 @@
|
|||
## 0.2.6
|
||||
- fix: Missing RoomCreationTypes
|
||||
|
||||
## 0.2.5
|
||||
- fix: Request aliases
|
||||
|
||||
|
|
|
|||
|
|
@ -56,6 +56,7 @@ export 'src/model/push_rule_set.dart';
|
|||
export 'src/model/pusher.dart';
|
||||
export 'src/model/request_token_response.dart';
|
||||
export 'src/model/room_alias_information.dart';
|
||||
export 'src/model/room_creation_types.dart';
|
||||
export 'src/model/room_keys_info.dart';
|
||||
export 'src/model/room_keys_keys.dart';
|
||||
export 'src/model/room_summary.dart';
|
||||
|
|
|
|||
|
|
@ -0,0 +1,3 @@
|
|||
abstract class RoomCreationTypes {
|
||||
static const String mSpace = 'm.space';
|
||||
}
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
name: matrix_api_lite
|
||||
description: Dead simple data model for the matrix.org client-server API.
|
||||
version: 0.2.5
|
||||
version: 0.2.6
|
||||
homepage: https://famedly.com
|
||||
|
||||
environment:
|
||||
|
|
|
|||
Loading…
Reference in New Issue