87 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			Dart
		
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			Dart
		
	
	
	
| /*
 | |
|  *   Matrix API Lite
 | |
|  *   Copyright (C) 2019, 2020, 2021 Famedly GmbH
 | |
|  *
 | |
|  *   This program is free software: you can redistribute it and/or modify
 | |
|  *   it under the terms of the GNU Affero General Public License as
 | |
|  *   published by the Free Software Foundation, either version 3 of the
 | |
|  *   License, or (at your option) any later version.
 | |
|  *
 | |
|  *   This program is distributed in the hope that it will be useful,
 | |
|  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 | |
|  *   GNU Affero General Public License for more details.
 | |
|  *
 | |
|  *   You should have received a copy of the GNU Affero General Public License
 | |
|  *   along with this program.  If not, see <https://www.gnu.org/licenses/>.
 | |
|  */
 | |
| 
 | |
| library matrix_api_lite;
 | |
| 
 | |
| export 'src/matrix_api.dart';
 | |
| export 'src/utils/logs.dart';
 | |
| export 'src/utils/map_copy_extension.dart';
 | |
| export 'src/utils/try_get_map_extension.dart';
 | |
| export 'src/model/algorithm_types.dart';
 | |
| export 'src/model/basic_event.dart';
 | |
| export 'src/model/basic_event_with_sender.dart';
 | |
| export 'src/model/basic_room_event.dart';
 | |
| export 'src/model/device.dart';
 | |
| export 'src/model/event_context.dart';
 | |
| export 'src/model/event_types.dart';
 | |
| export 'src/model/events_sync_update.dart';
 | |
| export 'src/model/filter.dart';
 | |
| export 'src/model/keys_query_response.dart';
 | |
| export 'src/model/login_response.dart';
 | |
| export 'src/model/login_types.dart';
 | |
| export 'src/model/matrix_connection_exception.dart';
 | |
| export 'src/model/matrix_event.dart';
 | |
| export 'src/model/matrix_exception.dart';
 | |
| export 'src/model/matrix_keys.dart';
 | |
| export 'src/model/message_types.dart';
 | |
| export 'src/model/notifications_query_response.dart';
 | |
| export 'src/model/one_time_keys_claim_response.dart';
 | |
| export 'src/model/open_graph_data.dart';
 | |
| export 'src/model/open_id_credentials.dart';
 | |
| export 'src/model/presence.dart';
 | |
| export 'src/model/presence_content.dart';
 | |
| export 'src/model/profile.dart';
 | |
| export 'src/model/public_rooms_response.dart';
 | |
| export 'src/model/push_rule_set.dart';
 | |
| export 'src/model/pusher.dart';
 | |
| export 'src/model/request_token_response.dart';
 | |
| export 'src/model/room_alias_informations.dart';
 | |
| export 'src/model/room_keys_info.dart';
 | |
| export 'src/model/room_keys_keys.dart';
 | |
| export 'src/model/room_summary.dart';
 | |
| export 'src/model/server_capabilities.dart';
 | |
| export 'src/model/stripped_state_event.dart';
 | |
| export 'src/model/supported_protocol.dart';
 | |
| export 'src/model/supported_versions.dart';
 | |
| export 'src/model/sync_update.dart';
 | |
| export 'src/model/tag.dart';
 | |
| export 'src/model/third_party_identifier.dart';
 | |
| export 'src/model/third_party_location.dart';
 | |
| export 'src/model/third_party_user.dart';
 | |
| export 'src/model/timeline_history_response.dart';
 | |
| export 'src/model/turn_server_credentials.dart';
 | |
| export 'src/model/upload_key_signatures_response.dart';
 | |
| export 'src/model/user_search_result.dart';
 | |
| export 'src/model/well_known_informations.dart';
 | |
| export 'src/model/who_is_info.dart';
 | |
| export 'src/model/auth/authentication_data.dart';
 | |
| export 'src/model/auth/authentication_identifier.dart';
 | |
| export 'src/model/auth/authentication_password.dart';
 | |
| export 'src/model/auth/authentication_phone_identifier.dart';
 | |
| export 'src/model/auth/authentication_recaptcha.dart';
 | |
| export 'src/model/auth/authentication_third_party_identifier.dart';
 | |
| export 'src/model/auth/authentication_three_pid_creds.dart';
 | |
| export 'src/model/auth/authentication_token.dart';
 | |
| export 'src/model/auth/authentication_types.dart';
 | |
| export 'src/model/auth/authentication_user_identifier.dart';
 | |
| export 'src/model/events/room_encrypted_content.dart';
 | |
| export 'src/model/events/room_encryption_content.dart';
 | |
| export 'src/model/events/secret_storage_default_key_content.dart';
 | |
| export 'src/model/events/secret_storage_key_content.dart';
 | |
| export 'src/model/events/tombstone_content.dart';
 |