Update CHANGELOG and remove unused imports

This commit is contained in:
Waffle 2021-04-27 12:17:14 +03:00
parent cd170951ae
commit a7d07a770c
2 changed files with 5 additions and 6 deletions

View file

@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### Fixed
- Type of `PublicChatSupergroup::slow_mode_delay` field: `Option<i32>`=> `Option<u32>` ([#80][pr80])
- Add missing `Chat::message_auto_delete_time` field ([#80][pr80]) - Add missing `Chat::message_auto_delete_time` field ([#80][pr80])
- `SendChatAction` output type `Message` => `True` ([#75][pr75]) - `SendChatAction` output type `Message` => `True` ([#75][pr75])
- `GetChatAdministrators` output type `ChatMember` => `Vec<ChatMember>` ([#73][pr73]) - `GetChatAdministrators` output type `ChatMember` => `Vec<ChatMember>` ([#73][pr73])

View file

@ -3,12 +3,10 @@
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use crate::types::{ use crate::types::{
chat::{ChatKind, PublicChatKind}, Animation, Audio, Chat, Contact, Dice, Document, Game, InlineKeyboardMarkup, Invoice, Location,
Animation, Audio, Chat, ChatPublic, Contact, Dice, Document, Game, InlineKeyboardMarkup, MessageAutoDeleteTimerChanged, MessageEntity, PassportData, PhotoSize, Poll,
Invoice, Location, MessageAutoDeleteTimerChanged, MessageEntity, PassportData, PhotoSize, Poll, ProximityAlertTriggered, Sticker, SuccessfulPayment, True, User, Venue, Video, VideoNote,
ProximityAlertTriggered, PublicChatChannel, PublicChatSupergroup, Sticker, SuccessfulPayment, Voice, VoiceChatEnded, VoiceChatParticipantsInvited, VoiceChatStarted,
True, User, Venue, Video, VideoNote, Voice, VoiceChatEnded, VoiceChatParticipantsInvited,
VoiceChatStarted,
}; };
/// This object represents a message. /// This object represents a message.