mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 06:25:10 +01:00
Update docs and changelogs
This commit is contained in:
parent
c9eec050d0
commit
ccc2c68751
28 changed files with 60 additions and 54 deletions
|
@ -10,15 +10,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
- Add `filter_boost_added` and `filter_reply_to_story` filters to `MessageFilterExt` trait
|
||||
- Add `filter_mention_command` filter to `HandlerExt` trait ([issue #494](https://github.com/teloxide/teloxide/issues/494))
|
||||
- Add `filter_business_connection`, `filter_business_message`, `filter_edited_business_message`, and `filter_deleted_business_messages` filters to update filters ([PR 1146](https://github.com/teloxide/teloxide/pull/1146))
|
||||
|
||||
## 0.13.0 - 2024-08-16
|
||||
|
||||
### Added
|
||||
|
||||
- Documentation regarding the way captions work for the official clients on `SendMediaGroup` ([PR 992](https://github.com/teloxide/teloxide/pull/992))
|
||||
- Add `MessageToCopyNotFound` error to `teloxide::errors::ApiError` ([PR 917](https://github.com/teloxide/teloxide/pull/917))
|
||||
- Add `MessageToCopyNotFound` error to `teloxide::errors::ApiError` ([PR 917](https://github.com/teloxide/teloxide/pull/917))
|
||||
- `Dispatcher::try_dispatch_with_listener` ([PR 913](https://github.com/teloxide/teloxide/pull/913))
|
||||
- Missing Message::filter_* functions ([PR 982](https://github.com/teloxide/teloxide/pull/982)):
|
||||
- Missing Message::filter_* functions ([PR 982](https://github.com/teloxide/teloxide/pull/982)):
|
||||
- `filter_game`
|
||||
- `filter_venue`
|
||||
- `filter_video`
|
||||
|
@ -50,7 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- `filter_video_chat_started`
|
||||
- `filter_video_chat_ended`
|
||||
- `filter_video_chat_participants_invited`
|
||||
- `filter_web_app_data`
|
||||
- `filter_web_app_data`
|
||||
- Implement `PostgresStorage`, a persistent dialogue storage based on [PostgreSQL](https://www.postgresql.org/)([PR 996](https://github.com/teloxide/teloxide/pull/996)).
|
||||
- Implement `GetChatId` for `teloxide_core::types::{Chat, ChatJoinRequest, ChatMemberUpdated}`.
|
||||
- Use [deadpool-redis](https://crates.io/crates/deadpool-redis) for Redis connection pooling ([PR 1081](https://github.com/teloxide/teloxide/pull/1081)).
|
||||
|
|
|
@ -28,7 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- Add `Birthdate` struct and corresponding field `birthdate` in `ChatPrivate`
|
||||
- Add `request_name`, `request_username` and `request_photo` fields to `KeyboardButtonRequestUsers` struct
|
||||
- Add `request_title`, `request_username` and `request_photo` fields to `KeyboardButtonRequestChat` struct
|
||||
- Add `SharedUser` struct and add corresponding field `users` to `UsersShared` struct
|
||||
- Add `SharedUser` struct
|
||||
- Add `title`, `username` and `photo` fields to `ChatShared` struct
|
||||
- Add `format` field to `InputSticker` struct
|
||||
- Add `format` parameter to `SetStickerSetThumbnail` method
|
||||
|
@ -41,7 +41,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- Add `BusinessMessagesDeleted` struct
|
||||
- Add `BusinessConnection`, `BusinessMessage`, `EditedBusinessMessage` and `DeletedBusinessMessages` variants to `UpdateKind` enum
|
||||
|
||||
|
||||
[pr1131]: https://github.com/teloxide/teloxide/pull/1131
|
||||
[pr1146]: https://github.com/teloxide/teloxide/pull/1146
|
||||
|
||||
|
@ -57,13 +56,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- Remove `flags` field from `StickerSet` struct
|
||||
- Remove `sticker_format` parameter from `CreateNewStickerSet` method
|
||||
|
||||
[pr1146]: https://github.com/teloxide/teloxide/pull/1146
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
- Support for TBA 7.2 ([#1146](pr1146))
|
||||
- Wrap `Public` variant of `ChatKind` in `Box`
|
||||
- Replaced `user_ids` with `users` in `UsersShared` struct
|
||||
|
||||
[pr1131]: https://github.com/teloxide/teloxide/pull/1131
|
||||
[pr1146]: https://github.com/teloxide/teloxide/pull/1146
|
||||
|
||||
## 0.10.1 - 2024-08-17
|
||||
|
|
|
@ -284,7 +284,7 @@ Schema(
|
|||
name: "reply_markup",
|
||||
ty: Option(RawTy("ReplyMarkup")),
|
||||
descr: Doc(
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.",
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.",
|
||||
md_links: {
|
||||
"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
|
||||
"custom reply keyboard": "https://core.telegram.org/bots#keyboards",
|
||||
|
@ -453,7 +453,7 @@ Schema(
|
|||
name: "reply_markup",
|
||||
ty: Option(RawTy("ReplyMarkup")),
|
||||
descr: Doc(
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.",
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.",
|
||||
md_links: {
|
||||
"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
|
||||
"custom reply keyboard": "https://core.telegram.org/bots#keyboards",
|
||||
|
@ -593,7 +593,7 @@ Schema(
|
|||
name: "reply_markup",
|
||||
ty: Option(RawTy("ReplyMarkup")),
|
||||
descr: Doc(
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.",
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.",
|
||||
md_links: {
|
||||
"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
|
||||
"custom reply keyboard": "https://core.telegram.org/bots#keyboards",
|
||||
|
@ -701,7 +701,7 @@ Schema(
|
|||
name: "reply_markup",
|
||||
ty: Option(RawTy("ReplyMarkup")),
|
||||
descr: Doc(
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.",
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.",
|
||||
md_links: {
|
||||
"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
|
||||
"custom reply keyboard": "https://core.telegram.org/bots#keyboards",
|
||||
|
@ -796,7 +796,7 @@ Schema(
|
|||
name: "reply_markup",
|
||||
ty: Option(RawTy("ReplyMarkup")),
|
||||
descr: Doc(
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.",
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.",
|
||||
md_links: {
|
||||
"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
|
||||
"custom reply keyboard": "https://core.telegram.org/bots#keyboards",
|
||||
|
@ -914,7 +914,7 @@ Schema(
|
|||
name: "reply_markup",
|
||||
ty: Option(RawTy("ReplyMarkup")),
|
||||
descr: Doc(
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.",
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.",
|
||||
md_links: {
|
||||
"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
|
||||
"custom reply keyboard": "https://core.telegram.org/bots#keyboards",
|
||||
|
@ -1025,7 +1025,7 @@ Schema(
|
|||
name: "reply_markup",
|
||||
ty: Option(RawTy("ReplyMarkup")),
|
||||
descr: Doc(
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.",
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.",
|
||||
md_links: {
|
||||
"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
|
||||
"custom reply keyboard": "https://core.telegram.org/bots#keyboards",
|
||||
|
@ -1111,7 +1111,7 @@ Schema(
|
|||
name: "reply_markup",
|
||||
ty: Option(RawTy("ReplyMarkup")),
|
||||
descr: Doc(
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.",
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.",
|
||||
md_links: {
|
||||
"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
|
||||
"custom reply keyboard": "https://core.telegram.org/bots#keyboards",
|
||||
|
@ -1196,7 +1196,7 @@ Schema(
|
|||
name: "reply_markup",
|
||||
ty: Option(RawTy("ReplyMarkup")),
|
||||
descr: Doc(
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.",
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.",
|
||||
md_links: {
|
||||
"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
|
||||
"custom reply keyboard": "https://core.telegram.org/bots#keyboards",
|
||||
|
@ -1336,7 +1336,7 @@ Schema(
|
|||
name: "reply_markup",
|
||||
ty: Option(RawTy("ReplyMarkup")),
|
||||
descr: Doc(
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.",
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.",
|
||||
md_links: {
|
||||
"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
|
||||
"custom reply keyboard": "https://core.telegram.org/bots#keyboards",
|
||||
|
@ -1394,7 +1394,7 @@ Schema(
|
|||
name: "reply_markup",
|
||||
ty: Option(RawTy("ReplyMarkup")),
|
||||
descr: Doc(
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.",
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.",
|
||||
md_links: {
|
||||
"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
|
||||
"custom reply keyboard": "https://core.telegram.org/bots#keyboards",
|
||||
|
@ -1448,7 +1448,7 @@ Schema(
|
|||
name: "reply_markup",
|
||||
ty: Option(RawTy("ReplyMarkup")),
|
||||
descr: Doc(
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.",
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.",
|
||||
md_links: {
|
||||
"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
|
||||
"custom reply keyboard": "https://core.telegram.org/bots#keyboards",
|
||||
|
@ -1485,7 +1485,7 @@ Schema(
|
|||
name: "reply_markup",
|
||||
ty: Option(RawTy("ReplyMarkup")),
|
||||
descr: Doc(
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.",
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.",
|
||||
md_links: {
|
||||
"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
|
||||
"custom reply keyboard": "https://core.telegram.org/bots#keyboards",
|
||||
|
@ -1514,7 +1514,7 @@ Schema(
|
|||
name: "reply_markup",
|
||||
ty: Option(RawTy("ReplyMarkup")),
|
||||
descr: Doc(
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.",
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.",
|
||||
md_links: {
|
||||
"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
|
||||
"custom reply keyboard": "https://core.telegram.org/bots#keyboards",
|
||||
|
@ -1614,7 +1614,7 @@ Schema(
|
|||
name: "reply_markup",
|
||||
ty: Option(RawTy("ReplyMarkup")),
|
||||
descr: Doc(
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.",
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.",
|
||||
md_links: {
|
||||
"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
|
||||
"custom reply keyboard": "https://core.telegram.org/bots#keyboards",
|
||||
|
@ -1693,7 +1693,7 @@ Schema(
|
|||
name: "reply_markup",
|
||||
ty: Option(RawTy("ReplyMarkup")),
|
||||
descr: Doc(
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.",
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.",
|
||||
md_links: {
|
||||
"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
|
||||
"custom reply keyboard": "https://core.telegram.org/bots#keyboards",
|
||||
|
@ -1812,7 +1812,7 @@ Schema(
|
|||
name: "reply_markup",
|
||||
ty: Option(RawTy("ReplyMarkup")),
|
||||
descr: Doc(
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.",
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.",
|
||||
md_links: {
|
||||
"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
|
||||
"custom reply keyboard": "https://core.telegram.org/bots#keyboards",
|
||||
|
@ -1873,7 +1873,7 @@ Schema(
|
|||
name: "reply_markup",
|
||||
ty: Option(RawTy("ReplyMarkup")),
|
||||
descr: Doc(
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.",
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.",
|
||||
md_links: {
|
||||
"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
|
||||
"custom reply keyboard": "https://core.telegram.org/bots#keyboards",
|
||||
|
@ -3776,7 +3776,7 @@ Schema(
|
|||
name: "reply_markup",
|
||||
ty: Option(RawTy("ReplyMarkup")),
|
||||
descr: Doc(
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.",
|
||||
md: "Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.",
|
||||
md_links: {
|
||||
"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
|
||||
"custom reply keyboard": "https://core.telegram.org/bots#keyboards",
|
||||
|
@ -3817,10 +3817,11 @@ Schema(
|
|||
names: ("uploadStickerFile", "UploadStickerFile", "upload_sticker_file"),
|
||||
return_ty: RawTy("FileMeta"),
|
||||
doc: Doc(
|
||||
md: "Use this method to upload a file with a sticker for later use in the [CreateNewStickerSet] and [AddStickerToSet] methods (the file can be used multiple times). Returns the uploaded [File] on success.",
|
||||
md: "Use this method to upload a file with a sticker for later use in the [CreateNewStickerSet], [AddStickerToSet] or [ReplaceStickerInSet] methods (the file can be used multiple times). Returns the uploaded [File] on success.",
|
||||
md_links: {
|
||||
"CreateNewStickerSet": "https://docs.rs/teloxide/latest/teloxide/payloads/struct.CreateNewStickerSet.html",
|
||||
"AddStickerToSet": "https://docs.rs/teloxide/latest/teloxide/payloads/struct.AddStickerToSet.html",
|
||||
"ReplaceStickerInSet": "https://docs.rs/teloxide/latest/teloxide/payloads/struct.ReplaceStickerInSet.html",
|
||||
"File": "https://core.telegram.org/bots/api#file"
|
||||
}
|
||||
),
|
||||
|
@ -4529,7 +4530,7 @@ Schema(
|
|||
name: "reply_markup",
|
||||
ty: Option(RawTy("ReplyMarkup")),
|
||||
descr: Doc(
|
||||
md: "A JSON-serialized object for an [inline keyboard]. If empty, one 'Play game_title' button will be shown. If not empty, the first button must launch the game.",
|
||||
md: "A JSON-serialized object for an [inline keyboard]. If empty, one 'Play game_title' button will be shown. If not empty, the first button must launch the game. Not supported for messages sent on behalf of a business account.",
|
||||
md_links: {"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating"},
|
||||
),
|
||||
),
|
||||
|
|
|
@ -40,7 +40,7 @@ impl_payload! {
|
|||
pub protect_content: bool,
|
||||
/// Description of the message to reply to
|
||||
pub reply_parameters: ReplyParameters,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
|
|
|
@ -30,7 +30,7 @@ impl_payload! {
|
|||
pub heading: u16,
|
||||
/// For live locations, a maximum distance for proximity alerts about approaching another chat member, in meters. Must be between 1 and 100000 if specified.
|
||||
pub proximity_alert_radius: u32,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
|
|
|
@ -27,7 +27,7 @@ impl_payload! {
|
|||
pub heading: u16,
|
||||
/// For live locations, a maximum distance for proximity alerts about approaching another chat member, in meters. Must be between 1 and 100000 if specified.
|
||||
pub proximity_alert_radius: u32,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
|
|
|
@ -54,7 +54,7 @@ impl_payload! {
|
|||
pub protect_content: bool,
|
||||
/// Description of the message to reply to
|
||||
pub reply_parameters: ReplyParameters,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
|
|
|
@ -55,7 +55,7 @@ impl_payload! {
|
|||
pub protect_content: bool,
|
||||
/// Description of the message to reply to
|
||||
pub reply_parameters: ReplyParameters,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
|
|
|
@ -37,7 +37,7 @@ impl_payload! {
|
|||
pub protect_content: bool,
|
||||
/// Description of the message to reply to
|
||||
pub reply_parameters: ReplyParameters,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
|
|
|
@ -29,7 +29,7 @@ impl_payload! {
|
|||
pub protect_content: bool,
|
||||
/// Description of the message to reply to
|
||||
pub reply_parameters: ReplyParameters,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
|
|
|
@ -48,7 +48,7 @@ impl_payload! {
|
|||
pub protect_content: bool,
|
||||
/// Description of the message to reply to
|
||||
pub reply_parameters: ReplyParameters,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
|
|
|
@ -29,7 +29,7 @@ impl_payload! {
|
|||
pub protect_content: bool,
|
||||
/// Description of the message to reply to
|
||||
pub reply_parameters: ReplyParameters,
|
||||
/// A JSON-serialized object for an [inline keyboard]. If empty, one 'Play game_title' button will be shown. If not empty, the first button must launch the game.
|
||||
/// A JSON-serialized object for an [inline keyboard]. If empty, one 'Play game_title' button will be shown. If not empty, the first button must launch the game. Not supported for messages sent on behalf of a business account.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
pub reply_markup: ReplyMarkup [into],
|
||||
|
|
|
@ -41,7 +41,7 @@ impl_payload! {
|
|||
pub protect_content: bool,
|
||||
/// Description of the message to reply to
|
||||
pub reply_parameters: ReplyParameters,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
|
|
|
@ -40,7 +40,7 @@ impl_payload! {
|
|||
pub protect_content: bool,
|
||||
/// Description of the message to reply to
|
||||
pub reply_parameters: ReplyParameters,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
|
|
|
@ -44,7 +44,7 @@ impl_payload! {
|
|||
pub protect_content: bool,
|
||||
/// Description of the message to reply to
|
||||
pub reply_parameters: ReplyParameters,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
|
|
|
@ -58,7 +58,7 @@ impl_payload! {
|
|||
pub protect_content: bool,
|
||||
/// Description of the message to reply to
|
||||
pub reply_parameters: ReplyParameters,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
|
|
|
@ -34,7 +34,7 @@ impl_payload! {
|
|||
pub protect_content: bool,
|
||||
/// Description of the message to reply to
|
||||
pub reply_parameters: ReplyParameters,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
|
|
|
@ -45,7 +45,7 @@ impl_payload! {
|
|||
pub protect_content: bool,
|
||||
/// Description of the message to reply to
|
||||
pub reply_parameters: ReplyParameters,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
|
|
|
@ -57,7 +57,7 @@ impl_payload! {
|
|||
pub protect_content: bool,
|
||||
/// Description of the message to reply to
|
||||
pub reply_parameters: ReplyParameters,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
|
|
|
@ -41,7 +41,7 @@ impl_payload! {
|
|||
pub protect_content: bool,
|
||||
/// Description of the message to reply to
|
||||
pub reply_parameters: ReplyParameters,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
|
|
|
@ -44,7 +44,7 @@ impl_payload! {
|
|||
pub disable_notification: bool,
|
||||
/// Description of the message to reply to
|
||||
pub reply_parameters: ReplyParameters,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
|
|
|
@ -21,7 +21,7 @@ impl_payload! {
|
|||
pub message_id: MessageId,
|
||||
}
|
||||
optional {
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
|
|
|
@ -17,7 +17,7 @@ impl_payload! {
|
|||
pub inline_message_id: String [into],
|
||||
}
|
||||
optional {
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
|
|
|
@ -6,10 +6,11 @@ use crate::types::{FileMeta, InputFile, StickerFormat, UserId};
|
|||
|
||||
impl_payload! {
|
||||
@[multipart = sticker]
|
||||
/// Use this method to upload a file with a sticker for later use in the [CreateNewStickerSet] and [AddStickerToSet] methods (the file can be used multiple times). Returns the uploaded [`File`] on success.
|
||||
/// Use this method to upload a file with a sticker for later use in the [CreateNewStickerSet], [AddStickerToSet] or [ReplaceStickerInSet] methods (the file can be used multiple times). Returns the uploaded [`File`] on success.
|
||||
///
|
||||
/// [CreateNewStickerSet]: https://docs.rs/teloxide/latest/teloxide/payloads/struct.CreateNewStickerSet.html
|
||||
/// [AddStickerToSet]: https://docs.rs/teloxide/latest/teloxide/payloads/struct.AddStickerToSet.html
|
||||
/// [ReplaceStickerInSet]: https://docs.rs/teloxide/latest/teloxide/payloads/struct.ReplaceStickerInSet.html
|
||||
/// [`File`]: crate::types::File
|
||||
#[derive(Debug, Clone, Serialize)]
|
||||
pub UploadStickerFile (UploadStickerFileSetters) => FileMeta {
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
use serde::{Deserialize, Serialize};
|
||||
|
||||
/// Describes the birthdate of a user.
|
||||
///
|
||||
/// [The official docs](https://core.telegram.org/bots/api#birthdate)
|
||||
#[serde_with::skip_serializing_none]
|
||||
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct Birthdate {
|
||||
|
@ -12,6 +10,6 @@ pub struct Birthdate {
|
|||
/// Month of the user's birth; 1-12
|
||||
pub month: u8,
|
||||
|
||||
/// Optional. Year of the user's birth
|
||||
/// Year of the user's birth
|
||||
pub year: Option<u32>,
|
||||
}
|
||||
|
|
|
@ -3,6 +3,7 @@ use serde::{Deserialize, Serialize};
|
|||
|
||||
use crate::types::{User, UserId};
|
||||
|
||||
/// Describes the connection of the bot with a business account.
|
||||
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct BusinessConnection {
|
||||
/// Unique identifier of the business connection
|
||||
|
|
|
@ -2,6 +2,8 @@ use serde::{Deserialize, Serialize};
|
|||
|
||||
use crate::types::{Chat, MessageId};
|
||||
|
||||
/// This object is received when messages are deleted from a connected business
|
||||
/// account.
|
||||
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
|
||||
pub struct BusinessMessagesDeleted {
|
||||
/// Unique identifier of the business connection.
|
||||
|
|
|
@ -13,11 +13,14 @@ pub struct ReplyParameters {
|
|||
pub message_id: MessageId,
|
||||
/// If the message to be replied to is from a different chat, unique
|
||||
/// identifier for the chat or username of the channel (in the format
|
||||
/// `@channelusername`)
|
||||
/// `@channelusername`). Not supported for messages sent on behalf of a
|
||||
/// business account.
|
||||
pub chat_id: Option<Recipient>,
|
||||
/// Pass _true_ if the message should be sent even if the specified message
|
||||
/// to be replied to is not found; can be used only for replies in the
|
||||
/// same chat and forum topic.
|
||||
/// same chat and forum topic. Always `false` for replies in another chat or
|
||||
/// forum topic. Always `true` for messages sent on behalf of a business
|
||||
/// account.
|
||||
pub allow_sending_without_reply: Option<bool>,
|
||||
/// Quoted part of the message to be replied to; 0-1024 characters after
|
||||
/// entities parsing. The quote must be an exact substring of the message to
|
||||
|
|
Loading…
Reference in a new issue