2020-05-24 11:13:00 +00:00
|
|
|
//! # API structures
|
|
|
|
//!
|
|
|
|
//! ## Presentation
|
|
|
|
//! This module contains all the serializable structures that can be sent through the API to the
|
|
|
|
//! Clients
|
|
|
|
//!
|
|
|
|
//! ## Author
|
|
|
|
//! Pierre Hubert
|
2020-05-24 11:09:50 +00:00
|
|
|
|
|
|
|
pub mod http_error;
|
2020-05-24 15:57:47 +00:00
|
|
|
pub mod login_success;
|
2020-05-25 11:25:51 +00:00
|
|
|
pub mod current_user_id;
|
2020-05-26 17:45:38 +00:00
|
|
|
pub mod user_info;
|
2020-06-02 11:26:12 +00:00
|
|
|
pub mod custom_emoji;
|
2020-06-03 11:28:28 +00:00
|
|
|
pub mod res_find_user_by_virtual_directory;
|
2020-06-04 15:47:52 +00:00
|
|
|
pub mod res_find_virtual_directory;
|
2020-06-04 17:01:35 +00:00
|
|
|
pub mod res_create_conversation;
|
|
|
|
pub mod conversation_api;
|
2020-06-18 07:40:18 +00:00
|
|
|
mod legacy_api_bool;
|
2020-06-18 12:15:17 +00:00
|
|
|
pub mod res_find_private_conversations;
|
|
|
|
pub mod conversation_message_api;
|
2020-06-22 12:32:14 +00:00
|
|
|
pub mod conversations_refresh_api;
|
2020-06-22 16:55:24 +00:00
|
|
|
pub mod res_count_unread_conversations;
|
2020-06-23 16:55:23 +00:00
|
|
|
pub mod list_unread_conversations_api;
|
2020-06-24 07:08:31 +00:00
|
|
|
pub mod global_search_result_api;
|
2020-06-25 06:16:20 +00:00
|
|
|
pub mod res_create_group;
|
2020-06-25 11:39:37 +00:00
|
|
|
pub mod group_api;
|
2020-06-26 08:35:54 +00:00
|
|
|
pub mod advanced_group_api;
|
2020-06-27 05:23:38 +00:00
|
|
|
pub mod res_change_group_logo;
|
2020-06-29 13:45:26 +00:00
|
|
|
pub mod group_member_api;
|
2020-06-30 07:50:31 +00:00
|
|
|
pub mod friend_api;
|
2020-07-02 16:19:04 +00:00
|
|
|
pub mod friendship_status_api;
|
2020-07-03 14:41:14 +00:00
|
|
|
pub mod post_api;
|
2020-07-04 14:44:42 +00:00
|
|
|
pub mod movie_api;
|
|
|
|
pub mod survey_choice_api;
|
2020-07-05 17:32:28 +00:00
|
|
|
pub mod survey_api;
|
2020-07-07 17:14:16 +00:00
|
|
|
pub mod comment_api;
|
2020-07-09 11:26:39 +00:00
|
|
|
pub mod res_create_post;
|
2020-07-10 06:21:40 +00:00
|
|
|
pub mod posts_targets_api;
|
2020-07-10 10:55:50 +00:00
|
|
|
pub mod res_create_comment;
|
2020-07-10 11:31:40 +00:00
|
|
|
pub mod res_number_unread_notifications;
|
2020-07-11 06:14:30 +00:00
|
|
|
pub mod res_count_all_unreads;
|
2020-07-13 09:17:35 +00:00
|
|
|
pub mod notification_api;
|
|
|
|
pub mod user_membership_api;
|
2020-07-13 11:00:02 +00:00
|
|
|
mod type_container_api;
|
2020-07-13 11:15:26 +00:00
|
|
|
pub mod res_check_email_exists;
|
2020-07-13 11:23:37 +00:00
|
|
|
pub mod res_check_security_questions_exists;
|
2020-07-13 12:20:28 +00:00
|
|
|
pub mod res_get_security_questions;
|
2020-07-13 17:12:39 +00:00
|
|
|
pub mod res_check_security_answers;
|
2020-07-13 17:26:19 +00:00
|
|
|
pub mod account_export_api;
|
2020-07-13 17:38:51 +00:00
|
|
|
pub mod user_like_api;
|
2020-07-14 08:08:30 +00:00
|
|
|
pub mod survey_response_api;
|
2020-07-14 09:15:20 +00:00
|
|
|
pub mod entities_constructor;
|
2020-07-14 11:16:52 +00:00
|
|
|
pub mod general_settings_api;
|
2021-01-19 16:27:54 +00:00
|
|
|
pub mod language_settings_api;
|
2021-01-19 17:14:17 +00:00
|
|
|
pub mod security_settings_api;
|
2021-01-20 17:31:01 +00:00
|
|
|
pub mod account_image_settings_api;
|
2021-02-05 09:37:37 +00:00
|
|
|
pub mod res_create_custom_emoji;
|
2021-02-08 17:24:28 +00:00
|
|
|
pub mod res_get_ws_token;
|
2021-02-10 16:16:52 +00:00
|
|
|
pub mod user_calls_config;
|
2021-02-10 16:32:14 +00:00
|
|
|
pub mod joined_call_message;
|
|
|
|
pub mod call_member_info;
|