diff --git a/.cargo/config.toml b/.cargo/config.toml
index d6e070ff..a16645bb 100644
--- a/.cargo/config.toml
+++ b/.cargo/config.toml
@@ -1,12 +1,14 @@
[alias]
-# We pass "--cfg docsrs" when building docs to turn on nightly-only rustdoc features like
-# `This is supported on feature="..." only.`
+# Using `--features=full --features=nightly` instead of `--all-features` because of
+# https://github.com/rust-lang/cargo/issues/10333
#
-# "--cfg dep_docsrs" is used for the same reason, but for `teloxide-core`.
-docs = """
-doc
- --all-features
- --config build.rustflags=["--cfg=dep_docsrs"]
- --config build.rustdocflags=["--cfg=docsrs","-Znormalize-docs"]
- -Zrustdoc-scrape-examples=examples
+# "tokio/macros" and "tokio/rt-multi-thread" are required for examples
+docs = """doc
+-Zrustdoc-scrape-examples=examples
+--features=full --features=nightly
+--features=tokio/macros --features=tokio/rt-multi-thread
"""
+
+[build]
+# We pass "--cfg docsrs" when building docs to add `This is supported on feature="..." only.`
+rustdocflags = ["--cfg", "docsrs", "-Znormalize-docs"]
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e8396993..5c6a7fdb 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -15,13 +15,18 @@ env:
CARGO_NET_RETRY: 10
RUSTUP_MAX_RETRIES: 10
- rust_nightly: nightly-2022-09-01
# When updating this, also update:
- # - README.md
- # - src/lib.rs
+ # - crates/teloxide-core/src/codegen.rs
+ # - rust-toolchain.toml
+ rust_nightly: nightly-2022-09-23
+ # When updating this, also update:
+ # - **/README.md
+ # - **/src/lib.rs
# - down below in a matrix
rust_msrv: 1.64.0
+ CI: 1
+
jobs:
# Depends on all action that are required for a "successful" CI run.
ci-pass:
@@ -82,7 +87,7 @@ jobs:
toolchain: beta
features: "--features full"
- rust: nightly
- toolchain: nightly-2022-09-01
+ toolchain: nightly-2022-09-23
features: "--all-features"
- rust: msrv
toolchain: 1.64.0
diff --git a/.gitignore b/.gitignore
index b1c241c5..97693892 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,7 +1,5 @@
/target
-**/*.rs.bk
Cargo.lock
.idea/
.vscode/
-examples/*/target
*.sqlite
diff --git a/Cargo.toml b/Cargo.toml
index f4056c49..c66a4d73 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,172 +1,2 @@
-[package]
-name = "teloxide"
-version = "0.11.1"
-edition = "2021"
-description = "An elegant Telegram bots framework for Rust"
-repository = "https://github.com/teloxide/teloxide"
-documentation = "https://docs.rs/teloxide/"
-readme = "README.md"
-keywords = ["teloxide", "telegram", "telegram-bot", "telegram-bot-api"]
-categories = ["web-programming", "api-bindings", "asynchronous"]
-license = "MIT"
-exclude = ["media"]
-
-[features]
-default = ["native-tls", "ctrlc_handler", "teloxide-core/default", "auto-send"]
-
-webhooks = ["rand"]
-webhooks-axum = ["webhooks", "axum", "tower", "tower-http"]
-
-sqlite-storage = ["sqlx"]
-redis-storage = ["redis"]
-rocksdb-storage = ["rocksdb"]
-cbor-serializer = ["serde_cbor"]
-bincode-serializer = ["bincode"]
-
-macros = ["teloxide-macros"]
-
-ctrlc_handler = ["tokio/signal"]
-
-native-tls = ["teloxide-core/native-tls"]
-rustls = ["teloxide-core/rustls"]
-auto-send = ["teloxide-core/auto_send"]
-throttle = ["teloxide-core/throttle"]
-cache-me = ["teloxide-core/cache_me"]
-trace-adaptor = ["teloxide-core/trace_adaptor"]
-erased = ["teloxide-core/erased"]
-
-# currently used for `README.md` tests, building docs for `docsrs` to add `This is supported on feature="..." only.`,
-# and for teloxide-core.
-nightly = ["teloxide-core/nightly"]
-
-full = [
- "webhooks-axum",
- "sqlite-storage",
- "redis-storage",
- "rocksdb-storage",
- "cbor-serializer",
- "bincode-serializer",
- "macros",
- "ctrlc_handler",
- "teloxide-core/full",
- "native-tls",
- "rustls",
- "auto-send",
- "throttle",
- "cache-me",
- "trace-adaptor",
- "erased",
-]
-
-[dependencies]
-teloxide-core = { version = "0.8.0", default-features = false }
-teloxide-macros = { version = "0.7.0", optional = true }
-
-serde_json = "1.0"
-serde = { version = "1.0", features = ["derive"] }
-
-dptree = "0.3.0"
-
-# These lines are used only for development.
-# teloxide-core = { git = "https://github.com/teloxide/teloxide-core", rev = "00165e6", default-features = false }
-# teloxide-macros = { git = "https://github.com/teloxide/teloxide-macros", rev = "e715105", optional = true }
-# dptree = { git = "https://github.com/teloxide/dptree", rev = "df578e4" }
-
-tokio = { version = "1.8", features = ["fs"] }
-tokio-util = "0.7"
-tokio-stream = "0.1.8"
-
-url = "2.2.2"
-log = "0.4"
-bytes = "1.0"
-mime = "0.3"
-
-derive_more = "0.99"
-thiserror = "1.0"
-futures = "0.3.15"
-pin-project = "1.0"
-serde_with_macros = "1.4"
-aquamarine = "0.1.11"
-
-sqlx = { version = "0.6", optional = true, default-features = false, features = [
- "runtime-tokio-native-tls",
- "macros",
- "sqlite",
-] }
-redis = { version = "0.21", features = ["tokio-comp"], optional = true }
-rocksdb = { version = "0.19", optional = true, default-features = false, features = [
- "lz4",
-] }
-serde_cbor = { version = "0.11", optional = true }
-bincode = { version = "1.3", optional = true }
-axum = { version = "0.5.13", optional = true }
-tower = { version = "0.4.12", optional = true }
-tower-http = { version = "0.3.4", features = ["trace"], optional = true }
-rand = { version = "0.8.5", optional = true }
-
-[dev-dependencies]
-rand = "0.8.3"
-pretty_env_logger = "0.4.0"
-serde = "1"
-serde_json = "1"
-tokio = { version = "1.8", features = ["fs", "rt-multi-thread", "macros"] }
-reqwest = "0.11.11"
-chrono = "0.4"
-tokio-stream = "0.1"
-
-[package.metadata.docs.rs]
-all-features = true
-# FIXME: Add back "-Znormalize-docs" when https://github.com/rust-lang/rust/issues/93703 is fixed
-rustdoc-args = ["--cfg", "docsrs"]
-rustc-args = ["--cfg", "dep_docsrs"]
-cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples=examples"]
-
-[[test]]
-name = "redis"
-path = "tests/redis.rs"
-required-features = ["redis-storage", "cbor-serializer", "bincode-serializer"]
-
-[[test]]
-name = "sqlite"
-path = "tests/sqlite.rs"
-required-features = ["sqlite-storage", "cbor-serializer", "bincode-serializer"]
-
-[[example]]
-name = "dialogue"
-required-features = ["macros"]
-
-[[example]]
-name = "command"
-required-features = ["macros"]
-
-[[example]]
-name = "db_remember"
-required-features = ["sqlite-storage", "redis-storage", "bincode-serializer", "macros"]
-
-[[example]]
-name = "inline"
-required-features = ["macros"]
-
-[[example]]
-name = "buttons"
-required-features = ["macros"]
-
-[[example]]
-name = "admin"
-required-features = ["macros"]
-
-[[example]]
-name = "dispatching_features"
-required-features = ["macros"]
-
-[[example]]
-name = "ngrok_ping_pong"
-required-features = ["webhooks-axum"]
-
-[[example]]
-name = "heroku_ping_pong"
-required-features = ["webhooks-axum"]
-
-[[example]]
-name = "purchase"
-required-features = ["macros"]
+[workspace]
+members = ["crates/*"]
diff --git a/README.md b/README.md
index f211a547..94b9e44b 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
> [v0.11 -> v0.11.1 migration guide >>](MIGRATION_GUIDE.md#011---0111)
-
+
teloxide
@@ -85,7 +85,7 @@ tokio = { version = "1.8", features = ["rt-multi-thread", "macros"] }
This bot replies with a die throw to each received message:
-[[`examples/throw_dice.rs`](examples/throw_dice.rs)]
+[[`examples/throw_dice.rs`](crates/teloxide/examples/throw_dice.rs)]
```rust,no_run
use teloxide::prelude::*;
@@ -120,7 +120,7 @@ Commands are strongly typed and defined declaratively, similar to how we define
[structopt]: https://docs.rs/structopt/0.3.9/structopt/
[serde-json]: https://github.com/serde-rs/json
-[[`examples/command.rs`](examples/command.rs)]
+[[`examples/command.rs`](crates/teloxide/examples/command.rs)]
```rust,no_run
use teloxide::{prelude::*, utils::command::BotCommands};
@@ -174,7 +174,7 @@ A dialogue is typically described by an enumeration where each variant is one po
Below is a bot that asks you three questions and then sends the answers back to you:
-[[`examples/dialogue.rs`](examples/dialogue.rs)]
+[[`examples/dialogue.rs`](crates/teloxide/examples/dialogue.rs)]
```rust,ignore
use teloxide::{dispatching::dialogue::InMemStorage, prelude::*};
@@ -285,7 +285,7 @@ async fn receive_location(
-[More examples >>](examples/)
+[More examples >>](crates/teloxide/examples/)
## FAQ
@@ -307,11 +307,11 @@ A: No, only the bots API.
**Q: Can I use webhooks?**
-A: You can! `teloxide` has a built-in support for webhooks in `dispatching::update_listeners::webhooks` module. See how it's used in [`examples/ngrok_ping_pong_bot`](examples/ngrok_ping_pong.rs) and [`examples/heroku_ping_pong_bot`](examples/heroku_ping_pong.rs).
+A: You can! `teloxide` has a built-in support for webhooks in `dispatching::update_listeners::webhooks` module. See how it's used in [`examples/ngrok_ping_pong_bot`](crates/teloxide/examples/ngrok_ping_pong.rs) and [`examples/heroku_ping_pong_bot`](crates/teloxide/examples/heroku_ping_pong.rs).
**Q: Can I handle both callback queries and messages within a single dialogue?**
-A: Yes, see [`examples/purchase.rs`](examples/purchase.rs).
+A: Yes, see [`examples/purchase.rs`](crates/teloxide/examples/purchase.rs).
## Community bots
diff --git a/crates/teloxide-core/CHANGELOG.md b/crates/teloxide-core/CHANGELOG.md
new file mode 100644
index 00000000..a0f27f5d
--- /dev/null
+++ b/crates/teloxide-core/CHANGELOG.md
@@ -0,0 +1,632 @@
+# Changelog
+
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
+and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+
+## unreleased
+
+## 0.8.0 - 2022-10-03
+
+### Added
+
+- Support for Telegram Bot API [version 6.2](https://core.telegram.org/bots/api#august-12-2022) ([#251][pr251])
+
+[pr251]: https://github.com/teloxide/teloxide-core/pull/251
+
+### Changed
+
+- Removed `file_` prefix from `File` and `FileMeta` fields [#255][pr255]
+- `Animation`, `Audio`, `Document`, `PassportFile`, `PhotoSize`, `Video`, `VideoNote` and `Voice` now contain `FileMeta` instead of its fields ([#253][pr253])
+ - Combined with `File` fields renaming, instead of `.file_size` you can write `.file.size` and similarly with other fields
+- **You can now `.await` any `Request`!** ([#249][pr249])
+ - `Request` now requires `Self: IntoFuture`
+ - There is no need for `AutoSend` anymore
+- MSRV (Minimal Supported Rust Version) was bumped from `1.58.0` to `1.64.0`
+- Message id parameters and fields now use `MessageId` type instead of `i32` ([#254][pr254])
+- Refactored `Sticker` and related types ([#251][pr251])
+
+[pr253]: https://github.com/teloxide/teloxide-core/pull/253
+[pr254]: https://github.com/teloxide/teloxide-core/pull/254
+[pr255]: https://github.com/teloxide/teloxide-core/pull/255
+
+### Removed
+
+- Methods for creating `InlineQuery` ([#246][pr244])
+
+[pr244]: https://github.com/teloxide/teloxide-core/pull/246
+
+### Fixed
+
+- `SetWebhook` request can now properly send certificate ([#250][pr250])
+- Serialization of `InputSticker::Webm` ([#252][pr252])
+
+[pr250]: https://github.com/teloxide/teloxide-core/pull/250
+[pr252]: https://github.com/teloxide/teloxide-core/pull/252
+
+### Deprecated
+
+- `AutoSend` adaptor ([#249][pr249])
+
+[pr249]: https://github.com/teloxide/teloxide-core/pull/249
+
+## 0.7.1 - 2022-08-19
+
+### Fixed
+
+- `ErasedRequester` now implements `Clone` even if `E` is not `Clone` ([#244][pr244])
+
+[pr244]: https://github.com/teloxide/teloxide-core/pull/244
+
+### Added
+
+- `From`, `From` and `From` impls for `RequestError` ([#241][pr241])
+
+[pr241]: https://github.com/teloxide/teloxide-core/pull/241
+
+### Changed
+
+- More functions are now marked with `#[must_use]` ([#242][PR242])
+
+[pr242]: https://github.com/teloxide/teloxide-core/pull/242
+
+## 0.7.0 - 2022-07-19
+
+### Added
+
+- `InlineKeyboardButton::{pay, login, web_app, callback_game, pay}` constructors ([#231][pr231])
+- Support for Telegram Bot API [version 6.1](https://core.telegram.org/bots/api#june-20-2022) ([#233][pr233])
+- `StickerKind` that is now used instead of `is_animated` and `is_video` fields of `Sticker` and `StickerSet` ([#238][pr238])
+
+[pr238]: https://github.com/teloxide/teloxide-core/pull/238
+
+### Changed
+
+- `InlineKeyboardButtonKind::Pay`'s only field now has type `True` ([#231][pr231])
+- `file_size` fields are now always `u32` ([#237][pr237])
+- `File` is now split into `File` and `FileMeta`, the latter is used in `UploadStickerFile` and `Sticker::premium_animation` ([#237][pr237])
+
+[pr237]: https://github.com/teloxide/teloxide-core/pull/237
+
+### Deprecated
+
+- `InlineKeyboardButton::{text, kind}` functions ([#231][pr231])
+
+[pr231]: https://github.com/teloxide/teloxide-core/pull/231
+[pr233]: https://github.com/teloxide/teloxide-core/pull/233
+
+### Removed
+
+- `ChatPrivate::type_` field ([#232][pr232])
+
+[pr232]: https://github.com/teloxide/teloxide-core/pull/232
+
+## 0.6.3 - 2022-06-21
+
+### Fixed
+
+- Fix `Message::parse_caption_entities` ([#229][pr229])
+
+[pr229]: https://github.com/teloxide/teloxide-core/pull/229
+
+## 0.6.2 - 2022-06-16
+
+### Fixed
+
+- Fix `ChatPrivate` serialization ([#226][pr226])
+- Build with particular crates versions (enable `"codec"` feature of `tokio-util`) ([#225][pr225])
+- Remove trailing `/` from `Message::url` (on ios it caused problems) ([#223][pr223])
+- Fix incorrect panic in `User::is_channel` ([#222][pr222])
+
+[pr226]: https://github.com/teloxide/teloxide-core/pull/226
+[pr225]: https://github.com/teloxide/teloxide-core/pull/225
+[pr222]: https://github.com/teloxide/teloxide-core/pull/222
+
+### Added
+
+- `Message::{url_of, comment_url, comment_url_of, url_in_thread, url_in_thread_of}` functions ([#223][pr223])
+- Utilities to parse message entities (see `Message::parse_entities`) ([#217][pr217])
+
+[pr223]: https://github.com/teloxide/teloxide-core/pull/223
+[pr212]: https://github.com/teloxide/teloxide-core/pull/212
+
+## 0.6.1 - 2022-06-02
+
+### Fixed
+
+- Deserialization of `File` when `file_path` or `file_size` are missing ([#220][pr220])
+- Correct how `NotFound` and `UserDeactivated` errors are deserialized ([#219][pr219])
+
+[pr220]: https://github.com/teloxide/teloxide-core/pull/220
+[pr219]: https://github.com/teloxide/teloxide-core/pull/219
+
+### Added
+
+- `is_*` methods to `ChatMemberStatus` analogous to the `ChatMember{,Kind}` methods ([#216][pr216])
+- `ChatId` and `UserId` to the prelude ([#212][pr212])
+
+[pr216]: https://github.com/teloxide/teloxide-core/pull/216
+[pr212]: https://github.com/teloxide/teloxide-core/pull/212
+
+## 0.6.0 - 2022-04-25
+
+### Added
+
+- Support for Telegram Bot API [version 6.0](https://core.telegram.org/bots/api#april-16-2022) ([#206][pr206], [#211][pr211])
+ - Note that some field were renamed
+- Shortcut methods for `MessageEntity` ([#208][pr208], [#210][pr210])
+
+[pr208]: https://github.com/teloxide/teloxide-core/pull/208
+[pr206]: https://github.com/teloxide/teloxide-core/pull/206
+[pr210]: https://github.com/teloxide/teloxide-core/pull/210
+[pr211]: https://github.com/teloxide/teloxide-core/pull/211
+
+### Changed
+
+- Make `KeyboardMarkup` creation more convenient ([#207][pr207])
+ - Accept `IntoIterator` in `KeyboardMarkup::append_row`.
+ - Accept `Into` instead of `String` in `InlineKeyboardButton::{url, callback, switch_inline_query, switch_inline_query_current_chat}`.
+
+[pr207]: https://github.com/teloxide/teloxide-core/pull/207
+
+## 0.5.1 - 2022-04-18
+
+### Fixed
+
+- Document the `errors` module.
+
+## 0.5.0 - 2022-04-13
+
+### Added
+
+- `errors` module and `errors::AsResponseParameters` trait ([#130][pr130])
+- `UserId::{url, is_anonymous, is_channel, is_telegram}` convenience functions ([#197][pr197])
+- `User::{tme_url, preferably_tme_url}` convenience functions ([#197][pr197])
+- `Me::username` and `Deref` implementation for `Me` ([#197][pr197])
+- `Me::{mention, tme_url}` ([#197][pr197])
+- `AllowedUpdate::ChatJoinRequest` ([#201][pr201])
+- `ChatId::{is_user, is_group, is_channel_or_supergroup}` functions [#198][pr198]
+
+[pr197]: https://github.com/teloxide/teloxide-core/pull/197
+[pr198]: https://github.com/teloxide/teloxide-core/pull/198
+[pr201]: https://github.com/teloxide/teloxide-core/pull/201
+
+### Changed
+
+- `user.id` now uses `UserId` type, `ChatId` now represents only _chat id_, not channel username, all `chat_id` function parameters now accept `Recipient` [**BC**]
+- Improve `Throttling` adoptor ([#130][pr130])
+ - Freeze when getting `RetryAfter(_)` error
+ - Retry requests that previously returned `RetryAfter(_)` error
+- `RequestError::RetryAfter` now has a `Duration` field instead of `i32`
+
+### Fixed
+
+- A bug in `Message::url` implementation ([#198][pr198])
+- Fix never ending loop that caused programs that used `Throttling` to never stop, see issue [#535][issue535] ([#130][pr130])
+
+[issue535]: https://github.com/teloxide/teloxide/issues/535
+[pr130]: https://github.com/teloxide/teloxide-core/pull/130
+
+## 0.4.5 - 2022-04-03
+
+### Fixed
+
+- Hide bot token in errors ([#200][200])
+
+[200]: https://github.com/teloxide/teloxide-core/pull/200
+
+## 0.4.4 - 2022-04-21
+
+### Added
+
+- `WrongFileIdOrUrl` and `FailedToGetUrlContent` errors ([#188][pr188])
+- `NotFound` error ([#190][pr190])
+- `HasPayload::with_payload_mut` function ([#189][pr189])
+
+[pr188]: https://github.com/teloxide/teloxide-core/pull/188
+[pr189]: https://github.com/teloxide/teloxide-core/pull/189
+[pr190]: https://github.com/teloxide/teloxide-core/pull/190
+
+## 0.4.3 - 2022-03-08
+
+### Added
+
+- `User::is_telegram` function ([#186][pr186])
+
+[pr186]: https://github.com/teloxide/teloxide-core/pull/186
+
+### Fixed
+
+- `Update::chat()` now returns `Some(&Chat)` for `UpdateKind::ChatMember`, `UpdateKind::MyChatMember`,
+ `UpdateKind::ChatJoinRequest` ([#184][pr184])
+- `get_updates` timeouts (partially revert buggy [#180][pr180]) ([#185][pr185])
+
+[pr184]: https://github.com/teloxide/teloxide-core/pull/184
+[pr185]: https://github.com/teloxide/teloxide-core/pull/185
+
+## 0.4.2 - 2022-02-17 [yanked]
+
+### Deprecated
+
+- `Message::chat_id` use `.chat.id` field instead ([#182][pr182])
+
+[pr182]: https://github.com/teloxide/teloxide-core/pull/182
+
+### Fixed
+
+- Serialization of `SendPoll::type_` (it's now possible to send quiz polls) ([#181][pr181])
+
+[pr181]: https://github.com/teloxide/teloxide-core/pull/181
+
+### Added
+
+- `Payload::timeout_hint` method to properly handle long running requests like `GetUpdates` ([#180][pr180])
+
+[pr180]: https://github.com/teloxide/teloxide-core/pull/180
+
+## 0.4.1 - 2022-02-13
+
+### Fixed
+
+- Deserialization of `UntilDate` ([#178][pr178])
+
+[pr178]: https://github.com/teloxide/teloxide-core/pull/178
+
+## 0.4.0 - 2022-02-03
+
+### Added
+
+- `ApiError::TooMuchInlineQueryResults` ([#135][pr135])
+- `ApiError::NotEnoughRightsToChangeChatPermissions` ([#155][pr155])
+- Support for 5.4 telegram bot API ([#133][pr133])
+- Support for 5.5 telegram bot API ([#143][pr143], [#164][pr164])
+- Support for 5.6 telegram bot API ([#162][pr162])
+- Support for 5.7 telegram bot API ([#175][pr175])
+- `EditedMessageIsTooLong` error ([#109][pr109])
+- `UntilDate` enum and use it for `{Restricted, Banned}::until_date` ([#117][pr117])
+- `Limits::messages_per_min_channel` ([#121][pr121])
+- `media_group_id` field to `MediaDocument` and `MediaAudio` ([#139][pr139])
+- `caption_entities` method to `InputMediaPhoto` ([#140][pr140])
+- `User::is_anonymous` and `User::is_channel` functions ([#151][pr151])
+- `UpdateKind::Error` ([#156][pr156])
+
+[pr109]: https://github.com/teloxide/teloxide-core/pull/109
+[pr117]: https://github.com/teloxide/teloxide-core/pull/117
+[pr121]: https://github.com/teloxide/teloxide-core/pull/121
+[pr135]: https://github.com/teloxide/teloxide-core/pull/135
+[pr139]: https://github.com/teloxide/teloxide-core/pull/139
+[pr140]: https://github.com/teloxide/teloxide-core/pull/140
+[pr143]: https://github.com/teloxide/teloxide-core/pull/143
+[pr151]: https://github.com/teloxide/teloxide-core/pull/151
+[pr155]: https://github.com/teloxide/teloxide-core/pull/155
+[pr156]: https://github.com/teloxide/teloxide-core/pull/156
+[pr162]: https://github.com/teloxide/teloxide-core/pull/162
+[pr164]: https://github.com/teloxide/teloxide-core/pull/164
+[pr175]: https://github.com/teloxide/teloxide-core/pull/175
+
+### Changed
+
+- Refactor `InputFile` ([#167][pr167])
+ - Make it an opaque structure, instead of enum
+ - Add `read` constructor, that allows creating `InputFile` from `impl AsyncRead`
+ - Internal changes
+- Refactor errors ([#134][pr134])
+ - Rename `DownloadError::NetworkError` to `Network`
+ - Rename `RequestError::ApiError` to `Api`
+ - Remove `RequestError::Api::status_code` and rename `RequestError::Api::kind` to `0` (struct to tuple struct)
+ - Rename `RequestError::NetworkError` to `Network`
+ - Implement `Error` for `ApiError`
+- Use `url::Url` for urls, use `chrono::DateTime` for dates in types ([#115][pr115])
+- Mark `ApiError` as `non_exhaustive` ([#125][pr125])
+- `InputFile` and related structures now do **not** implement `PartialEq`, `Eq` and `Hash` ([#133][pr133])
+- How forwarded messages are represented ([#151][pr151])
+- `RequestError::InvalidJson` now has a `raw` field with raw json for easier debugability ([#150][pr150])
+- `ChatPermissions` is now bitflags ([#157][pr157])
+- Type of `WebhookInfo::ip_address` from `Option` to `Option` ([#172][pr172])
+- Type of `WebhookInfo::allowed_updates` from `Option>` to `Option>` ([#174][pr174])
+
+[pr115]: https://github.com/teloxide/teloxide-core/pull/115
+[pr125]: https://github.com/teloxide/teloxide-core/pull/125
+[pr134]: https://github.com/teloxide/teloxide-core/pull/134
+[pr150]: https://github.com/teloxide/teloxide-core/pull/150
+[pr157]: https://github.com/teloxide/teloxide-core/pull/157
+[pr167]: https://github.com/teloxide/teloxide-core/pull/167
+[pr172]: https://github.com/teloxide/teloxide-core/pull/172
+[pr174]: https://github.com/teloxide/teloxide-core/pull/174
+
+### Fixed
+
+- Deserialization of chat migrations, see issue [#427][issue427] ([#143][pr143])
+- Type of `BanChatMember::until_date`: `u64` -> `chrono::DateTime` ([#117][pr117])
+- Type of `Poll::correct_option_id`: `i32` -> `u8` ([#119][pr119])
+- Type of `Poll::open_period`: `i32` -> `u16` ([#119][pr119])
+- `Throttle` adaptor not honouring chat/min limits ([#121][pr121])
+- Make `SendPoll::type_` optional ([#133][pr133])
+- Bug with `caption_entities`, see issue [#473][issue473]
+- Type of response for `CopyMessage` method ([#141][pr141], [#142][pr142])
+- Bad request serialization when the `language` field of `MessageEntityKind::Pre` is `None` ([#145][pr145])
+- Deserialization of `MediaKind::Venue` ([#147][pr147])
+- Deserialization of `VoiceChat{Started,Ended}` messages ([#153][pr153])
+- Serialization of `BotCommandScope::Chat{,Administrators}` ([#154][pr154])
+
+[pr119]: https://github.com/teloxide/teloxide-core/pull/119
+[pr133]: https://github.com/teloxide/teloxide-core/pull/133
+[pr141]: https://github.com/teloxide/teloxide-core/pull/141
+[pr142]: https://github.com/teloxide/teloxide-core/pull/142
+[pr143]: https://github.com/teloxide/teloxide-core/pull/143
+[pr145]: https://github.com/teloxide/teloxide-core/pull/145
+[pr147]: https://github.com/teloxide/teloxide-core/pull/147
+[pr153]: https://github.com/teloxide/teloxide-core/pull/153
+[pr154]: https://github.com/teloxide/teloxide-core/pull/154
+[issue473]: https://github.com/teloxide/teloxide/issues/473
+[issue427]: https://github.com/teloxide/teloxide/issues/427
+
+### Removed
+
+- `get_updates_fault_tolerant` method and `SemiparsedVec` ([#156][pr156])
+
+## 0.3.3 - 2021-08-03
+
+### Fixed
+
+- Compilation with `nightly` feature (use `type_alias_impl_trait` instead of `min_type_alias_impl_trait`) ([#108][pr108])
+
+[pr108]: https://github.com/teloxide/teloxide-core/pull/108
+
+## 0.3.2 - 2021-07-27
+
+### Added
+
+- `ErasedRequester` bot adaptor, `ErasedRequest` struct, `{Request, RequesterExt}::erase` functions ([#105][pr105])
+- `Trace` bot adaptor ([#104][pr104])
+- `HasPayload`, `Request` and `Requester` implementations for `either::Either` ([#103][pr103])
+
+[pr103]: https://github.com/teloxide/teloxide-core/pull/103
+[pr104]: https://github.com/teloxide/teloxide-core/pull/104
+[pr105]: https://github.com/teloxide/teloxide-core/pull/105
+
+## 0.3.1 - 2021-07-07
+
+- Minor documentation tweaks ([#102][pr102])
+- Remove `Self: 'static` bound on `RequesterExt::throttle` ([#102][pr102])
+
+[pr102]: https://github.com/teloxide/teloxide-core/pull/102
+
+## 0.3.0 - 2021-07-05
+
+### Added
+
+- `impl Clone` for {`CacheMe`, `DefaultParseMode`, `Throttle`} ([#76][pr76])
+- `DefaultParseMode::parse_mode` which allows to get currently used default parse mode ([#77][pr77])
+- `Thrrotle::{limits,set_limits}` functions ([#77][pr77])
+- `Throttle::{with_settings,spawn_with_settings}` and `throttle::Settings` ([#96][pr96])
+- Getters for fields nested in `Chat` ([#80][pr80])
+- API errors: `ApiError::NotEnoughRightsToManagePins`, `ApiError::BotKickedFromSupergroup` ([#84][pr84])
+- Telegram bot API 5.2 support ([#86][pr86])
+- Telegram bot API 5.3 support ([#99][pr99])
+- `net::default_reqwest_settings` function ([#90][pr90])
+
+[pr75]: https://github.com/teloxide/teloxide-core/pull/75
+[pr77]: https://github.com/teloxide/teloxide-core/pull/77
+[pr76]: https://github.com/teloxide/teloxide-core/pull/76
+[pr80]: https://github.com/teloxide/teloxide-core/pull/80
+[pr84]: https://github.com/teloxide/teloxide-core/pull/84
+[pr86]: https://github.com/teloxide/teloxide-core/pull/86
+[pr90]: https://github.com/teloxide/teloxide-core/pull/90
+[pr96]: https://github.com/teloxide/teloxide-core/pull/96
+[pr99]: https://github.com/teloxide/teloxide-core/pull/99
+
+### Changed
+
+- `Message::url` now returns links to messages in private groups too ([#80][pr80])
+- Refactor `ChatMember` methods ([#74][pr74])
+ - impl `Deref` to make `ChatMemberKind`'s methods callable directly on `ChatMember`
+ - Add `ChatMemberKind::is_{creator,administrator,member,restricted,left,kicked}` which check `kind` along with `is_privileged` and `is_in_chat` which combine some of the above.
+ - Refactor privilege getters
+- Rename `ChatAction::{RecordAudio => RecordVoice, UploadAudio => UploadVoice}` ([#86][pr86])
+- Use `url::Url` for urls, use `chrono::DateTime` for dates ([#97][pr97])
+
+[pr74]: https://github.com/teloxide/teloxide-core/pull/74
+[pr97]: https://github.com/teloxide/teloxide-core/pull/97
+
+### Fixed
+
+- telegram_response: fix issue `retry_after` and `migrate_to_chat_id` handling ([#94][pr94])
+- Type of `PublicChatSupergroup::slow_mode_delay` field: `Option`=> `Option` ([#80][pr80])
+- Add missing `Chat::message_auto_delete_time` field ([#80][pr80])
+- Output types of `LeaveChat` `PinChatMessage`, `SetChatDescription`, `SetChatPhoto` `SetChatTitle`, `UnpinAllChatMessages` and `UnpinChatMessage`: `String` => `True` ([#79][pr79])
+- `SendChatAction` output type `Message` => `True` ([#75][pr75])
+- `GetChatAdministrators` output type `ChatMember` => `Vec` ([#73][pr73])
+- `reqwest` dependency bringing `native-tls` in even when `rustls` was selected ([#71][pr71])
+- Type of `{Restricted,Kicked}::until_date` fields: `i32` => `i64` ([#74][pr74])
+- Type of `PhotoSize::{width,height}` fields: `i32` => `u32` ([#100][pr100])
+
+[pr71]: https://github.com/teloxide/teloxide-core/pull/71
+[pr73]: https://github.com/teloxide/teloxide-core/pull/73
+[pr75]: https://github.com/teloxide/teloxide-core/pull/75
+[pr79]: https://github.com/teloxide/teloxide-core/pull/79
+[pr94]: https://github.com/teloxide/teloxide-core/pull/94
+[pr100]: https://github.com/teloxide/teloxide-core/pull/100
+
+## 0.2.2 - 2020-03-22
+
+### Fixed
+
+- Typo: `ReplyMarkup::{keyboad => keyboard}` ([#69][pr69])
+ - Note: method with the old name was deprecated and hidden from docs
+
+[pr69]: https://github.com/teloxide/teloxide-core/pull/69
+
+## 0.2.1 - 2020-03-19
+
+### Fixed
+
+- Types fields privacy (make fields of some types public) ([#68][pr68])
+ - `Dice::{emoji, value}`
+ - `MessageMessageAutoDeleteTimerChanged::message_auto_delete_timer_changed`
+ - `PassportElementError::{message, kind}`
+ - `StickerSet::thumb`
+
+[pr68]: https://github.com/teloxide/teloxide-core/pull/68
+
+## 0.2.0 - 2020-03-16
+
+### Changed
+
+- Refactor `ReplyMarkup` ([#pr65][pr65]) (**BC**)
+ - Rename `ReplyMarkup::{InlineKeyboardMarkup => InlineKeyboard, ReplyKeyboardMarkup => Keyboard, ReplyKeyboardRemove => KeyboardRemove}`
+ - Add `inline_kb`, `keyboad`, `kb_remove` and `force_reply` `ReplyMarkup` consructors
+ - Rename `ReplyKeyboardMarkup` => `KeyboardMarkup`
+ - Rename `ReplyKeyboardRemove` => `KeyboardRemove`
+ - Remove useless generic param from `ReplyKeyboardMarkup::new` and `InlineKeyboardMarkup::new`
+ - Change parameters order in `ReplyKeyboardMarkup::append_to_row` and `InlineKeyboardMarkup::append_to_row`
+- Support telegram bot API version 5.1 (see it's [changelog](https://core.telegram.org/bots/api#march-9-2021)) ([#pr63][pr63]) (**BC**)
+- Support telegram bot API version 5.0 (see it's [changelog](https://core.telegram.org/bots/api#november-4-2020)) ([#pr62][pr62]) (**BC**)
+
+[pr62]: https://github.com/teloxide/teloxide-core/pull/62
+[pr63]: https://github.com/teloxide/teloxide-core/pull/63
+[pr65]: https://github.com/teloxide/teloxide-core/pull/65
+
+### Added
+
+- `GetUpdatesFaultTolerant` - fault toletant version of `GetUpdates` ([#58][pr58]) (**BC**)
+- Derive `Clone` for `AutoSend`.
+
+[pr58]: https://github.com/teloxide/teloxide-core/pull/58
+
+### Fixed
+
+- Make `MediaContact::contact` public ([#pr64][pr64])
+- `set_webhook` signature (make `allowed_updates` optional) ([#59][pr59])
+- Fix typos in payloads ([#57][pr57]):
+ - `get_updates`: `offset` `i64` -> `i32`
+ - `send_location`: make `live_period` optional
+- `send_contact` signature (`phone_number` and `first_name` `f64` => `String`) ([#56][pr56])
+
+[pr56]: https://github.com/teloxide/teloxide-core/pull/56
+[pr57]: https://github.com/teloxide/teloxide-core/pull/57
+[pr59]: https://github.com/teloxide/teloxide-core/pull/59
+[pr64]: https://github.com/teloxide/teloxide-core/pull/64
+
+### Removed
+
+- `Message::text_owned` ([#pr62][pr62]) (**BC**)
+
+### Changed
+
+- `NonStrictVec` -> `SemiparsedVec`.
+
+## 0.1.1 - 2020-02-17
+
+### Fixed
+
+- Remove `dbg!` call from internals ([#53][pr53])
+
+[pr53]: https://github.com/teloxide/teloxide-core/pull/53
+
+## 0.1.0 - 2020-02-17
+
+### Added
+
+- `#[non_exhaustive]` on `InputFile` since we may want to add new ways to send files in the future ([#49][pr49])
+- `MultipartPayload` for future proofing ([#49][pr49])
+- Support for `rustls` ([#24][pr24])
+- `#[must_use]` attr to payloads implemented by macro ([#22][pr22])
+- forward-to-deref `Requester` impls ([#39][pr39])
+- `Bot::{set_,}api_url` methods ([#26][pr26], [#35][pr35])
+- `payloads` module
+- `RequesterExt` trait which is implemented for all `Requester`s and allows easily wrapping them in adaptors
+- `adaptors` module ([#14][pr14])
+ - `throttle`, `cache_me`, `auto_send` and `full` crate features
+ - Request throttling - opt-in feature represented by `Throttle` bot adapter which allows automatically checking telegram limits ([#10][pr10], [#46][pr46], [#50][pr50])
+ - Request auto sending - ability to `.await` requests without need to call `.send()` (opt-in feature represented by `AutoSend` bot adapter, [#8][pr8])
+ - `get_me` caching (opt-in feature represented by `CacheMe` bot adapter)
+- `Requester` trait which represents bot-clients ([#7][pr7], [#12][pr12], [#27][pr27])
+- `{Json,Multipart}Request` the `Bot` requests types ([#6][pr6])
+- `Output` alias to `<::Payload as Payload>::Output`
+- `Payload`, `HasPayload` and `Request` traits which represent different parts of the request ([#5][pr5])
+- `GetUpdatesNonStrict` 'telegram' method, that behaves just like `GetUpdates` but doesn't [#2][pr2]
+ fail if one of updates fails to be deserialized
+- Move core code here from the [`teloxide`] main repo, for older changes see it's [`CHANGELOG.md`].
+ - Following modules were moved:
+ - `bot`
+ - `requests` [except `requests::respond` function]
+ - `types`
+ - `errors`
+ - `net` [private]
+ - `client_from_env` was moved from `teloxide::utils` to crate root of `teloxide-core`
+ - To simplify `GetUpdates` request it was changed to simply return `Vec`
+ (instead of `Vec>`)
+
+[pr2]: https://github.com/teloxide/teloxide-core/pull/2
+[pr5]: https://github.com/teloxide/teloxide-core/pull/5
+[pr6]: https://github.com/teloxide/teloxide-core/pull/6
+[pr7]: https://github.com/teloxide/teloxide-core/pull/7
+[pr8]: https://github.com/teloxide/teloxide-core/pull/8
+[pr10]: https://github.com/teloxide/teloxide-core/pull/10
+[pr12]: https://github.com/teloxide/teloxide-core/pull/12
+[pr14]: https://github.com/teloxide/teloxide-core/pull/14
+[pr22]: https://github.com/teloxide/teloxide-core/pull/22
+[pr24]: https://github.com/teloxide/teloxide-core/pull/24
+[pr26]: https://github.com/teloxide/teloxide-core/pull/26
+[pr27]: https://github.com/teloxide/teloxide-core/pull/27
+[pr35]: https://github.com/teloxide/teloxide-core/pull/35
+[pr39]: https://github.com/teloxide/teloxide-core/pull/39
+[pr46]: https://github.com/teloxide/teloxide-core/pull/46
+[pr49]: https://github.com/teloxide/teloxide-core/pull/49
+[pr50]: https://github.com/teloxide/teloxide-core/pull/50
+
+### Changed
+
+- Cleanup setters in `types::*` (remove most of them) ([#44][pr44])
+- Refactor `KeyboardButtonPollType` ([#44][pr44])
+- Replace `Into>` by `IntoIterator- ` in function arguments ([#44][pr44])
+- Update dependencies (including tokio 1.0) ([#37][pr37])
+- Refactor file downloading ([#30][pr30]):
+ - Make `net` module public
+ - Move `Bot::download_file{,_stream}` methods to a new `Download` trait
+ - Impl `Download` for all bot adaptors & the `Bot` itself
+ - Change return type of `download_file_stream` — return ` Stream>``, instead of `Future>>>``
+ - Add `api_url` param to standalone versions of `download_file{,_stream}`
+ - Make `net::{TELEGRAM_API_URL, download_file{,_stream}}` pub
+- Refactor `Bot` ([#29][pr29]):
+ - Move default parse mode to an adaptor (`DefaultParseMode`)
+ - Remove bot builder (it's not usefull anymore, since parse_mode is moved away)
+ - Undeprecate bot constructors (`Bot::{new, with_client, from_env_with_client}`)
+- Rename `StickerType` => `InputSticker`, `{CreateNewStickerSet,AddStickerToSet}::sticker_type}` => `sticker` ([#23][pr23], [#43][pr43])
+- Use `_: IntoIterator
- ` bound instead of `_: Into>` in telegram methods which accept collections ([#21][pr21])
+- Make `MessageDice::dice` pub ([#20][pr20])
+- Merge `ApiErrorKind` and `KnownApiErrorKind` into `ApiError` ([#13][pr13])
+- Refactor ChatMember ([#9][pr9])
+ - Replace a bunch of `Option<_>` fields with `ChatMemberKind`
+ - Remove setters (users are not expected to create this struct)
+ - Add getters
+- Changed internal mechanism of sending multipart requests ([#1][pr1])
+- Added `RequestError::Io(io::Error)` to wrap I/O error those can happen while sending files to telegram
+- Make all fields of all methods `pub` ([#3][pr3])
+
+[pr1]: https://github.com/teloxide/teloxide-core/pull/1
+[pr3]: https://github.com/teloxide/teloxide-core/pull/3
+[pr9]: https://github.com/teloxide/teloxide-core/pull/9
+[pr13]: https://github.com/teloxide/teloxide-core/pull/13
+[pr20]: https://github.com/teloxide/teloxide-core/pull/20
+[pr21]: https://github.com/teloxide/teloxide-core/pull/21
+[pr23]: https://github.com/teloxide/teloxide-core/pull/23
+[pr29]: https://github.com/teloxide/teloxide-core/pull/29
+[pr30]: https://github.com/teloxide/teloxide-core/pull/30
+[pr37]: https://github.com/teloxide/teloxide-core/pull/37
+[pr43]: https://github.com/teloxide/teloxide-core/pull/43
+
+### Removed
+
+- `unstable-stream` feature (now `Bot::download_file_stream` is accesable by default)
+- old `Request` trait
+- `RequestWithFile`, now multipart requests use `Request`
+- Remove all `#[non_exhaustive]` annotations ([#4][pr4])
+- Remove `MessageEntity::text_from` because it's wrong ([#44][pr44])
+
+[pr4]: https://github.com/teloxide/teloxide-core/pull/4
+[pr44]: https://github.com/teloxide/teloxide-core/pull/44
+[`teloxide`]: https://github.com/teloxide/teloxide
+[`changelog.md`]: https://github.com/teloxide/teloxide/blob/master/CHANGELOG.md
diff --git a/crates/teloxide-core/Cargo.toml b/crates/teloxide-core/Cargo.toml
new file mode 100644
index 00000000..fb1cfcb1
--- /dev/null
+++ b/crates/teloxide-core/Cargo.toml
@@ -0,0 +1,106 @@
+[package]
+name = "teloxide-core"
+description = "Core part of the `teloxide` library - telegram bot API client"
+version = "0.8.0"
+edition = "2021"
+
+license = "MIT"
+repository = "https://github.com/teloxide/teloxide-core/"
+homepage = "https://github.com/teloxide/teloxide-core/"
+documentation = "https://docs.rs/teloxide-core/"
+readme = "README.md"
+
+keywords = ["telegram", "bot", "tba"]
+categories = ["api-bindings", "asynchronous"]
+
+exclude = [
+ ".github/*",
+ "netlify.toml",
+]
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[dependencies]
+futures = "0.3.5"
+tokio = { version = "1.12.0", features = ["fs"] }
+tokio-util = { version = "0.7.0", features = ["codec"] }
+pin-project = "1.0.12"
+bytes = "1.0.0"
+reqwest = { version = "0.11.10", features = ["json", "stream", "multipart"], default-features = false }
+url = { version = "2", features = ["serde"] }
+log = "0.4"
+
+serde = { version = "1.0.114", features = ["derive"] }
+serde_json = "1.0.55"
+serde_with_macros = "1.5.2"
+uuid = { version = "1.1.0", features = ["v4"] } # for attaching input files
+
+derive_more = "0.99.9"
+mime = "0.3.16"
+thiserror = "1.0.20"
+once_cell = "1.5.0"
+takecell = "0.1"
+take_mut = "0.2"
+rc-box = "1.1.1"
+never = "0.1.0"
+chrono = { version = "0.4.19", default-features = false }
+either = "1.6.1"
+bitflags = { version = "1.2" }
+
+vecrem = { version = "0.1", optional = true }
+
+[dev-dependencies]
+pretty_env_logger = "0.4"
+tokio = { version = "1.8.0", features = ["fs", "macros", "macros", "rt-multi-thread"] }
+cool_asserts = "2.0.3"
+
+xshell = "0.2"
+ron = "0.7"
+indexmap = { version = "1.9", features = ["serde-1"] }
+aho-corasick = "0.7"
+itertools = "0.10"
+
+[features]
+default = ["native-tls"]
+
+rustls = ["reqwest/rustls-tls"]
+native-tls = ["reqwest/native-tls"]
+
+# Features which require nightly compiler.
+#
+# Currently the only used compiler feature is feature(type_alias_impl_trait)
+# which allow implementing `Future`s without boxing.
+nightly = []
+
+# Throttling bot adaptor
+throttle = ["vecrem", "tokio/macros"]
+
+# Trace bot adaptor
+trace_adaptor = []
+
+# Erased bot adaptor
+erased = []
+
+# CacheMe bot adaptor
+cache_me = []
+
+# AutoSend bot adaptor
+auto_send = []
+
+# All features except nightly and tls-related
+full = ["throttle", "trace_adaptor", "erased", "cache_me", "auto_send"]
+
+[package.metadata.docs.rs]
+features = ["full", "nightly", "tokio/macros", "tokio/rt-multi-thread"]
+rustdoc-args = ["--cfg", "docsrs", "-Znormalize-docs"]
+
+# https://github.com/rust-lang/rust/issues/88791
+cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples=examples"]
+
+[[example]]
+name = "self_info"
+required-features = ["tokio/macros", "tokio/rt-multi-thread"]
+
+[[example]]
+name = "erased"
+required-features = ["tokio/macros", "tokio/rt-multi-thread", "erased", "trace_adaptor"]
diff --git a/crates/teloxide-core/LICENSE b/crates/teloxide-core/LICENSE
new file mode 120000
index 00000000..30cff740
--- /dev/null
+++ b/crates/teloxide-core/LICENSE
@@ -0,0 +1 @@
+../../LICENSE
\ No newline at end of file
diff --git a/crates/teloxide-core/README.md b/crates/teloxide-core/README.md
new file mode 100644
index 00000000..d4c80ba5
--- /dev/null
+++ b/crates/teloxide-core/README.md
@@ -0,0 +1,34 @@
+
+
+
+
teloxide-core
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The core part of [`teloxide`] providing tools for making requests to the [Telegram Bot API] with ease. This library is fully asynchronous and built using [`tokio`].
+
+
+```toml
+teloxide-core = "0.8"
+```
+_Compiler support: requires rustc 1.64+_.
+
+[`teloxide`]: https://docs.rs/teloxide
+[Telegram Bot API]: https://core.telegram.org/bots/api
+[`tokio`]: https://tokio.rs
diff --git a/crates/teloxide-core/examples/erased.rs b/crates/teloxide-core/examples/erased.rs
new file mode 100644
index 00000000..feeffbdc
--- /dev/null
+++ b/crates/teloxide-core/examples/erased.rs
@@ -0,0 +1,42 @@
+use std::{env::VarError, time::Duration};
+
+use teloxide_core::{adaptors::trace, prelude::*, types::ChatAction};
+
+#[tokio::main]
+async fn main() -> Result<(), Box> {
+ pretty_env_logger::init();
+
+ let chat_id =
+ ChatId(std::env::var("CHAT_ID").expect("Expected CHAT_ID env var").parse::()?);
+
+ let trace_settings = match std::env::var("TRACE").as_deref() {
+ Ok("EVERYTHING_VERBOSE") => trace::Settings::TRACE_EVERYTHING_VERBOSE,
+ Ok("EVERYTHING") => trace::Settings::TRACE_EVERYTHING,
+ Ok("REQUESTS_VERBOSE") => trace::Settings::TRACE_REQUESTS_VERBOSE,
+ Ok("REQUESTS") => trace::Settings::TRACE_REQUESTS,
+ Ok("RESPONSES_VERBOSE") => trace::Settings::TRACE_RESPONSES_VERBOSE,
+ Ok("RESPONSES") => trace::Settings::TRACE_RESPONSES,
+ Ok("EMPTY") | Ok("") | Err(VarError::NotPresent) => trace::Settings::empty(),
+ Ok(_) | Err(VarError::NotUnicode(_)) => {
+ panic!(
+ "Expected `TRACE` environment variable to be equal to any of the following: \
+ `EVERYTHING_VERBOSE`, `EVERYTHING`, `REQUESTS_VERBOSE`, `REQUESTS`, \
+ `RESPONSES_VERBOSE`, `RESPONSES`, `EMPTY`, `` (empty string)"
+ )
+ }
+ };
+
+ log::info!("Trace settings: {:?}", trace_settings);
+
+ let bot = if trace_settings.is_empty() {
+ Bot::from_env().erase()
+ } else {
+ Bot::from_env().trace(trace_settings).erase()
+ };
+
+ bot.send_chat_action(chat_id, ChatAction::Typing).await?;
+ tokio::time::sleep(Duration::from_secs(1)).await;
+ bot.send_message(chat_id, "Hey hey hey").await?;
+
+ Ok(())
+}
diff --git a/crates/teloxide-core/examples/self_info.rs b/crates/teloxide-core/examples/self_info.rs
new file mode 100644
index 00000000..6ea7cb24
--- /dev/null
+++ b/crates/teloxide-core/examples/self_info.rs
@@ -0,0 +1,21 @@
+use teloxide_core::{
+ prelude::*,
+ types::{DiceEmoji, Me, ParseMode},
+};
+
+#[tokio::main]
+async fn main() -> Result<(), Box> {
+ pretty_env_logger::init();
+
+ let chat_id =
+ ChatId(std::env::var("CHAT_ID").expect("Expected CHAT_ID env var").parse::()?);
+
+ let bot = Bot::from_env().parse_mode(ParseMode::MarkdownV2);
+
+ let Me { user: me, .. } = bot.get_me().await?;
+
+ bot.send_dice(chat_id).emoji(DiceEmoji::Dice).await?;
+ bot.send_message(chat_id, format!("Hi, my name is **{}** 👋", me.first_name)).await?;
+
+ Ok(())
+}
diff --git a/crates/teloxide-core/schema.ron b/crates/teloxide-core/schema.ron
new file mode 100644
index 00000000..dfe1e459
--- /dev/null
+++ b/crates/teloxide-core/schema.ron
@@ -0,0 +1,3863 @@
+//! This file is written in [RON] (Rusty Object Notation).
+//!
+//! This "schema" is a formalized version of the
+//! [telegram bot api documentation][tbadoc] which is not machine readable.
+//! (note: this schema currently covers only API methods and **not** types).
+//!
+//! Also, note that this file is **hand written** and may contain typos,
+//! deviations from original doc, and other kinds of typical human errors.
+//! If you found an error please open an issue (or make a PR) on [github].
+//!
+//! This schema is targeting code generation for API wrappers in a statically
+//! typed language, though you may use it whatever you want.
+//!
+//! This scheme also has some intentional differences from original doc:
+//! * New types:
+//! + `ChatId` - type of `chat_id` parameter, in the original documentation
+//! written as `Integer or String
+//! + `UserId` - type of `user_id` parameters
+//! + `ChatAction` - type of `action` param in `sendChatAction` method
+//! + `AllowedUpdate` inner type of `allowed_updates` in `getUpdates` and
+//! `setWebhook` (so type is `ArrayOf(AllowedUpdate)`)
+//! + `ReplyMarkup` - type of `reply_markup` parameter, in the original
+//! documentation written as `InlineKeyboardMarkup or ReplyKeyboardMarkup or
+//! ReplyKeyboardRemove or ForceReply`
+//! + `ParseMode` type of `parse_mode` params
+//! + `PollType` type of poll, either “quiz” or “regular”
+//! + `DiceEmoji` emoji that can be used in `sendDice` one of “🎲”, “🎯”, or “🏀”
+//! + `TargetMessage` either `inline_message_id: String` or `chat_id: ChatId` and `message_id: i64`
+//! + `InputSticker`
+//! * Integers represented with more strict (when possible) types, e.g.:
+//! `u8` (unsigned, 8-bit integer), `u32` (unsigned, 32-bit),
+//! `i64` (signed, 64-bit), etc
+//! * Instead of optional parameters `Option(Ty)` is used
+//! * Instead of `InputFile or String` just `InputFile` is used (assuming that
+//! `InputFile` is a sum-type or something and it can contain `String`s)
+//! * `f64` ~= `Float number`
+//!
+//! [tbadoc]: https://core.telegram.org/bots/api
+//! [RON]: https://github.com/ron-rs/ron
+//! [github]: https://github.com/WaffleLapkin/tg-methods-schema
+
+Schema(
+ api_version: ApiVersion(ver: "6.1", date: "June 20, 2022"),
+ methods: [
+ Method(
+ names: ("getUpdates", "GetUpdates", "get_updates"),
+ return_ty: ArrayOf(RawTy("Update")),
+ doc: Doc(
+ md: "Use this method to receive incoming updates using long polling ([wiki]). An Array of [Update] objects is returned.",
+ md_links: {
+ "wiki": "https://en.wikipedia.org/wiki/Push_technology#Long_polling",
+ "Update": "https://core.telegram.org/bots/api#update",
+ },
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#getupdates",
+ tg_category: "Getting updates",
+ params: [
+ Param(
+ name: "offset",
+ ty: Option(i32),
+ descr: Doc(
+ md: "Identifier of the first update to be returned. Must be greater by one than the highest among the identifiers of previously received updates. By default, updates starting with the earliest unconfirmed update are returned. An update is considered confirmed as soon as [getUpdates] is called with an offset higher than its update_id. The negative offset can be specified to retrieve updates starting from -offset update from the end of the updates queue. All previous updates will forgotten.",
+ md_links: {
+ "getUpdates": "https://core.telegram.org/bots/api#getupdates",
+ }
+ )
+ ),
+ Param(
+ name: "limit",
+ ty: Option(u8),
+ descr: Doc(md: "Limits the number of updates to be retrieved. Values between 1-100 are accepted. Defaults to 100."),
+ ),
+ Param(
+ name: "timeout",
+ ty: Option(u32),
+ descr: Doc(md: "Timeout in seconds for long polling. Defaults to 0, i.e. usual short polling. Should be positive, short polling should be used for testing purposes only."),
+ ),
+ Param(
+ name: "allowed_updates",
+ ty: Option(ArrayOf(RawTy("AllowedUpdate"))),
+ descr: Doc(
+ md: "A JSON-serialized list of the update types you want your bot to receive. For example, specify [“message”, “edited_channel_post”, “callback_query”] to only receive updates of these types. See [Update] for a complete list of available update types. Specify an empty list to receive all update types except chat_member (default). If not specified, the previous setting will be used.\n\nPlease note that this parameter doesn't affect updates created before the call to the getUpdates, so unwanted updates may be received for a short period of time.",
+ md_links: {"Update":"https://core.telegram.org/bots/api#update"},
+ ),
+ )
+ ],
+ notes: [
+ (md: "This method will not work if an outgoing webhook is set up."),
+ (md: "In order to avoid getting duplicate updates, recalculate _offset_ after each server response.")
+ ],
+ ),
+ Method(
+ names: ("setWebhook", "SetWebhook", "set_webhook"),
+ return_ty: True,
+ doc: Doc(
+ md: "Use this method to specify a url and receive incoming updates via an outgoing webhook. Whenever there is an update for the bot, we will send an HTTPS POST request to the specified url, containing a JSON-serialized [Update]. In case of an unsuccessful request, we will give up after a reasonable amount of attempts. Returns True on success.\n\nIf you'd like to make sure that the Webhook request comes from Telegram, we recommend using a secret path in the URL, e.g. `https://www.example.com/`. Since nobody else knows your bot's token, you can be pretty sure it's us.",
+ md_links: {"Update":"https://core.telegram.org/bots/api#update"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#setwebhook",
+ tg_category: "Getting updates",
+ params: [
+ Param(
+ name: "url",
+ ty: String,
+ descr: Doc(md: "HTTPS url to send updates to. Use an empty string to remove webhook integration"),
+ ),
+ Param(
+ name: "certificate",
+ ty: Option(RawTy("InputFile")),
+ descr: Doc(
+ md: "Upload your public key certificate so that the root certificate in use can be checked. See our [self-signed guide] for details.",
+ md_links: {"self-signed guide":"https://core.telegram.org/bots/self-signed"},
+ )
+ ),
+ Param(
+ name: "ip_address",
+ ty: Option(String),
+ descr: Doc(md: "The fixed IP address which will be used to send webhook requests instead of the IP address resolved through DNS"),
+ ),
+ Param(
+ name: "max_connections",
+ ty: Option(u8),
+ descr: Doc(md: "Maximum allowed number of simultaneous HTTPS connections to the webhook for update delivery, 1-100. Defaults to 40. Use lower values to limit the load on your bot's server, and higher values to increase your bot's throughput.")
+ ),
+ Param(
+ name: "allowed_updates",
+ ty: Option(ArrayOf(RawTy("AllowedUpdate"))),
+ descr: Doc(
+ md: "A JSON-serialized list of the update types you want your bot to receive. For example, specify [“message”, “edited_channel_post”, “callback_query”] to only receive updates of these types. See [Update] for a complete list of available update types. Specify an empty list to receive all updates regardless of type (default). If not specified, the previous setting will be used.\n\nPlease note that this parameter doesn't affect updates created before the call to the setWebhook, so unwanted updates may be received for a short period of time.",
+ md_links: {"Update":"https://core.telegram.org/bots/api#update"},
+ ),
+ ),
+ Param(
+ name: "drop_pending_updates",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_ to drop all pending updates")
+ ),
+ Param(
+ name: "secret_token",
+ ty: Option(String),
+ descr: Doc(md: "A secret token to be sent in a header “X-Telegram-Bot-Api-Secret-Token” in every webhook request, 1-256 characters. Only characters `A-Z`, `a-z`, `0-9`, `_` and `-` are allowed. The header is useful to ensure that the request comes from a webhook set by you."),
+ ),
+ ],
+ notes: [
+ (
+ md: "You will not be able to receive updates using [getUpdates] for as long as an outgoing webhook is set up.",
+ md_links: {"getUpdates": "https://core.telegram.org/bots/api#getupdates"},
+ ),
+ (
+ md: "To use a self-signed certificate, you need to upload your [public key certificate] using certificate parameter. Please upload as InputFile, sending a String will not work.",
+ md_links: {"public key certificate":"https://core.telegram.org/bots/self-signed"}
+ ),
+ (md: "Ports currently supported for Webhooks: **443**, **80**, **88**, **8443**."),
+ (
+ md: "If you're having any trouble setting up webhooks, please check out this [amazing guide to Webhooks].",
+ md_links: {"amazing guide to Webhooks": "https://core.telegram.org/bots/webhooks"}
+ )
+ ]
+ ),
+ Method(
+ names: ("deleteWebhook", "DeleteWebhook", "delete_webhook"),
+ return_ty: True,
+ doc: Doc(
+ md: "Use this method to remove webhook integration if you decide to switch back to [getUpdates]. Returns True on success. Requires no parameters.",
+ md_links: {"getUpdates":"https://core.telegram.org/bots/api#getupdates"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#deletewebhook",
+ tg_category: "Getting updates",
+ params: [
+ Param(
+ name: "drop_pending_updates",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_ to drop all pending updates"),
+ )
+ ],
+ ),
+ Method(
+ names: ("getWebhookInfo", "GetWebhookInfo", "get_webhook_info"),
+ return_ty: RawTy("WebhookInfo"),
+ doc: Doc(
+ md: "Use this method to get current webhook status. Requires no parameters. On success, returns a [WebhookInfo] object. If the bot is using [getUpdates], will return an object with the _url_ field empty.",
+ md_links: {
+ "WebhookInfo": "https://core.telegram.org/bots/api#webhookinfo",
+ "getUpdates": "https://core.telegram.org/bots/api#getupdates",
+ }
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#getwebhookinfo",
+ tg_category: "Getting updates",
+ params: [],
+ ),
+ Method(
+ names: ("getMe", "GetMe", "get_me"),
+ return_ty: RawTy("Me"),
+ doc: Doc(
+ md: "A simple method for testing your bot's auth token. Requires no parameters. Returns basic information about the bot in form of a [User] object.",
+ md_links: {"User": "https://core.telegram.org/bots/api#user"}
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#getme",
+ tg_category: "Available methods",
+ params: [],
+ ),
+ Method(
+ names: ("logOut", "LogOut", "log_out"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to log out from the cloud Bot API server before launching the bot locally. You **must** log out the bot before running it locally, otherwise there is no guarantee that the bot will receive updates. After a successful call, you can immediately log in on a local server, but will not be able to log in back to the cloud Bot API server for 10 minutes. Returns _True_ on success. Requires no parameters."),
+ tg_doc: "https://core.telegram.org/bots/api#logout",
+ tg_category: "Available methods",
+ params: [],
+ ),
+ Method(
+ names: ("close", "Close", "close"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to close the bot instance before moving it from one local server to another. You need to delete the webhook before calling this method to ensure that the bot isn't launched again after server restart. The method will return error 429 in the first 10 minutes after the bot is launched. Returns _True_ on success. Requires no parameters."),
+ tg_doc: "https://core.telegram.org/bots/api#close",
+ tg_category: "Available methods",
+ params: [],
+ ),
+ Method(
+ names: ("sendMessage", "SendMessage", "send_message"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "Use this method to send text messages. On success, the sent [Message] is returned.",
+ md_links: {"Message": "https://core.telegram.org/bots/api#message"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#sendmessage",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "text",
+ ty: String,
+ descr: Doc(md: "Text of the message to be sent, 1-4096 characters after entities parsing")
+ ),
+ Param(
+ name: "parse_mode",
+ ty: Option(RawTy("ParseMode")),
+ descr: Doc(
+ md: "Mode for parsing entities in the message text. See [formatting options] for more details.",
+ md_links: {"formatting options": "https://core.telegram.org/bots/api#formatting-options"}
+ )
+ ),
+ Param(
+ name: "entities",
+ ty: Option(ArrayOf(RawTy("MessageEntity"))),
+ descr: Doc(md: "List of special entities that appear in the message text, which can be specified instead of _parse\\_mode_"),
+ ),
+ Param(
+ name: "disable_web_page_preview",
+ ty: Option(bool),
+ descr: Doc(md: "Disables link previews for links in this message")
+ ),
+ Param(
+ name: "disable_notification",
+ ty: Option(bool),
+ descr: Doc(
+ md: "Sends the message [silently]. Users will receive a notification with no sound.",
+ md_links: {"silently": "https://telegram.org/blog/channels-2-0#silent-messages"}
+ )
+ ),
+ Param(
+ name: "protect_content",
+ ty: Option(bool),
+ descr: Doc(md: "Protects the contents of sent messages from forwarding and saving"),
+ ),
+ Param(
+ name: "reply_to_message_id",
+ ty: Option(RawTy("MessageId")),
+ descr: Doc(md: "If the message is a reply, ID of the original message")
+ ),
+ Param(
+ name: "allow_sending_without_reply",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if the message should be sent even if the specified replied-to message is not found")
+ ),
+ Param(
+ 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_links: {
+ "inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
+ "custom reply keyboard": "https://core.telegram.org/bots#keyboards",
+ }
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("forwardMessage", "ForwardMessage", "forward_message"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "Use this method to forward messages of any kind. On success, the sent [Message] is returned.",
+ md_links: {"Message": "https://core.telegram.org/bots/api#message"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#forwardmessage",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)"),
+ ),
+ Param(
+ name: "from_chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the chat where the original message was sent (or channel username in the format `@channelusername`)"),
+ ),
+ Param(
+ name: "disable_notification",
+ ty: Option(bool),
+ descr: Doc(
+ md: "Sends the message [silently]. Users will receive a notification with no sound.",
+ md_links: {"silently": "https://telegram.org/blog/channels-2-0#silent-messages"}
+ )
+ ),
+ Param(
+ name: "protect_content",
+ ty: Option(bool),
+ descr: Doc(md: "Protects the contents of sent messages from forwarding and saving"),
+ ),
+ Param(
+ name: "message_id",
+ ty: RawTy("MessageId"),
+ descr: Doc(md: "Message identifier in the chat specified in _from\\_chat\\_id_")
+ ),
+ ],
+ ),
+ Method(
+ names: ("copyMessage", "CopyMessage", "copy_message"),
+ return_ty: RawTy("MessageId"),
+ doc: Doc(
+ md: "Use this method to copy messages of any kind. The method is analogous to the method forwardMessage, but the copied message doesn't have a link to the original message. Returns the [MessageId] of the sent message on success.",
+ md_links: {"MessageId": "https://core.telegram.org/bots/api#messageid"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#copymessage",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)"),
+ ),
+ Param(
+ name: "from_chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the chat where the original message was sent (or channel username in the format `@channelusername`)"),
+ ),
+ Param(
+ name: "message_id",
+ ty: RawTy("MessageId"),
+ descr: Doc(md: "Message identifier in the chat specified in _from\\_chat\\_id_")
+ ),
+ Param(
+ name: "caption",
+ ty: Option(String),
+ descr: Doc(md: "New caption for media, 0-1024 characters after entities parsing. If not specified, the original caption is kept"),
+ ),
+ Param(
+ name: "parse_mode",
+ ty: Option(RawTy("ParseMode")),
+ descr: Doc(
+ md: "Mode for parsing entities in the photo caption. See [formatting options] for more details.",
+ md_links: {"formatting options": "https://core.telegram.org/bots/api#formatting-options"}
+ )
+ ),
+ Param(
+ name: "caption_entities",
+ ty: Option(ArrayOf(RawTy("MessageEntity"))),
+ descr: Doc(md: "List of special entities that appear in the new caption, which can be specified instead of _parse\\_mode_"),
+ ),
+ Param(
+ name: "disable_notification",
+ ty: Option(bool),
+ descr: Doc(
+ md: "Sends the message [silently]. Users will receive a notification with no sound.",
+ md_links: {"silently": "https://telegram.org/blog/channels-2-0#silent-messages"}
+ )
+ ),
+ Param(
+ name: "protect_content",
+ ty: Option(bool),
+ descr: Doc(md: "Protects the contents of sent messages from forwarding and saving"),
+ ),
+ Param(
+ name: "reply_to_message_id",
+ ty: Option(RawTy("MessageId")),
+ descr: Doc(md: "If the message is a reply, ID of the original message")
+ ),
+ Param(
+ name: "allow_sending_without_reply",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if the message should be sent even if the specified replied-to message is not found")
+ ),
+ Param(
+ 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_links: {
+ "inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
+ "custom reply keyboard": "https://core.telegram.org/bots#keyboards",
+ },
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("sendPhoto", "SendPhoto", "send_photo"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "Use this method to send photos. On success, the sent [Message] is returned.",
+ md_links: {"Message": "https://core.telegram.org/bots/api#message"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#sendphoto",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "photo",
+ ty: RawTy("InputFile"),
+ descr: Doc(
+ md: "Photo to send. Pass a file_id as String to send a photo that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a photo from the Internet, or upload a new photo using multipart/form-data. [More info on Sending Files »]",
+ md_links: {"More info on Sending Files »": "https://core.telegram.org/bots/api#sending-files"},
+ )
+ ),
+ Param(
+ name: "caption",
+ ty: Option(String),
+ descr: Doc(md: "Photo caption (may also be used when resending photos by _file\\_id_), 0-1024 characters after entities parsing")
+ ),
+ Param(
+ name: "parse_mode",
+ ty: Option(RawTy("ParseMode")),
+ descr: Doc(
+ md: "Mode for parsing entities in the photo caption. See [formatting options] for more details.",
+ md_links: {"formatting options": "https://core.telegram.org/bots/api#formatting-options"}
+ )
+ ),
+ Param(
+ name: "caption_entities",
+ ty: Option(ArrayOf(RawTy("MessageEntity"))),
+ descr: Doc(md: "List of special entities that appear in the photo caption, which can be specified instead of _parse\\_mode_"),
+ ),
+ Param(
+ name: "disable_notification",
+ ty: Option(bool),
+ descr: Doc(
+ md: "Sends the message [silently]. Users will receive a notification with no sound.",
+ md_links: {"silently": "https://telegram.org/blog/channels-2-0#silent-messages"}
+ )
+ ),
+ Param(
+ name: "protect_content",
+ ty: Option(bool),
+ descr: Doc(md: "Protects the contents of sent messages from forwarding and saving"),
+ ),
+ Param(
+ name: "reply_to_message_id",
+ ty: Option(RawTy("MessageId")),
+ descr: Doc(md: "If the message is a reply, ID of the original message")
+ ),
+ Param(
+ name: "allow_sending_without_reply",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if the message should be sent even if the specified replied-to message is not found")
+ ),
+ Param(
+ 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_links: {
+ "inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
+ "custom reply keyboard": "https://core.telegram.org/bots#keyboards",
+ },
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("sendAudio", "SendAudio", "send_audio"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "Use this method to send audio files, if you want Telegram clients to display them in the music player. Your audio must be in the .MP3 or .M4A format. On success, the sent [Message] is returned. Bots can currently send audio files of up to 50 MB in size, this limit may be changed in the future.\n\nFor sending voice messages, use the [sendVoice] method instead.",
+ md_links: {
+ "Message": "https://core.telegram.org/bots/api#message",
+ "sendVoice": "https://core.telegram.org/bots/api#sendvoice",
+ },
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#sendaudio",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)"),
+ ),
+ Param(
+ name: "audio",
+ ty: RawTy("InputFile"),
+ descr: Doc(
+ md: "Audio file to send. Pass a file_id as String to send an audio file that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get an audio file from the Internet, or upload a new one using multipart/form-data. [More info on Sending Files »]",
+ md_links: {"More info on Sending Files »": "https://core.telegram.org/bots/api#sending-files"},
+ ),
+ ),
+ Param(
+ name: "caption",
+ ty: Option(String),
+ descr: Doc(md: "Audio caption, 0-1024 characters after entities parsing"),
+ ),
+ Param(
+ name: "parse_mode",
+ ty: Option(RawTy("ParseMode")),
+ descr: Doc(
+ md: "Mode for parsing entities in the audio caption. See [formatting options] for more details.",
+ md_links: {"formatting options": "https://core.telegram.org/bots/api#formatting-options"},
+ ),
+ ),
+ Param(
+ name: "caption_entities",
+ ty: Option(ArrayOf(RawTy("MessageEntity"))),
+ descr: Doc(md: "List of special entities that appear in the photo caption, which can be specified instead of _parse\\_mode_"),
+ ),
+ Param(
+ name: "duration",
+ ty: Option(u32),
+ descr: Doc(md: "Duration of the audio in seconds"),
+ ),
+ Param(
+ name: "performer",
+ ty: Option(String),
+ descr: Doc(md: "Performer"),
+ ),
+ Param(
+ name: "title",
+ ty: Option(String),
+ descr: Doc(md: "Track name"),
+ ),
+ Param(
+ name: "thumb",
+ ty: Option(RawTy("InputFile")),
+ descr: Doc(
+ md: "Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://” if the thumbnail was uploaded using multipart/form-data under . [More info on Sending Files »]",
+ md_links: {"More info on Sending Files »": "https://core.telegram.org/bots/api#sending-files"},
+ ),
+ ),
+ Param(
+ name: "disable_notification",
+ ty: Option(bool),
+ descr: Doc(
+ md: "Sends the message [silently]. Users will receive a notification with no sound.",
+ md_links: {"silently": "https://telegram.org/blog/channels-2-0#silent-messages"},
+ )
+ ),
+ Param(
+ name: "protect_content",
+ ty: Option(bool),
+ descr: Doc(md: "Protects the contents of sent messages from forwarding and saving"),
+ ),
+ Param(
+ name: "reply_to_message_id",
+ ty: Option(RawTy("MessageId")),
+ descr: Doc(md: "If the message is a reply, ID of the original message")
+ ),
+ Param(
+ name: "allow_sending_without_reply",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if the message should be sent even if the specified replied-to message is not found")
+ ),
+ Param(
+ 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_links: {
+ "inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
+ "custom reply keyboard": "https://core.telegram.org/bots#keyboards",
+ }
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("sendDocument", "SendDocument", "send_document"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "Use this method to send general files. On success, the sent [Message] is returned. Bots can currently send files of any type of up to 50 MB in size, this limit may be changed in the future.",
+ md_links: { "Message": "https://core.telegram.org/bots/api#message" },
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#senddocument",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)"),
+ ),
+ Param(
+ name: "document",
+ ty: RawTy("InputFile"),
+ descr: Doc(
+ md: "File to send. Pass a file_id as String to send a file that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a file from the Internet, or upload a new one using multipart/form-data. [More info on Sending Files »]",
+ md_links: {"More info on Sending Files »": "https://core.telegram.org/bots/api#sending-files"},
+ ),
+ ),
+ Param(
+ name: "thumb",
+ ty: Option(RawTy("InputFile")),
+ descr: Doc(
+ md: "Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://” if the thumbnail was uploaded using multipart/form-data under . [More info on Sending Files »]",
+ md_links: {"More info on Sending Files »": "https://core.telegram.org/bots/api#sending-files"},
+ ),
+ ),
+ Param(
+ name: "caption",
+ ty: Option(String),
+ descr: Doc(md: "Document caption (may also be used when resending documents by _file\\_id_), 0-1024 characters after entities parsing"),
+ ),
+ Param(
+ name: "parse_mode",
+ ty: Option(RawTy("ParseMode")),
+ descr: Doc(
+ md: "Mode for parsing entities in the audio caption. See [formatting options] for more details.",
+ md_links: {"formatting options": "https://core.telegram.org/bots/api#formatting-options"},
+ ),
+ ),
+ Param(
+ name: "caption_entities",
+ ty: Option(ArrayOf(RawTy("MessageEntity"))),
+ descr: Doc(md: "List of special entities that appear in the photo caption, which can be specified instead of _parse\\_mode_"),
+ ),
+ Param(
+ name: "disable_content_type_detection",
+ ty: Option(bool),
+ descr: Doc(md: "Disables automatic server-side content type detection for files uploaded using multipart/form-data."),
+ ),
+ Param(
+ name: "disable_notification",
+ ty: Option(bool),
+ descr: Doc(
+ md: "Sends the message [silently]. Users will receive a notification with no sound.",
+ md_links: {"silently": "https://telegram.org/blog/channels-2-0#silent-messages"},
+ )
+ ),
+ Param(
+ name: "protect_content",
+ ty: Option(bool),
+ descr: Doc(md: "Protects the contents of sent messages from forwarding and saving"),
+ ),
+ Param(
+ name: "reply_to_message_id",
+ ty: Option(RawTy("MessageId")),
+ descr: Doc(md: "If the message is a reply, ID of the original message")
+ ),
+ Param(
+ name: "allow_sending_without_reply",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if the message should be sent even if the specified replied-to message is not found")
+ ),
+ Param(
+ 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_links: {
+ "inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
+ "custom reply keyboard": "https://core.telegram.org/bots#keyboards",
+ }
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("sendVideo", "SendVideo", "send_video"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "Use this method to send video files, Telegram clients support mp4 videos (other formats may be sent as [Document]). On success, the sent [Message] is returned. Bots can currently send video files of up to 50 MB in size, this limit may be changed in the future.",
+ md_links: {
+ "Document": "https://core.telegram.org/bots/api#document",
+ "Message": "https://core.telegram.org/bots/api#message",
+ },
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#sendvideo",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)"),
+ ),
+ Param(
+ name: "video",
+ ty: RawTy("InputFile"),
+ descr: Doc(
+ md: "Video to send. Pass a file_id as String to send a video that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a video from the Internet, or upload a new video using multipart/form-data. [More info on Sending Files »]",
+ md_links: {"More info on Sending Files »": "https://core.telegram.org/bots/api#sending-files"},
+ ),
+ ),
+ Param(
+ name: "duration",
+ ty: Option(u32),
+ descr: Doc(md: "Duration of the video in seconds"),
+ ),
+ Param(
+ name: "width",
+ ty: Option(u32),
+ descr: Doc(md: "Video width"),
+ ),
+ Param(
+ name: "height",
+ ty: Option(u32),
+ descr: Doc(md: "Video height"),
+ ),
+ Param(
+ name: "thumb",
+ ty: Option(RawTy("InputFile")),
+ descr: Doc(
+ md: "Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://” if the thumbnail was uploaded using multipart/form-data under . [More info on Sending Files »]",
+ md_links: {"More info on Sending Files »": "https://core.telegram.org/bots/api#sending-files"},
+ ),
+ ),
+ Param(
+ name: "caption",
+ ty: Option(String),
+ descr: Doc(md: "Video caption (may also be used when resending videos by _file\\_id_), 0-1024 characters after entities parsing"),
+ ),
+ Param(
+ name: "parse_mode",
+ ty: Option(RawTy("ParseMode")),
+ descr: Doc(
+ md: "Mode for parsing entities in the video caption. See [formatting options] for more details.",
+ md_links: {"formatting options": "https://core.telegram.org/bots/api#formatting-options"},
+ ),
+ ),
+ Param(
+ name: "caption_entities",
+ ty: Option(ArrayOf(RawTy("MessageEntity"))),
+ descr: Doc(md: "List of special entities that appear in the caption, which can be specified instead of _parse\\_mode_"),
+ ),
+ Param(
+ name: "supports_streaming",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if the uploaded video is suitable for streaming"),
+ ),
+ Param(
+ name: "disable_notification",
+ ty: Option(bool),
+ descr: Doc(
+ md: "Sends the message [silently]. Users will receive a notification with no sound.",
+ md_links: {"silently": "https://telegram.org/blog/channels-2-0#silent-messages"},
+ )
+ ),
+ Param(
+ name: "protect_content",
+ ty: Option(bool),
+ descr: Doc(md: "Protects the contents of sent messages from forwarding and saving"),
+ ),
+ Param(
+ name: "reply_to_message_id",
+ ty: Option(RawTy("MessageId")),
+ descr: Doc(md: "If the message is a reply, ID of the original message")
+ ),
+ Param(
+ name: "allow_sending_without_reply",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if the message should be sent even if the specified replied-to message is not found")
+ ),
+ Param(
+ 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_links: {
+ "inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
+ "custom reply keyboard": "https://core.telegram.org/bots#keyboards",
+ }
+ ),
+
+ ),
+ ],
+ ),
+ Method(
+ names: ("sendAnimation", "SendAnimation", "send_animation"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "Use this method to send animation files (GIF or H.264/MPEG-4 AVC video without sound). On success, the sent [Message] is returned. Bots can currently send animation files of up to 50 MB in size, this limit may be changed in the future.",
+ md_links: { "Message": "https://core.telegram.org/bots/api#message" },
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#sendanimation",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)"),
+ ),
+ Param(
+ name: "animation",
+ ty: RawTy("InputFile"),
+ descr: Doc(
+ md: "Animation to send. Pass a file_id as String to send a video that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a video from the Internet, or upload a new video using multipart/form-data. [More info on Sending Files »]",
+ md_links: {"More info on Sending Files »": "https://core.telegram.org/bots/api#sending-files"},
+ ),
+ ),
+ Param(
+ name: "duration",
+ ty: Option(u32),
+ descr: Doc(md: "Duration of the animation in seconds"),
+ ),
+ Param(
+ name: "width",
+ ty: Option(u32),
+ descr: Doc(md: "Animation width"),
+ ),
+ Param(
+ name: "height",
+ ty: Option(u32),
+ descr: Doc(md: "Animation height"),
+ ),
+ Param(
+ name: "thumb",
+ ty: Option(RawTy("InputFile")),
+ descr: Doc(
+ md: "Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://” if the thumbnail was uploaded using multipart/form-data under . [More info on Sending Files »]",
+ md_links: {"More info on Sending Files »": "https://core.telegram.org/bots/api#sending-files"},
+ ),
+ ),
+ Param(
+ name: "caption",
+ ty: Option(String),
+ descr: Doc(md: "Animation caption (may also be used when resending videos by _file\\_id_), 0-1024 characters after entities parsing"),
+ ),
+ Param(
+ name: "parse_mode",
+ ty: Option(RawTy("ParseMode")),
+ descr: Doc(
+ md: "Mode for parsing entities in the animation caption. See [formatting options] for more details.",
+ md_links: {"formatting options": "https://core.telegram.org/bots/api#formatting-options"},
+ ),
+ ),
+ Param(
+ name: "caption_entities",
+ ty: Option(ArrayOf(RawTy("MessageEntity"))),
+ descr: Doc(md: "List of special entities that appear in the photo caption, which can be specified instead of _parse\\_mode_"),
+ ),
+ Param(
+ name: "disable_notification",
+ ty: Option(bool),
+ descr: Doc(
+ md: "Sends the message [silently]. Users will receive a notification with no sound.",
+ md_links: {"silently": "https://telegram.org/blog/channels-2-0#silent-messages"},
+ )
+ ),
+ Param(
+ name: "protect_content",
+ ty: Option(bool),
+ descr: Doc(md: "Protects the contents of sent messages from forwarding and saving"),
+ ),
+ Param(
+ name: "reply_to_message_id",
+ ty: Option(RawTy("MessageId")),
+ descr: Doc(md: "If the message is a reply, ID of the original message")
+ ),
+ Param(
+ name: "allow_sending_without_reply",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if the message should be sent even if the specified replied-to message is not found")
+ ),
+ Param(
+ 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_links: {
+ "inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
+ "custom reply keyboard": "https://core.telegram.org/bots#keyboards",
+ }
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("sendVoice", "SendVoice", "send_voice"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "Use this method to send audio files, if you want Telegram clients to display the file as a playable voice message. For this to work, your audio must be in an .OGG file encoded with OPUS (other formats may be sent as [Audio] or [Document]). On success, the sent [Message] is returned. Bots can currently send voice messages of up to 50 MB in size, this limit may be changed in the future.",
+ md_links: {
+ "Audio": "https://core.telegram.org/bots/api#audio",
+ "Document": "https://core.telegram.org/bots/api#document",
+ "Message": "https://core.telegram.org/bots/api#message",
+ },
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#sendaudio",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)"),
+ ),
+ Param(
+ name: "voice",
+ ty: RawTy("InputFile"),
+ descr: Doc(
+ md: "Audio file to send. Pass a file_id as String to send an audio file that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get an audio file from the Internet, or upload a new one using multipart/form-data. [More info on Sending Files »]",
+ md_links: {"More info on Sending Files »": "https://core.telegram.org/bots/api#sending-files"},
+ ),
+ ),
+ Param(
+ name: "caption",
+ ty: Option(String),
+ descr: Doc(md: "Voice message caption, 0-1024 characters after entities parsing"),
+ ),
+ Param(
+ name: "parse_mode",
+ ty: Option(RawTy("ParseMode")),
+ descr: Doc(
+ md: "Mode for parsing entities in the voice message caption. See [formatting options] for more details.",
+ md_links: {"formatting options": "https://core.telegram.org/bots/api#formatting-options"},
+ ),
+ ),
+ Param(
+ name: "caption_entities",
+ ty: Option(ArrayOf(RawTy("MessageEntity"))),
+ descr: Doc(md: "List of special entities that appear in the photo caption, which can be specified instead of _parse\\_mode_"),
+ ),
+ Param(
+ name: "duration",
+ ty: Option(u32),
+ descr: Doc(md: "Duration of the voice message in seconds"),
+ ),
+ Param(
+ name: "disable_notification",
+ ty: Option(bool),
+ descr: Doc(
+ md: "Sends the message [silently]. Users will receive a notification with no sound.",
+ md_links: {"silently": "https://telegram.org/blog/channels-2-0#silent-messages"},
+ )
+ ),
+ Param(
+ name: "reply_to_message_id",
+ ty: Option(RawTy("MessageId")),
+ descr: Doc(md: "If the message is a reply, ID of the original message")
+ ),
+ Param(
+ name: "allow_sending_without_reply",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if the message should be sent even if the specified replied-to message is not found")
+ ),
+ Param(
+ 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_links: {
+ "inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
+ "custom reply keyboard": "https://core.telegram.org/bots#keyboards",
+ }
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("sendVideoNote", "SendVideoNote", "send_video_note"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "As of [v.4.0], Telegram clients support rounded square mp4 videos of up to 1 minute long. Use this method to send video messages. On success, the sent [Message] is returned.",
+ md_links: {
+ "v.4.0": "https://core.telegram.org/bots/api#document",
+ "Message": "https://core.telegram.org/bots/api#message",
+ },
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#sendvideonote",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)"),
+ ),
+ Param(
+ name: "video_note",
+ ty: RawTy("InputFile"),
+ descr: Doc(
+ md: "Video note to send. Pass a file_id as String to send a video note that exists on the Telegram servers (recommended) or upload a new video using multipart/form-data. [More info on Sending Files »]. Sending video notes by a URL is currently unsupported",
+ md_links: {"More info on Sending Files »": "https://core.telegram.org/bots/api#sending-files"},
+ ),
+ ),
+ Param(
+ name: "duration",
+ ty: Option(u32),
+ descr: Doc(md: "Duration of the video in seconds"),
+ ),
+ Param(
+ name: "length",
+ ty: Option(u32),
+ descr: Doc(md: "Video width and height, i.e. diameter of the video message"),
+ ),
+ Param(
+ name: "thumb",
+ ty: Option(RawTy("InputFile")),
+ descr: Doc(
+ md: "Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://” if the thumbnail was uploaded using multipart/form-data under . [More info on Sending Files »]",
+ md_links: {"More info on Sending Files »": "https://core.telegram.org/bots/api#sending-files"},
+ ),
+ ),
+ Param(
+ name: "disable_notification",
+ ty: Option(bool),
+ descr: Doc(
+ md: "Sends the message [silently]. Users will receive a notification with no sound.",
+ md_links: {"silently": "https://telegram.org/blog/channels-2-0#silent-messages"},
+ )
+ ),
+ Param(
+ name: "protect_content",
+ ty: Option(bool),
+ descr: Doc(md: "Protects the contents of sent messages from forwarding and saving"),
+ ),
+ Param(
+ name: "reply_to_message_id",
+ ty: Option(RawTy("MessageId")),
+ descr: Doc(md: "If the message is a reply, ID of the original message")
+ ),
+ Param(
+ name: "allow_sending_without_reply",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if the message should be sent even if the specified replied-to message is not found")
+ ),
+ Param(
+ 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_links: {
+ "inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
+ "custom reply keyboard": "https://core.telegram.org/bots#keyboards",
+ }
+ ),
+
+ ),
+ ],
+ ),
+ Method(
+ names: ("sendMediaGroup", "SendMediaGroup", "send_media_group"),
+ return_ty: ArrayOf(RawTy("Message")),
+ doc: Doc(
+ md: "Use this method to send a group of photos, videos, documents or audios as an album. Documents and audio files can be only grouped in an album with messages of the same type. On success, an array of [Message]s that were sent is returned.",
+ md_links: {"Message": "https://core.telegram.org/bots/api#message"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#sendmediagroup",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "media",
+ ty: ArrayOf(RawTy("InputMedia")),
+ descr: Doc(md: "A JSON-serialized array describing messages to be sent, must include 2-10 items")
+ ),
+ Param(
+ name: "disable_notification",
+ ty: Option(bool),
+ descr: Doc(
+ md: "Sends the message [silently]. Users will receive a notification with no sound.",
+ md_links: {"silently": "https://telegram.org/blog/channels-2-0#silent-messages"}
+ )
+ ),
+ Param(
+ name: "protect_content",
+ ty: Option(bool),
+ descr: Doc(md: "Protects the contents of sent messages from forwarding and saving"),
+ ),
+ Param(
+ name: "reply_to_message_id",
+ ty: Option(RawTy("MessageId")),
+ descr: Doc(md: "If the message is a reply, ID of the original message")
+ ),
+ Param(
+ name: "allow_sending_without_reply",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if the message should be sent even if the specified replied-to message is not found")
+ ),
+ ],
+ ),
+ Method(
+ names: ("sendLocation", "SendLocation", "send_location"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "Use this method to send point on the map. On success, the sent [Message] is returned.",
+ md_links: {"Message": "https://core.telegram.org/bots/api#message"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#sendlocation",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)"),
+ ),
+ Param(
+ name: "latitude",
+ ty: f64,
+ descr: Doc(md: "Latitude of the location"),
+ ),
+ Param(
+ name: "longitude",
+ ty: f64,
+ descr: Doc(md: "Longitude of the location"),
+ ),
+ Param(
+ name: "horizontal_accuracy",
+ ty: Option(f64),
+ descr: Doc(md: "The radius of uncertainty for the location, measured in meters; 0-1500"),
+ ),
+ Param(
+ name: "live_period",
+ ty: Option(u32),
+ descr: Doc(
+ md: "Period in seconds for which the location will be updated (see [Live Locations], should be between 60 and 86400.",
+ md_links: {"Live Locations": "https://telegram.org/blog/live-locations"}
+ )
+ ),
+ Param(
+ name: "heading",
+ ty: Option(u16),
+ descr: Doc(md: "For live locations, a direction in which the user is moving, in degrees. Must be between 1 and 360 if specified.")
+ ),
+ Param(
+ name: "proximity_alert_radius",
+ ty: Option(u32),
+ descr: Doc(md: "For live locations, a maximum distance for proximity alerts about approaching another chat member, in meters. Must be between 1 and 100000 if specified.")
+ ),
+ Param(
+ name: "disable_notification",
+ ty: Option(bool),
+ descr: Doc(
+ md: "Sends the message [silently]. Users will receive a notification with no sound.",
+ md_links: {"silently": "https://telegram.org/blog/channels-2-0#silent-messages"}
+ )
+ ),
+ Param(
+ name: "protect_content",
+ ty: Option(bool),
+ descr: Doc(md: "Protects the contents of sent messages from forwarding and saving"),
+ ),
+ Param(
+ name: "reply_to_message_id",
+ ty: Option(RawTy("MessageId")),
+ descr: Doc(md: "If the message is a reply, ID of the original message")
+ ),
+ Param(
+ name: "allow_sending_without_reply",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if the message should be sent even if the specified replied-to message is not found")
+ ),
+ Param(
+ 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_links: {
+ "inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
+ "custom reply keyboard": "https://core.telegram.org/bots#keyboards",
+ }
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("editMessageLiveLocation", "EditMessageLiveLocation", "edit_message_live_location"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "Use this method to edit live location messages. A location can be edited until its live_period expires or editing is explicitly disabled by a call to [stopMessageLiveLocation]. On success, the edited Message is returned.",
+ md_links: {"stopMessageLiveLocation": "https://core.telegram.org/bots/api#stopmessagelivelocation"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#editmessagelivelocation",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "message_id",
+ ty: RawTy("MessageId"),
+ descr: Doc(md: "Identifier of the message to edit")
+ ),
+ Param(
+ name: "latitude",
+ ty: f64,
+ descr: Doc(md: "Latitude of new location"),
+ ),
+ Param(
+ name: "longitude",
+ ty: f64,
+ descr: Doc(md: "Longitude of new location"),
+ ),
+ Param(
+ name: "horizontal_accuracy",
+ ty: Option(f64),
+ descr: Doc(md: "The radius of uncertainty for the location, measured in meters; 0-1500"),
+ ),
+ Param(
+ name: "heading",
+ ty: Option(u16),
+ descr: Doc(md: "For live locations, a direction in which the user is moving, in degrees. Must be between 1 and 360 if specified.")
+ ),
+ Param(
+ name: "proximity_alert_radius",
+ ty: Option(u32),
+ descr: Doc(md: "For live locations, a maximum distance for proximity alerts about approaching another chat member, in meters. Must be between 1 and 100000 if specified.")
+ ),
+ Param(
+ 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_links: {
+ "inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
+ "custom reply keyboard": "https://core.telegram.org/bots#keyboards",
+ }
+ ),
+ ),
+ ],
+ sibling: Some("editMessageLiveLocationInline"),
+ ),
+ Method(
+ names: ("editMessageLiveLocationInline", "EditMessageLiveLocationInline", "edit_message_live_location_inline"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "Use this method to edit live location messages. A location can be edited until its live_period expires or editing is explicitly disabled by a call to [stopMessageLiveLocation]. On success, True is returned.",
+ md_links: {"stopMessageLiveLocation": "https://core.telegram.org/bots/api#stopmessagelivelocation"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#editmessagelivelocation",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "inline_message_id",
+ ty: String,
+ descr: Doc(md: "Identifier of the inline message"),
+ ),
+ Param(
+ name: "latitude",
+ ty: f64,
+ descr: Doc(md: "Latitude of new location"),
+ ),
+ Param(
+ name: "longitude",
+ ty: f64,
+ descr: Doc(md: "Longitude of new location"),
+ ),
+ Param(
+ name: "horizontal_accuracy",
+ ty: Option(f64),
+ descr: Doc(md: "The radius of uncertainty for the location, measured in meters; 0-1500"),
+ ),
+ Param(
+ name: "heading",
+ ty: Option(u16),
+ descr: Doc(md: "For live locations, a direction in which the user is moving, in degrees. Must be between 1 and 360 if specified.")
+ ),
+ Param(
+ name: "proximity_alert_radius",
+ ty: Option(u32),
+ descr: Doc(md: "For live locations, a maximum distance for proximity alerts about approaching another chat member, in meters. Must be between 1 and 100000 if specified.")
+ ),
+ Param(
+ 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_links: {
+ "inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
+ "custom reply keyboard": "https://core.telegram.org/bots#keyboards",
+ }
+ ),
+ ),
+ ],
+ sibling: Some("editMessageLiveLocation"),
+ ),
+ Method(
+ names: ("stopMessageLiveLocation", "StopMessageLiveLocation", "stop_message_live_location"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "Use this method to edit live location messages. A location can be edited until its live_period expires or editing is explicitly disabled by a call to [stopMessageLiveLocation]. On success, the edited Message is returned.",
+ md_links: {
+ "Message": "https://core.telegram.org/bots/api#message",
+ "stopMessageLiveLocation": "https://core.telegram.org/bots/api#stopmessagelivelocation",
+ },
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#editmessagelivelocation",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "message_id",
+ ty: RawTy("MessageId"),
+ descr: Doc(md: "Identifier of the message to edit")
+ ),
+ Param(
+ name: "latitude",
+ ty: f64,
+ descr: Doc(md: "Latitude of new location"),
+ ),
+ Param(
+ name: "longitude",
+ ty: f64,
+ descr: Doc(md: "Longitude of new location"),
+ ),
+ Param(
+ 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_links: {
+ "inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
+ "custom reply keyboard": "https://core.telegram.org/bots#keyboards",
+ }
+ ),
+ ),
+ ],
+ sibling: Some("stopMessageLiveLocationInline"),
+ ),
+ Method(
+ names: ("stopMessageLiveLocationInline", "StopMessageLiveLocationInline", "stop_message_live_location_inline"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "Use this method to edit live location messages. A location can be edited until its live_period expires or editing is explicitly disabled by a call to [stopMessageLiveLocation]. On success, True is returned.",
+ md_links: {"stopMessageLiveLocation": "https://core.telegram.org/bots/api#stopmessagelivelocation"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#editmessagelivelocation",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "inline_message_id",
+ ty: String,
+ descr: Doc(md: "Identifier of the inline message"),
+ ),
+ Param(
+ name: "latitude",
+ ty: f64,
+ descr: Doc(md: "Latitude of new location"),
+ ),
+ Param(
+ name: "longitude",
+ ty: f64,
+ descr: Doc(md: "Longitude of new location"),
+ ),
+ Param(
+ 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_links: {
+ "inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
+ "custom reply keyboard": "https://core.telegram.org/bots#keyboards",
+ }
+ ),
+ ),
+ ],
+ sibling: Some("stopMessageLiveLocation"),
+ ),
+ Method(
+ names: ("sendVenue", "SendVenue", "send_venue"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "Use this method to send information about a venue. On success, the sent [Message] is returned.",
+ md_links: {"Message": "https://core.telegram.org/bots/api#message"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#sendvenue",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "latitude",
+ ty: f64,
+ descr: Doc(md: "Latitude of new location"),
+ ),
+ Param(
+ name: "longitude",
+ ty: f64,
+ descr: Doc(md: "Longitude of new location"),
+ ),
+ Param(
+ name: "title",
+ ty: String,
+ descr: Doc(md: "Name of the venue")
+ ),
+ Param(
+ name: "address",
+ ty: String,
+ descr: Doc(md: "Address of the venue")
+ ),
+ Param(
+ name: "foursquare_id",
+ ty: Option(String),
+ descr: Doc(md: "Foursquare identifier of the venue")
+ ),
+ Param(
+ name: "foursquare_type",
+ ty: Option(String),
+ descr: Doc(md: "Foursquare type of the venue, if known. (For example, “arts_entertainment/default”, “arts_entertainment/aquarium” or “food/icecream”.)")
+ ),
+ Param(
+ name: "google_place_id",
+ ty: Option(String),
+ descr: Doc(md: "Google Places identifier of the venue")
+ ),
+ Param(
+ name: "google_place_type",
+ ty: Option(String),
+ descr: Doc(
+ md: "Google Places type of the venue. (See [supported types].)",
+ md_links: {"supported types":"https://developers.google.com/places/web-service/supported_types"},
+ ),
+ ),
+ Param(
+ name: "disable_notification",
+ ty: Option(bool),
+ descr: Doc(
+ md: "Sends the message [silently]. Users will receive a notification with no sound.",
+ md_links: {"silently": "https://telegram.org/blog/channels-2-0#silent-messages"}
+ )
+ ),
+ Param(
+ name: "protect_content",
+ ty: Option(bool),
+ descr: Doc(md: "Protects the contents of sent messages from forwarding and saving"),
+ ),
+ Param(
+ name: "reply_to_message_id",
+ ty: Option(RawTy("MessageId")),
+ descr: Doc(md: "If the message is a reply, ID of the original message")
+ ),
+ Param(
+ name: "allow_sending_without_reply",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if the message should be sent even if the specified replied-to message is not found")
+ ),
+ Param(
+ 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_links: {
+ "inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
+ "custom reply keyboard": "https://core.telegram.org/bots#keyboards",
+ }
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("sendContact", "SendContact", "send_contact"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "Use this method to send phone contacts. On success, the sent [Message] is returned.",
+ md_links: {"Message": "https://core.telegram.org/bots/api#message"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#sendcontact",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "phone_number",
+ ty: String,
+ descr: Doc(md: "Contact's phone number"),
+ ),
+ Param(
+ name: "first_name",
+ ty: String,
+ descr: Doc(md: "Contact's first name"),
+ ),
+ Param(
+ name: "last_name",
+ ty: Option(String),
+ descr: Doc(md: "Contact's last name")
+ ),
+ Param(
+ name: "vcard",
+ ty: Option(String),
+ descr: Doc(
+ md: "Additional data about the contact in the form of a [vCard], 0-2048 bytes",
+ md_links: {"vCard": "https://en.wikipedia.org/wiki/VCard"}
+ )
+ ),
+ Param(
+ name: "disable_notification",
+ ty: Option(bool),
+ descr: Doc(
+ md: "Sends the message [silently]. Users will receive a notification with no sound.",
+ md_links: {"silently": "https://telegram.org/blog/channels-2-0#silent-messages"}
+ )
+ ),
+ Param(
+ name: "protect_content",
+ ty: Option(bool),
+ descr: Doc(md: "Protects the contents of sent messages from forwarding and saving"),
+ ),
+ Param(
+ name: "reply_to_message_id",
+ ty: Option(RawTy("MessageId")),
+ descr: Doc(md: "If the message is a reply, ID of the original message")
+ ),
+ Param(
+ name: "allow_sending_without_reply",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if the message should be sent even if the specified replied-to message is not found")
+ ),
+ Param(
+ 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_links: {
+ "inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
+ "custom reply keyboard": "https://core.telegram.org/bots#keyboards",
+ }
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("sendPoll", "SendPoll", "send_poll"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "Use this method to send phone contacts. On success, the sent [Message] is returned.",
+ md_links: {"Message": "https://core.telegram.org/bots/api#message"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#sendpoll",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "question",
+ ty: String,
+ descr: Doc(md: "Poll question, 1-300 characters"),
+ ),
+ Param(
+ name: "options",
+ ty: ArrayOf(String),
+ descr: Doc(md: "A JSON-serialized list of answer options, 2-10 strings 1-100 characters each"),
+ ),
+ Param(
+ name: "is_anonymous",
+ ty: Option(bool),
+ descr: Doc(md: "True, if the poll needs to be anonymous, defaults to True")
+ ),
+ Param(
+ name: "type",
+ ty: Option(RawTy("PollType")),
+ descr: Doc(md: "Poll type, “quiz” or “regular”, defaults to “regular”")
+ ),
+ Param(
+ name: "allows_multiple_answers",
+ ty: Option(bool),
+ descr: Doc(md: "True, if the poll allows multiple answers, ignored for polls in quiz mode, defaults to False")
+ ),
+ Param(
+ name: "correct_option_id",
+ ty: Option(u8),
+ descr: Doc(md: "0-based identifier of the correct answer option, required for polls in quiz mode")
+ ),
+ Param(
+ name: "explanation",
+ ty: Option(String),
+ descr: Doc(md: "Text that is shown when a user chooses an incorrect answer or taps on the lamp icon in a quiz-style poll, 0-200 characters with at most 2 line feeds after entities parsing")
+ ),
+ Param(
+ name: "explanation_parse_mode",
+ ty: Option(RawTy("ParseMode")),
+ descr: Doc(
+ md: "Mode for parsing entities in the message text. See [formatting options] for more details.",
+ md_links: {"formatting options": "https://core.telegram.org/bots/api#formatting-options"}
+ )
+ ),
+ Param(
+ name: "explanation_entities",
+ ty: Option(ArrayOf(RawTy("MessageEntity"))),
+ descr: Doc(md: "List of special entities that appear in the poll explanation, which can be specified instead of _parse\\_mode_"),
+ ),
+ Param(
+ name: "open_period",
+ ty: Option(u16),
+ descr: Doc(md: "Amount of time in seconds the poll will be active after creation, 5-600. Can't be used together with close_date.")
+ ),
+ Param(
+ name: "close_date",
+ ty: Option(u64),
+ descr: Doc(md: "Point in time (Unix timestamp) when the poll will be automatically closed. Must be at least 5 and no more than 600 seconds in the future. Can't be used together with open_period.")
+ ),
+ Param(
+ name: "is_closed",
+ ty: Option(bool),
+ descr: Doc(md: "Pass True, if the poll needs to be immediately closed. This can be useful for poll preview.")
+ ),
+ Param(
+ name: "disable_notification",
+ ty: Option(bool),
+ descr: Doc(
+ md: "Sends the message [silently]. Users will receive a notification with no sound.",
+ md_links: {"silently": "https://telegram.org/blog/channels-2-0#silent-messages"}
+ )
+ ),
+ Param(
+ name: "protect_content",
+ ty: Option(bool),
+ descr: Doc(md: "Protects the contents of sent messages from forwarding and saving"),
+ ),
+ Param(
+ name: "reply_to_message_id",
+ ty: Option(RawTy("MessageId")),
+ descr: Doc(md: "If the message is a reply, ID of the original message")
+ ),
+ Param(
+ name: "allow_sending_without_reply",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if the message should be sent even if the specified replied-to message is not found")
+ ),
+ Param(
+ 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_links: {
+ "inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
+ "custom reply keyboard": "https://core.telegram.org/bots#keyboards",
+ }
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("sendDice", "SendDice", "send_dice"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "Use this method to send an animated emoji that will display a random value. On success, the sent [Message] is returned.",
+ md_links: {"Message": "https://core.telegram.org/bots/api#message"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#senddice",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "emoji",
+ ty: Option(RawTy("DiceEmoji")),
+ descr: Doc(md: "Emoji on which the dice throw animation is based. Currently, must be one of “🎲”, “🎯”, “🏀”, “⚽”, “🎳”, or “🎰”. Dice can have values 1-6 for “🎲”, “🎯” and “🎳”, values 1-5 for “🏀” and “⚽”, and values 1-64 for “🎰”. Defaults to “🎲”"),
+ ),
+ Param(
+ name: "disable_notification",
+ ty: Option(bool),
+ descr: Doc(
+ md: "Sends the message [silently]. Users will receive a notification with no sound.",
+ md_links: {"silently": "https://telegram.org/blog/channels-2-0#silent-messages"}
+ )
+ ),
+ Param(
+ name: "protect_content",
+ ty: Option(bool),
+ descr: Doc(md: "Protects the contents of sent messages from forwarding and saving"),
+ ),
+ Param(
+ name: "reply_to_message_id",
+ ty: Option(RawTy("MessageId")),
+ descr: Doc(md: "If the message is a reply, ID of the original message")
+ ),
+ Param(
+ name: "allow_sending_without_reply",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if the message should be sent even if the specified replied-to message is not found")
+ ),
+ Param(
+ 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_links: {
+ "inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
+ "custom reply keyboard": "https://core.telegram.org/bots#keyboards",
+ }
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("sendChatAction", "SendChatAction", "send_chat_action"),
+ return_ty: True,
+ doc: Doc(
+ md: "Use this method when you need to tell the user that something is happening on the bot's side. The status is set for 5 seconds or less (when a message arrives from your bot, Telegram clients clear its typing status). Returns True on success.\n\n> Example: The [ImageBot] needs some time to process a request and upload the image. Instead of sending a text message along the lines of “Retrieving image, please wait…”, the bot may use sendChatAction with action = upload_photo. The user will see a “sending photo” status for the bot.\n\nWe only recommend using this method when a response from the bot will take a **noticeable** amount of time to arrive.",
+ md_links: {"ImageBot": "https://t.me/imagebot"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#sendchataction",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "action",
+ ty: RawTy("ChatAction"),
+ descr: Doc(
+ md: "Type of action to broadcast. Choose one, depending on what the user is about to receive: typing for [text messages], upload_photo for [photos], record_video or upload_video for [videos], record_audio or upload_audio for [audio files], upload_document for [general files], choose_sticker for [stickers], find_location for [location data], record_video_note or upload_video_note for [video notes].",
+ md_links: {
+ "text messages": "https://core.telegram.org/bots/api#sendmessage",
+ "photos": "https://core.telegram.org/bots/api#sendphoto",
+ "videos": "https://core.telegram.org/bots/api#sendvideo",
+ "audio files": "https://core.telegram.org/bots/api#sendaudio",
+ "general files": "https://core.telegram.org/bots/api#senddocument",
+ "stickers": "https://core.telegram.org/bots/api#sendsticker",
+ "location data": "https://core.telegram.org/bots/api#sendlocation",
+ "video notes": "https://core.telegram.org/bots/api#sendvideonote",
+ }
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("getUserProfilePhotos", "GetUserProfilePhotos", "get_user_profile_photos"),
+ return_ty: RawTy("UserProfilePhotos"),
+ doc: Doc(
+ md: "Use this method to get a list of profile pictures for a user. Returns a [UserProfilePhotos] object.",
+ md_links: {"UserProfilePhotos": "https://core.telegram.org/bots/api#userprofilephotos"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#getuserprofilephotos",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "user_id",
+ ty: RawTy("UserId"),
+ descr: Doc(md: "Unique identifier of the target user")
+ ),
+ Param(
+ name: "offset",
+ ty: Option(u32),
+ descr: Doc(md: "Sequential number of the first photo to be returned. By default, all photos are returned.")
+ ),
+ Param(
+ name: "limit",
+ ty: Option(u8),
+ descr: Doc(md: "Limits the number of photos to be retrieved. Values between 1-100 are accepted. Defaults to 100.")
+ ),
+ ],
+ ),
+ Method(
+ names: ("getFile", "GetFile", "get_file"),
+ return_ty: RawTy("File"),
+ doc: Doc(
+ md: "Use this method to get basic info about a file and prepare it for downloading. For the moment, bots can download files of up to 20MB in size. On success, a [File] object is returned. The file can then be downloaded via the link `https://api.telegram.org/file/bot/`, where `` is taken from the response. It is guaranteed that the link will be valid for at least 1 hour. When the link expires, a new one can be requested by calling [getFile] again.",
+ md_links: {
+ "File": "https://core.telegram.org/bots/api#file",
+ "getFile": "https://core.telegram.org/bots/api#getfile",
+ },
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#getuserprofilephotos",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "file_id",
+ ty: String,
+ descr: Doc(md: "File identifier to get info about")
+ ),
+ ],
+ ),
+ Method(
+ names: ("banChatMember", "BanChatMember", "ban_chat_member"),
+ return_ty: True,
+ doc: Doc(
+ md: "Use this method to ban a user in a group, a supergroup or a channel. In the case of supergroups and channels, the user will not be able to return to the chat on their own using invite links, etc., unless [unbanned] first. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Returns _True_ on success.",
+ md_links: {"unbanned": "https://core.telegram.org/bots/api#unbanchatmember"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#kickchatmember",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "user_id",
+ ty: RawTy("UserId"),
+ descr: Doc(md: "Unique identifier of the target user")
+ ),
+ Param(
+ name: "until_date",
+ ty: Option(u64),
+ descr: Doc(md: "Date when the user will be unbanned, unix time. If user is banned for more than 366 days or less than 30 seconds from the current time they are considered to be banned forever")
+ ),
+ Param(
+ name: "revoke_messages",
+ ty: Option(bool),
+ descr: Doc(md: "Pass True to delete all messages from the chat for the user that is being removed. If False, the user will be able to see messages in the group that were sent before the user was removed. Always True for supergroups and channels.")
+ ),
+ ],
+ ),
+ // deprecated
+ Method(
+ names: ("kickChatMember", "KickChatMember", "kick_chat_member"),
+ return_ty: True,
+ doc: Doc(
+ md: "Use this method to kick a user from a group, a supergroup or a channel. In the case of supergroups and channels, the user will not be able to return to the group on their own using invite links, etc., unless [unbanned] first. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Returns _True_ on success.",
+ md_links: {"unbanned": "https://core.telegram.org/bots/api#unbanchatmember"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#kickchatmember",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "user_id",
+ ty: RawTy("UserId"),
+ descr: Doc(md: "Unique identifier of the target user")
+ ),
+ Param(
+ name: "until_date",
+ ty: Option(u64),
+ descr: Doc(md: "Date when the user will be unbanned, unix time. If user is banned for more than 366 days or less than 30 seconds from the current time they are considered to be banned forever")
+ ),
+ Param(
+ name: "revoke_messages",
+ ty: Option(bool),
+ descr: Doc(md: "Pass True to delete all messages from the chat for the user that is being removed. If False, the user will be able to see messages in the group that were sent before the user was removed. Always True for supergroups and channels.")
+ ),
+ ],
+ ),
+
+ Method(
+ names: ("unbanChatMember", "UnbanChatMember", "unban_chat_member"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to unban a previously kicked user in a supergroup or channel. The user will **not** return to the group or channel automatically, but will be able to join via link, etc. The bot must be an administrator for this to work. By default, this method guarantees that after the call the user is not a member of the chat, but will be able to join it. So if the user is a member of the chat they will also be **removed** from the chat. If you don't want this, use the parameter _only\\_if\\_banned_. Returns _True_ on success."),
+ tg_doc: "https://core.telegram.org/bots/api#unbanchatmember",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "user_id",
+ ty: RawTy("UserId"),
+ descr: Doc(md: "Unique identifier of the target user")
+ ),
+ Param(
+ name: "only_if_banned",
+ ty: Option(bool),
+ descr: Doc(md: "Do nothing if the user is not banned"),
+ )
+ ],
+ ),
+ Method(
+ names: ("restrictChatMember", "RestrictChatMember", "restrict_chat_member"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to restrict a user in a supergroup. The bot must be an administrator in the supergroup for this to work and must have the appropriate admin rights. Pass _True_ for all permissions to lift restrictions from a user. Returns _True_ on success."),
+ tg_doc: "https://core.telegram.org/bots/api#restrictchatmember",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "user_id",
+ ty: RawTy("UserId"),
+ descr: Doc(md: "Unique identifier of the target user")
+ ),
+ Param(
+ name: "permissions",
+ ty: RawTy("ChatPermissions"),
+ descr: Doc(md: "A JSON-serialized object for new user permissions")
+ ),
+ Param(
+ name: "until_date",
+ ty: Option(u64),
+ descr: Doc(md: "Date when the user will be unbanned, unix time. If user is banned for more than 366 days or less than 30 seconds from the current time they are considered to be banned forever")
+ ),
+ ],
+ ),
+ Method(
+ names: ("promoteChatMember", "PromoteChatMember", "promote_chat_member"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to promote or demote a user in a supergroup or a channel. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Pass _False_ for all boolean parameters to demote a user. Returns _True_ on success."),
+ tg_doc: "https://core.telegram.org/bots/api#promotechatmember",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "user_id",
+ ty: RawTy("UserId"),
+ descr: Doc(md: "Unique identifier of the target user")
+ ),
+ Param(
+ name: "is_anonymous",
+ ty: Option(bool),
+ descr: Doc(md: "Pass True, if the administrator's presence in the chat is hidden")
+ ),
+ Param(
+ name: "can_manage_chat",
+ ty: Option(bool),
+ descr: Doc(md: "Pass True, if the administrator can access the chat event log, chat statistics, message statistics in channels, see channel members, see anonymous administrators in supergroups and ignore slow mode. Implied by any other administrator privilege"),
+ ),
+ Param(
+ name: "can_change_info",
+ ty: Option(bool),
+ descr: Doc(md: "Pass True, if the administrator can change chat title, photo and other settings")
+ ),
+ Param(
+ name: "can_post_messages",
+ ty: Option(bool),
+ descr: Doc(md: "Pass True, if the administrator can create channel posts, channels only")
+ ),
+ Param(
+ name: "can_edit_messages",
+ ty: Option(bool),
+ descr: Doc(md: "Pass True, if the administrator can edit messages of other users and can pin messages, channels only")
+ ),
+ Param(
+ name: "can_delete_messages",
+ ty: Option(bool),
+ descr: Doc(md: "Pass True, if the administrator can delete messages of other users")
+ ),
+ Param(
+ name: "can_manage_video_chats",
+ ty: Option(bool),
+ descr: Doc(md: "Pass True, if the administrator can manage video chats, supergroups only")
+ ),
+ Param(
+ name: "can_invite_users",
+ ty: Option(bool),
+ descr: Doc(md: "Pass True, if the administrator can invite new users to the chat")
+ ),
+ Param(
+ name: "can_restrict_members",
+ ty: Option(bool),
+ descr: Doc(md: "Pass True, if the administrator can restrict, ban or unban chat members")
+ ),
+ Param(
+ name: "can_pin_messages",
+ ty: Option(bool),
+ descr: Doc(md: "Pass True, if the administrator can pin messages, supergroups only")
+ ),
+ Param(
+ name: "can_promote_members",
+ ty: Option(bool),
+ descr: Doc(md: "Pass True, if the administrator can add new administrators with a subset of their own privileges or demote administrators that he has promoted, directly or indirectly (promoted by administrators that were appointed by him)")
+ ),
+ ],
+ ),
+ Method(
+ names: ("setChatAdministratorCustomTitle", "SetChatAdministratorCustomTitle", "set_chat_administrator_custom_title"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to set a custom title for an administrator in a supergroup promoted by the bot. Returns _True_on success."),
+ tg_doc: "https://core.telegram.org/bots/api#setchatadministratorcustomtitle",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "user_id",
+ ty: RawTy("UserId"),
+ descr: Doc(md: "Unique identifier of the target user")
+ ),
+ Param(
+ name: "custom_title",
+ ty: String,
+ descr: Doc(md: "New custom title for the administrator; 0-16 characters, emoji are not allowed")
+ ),
+ ],
+ ),
+ Method(
+ names: ("banChatSenderChat", "BanChatSenderChat", "ban_chat_sender_chat"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to ban a channel chat in a supergroup or a channel. The owner of the chat will not be able to send messages and join live streams on behalf of the chat, unless it is unbanned first. The bot must be an administrator in the supergroup or channel for this to work and must have the appropriate administrator rights."),
+ tg_doc: "https://core.telegram.org/bots/api#banchatsenderchat",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "sender_chat_id",
+ ty: RawTy("ChatId"),
+ descr: Doc(md: "Unique identifier of the target sender chat")
+ ),
+ ],
+ ),
+ Method(
+ names: ("unbanChatSenderChat", "UnbanChatSenderChat", "unban_chat_sender_chat"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to unban a previously banned channel chat in a supergroup or channel. The bot must be an administrator for this to work and must have the appropriate administrator rights."),
+ tg_doc: "https://core.telegram.org/bots/api#unbanchatsenderchat",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "sender_chat_id",
+ ty: RawTy("ChatId"),
+ descr: Doc(md: "Unique identifier of the target sender chat")
+ ),
+ ],
+ ),
+ Method(
+ names: ("setChatPermissions", "SetChatPermissions", "set_chat_permissions"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to set default chat permissions for all members. The bot must be an administrator in the group or a supergroup for this to work and must have the _can_restrict_members_ admin rights. Returns _True_ on success."),
+ tg_doc: "https://core.telegram.org/bots/api#setchatpermissions",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "permissions",
+ ty: RawTy("ChatPermissions"),
+ descr: Doc(md: "New default chat permissions")
+ ),
+ ],
+ ),
+ Method(
+ names: ("exportChatInviteLink", "ExportChatInviteLink", "export_chat_invite_link"),
+ return_ty: String,
+ doc: Doc(md: "Use this method to generate a new invite link for a chat; any previously generated link is revoked. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Returns the new invite link as String on success.\n\n> Note: Each administrator in a chat generates their own invite links. Bots can't use invite links generated by other administrators. If you want your bot to work with invite links, it will need to generate its own link using exportChatInviteLink — after this the link will become available to the bot via the getChat method. If your bot needs to generate a new invite link replacing its previous one, use exportChatInviteLink again."),
+ tg_doc: "https://core.telegram.org/bots/api#exportchatinvitelink",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ ],
+ ),
+ Method(
+ names: ("createChatInviteLink", "CreateChatInviteLink", "create_chat_invite_link"),
+ return_ty: RawTy("ChatInviteLink"),
+ doc: Doc(
+ md: "Use this method to create an additional invite link for a chat. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. The link can be revoked using the method [revokeChatInviteLink]. Returns the new invite link as [ChatInviteLink] object.",
+ md_links: {
+ "revokeChatInviteLink": "https://core.telegram.org/bots/api#revokechatinvitelink",
+ "ChatInviteLink": "https://core.telegram.org/bots/api#chatinvitelink",
+ }
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#createchatinvitelink",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "name",
+ ty: Option(String),
+ descr: Doc(md: "Invite link name; 0-32 characters")
+ ),
+ Param(
+ name: "expire_date",
+ ty: Option(i64),
+ descr: Doc(md: "Point in time (Unix timestamp) when the link will expire")
+ ),
+ Param(
+ name: "member_limit",
+ ty: Option(u32),
+ descr: Doc(md: "Maximum number of users that can be members of the chat simultaneously after joining the chat via this invite link; 1-99999")
+ ),
+ Param(
+ name: "creates_join_request",
+ ty: Option(bool) ,
+ descr: Doc(md: "True, if users joining the chat via the link need to be approved by chat administrators. If True, member_limit can't be specified")
+ ),
+ ],
+ ),
+ Method(
+ names: ("editChatInviteLink", "EditChatInviteLink", "edit_chat_invite_link"),
+ return_ty: String,
+ doc: Doc(
+ md: "Use this method to edit a non-primary invite link created by the bot. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Returns the edited invite link as a [ChatInviteLink] object.",
+ md_links: {"ChatInviteLink": "https://core.telegram.org/bots/api#chatinvitelink"}
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#editchatinvitelink",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "invite_link",
+ ty: String,
+ descr: Doc(md: "The invite link to edit")
+ ),
+ Param(
+ name: "name",
+ ty: Option(String),
+ descr: Doc(md: "Invite link name; 0-32 characters")
+ ),
+ Param(
+ name: "expire_date",
+ ty: Option(i64),
+ descr: Doc(md: "Point in time (Unix timestamp) when the link will expire")
+ ),
+ Param(
+ name: "member_limit",
+ ty: Option(u32),
+ descr: Doc(md: "Maximum number of users that can be members of the chat simultaneously after joining the chat via this invite link; 1-99999")
+ ),
+ Param(
+ name: "creates_join_request",
+ ty: Option(bool) ,
+ descr: Doc(md: "True, if users joining the chat via the link need to be approved by chat administrators. If True, member_limit can't be specified")
+ ),
+ ],
+ ),
+ Method(
+ names: ("revokeChatInviteLink", "RevokeChatInviteLink", "revoke_chat_invite_link"),
+ return_ty: String,
+ doc: Doc(
+ md: "Use this method to revoke an invite link created by the bot. If the primary link is revoked, a new link is automatically generated. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Returns the revoked invite link as [ChatInviteLink] object.",
+ md_links: {"ChatInviteLink": "https://core.telegram.org/bots/api#chatinvitelink"}
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#editchatinvitelink",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "invite_link",
+ ty: String,
+ descr: Doc(md: "The invite link to revoke")
+ ),
+ ],
+ ),
+ Method(
+ names: ("approveChatJoinRequest", "ApproveChatJoinRequest", "approve_chat_join_request"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to approve a chat join request. The bot must be an administrator in the chat for this to work and must have the _can_invite_users_ administrator right. Returns _True_ on success."),
+ tg_doc: "https://core.telegram.org/bots/api#approvechatjoinrequest",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "user_id",
+ ty: RawTy("UserId"),
+ descr: Doc(md: "Unique identifier of the target user")
+ ),
+ ],
+ ),
+ Method(
+ names: ("declineChatJoinRequest", "DeclineChatJoinRequest", "decline_chat_join_request"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to decline a chat join request. The bot must be an administrator in the chat for this to work and must have the _can_invite_users_ administrator right. Returns _True_ on success."),
+ tg_doc: "https://core.telegram.org/bots/api#declinechatjoinrequest",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "user_id",
+ ty: RawTy("UserId"),
+ descr: Doc(md: "Unique identifier of the target user")
+ ),
+ ],
+ ),
+ Method(
+ names: ("setChatPhoto", "SetChatPhoto", "set_chat_photo"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to set a new profile photo for the chat. Photos can't be changed for private chats. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Returns _True_ on success."),
+ tg_doc: "https://core.telegram.org/bots/api#setchatphoto",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "photo",
+ ty: RawTy("InputFile"),
+ descr: Doc(md: "New chat photo, uploaded using multipart/form-data")
+ ),
+ ],
+ ),
+ Method(
+ names: ("deleteChatPhoto", "DeleteChatPhoto", "delete_chat_photo"),
+ return_ty: String,
+ doc: Doc(md: "Use this method to delete a chat photo. Photos can't be changed for private chats. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Returns True on success."),
+ tg_doc: "https://core.telegram.org/bots/api#deletechatphoto",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ ],
+ ),
+ Method(
+ names: ("setChatTitle", "SetChatTitle", "set_chat_title"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to change the title of a chat. Titles can't be changed for private chats. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Returns _True_ on success."),
+ tg_doc: "https://core.telegram.org/bots/api#setchattitle",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "title",
+ ty: String,
+ descr: Doc(md: "New chat title, 1-255 characters")
+ ),
+ ],
+ ),
+ Method(
+ names: ("setChatDescription", "SetChatDescription", "set_chat_description"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to change the description of a group, a supergroup or a channel. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Returns _True_ on success."),
+ tg_doc: "https://core.telegram.org/bots/api#setchatdescription",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "description",
+ ty: Option(String),
+ descr: Doc(md: "New chat description, 0-255 characters")
+ ),
+ ],
+ ),
+ Method(
+ names: ("pinChatMessage", "PinChatMessage", "pin_chat_message"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to pin a message in a group, a supergroup, or a channel. The bot must be an administrator in the chat for this to work and must have the 'can_pin_messages' admin right in the supergroup or 'can_edit_messages' admin right in the channel. Returns _True_ on success."),
+ tg_doc: "https://core.telegram.org/bots/api#pinchatmessage",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "message_id",
+ ty: RawTy("MessageId"),
+ descr: Doc(md: "Identifier of a message to pin"),
+ ),
+ Param(
+ name: "disable_notification",
+ ty: Option(bool),
+ descr: Doc(md: "Pass True, if it is not necessary to send a notification to all chat members about the new pinned message. Notifications are always disabled in channels.")
+ ),
+ ],
+ ),
+ Method(
+ names: ("unpinChatMessage", "UnpinChatMessage", "unpin_chat_message"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to remove a message from the list of pinned messages in a chat. If the chat is not a private chat, the bot must be an administrator in the chat for this to work and must have the 'can_pin_messages' admin right in a supergroup or 'can_edit_messages' admin right in a channel. Returns _True_ on success."),
+ tg_doc: "https://core.telegram.org/bots/api#unpinchatmessage",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "message_id",
+ ty: Option(RawTy("MessageId")),
+ descr: Doc(md: "Identifier of a message to unpin. If not specified, the most recent pinned message (by sending date) will be unpinned.")
+ ),
+ ],
+ ),
+ Method(
+ names: ("unpinAllChatMessages", "UnpinAllChatMessages", "unpin_all_chat_messages"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to clear the list of pinned messages in a chat. If the chat is not a private chat, the bot must be an administrator in the chat for this to work and must have the 'can_pin_messages' admin right in a supergroup or 'can_edit_messages' admin right in a channel. Returns _True_ on success."),
+ tg_doc: "https://core.telegram.org/bots/api#unpinallchatmessages",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ ],
+ ),
+ Method(
+ names: ("leaveChat", "LeaveChat", "leave_chat"),
+ return_ty: True,
+ doc: Doc(md: "Use this method for your bot to leave a group, supergroup or channel. Returns _True_ on success."),
+ tg_doc: "https://core.telegram.org/bots/api#leavechat",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ ],
+ ),
+ Method(
+ names: ("getChat", "GetChat", "get_chat"),
+ return_ty: RawTy("Chat"),
+ doc: Doc(
+ md: "Use this method to get up to date information about the chat (current name of the user for one-on-one conversations, current username of a user, group or channel, etc.). Returns a [Chat] object on success.",
+ md_links: {"Chat": "https://core.telegram.org/bots/api#chat"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#getchat",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ ],
+ ),
+ Method(
+ names: ("getChatAdministrators", "GetChatAdministrators", "get_chat_administrators"),
+ return_ty: ArrayOf(RawTy("ChatMember")),
+ doc: Doc(
+ md: "Use this method to get a list of administrators in a chat. On success, returns an Array of [ChatMember] objects that contains information about all chat administrators except other bots. If the chat is a group or a supergroup and no administrators were appointed, only the creator will be returned.",
+ md_links: {"ChatMember": "https://core.telegram.org/bots/api#chatmember"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#getchatadministrators",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ ],
+ ),
+ Method(
+ names: ("getChatMemberCount", "GetChatMemberCount", "get_chat_member_count"),
+ return_ty: u32,
+ doc: Doc(md: "Use this method to get the number of members in a chat. Returns _Int_ on success."),
+ tg_doc: "https://core.telegram.org/bots/api#getchatmemberscount",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ ],
+ ),
+ // deprecated
+ Method(
+ names: ("getChatMembersCount", "GetChatMembersCount", "get_chat_members_count"),
+ return_ty: u32,
+ doc: Doc(md: "Use this method to get the number of members in a chat. Returns _Int_ on success."),
+ tg_doc: "https://core.telegram.org/bots/api#getchatmemberscount",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ ],
+ ),
+ Method(
+ names: ("getChatMember", "GetChatMember", "get_chat_member"),
+ return_ty: RawTy("ChatMember"),
+ doc: Doc(
+ md: "Use this method to get information about a member of a chat. Returns a [ChatMember] object on success.",
+ md_links: {"ChatMember": "https://core.telegram.org/bots/api#chatmember"}
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#getchatmember",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "user_id",
+ ty: RawTy("UserId"),
+ descr: Doc(md: "Unique identifier of the target user")
+ ),
+ ],
+ ),
+ Method(
+ names: ("setChatStickerSet", "SetChatStickerSet", "set_chat_sticker_set"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to set a new group sticker set for a supergroup. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Use the field _can\\_set\\_sticker\\_set_ optionally returned in getChat requests to check if the bot can use this method. Returns _True_ on success."),
+ tg_doc: "https://core.telegram.org/bots/api#set_chat_sticker_set",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ Param(
+ name: "sticker_set_name",
+ ty: String,
+ descr: Doc(md: "Name of the sticker set to be set as the group sticker set")
+ ),
+ ],
+ ),
+ Method(
+ names: ("deleteChatStickerSet", "DeleteChatStickerSet", "delete_chat_sticker_set"),
+ return_ty: True,
+ doc: Doc(
+ md: "Use this method to delete a group sticker set from a supergroup. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Use the field `can_set_sticker_set` optionally returned in [getChat] requests to check if the bot can use this method. Returns _True_ on success.",
+ md_links: {"getChat": "https://core.telegram.org/bots/api#getchat"}
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#deletechatstickerset",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)")
+ ),
+ ],
+ ),
+ Method(
+ names: ("answerCallbackQuery", "AnswerCallbackQuery", "answer_callback_query"),
+ return_ty: True,
+ doc: Doc(
+ md: "Use this method to send answers to callback queries sent from [inline keyboards]. The answer will be displayed to the user as a notification at the top of the chat screen or as an alert. On success, True is returned.\n\n>Alternatively, the user can be redirected to the specified Game URL. For this option to work, you must first create a game for your bot via [@Botfather] and accept the terms. Otherwise, you may use links like `t.me/your_bot?start=XXXX` that open your bot with a parameter.",
+ md_links: {
+ "inline keyboards": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
+ "@Botfather": "https://t.me/botfather",
+ }
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#answercallbackquery",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "callback_query_id",
+ ty: String,
+ descr: Doc(md: "Unique identifier for the query to be answered"),
+ ),
+ Param(
+ name: "text",
+ ty: Option(String),
+ descr: Doc(md: "Text of the notification. If not specified, nothing will be shown to the user, 0-200 characters"),
+ ),
+ Param(
+ name: "show_alert",
+ ty: Option(bool),
+ descr: Doc(md: "If true, an alert will be shown by the client instead of a notification at the top of the chat screen. Defaults to false."),
+ ),
+ Param(
+ name: "url",
+ ty: Option(String),
+ descr: Doc(
+ md: "URL that will be opened by the user's client. If you have created a [Game] and accepted the conditions via [@Botfather], specify the URL that opens your game — note that this will only work if the query comes from a _[callback\\_game]_ button.\n\nOtherwise, you may use links like `t.me/your\\_bot?start=XXXX` that open your bot with a parameter.",
+ md_links: {
+ "Game": "https://core.telegram.org/bots/api#game",
+ "@Botfather": "https://t.me/botfather",
+ "callback_game": "https://core.telegram.org/bots/api#inlinekeyboardbutton",
+ },
+ ),
+ ),
+ Param(
+ name: "cache_time",
+ ty: Option(u32),
+ descr: Doc(md: "The maximum amount of time in seconds that the result of the callback query may be cached client-side. Telegram apps will support caching starting in version 3.14. Defaults to 0."),
+ ),
+ ],
+ ),
+ Method(
+ names: ("setMyCommands", "SetMyCommands", "set_my_commands"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to change the list of the bot's commands. Returns _True_ on success."),
+ tg_doc: "https://core.telegram.org/bots/api#setmycommands",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "commands",
+ ty: ArrayOf(RawTy("BotCommand")),
+ descr: Doc(md: "A JSON-serialized list of bot commands to be set as the list of the bot's commands. At most 100 commands can be specified.")
+ ),
+ Param(
+ name: "scope",
+ ty: Option(RawTy("BotCommandScope")),
+ descr: Doc(md: "A JSON-serialized object, describing scope of users for which the commands are relevant. Defaults to BotCommandScopeDefault.")
+ ),
+ Param(
+ name: "language_code",
+ ty: Option(String),
+ descr: Doc(md: "A two-letter ISO 639-1 language code. If empty, commands will be applied to all users from the given scope, for whose language there are no dedicated commands")
+ ),
+ ],
+ ),
+ Method(
+ names: ("getMyCommands", "GetMyCommands", "get_my_commands"),
+ return_ty: ArrayOf(RawTy("BotCommand")),
+ doc: Doc(
+ md: "Use this method to get the current list of the bot's commands. Requires no parameters. Returns Array of [BotCommand] on success.",
+ md_links: {"BotCommand": "https://core.telegram.org/bots/api#botcommand"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#getmycommands",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "scope",
+ ty: Option(RawTy("BotCommandScope")),
+ descr: Doc(md: "A JSON-serialized object, describing scope of users for which the commands are relevant. Defaults to BotCommandScopeDefault.")
+ ),
+ Param(
+ name: "language_code",
+ ty: Option(String),
+ descr: Doc(md: "A two-letter ISO 639-1 language code. If empty, commands will be applied to all users from the given scope, for whose language there are no dedicated commands")
+ ),
+ ],
+ ),
+ Method(
+ names: ("setChatMenuButton", "SetChatMenuButton", "set_chat_menu_button"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to change the bot's menu button in a private chat, or the default menu button."),
+ tg_doc: "https://core.telegram.org/bots/api#setchatmenubutton",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: Option(RawTy("ChatId")),
+ descr: Doc(md: "Unique identifier for the target private chat. If not specified, default bot's menu button will be changed."),
+ ),
+ Param(
+ name: "menu_button",
+ ty: Option(RawTy("MenuButton")),
+ descr: Doc(md: "An object for the new bot's menu button. Defaults to MenuButtonDefault"),
+ )
+ ]
+ ),
+ Method(
+ names: ("getChatMenuButton", "GetChatMenuButton", "get_chat_menu_button"),
+ return_ty: RawTy("MenuButton"),
+ doc: Doc(md: "Use this method to get the current value of the bot's menu button in a private chat, or the default menu button."),
+ tg_doc: "https://core.telegram.org/bots/api#getchatmenubutton",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: Option(RawTy("ChatId")),
+ descr: Doc(md: "Unique identifier for the target private chat. If not specified, default bot's menu button will be returned"),
+ ),
+ ]
+ ),
+ Method(
+ names: ("setMyDefaultAdministratorRights", "SetMyDefaultAdministratorRights", "set_my_default_administrator_rights"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to change the default administrator rights requested by the bot when it's added as an administrator to groups or channels. These rights will be suggested to users, but they are are free to modify the list before adding the bot."),
+ tg_doc: "https://core.telegram.org/bots/api#setmydefaultadministratorrights",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "rights",
+ ty: Option(RawTy("ChatAdministratorRights")),
+ descr: Doc(md: "A JSON-serialized object describing new default administrator rights. If not specified, the default administrator rights will be cleared."),
+ ),
+ Param(
+ name: "for_channels",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_ to change the default administrator rights of the bot in channels. Otherwise, the default administrator rights of the bot for groups and supergroups will be changed."),
+ )
+ ]
+ ),
+ Method(
+ names: ("getMyDefaultAdministratorRights", "GetMyDefaultAdministratorRights", "get_my_default_administrator_rights"),
+ return_ty: RawTy("ChatAdministratorRights"),
+ doc: Doc(md: "Use this method to get the current value of the bot's menu button in a private chat, or the default menu button."),
+ tg_doc: "https://core.telegram.org/bots/api#setmydefaultadministratorrights",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "for_channels",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_ to get default administrator rights of the bot in channels. Otherwise, default administrator rights of the bot for groups and supergroups will be returned."),
+ )
+ ]
+ ),
+ Method(
+ names: ("deleteMyCommands", "DeleteMyCommands", "delete_my_commands"),
+ return_ty: True,
+ doc: Doc(
+ md: "Use this method to delete the list of the bot's commands for the given scope and user language. After deletion, [higher level commands] will be shown to affected users. Returns _True_ on success.",
+ md_links: {"higher level commands":"https://core.telegram.org/bots/api#determining-list-of-commands"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#deletemycommands",
+ tg_category: "Available methods",
+ params: [
+ Param(
+ name: "scope",
+ ty: Option(RawTy("BotCommandScope")),
+ descr: Doc(md: "A JSON-serialized object, describing scope of users for which the commands are relevant. Defaults to BotCommandScopeDefault.")
+ ),
+ Param(
+ name: "language_code",
+ ty: Option(String),
+ descr: Doc(md: "A two-letter ISO 639-1 language code. If empty, commands will be applied to all users from the given scope, for whose language there are no dedicated commands")
+ ),
+ ],
+ ),
+ Method(
+ names: ("answerInlineQuery", "AnswerInlineQuery", "answer_inline_query"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to send answers to an inline query. On success, _True_ is returned. No more than **50** results per query are allowed."),
+ tg_doc: "https://core.telegram.org/bots/api#answerinlinequery",
+ tg_category: "Inline Mode",
+ params: [
+ Param(
+ name: "inline_query_id",
+ ty: String,
+ descr: Doc(md: "Unique identifier for the answered query")
+ ),
+ Param(
+ name: "results",
+ ty: ArrayOf(RawTy("InlineQueryResult")),
+ descr: Doc(md: "A JSON-serialized array of results for the inline query")
+ ),
+ Param(
+ name: "cache_time",
+ ty: Option(u32),
+ descr: Doc(md: "The maximum amount of time in seconds that the result of the inline query may be cached on the server. Defaults to 300.")
+ ),
+ Param(
+ name: "is_personal",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if results may be cached on the server side only for the user that sent the query. By default, results may be returned to any user who sends the same query")
+ ),
+ Param(
+ name: "next_offset",
+ ty: Option(String),
+ descr: Doc(md: "Pass the offset that a client should send in the next query with the same text to receive more results. Pass an empty string if there are no more results or if you don't support pagination. Offset length can't exceed 64 bytes.")
+ ),
+ Param(
+ name: "switch_pm_text",
+ ty: Option(String),
+ descr: Doc(md: "If passed, clients will display a button with specified text that switches the user to a private chat with the bot and sends the bot a start message with the parameter switch_pm_parameter")
+ ),
+ Param(
+ name: "switch_pm_parameter",
+ ty: Option(String),
+ descr: Doc(
+ md: "[Deep-linking] parameter for the /start message sent to the bot when user presses the switch button. 1-64 characters, only `A-Z`, `a-z`, `0-9`, `_` and `-` are allowed.\n\n_Example_: An inline bot that sends YouTube videos can ask the user to connect the bot to their YouTube account to adapt search results accordingly. To do this, it displays a 'Connect your YouTube account' button above the results, or even before showing any. The user presses the button, switches to a private chat with the bot and, in doing so, passes a start parameter that instructs the bot to return an oauth link. Once done, the bot can offer a [switch_inline] button so that the user can easily return to the chat where they wanted to use the bot's inline capabilities.",
+ md_links: {
+ "Deep-linking": "https://core.telegram.org/bots#deep-linking",
+ "switch_inline": "https://core.telegram.org/bots/api#inlinekeyboardmarkup",
+ },
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("answerWebAppQuery", "AnswerWebAppQuery", "answer_web_app_query"),
+ return_ty: RawTy("SentWebAppMessage"),
+ doc: Doc(
+ md: "Use this method to set the result of an interaction with a [Web App] and send a corresponding message on behalf of the user to the chat from which the query originated.",
+ md_links: {"Web App": "https://core.telegram.org/bots/webapps"}
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#answerwebappquery",
+ tg_category: "Inline Mode",
+ params: [
+ Param(
+ name: "web_app_query_id",
+ ty: String,
+ descr: Doc(md: "Unique identifier for the query to be answered")
+ ),
+ Param(
+ name :"result",
+ ty: RawTy("InlineQueryResult"),
+ descr: Doc(md: "A JSON-serialized object describing the message to be sent"),
+ ),
+ ]
+ ),
+ Method(
+ names: ("editMessageText", "EditMessageText", "edit_message_text"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "Use this method to edit text and [games] messages. On success, the edited Message is returned.",
+ md_links: {"games": "https://core.telegram.org/bots/api#games"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#editmessagetext",
+ tg_category: "Updating messages",
+ sibling: Some("editMessageTextInline"),
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`).")
+ ),
+ Param(
+ name: "message_id",
+ ty: RawTy("MessageId"),
+ descr: Doc(md: "Identifier of the message to edit")
+ ),
+ Param(
+ name: "text",
+ ty: String,
+ descr: Doc(md: "New text of the message, 1-4096 characters after entities parsing")
+ ),
+ Param(
+ name: "parse_mode",
+ ty: Option(RawTy("ParseMode")),
+ descr: Doc(
+ md: "Mode for parsing entities in the message text. See [formatting options] for more details.",
+ md_links: {"formatting options": "https://core.telegram.org/bots/api#formatting-options"}
+ )
+ ),
+ Param(
+ name: "entities",
+ ty: Option(ArrayOf(RawTy("MessageEntity"))),
+ descr: Doc(md: "List of special entities that appear in message text, which can be specified instead of _parse\\_mode_"),
+ ),
+ Param(
+ name: "disable_web_page_preview",
+ ty: Option(bool),
+ descr: Doc(md: "Disables link previews for links in this message")
+ ),
+ Param(
+ name: "reply_markup",
+ ty: Option(RawTy("InlineKeyboardMarkup")),
+ descr: Doc(
+ md: "A JSON-serialized object for an [inline keyboard].",
+ md_links: {"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating"},
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("editMessageTextInline", "EditMessageTextInline", "edit_message_text_inline"),
+ return_ty: True,
+ doc: Doc(
+ md: "Use this method to edit text and [games] messages. On success, _True_ is returned.",
+ md_links: {"games": "https://core.telegram.org/bots/api#games"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#editmessagetext",
+ tg_category: "Updating messages",
+ sibling: Some("editMessageText"),
+ params: [
+ Param(
+ name: "inline_message_id",
+ ty: String,
+ descr: Doc(md: "Identifier of the inline message")
+ ),
+ Param(
+ name: "text",
+ ty: String,
+ descr: Doc(md: "New text of the message, 1-4096 characters after entities parsing")
+ ),
+ Param(
+ name: "parse_mode",
+ ty: Option(RawTy("ParseMode")),
+ descr: Doc(
+ md: "Mode for parsing entities in the message text. See [formatting options] for more details.",
+ md_links: {"formatting options": "https://core.telegram.org/bots/api#formatting-options"}
+ )
+ ),
+ Param(
+ name: "entities",
+ ty: Option(ArrayOf(RawTy("MessageEntity"))),
+ descr: Doc(md: "List of special entities that appear in message text, which can be specified instead of _parse\\_mode_"),
+ ),
+ Param(
+ name: "disable_web_page_preview",
+ ty: Option(bool),
+ descr: Doc(md: "Disables link previews for links in this message")
+ ),
+ Param(
+ name: "reply_markup",
+ ty: Option(RawTy("InlineKeyboardMarkup")),
+ descr: Doc(
+ md: "A JSON-serialized object for an [inline keyboard].",
+ md_links: {"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating"}
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("editMessageCaption", "EditMessageCaption", "edit_message_caption"),
+ return_ty: RawTy("Message"),
+ doc: Doc(md: "Use this method to edit captions of messages. On success, the edited Message is returned."),
+ tg_doc: "https://core.telegram.org/bots/api#editmessagecaption",
+ tg_category: "Updating messages",
+ sibling: Some("editMessageCaptionInline"),
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`).")
+ ),
+ Param(
+ name: "message_id",
+ ty: RawTy("MessageId"),
+ descr: Doc(md: "Identifier of the message to edit")
+ ),
+ Param(
+ name: "caption",
+ ty: Option(String),
+ descr: Doc(md: "New caption of the message, 0-1024 characters after entities parsing")
+ ),
+ Param(
+ name: "parse_mode",
+ ty: Option(RawTy("ParseMode")),
+ descr: Doc(
+ md: "Mode for parsing entities in the message text. See [formatting options] for more details.",
+ md_links: {"formatting options": "https://core.telegram.org/bots/api#formatting-options"}
+ )
+ ),
+ Param(
+ name: "caption_entities",
+ ty: Option(ArrayOf(RawTy("MessageEntity"))),
+ descr: Doc(md: "List of special entities that appear in the caption, which can be specified instead of _parse\\_mode_"),
+ ),
+ Param(
+ name: "reply_markup",
+ ty: Option(RawTy("InlineKeyboardMarkup")),
+ descr: Doc(
+ md: "A JSON-serialized object for an [inline keyboard].",
+ md_links: {"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",}
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("editMessageCaptionInline", "EditMessageCaptionInline", "edit_message_caption_inline"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to edit captions of messages. On success, _True_ is returned."),
+ tg_doc: "https://core.telegram.org/bots/api#editmessagetext",
+ tg_category: "Updating messages",
+ sibling: Some("editMessageCaption"),
+ params: [
+ Param(
+ name: "inline_message_id",
+ ty: String,
+ descr: Doc(md: "Identifier of the inline message")
+ ),
+ Param(
+ name: "caption",
+ ty: Option(String),
+ descr: Doc(md: "New caption of the message, 0-1024 characters after entities parsing")
+ ),
+ Param(
+ name: "parse_mode",
+ ty: Option(RawTy("ParseMode")),
+ descr: Doc(
+ md: "Mode for parsing entities in the message text. See [formatting options] for more details.",
+ md_links: {"formatting options": "https://core.telegram.org/bots/api#formatting-options"}
+ )
+ ),
+ Param(
+ name: "caption_entities",
+ ty: Option(ArrayOf(RawTy("MessageEntity"))),
+ descr: Doc(md: "List of special entities that appear in the caption, which can be specified instead of _parse\\_mode_"),
+ ),
+
+ Param(
+ name: "reply_markup",
+ ty: Option(RawTy("InlineKeyboardMarkup")),
+ descr: Doc(
+ md: "A JSON-serialized object for an [inline keyboard].",
+ md_links: {"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating"}
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("editMessageMedia", "EditMessageMedia", "edit_message_media"),
+ return_ty: RawTy("Message"),
+ doc: Doc(md: "Use this method to edit animation, audio, document, photo, or video messages. If a message is a part of a message album, then it can be edited only to a photo or a video. Otherwise, message type can be changed arbitrarily. When inline message is edited, new file can't be uploaded. Use previously uploaded file via its file_id or specify a URL. On success, the edited Message is returned."),
+ tg_doc: "https://core.telegram.org/bots/api#editmessagemedia",
+ tg_category: "Updating messages",
+ sibling: Some("editMessageMediaInline"),
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`).")
+ ),
+ Param(
+ name: "message_id",
+ ty: RawTy("MessageId"),
+ descr: Doc(md: "Identifier of the message to edit")
+ ),
+ Param(
+ name: "media",
+ ty: RawTy("InputMedia"),
+ descr: Doc(md: "A JSON-serialized object for a new media content of the message")
+ ),
+ Param(
+ name: "reply_markup",
+ ty: Option(RawTy("InlineKeyboardMarkup")),
+ descr: Doc(
+ md: "A JSON-serialized object for an [inline keyboard].",
+ md_links: {"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating"}
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("editMessageMediaInline", "EditMessageMediaInline", "edit_message_media_inline"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to edit animation, audio, document, photo, or video messages. If a message is a part of a message album, then it can be edited only to a photo or a video. Otherwise, message type can be changed arbitrarily. When inline message is edited, new file can't be uploaded. Use previously uploaded file via its file_id or specify a URL. On success, _True_ is returned."),
+ tg_doc: "https://core.telegram.org/bots/api#editmessagemediainline",
+ tg_category: "Updating messages",
+ sibling: Some("editMessageMedia"),
+ params: [
+ Param(
+ name: "inline_message_id",
+ ty: String,
+ descr: Doc(md: "Identifier of the inline message")
+ ),
+ Param(
+ name: "media",
+ ty: RawTy("InputMedia"),
+ descr: Doc(md: "A JSON-serialized object for a new media content of the message")
+ ),
+ Param(
+ name: "reply_markup",
+ ty: Option(RawTy("InlineKeyboardMarkup")),
+ descr: Doc(
+ md: "A JSON-serialized object for an [inline keyboard].",
+ md_links: {"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",}
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("editMessageReplyMarkup", "EditMessageReplyMarkup", "edit_message_reply_markup"),
+ return_ty: RawTy("Message"),
+ doc: Doc(md: "Use this method to edit only the reply markup of messages. On success, the edited Message is returned."),
+ tg_doc: "https://core.telegram.org/bots/api#editmessagereplymarkup",
+ tg_category: "Updating messages",
+ sibling: Some("editMessageMediaInline"),
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`).")
+ ),
+ Param(
+ name: "message_id",
+ ty: RawTy("MessageId"),
+ descr: Doc(md: "Identifier of the message to edit")
+ ),
+ Param(
+ name: "reply_markup",
+ ty: Option(RawTy("InlineKeyboardMarkup")),
+ descr: Doc(
+ md: "A JSON-serialized object for an [inline keyboard].",
+ md_links: {"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",}
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("editMessageReplyMarkupInline", "EditMessageReplyMarkupInline", "edit_message_reply_markup_inline"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to edit only the reply markup of messages. On success, _True_ is returned."),
+ tg_doc: "https://core.telegram.org/bots/api#editmessagereplymarkup",
+ tg_category: "Updating messages",
+ sibling: Some("editMessageReplyMarkup"),
+ params: [
+ Param(
+ name: "inline_message_id",
+ ty: String,
+ descr: Doc(md: "Identifier of the inline message")
+ ),
+ Param(
+ name: "reply_markup",
+ ty: Option(RawTy("InlineKeyboardMarkup")),
+ descr: Doc(
+ md: "A JSON-serialized object for an [inline keyboard].",
+ md_links: {"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",}
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("stopPoll", "StopPoll", "stop_poll"),
+ return_ty: RawTy("Poll"),
+ doc: Doc(md: "Use this method to stop a poll which was sent by the bot. On success, the stopped Poll with the final results is returned."),
+ tg_doc: "https://core.telegram.org/bots/api#stoppoll",
+ tg_category: "Updating messages",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`).")
+ ),
+ Param(
+ name: "message_id",
+ ty: RawTy("MessageId"),
+ descr: Doc(md: "Identifier of the message to edit")
+ ),
+ Param(
+ name: "reply_markup",
+ ty: Option(RawTy("InlineKeyboardMarkup")),
+ descr: Doc(
+ md: "A JSON-serialized object for an [inline keyboard].",
+ md_links: {"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",}
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("deleteMessage", "DeleteMessage", "delete_message"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to delete a message, including service messages, with the following limitations:\n- A message can only be deleted if it was sent less than 48 hours ago.\n- A dice message in a private chat can only be deleted if it was sent more than 24 hours ago.\n- Bots can delete outgoing messages in private chats, groups, and supergroups.\n- Bots can delete incoming messages in private chats.\n- Bots granted can_post_messages permissions can delete outgoing messages in channels.\n- If the bot is an administrator of a group, it can delete any message there.\n- If the bot has can_delete_messages permission in a supergroup or a channel, it can delete any message there.\n\nReturns True on success."),
+ tg_doc: "https://core.telegram.org/bots/api#delete_message",
+ tg_category: "Updating messages",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`).")
+ ),
+ Param(
+ name: "message_id",
+ ty: RawTy("MessageId"),
+ descr: Doc(md: "Identifier of the message to delete")
+ ),
+ ],
+ ),
+ Method(
+ names: ("sendSticker", "SendSticker", "send_sticker"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "Use this method to send static .WEBP or [animated] .TGS stickers. On success, the sent Message is returned.",
+ md_links: {"animated": "https://telegram.org/blog/animated-stickers"}
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#sendsticker",
+ tg_category: "Stickers",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target chat or username of the target channel (in the format `@channelusername`).")
+ ),
+ Param(
+ name: "sticker",
+ ty: RawTy("InputFile"),
+ descr: Doc(
+ md: "Sticker to send. Pass a file_id as String to send a photo that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a photo from the Internet, or upload a new photo using multipart/form-data. [More info on Sending Files »]",
+ md_links: {"More info on Sending Files »": "https://core.telegram.org/bots/api#sending-files"},
+ )
+ ),
+ Param(
+ name: "disable_notification",
+ ty: Option(bool),
+ descr: Doc(
+ md: "Sends the message [silently]. Users will receive a notification with no sound.",
+ md_links: {"silently": "https://telegram.org/blog/channels-2-0#silent-messages"}
+ )
+ ),
+ Param(
+ name: "protect_content",
+ ty: Option(bool),
+ descr: Doc(md: "Protects the contents of sent messages from forwarding and saving"),
+ ),
+ Param(
+ name: "reply_to_message_id",
+ ty: Option(i32),
+ descr: Doc(md: "If the message is a reply, ID of the original message")
+ ),
+ Param(
+ name: "allow_sending_without_reply",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if the message should be sent even if the specified replied-to message is not found")
+ ),
+ Param(
+ 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_links: {
+ "inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating",
+ "custom reply keyboard": "https://core.telegram.org/bots#keyboards",
+ }
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("getStickerSet", "GetStickerSet", "get_sticker_set"),
+ return_ty: RawTy("StickerSet"),
+ doc: Doc(md: "Use this method to get a sticker set. On success, a StickerSet object is returned."),
+ tg_doc: "https://core.telegram.org/bots/api#getstickerset",
+ tg_category: "Stickers",
+ params: [
+ Param(
+ name: "name",
+ ty: String,
+ descr: Doc(md: "Name of the sticker set"),
+ ),
+ ],
+ ),
+ Method(
+ names: ("getCustomEmojiStickers", "GetCustomEmojiStickers", "get_custom_emoji_stickers"),
+ return_ty: ArrayOf(RawTy("Sticker")),
+ doc: Doc(md: "Use this method to get information about custom emoji stickers by their identifiers. Returns an Array of Sticker objects."),
+ tg_doc: "https://core.telegram.org/bots/api#getcustomemojistickers",
+ tg_category: "Stickers",
+ params: [
+ Param(
+ name: "custom_emoji_ids",
+ ty: ArrayOf(String),
+ descr: Doc(md: "List of custom emoji identifiers. At most 200 custom emoji identifiers can be specified."),
+ ),
+ ],
+ ),
+ Method(
+ names: ("uploadStickerFile", "UploadStickerFile", "upload_sticker_file"),
+ return_ty: RawTy("FileMeta"),
+ doc: Doc(md: "Use this method to upload a .PNG file with a sticker for later use in _createNewStickerSet_ and _addStickerToSet_ methods (can be used multiple times). Returns the uploaded File on success."),
+ tg_doc: "https://core.telegram.org/bots/api#uploadstickerfile",
+ tg_category: "Stickers",
+ params: [
+ Param(
+ name: "user_id",
+ ty: RawTy("UserId"),
+ descr: Doc(md: "User identifier of sticker file owner"),
+ ),
+ Param(
+ name: "png_sticker",
+ ty: RawTy("InputFile"),
+ descr: Doc(
+ md: "PNG image with the sticker, must be up to 512 kilobytes in size, dimensions must not exceed 512px, and either width or height must be exactly 512px. [More info on Sending Files »]",
+ md_links: {"More info on Sending Files »": "https://core.telegram.org/bots/api#sending-files"},
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("createNewStickerSet", "CreateNewStickerSet", "create_new_sticker_set"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to create a new sticker set owned by a user. The bot will be able to edit the sticker set thus created. You must use exactly one of the fields _png\\_sticker_ or _tgs\\_sticker_. Returns _True_ on success."),
+ tg_doc: "https://core.telegram.org/bots/api#createstickerset",
+ tg_category: "Stickers",
+ params: [
+ Param(
+ name: "user_id",
+ ty: RawTy("UserId"),
+ descr: Doc(md: "User identifier of sticker file owner"),
+ ),
+ Param(
+ name: "name",
+ ty: String,
+ descr: Doc(md: "Short name of sticker set, to be used in `t.me/addstickers/` URLs (e.g., _animals_). Can contain only english letters, digits and underscores. Must begin with a letter, can't contain consecutive underscores and must end in _“\\_by\\_”. _ is case insensitive. 1-64 characters."),
+ ),
+ Param(
+ name: "title",
+ ty: String,
+ descr: Doc(md: "Sticker set title, 1-64 characters"),
+ ),
+ Param(
+ name: "sticker",
+ ty: RawTy("InputSticker"),
+ descr: Doc(
+ md: "**PNG** image, **TGS** animation or **WEBM** video with the sticker, must be up to 512 kilobytes in size, dimensions must not exceed 512px, and either width or height must be exactly 512px. Pass a _file\\_id_ as a String to send a file that already exists on the Telegram servers, pass an HTTP URL as a String for Telegram to get a file from the Internet, or upload a new one using multipart/form-data. [More info on Sending Files »]",
+ md_links: {"More info on Sending Files »": "https://core.telegram.org/bots/api#sending-files"},
+ ),
+ ),
+ Param(
+ name: "emojis",
+ ty: String,
+ descr: Doc(md: "One or more emoji corresponding to the sticker"),
+ ),
+ Param(
+ name: "sticker_type",
+ ty: Option(RawTy("StickerType")),
+ descr: Doc(md: "Type of stickers in the set, pass “regular” or “mask”. Custom emoji sticker sets can't be created via the Bot API at the moment. By default, a regular sticker set is created."),
+ ),
+ Param(
+ name: "mask_position",
+ ty: Option(RawTy("MaskPosition")),
+ descr: Doc(md: "A JSON-serialized object for position where the mask should be placed on faces"),
+ ),
+ ],
+ ),
+ Method(
+ names: ("addStickerToSet", "AddStickerToSet", "add_sticker_to_set"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to add a new sticker to a set created by the bot. You **must** use exactly one of the fields _png\\_sticker_ or _tgs\\_sticker_. Animated stickers can be added to animated sticker sets and only to them. Animated sticker sets can have up to 50 stickers. Static sticker sets can have up to 120 stickers. Returns _True_ on success."),
+ tg_doc: "https://core.telegram.org/bots/api#addstickertoset",
+ tg_category: "Stickers",
+ params: [
+ Param(
+ name: "user_id",
+ ty: RawTy("UserId"),
+ descr: Doc(md: "User identifier of sticker file owner"),
+ ),
+ Param(
+ name: "name",
+ ty: String,
+ descr: Doc(md: "Sticker set name"),
+ ),
+ Param(
+ name: "sticker",
+ ty: RawTy("InputSticker"),
+ descr: Doc(
+ md: "**PNG** or **TGS** image with the sticker, must be up to 512 kilobytes in size, dimensions must not exceed 512px, and either width or height must be exactly 512px. Pass a _file\\_id_ as a String to send a file that already exists on the Telegram servers, pass an HTTP URL as a String for Telegram to get a file from the Internet, or upload a new one using multipart/form-data. [More info on Sending Files »]",
+ md_links: {"More info on Sending Files »": "https://core.telegram.org/bots/api#sending-files"},
+ ),
+ ),
+ Param(
+ name: "emojis",
+ ty: String,
+ descr: Doc(md: "One or more emoji corresponding to the sticker"),
+ ),
+ Param(
+ name: "mask_position",
+ ty: Option(RawTy("MaskPosition")),
+ descr: Doc(md: "A JSON-serialized object for position where the mask should be placed on faces"),
+ ),
+ ],
+ ),
+ Method(
+ names: ("setStickerPositionInSet", "SetStickerPositionInSet", "set_sticker_position_in_set"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to move a sticker in a set created by the bot to a specific position. Returns _True_ on success."),
+ tg_doc: "https://core.telegram.org/bots/api#setstickerpositioninset",
+ tg_category: "Stickers",
+ params: [
+ Param(
+ name: "sticker",
+ ty: String,
+ descr: Doc(md: "File identifier of the sticker"),
+ ),
+ Param(
+ name: "position",
+ ty: u32,
+ descr: Doc(md: "New sticker position in the set, zero-based"),
+ ),
+ ],
+ ),
+ Method(
+ names: ("deleteStickerFromSet", "DeleteStickerFromSet", "delete_sticker_from_set"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to delete a sticker from a set created by the bot. Returns _True_ on success."),
+ tg_doc: "https://core.telegram.org/bots/api#deletestickerfromset",
+ tg_category: "Stickers",
+ params: [
+ Param(
+ name: "sticker",
+ ty: String,
+ descr: Doc(md: "File identifier of the sticker"),
+ ),
+ ],
+ ),
+ Method(
+ names: ("setStickerSetThumb", "SetStickerSetThumb", "set_sticker_set_thumb"),
+ return_ty: True,
+ doc: Doc(md: "Use this method to set the thumbnail of a sticker set. Animated thumbnails can be set for animated sticker sets only. Returns _True_ on success."),
+ tg_doc: "https://core.telegram.org/bots/api#setstickersetthumb",
+ tg_category: "Stickers",
+ params: [
+ Param(
+ name: "name",
+ ty: String,
+ descr: Doc(md: "Name of the sticker set"),
+ ),
+ Param(
+ name: "user_id",
+ ty: RawTy("UserId"),
+ descr: Doc(md: "User identifier of sticker file owner"),
+ ),
+ Param(
+ name: "thumb",
+ ty: Option(RawTy("InputFile")),
+ descr: Doc(
+ md: "A **PNG** image with the thumbnail, must be up to 128 kilobytes in size and have width and height exactly 100px, or a **TGS** animation with the thumbnail up to 32 kilobytes in size; see https://core.telegram.org/animated_stickers#technical-requirements for animated sticker technical requirements. Pass a _file\\_id_ as a String to send a file that already exists on the Telegram servers, pass an HTTP URL as a String for Telegram to get a file from the Internet, or upload a new one using multipart/form-data. [More info on Sending Files »]. Animated sticker set thumbnail can't be uploaded via HTTP URL.",
+ md_links: {"More info on Sending Files »": "https://core.telegram.org/bots/api#sending-files"},
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("sendInvoice", "SendInvoice", "send_invoice"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "Use this method to send invoices. On success, the sent [Message] is returned.",
+ md_links: {"Message":"https://core.telegram.org/bots/api#message"}
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#sendinvoice",
+ tg_category: "Payments",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: RawTy("Recipient"),
+ descr: Doc(md: "Unique identifier for the target private chat"),
+ ),
+ Param(
+ name: "title",
+ ty: String,
+ descr: Doc(md: "Product name, 1-32 characters"),
+ ),
+ Param(
+ name: "description",
+ ty: String,
+ descr: Doc(md: "Product description, 1-255 characters"),
+ ),
+ Param(
+ name: "payload",
+ ty: String,
+ descr: Doc(md: "Bot-defined invoice payload, 1-128 bytes. This will not be displayed to the user, use for your internal processes."),
+ ),
+ Param(
+ name: "provider_token",
+ ty: String,
+ descr: Doc(
+ md: "Payments provider token, obtained via [Botfather]",
+ md_links: {"Botfather":"https://t.me/botfather"}
+ ),
+ ),
+ Param(
+ name: "currency",
+ ty: String,
+ descr: Doc(md: "Three-letter ISO 4217 currency code, see more on currencies"),
+ ),
+ Param(
+ name: "prices",
+ ty: ArrayOf(RawTy("LabeledPrice")),
+ descr: Doc(md: "Price breakdown, a JSON-serialized list of components (e.g. product price, tax, discount, delivery cost, delivery tax, bonus, etc.)"),
+ ),
+ Param(
+ name: "max_tip_amount",
+ ty: Option(u32),
+ descr: Doc(
+ md: "The maximum accepted amount for tips in the smallest units of the currency (integer, **not** float/double). For example, for a maximum tip of `US$ 1.45` pass `max_tip_amount = 145`. See the exp parameter in [`currencies.json`], it shows the number of digits past the decimal point for each currency (2 for the majority of currencies). Defaults to 0",
+ md_links: {"`currencies.json`":"https://core.telegram.org/bots/payments/currencies.json"}
+ ),
+ ),
+ Param(
+ name: "suggested_tip_amounts",
+ ty: Option(ArrayOf(u32)),
+ descr: Doc(md: "A JSON-serialized array of suggested amounts of tips in the smallest units of the currency (integer, **not** float/double). At most 4 suggested tip amounts can be specified. The suggested tip amounts must be positive, passed in a strictly increased order and must not exceed _max_tip_amount_."),
+ ),
+ Param(
+ name: "start_parameter",
+ ty: Option(String),
+ descr: Doc(md: "Unique deep-linking parameter. If left empty, **forwarded copies** of the sent message will have a Pay button, allowing multiple users to pay directly from the forwarded message, using the same invoice. If non-empty, forwarded copies of the sent message will have a URL button with a deep link to the bot (instead of a Pay button), with the value used as the start parameter"),
+ ),
+ Param(
+ name: "provider_data",
+ ty: Option(String),
+ descr: Doc(md: "A JSON-serialized data about the invoice, which will be shared with the payment provider. A detailed description of required fields should be provided by the payment provider.")
+ ),
+ Param(
+ name: "photo_url",
+ ty: Option(String),
+ descr: Doc(md: "URL of the product photo for the invoice. Can be a photo of the goods or a marketing image for a service. People like it better when they see what they are paying for.")
+ ),
+ Param(
+ name: "photo_size",
+ ty: Option(String),
+ descr: Doc(md: "Photo size in bytes")
+ ),
+ Param(
+ name: "photo_width",
+ ty: Option(String),
+ descr: Doc(md: "Photo width")
+ ),
+ Param(
+ name: "photo_height",
+ ty: Option(String),
+ descr: Doc(md: "Photo height")
+ ),
+ Param(
+ name: "need_name",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if you require the user's full name to complete the order")
+ ),
+ Param(
+ name: "need_phone_number",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if you require the user's phone number to complete the order")
+ ),
+ Param(
+ name: "need_email",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if you require the user's email address to complete the order")
+ ),
+ Param(
+ name: "need_shipping_address",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if you require the user's shipping address to complete the order")
+ ),
+ Param(
+ name: "send_phone_number_to_provider",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if user's phone number should be sent to provider")
+ ),
+ Param(
+ name: "send_email_to_provider",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if user's email address should be sent to provider")
+ ),
+ Param(
+ name: "is_flexible",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if the final price depends on the shipping method")
+ ),
+ Param(
+ name: "disable_notification",
+ ty: Option(bool),
+ descr: Doc(
+ md: "Sends the message [silently]. Users will receive a notification with no sound.",
+ md_links: {"silently": "https://telegram.org/blog/channels-2-0#silent-messages"}
+ )
+ ),
+ Param(
+ name: "protect_content",
+ ty: Option(bool),
+ descr: Doc(md: "Protects the contents of sent messages from forwarding and saving"),
+ ),
+ Param(
+ name: "reply_to_message_id",
+ ty: Option(i32),
+ descr: Doc(md: "If the message is a reply, ID of the original message")
+ ),
+ Param(
+ name: "allow_sending_without_reply",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if the message should be sent even if the specified replied-to message is not found")
+ ),
+ Param(
+ name: "reply_markup",
+ ty: Option(RawTy("InlineKeyboardMarkup")),
+ descr: Doc(
+ md: "A JSON-serialized object for an [inline keyboard]. If empty, one 'Pay `total price`' button will be shown. If not empty, the first button must be a Pay button.",
+ md_links: {"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating"}
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("createInvoiceLink", "CreateInvoiceLink", "create_invoice_link"),
+ return_ty: String,
+ doc: Doc(md: "Use this method to create a link for an invoice. Returns the created invoice link as String on success."),
+ tg_doc: "https://core.telegram.org/bots/api#createinvoicelink",
+ tg_category: "Payments",
+ params: [
+ Param(
+ name: "title",
+ ty: String,
+ descr: Doc(md: "Product name, 1-32 characters"),
+ ),
+ Param(
+ name: "description",
+ ty: String,
+ descr: Doc(md: "Product description, 1-255 characters"),
+ ),
+ Param(
+ name: "payload",
+ ty: String,
+ descr: Doc(md: "Bot-defined invoice payload, 1-128 bytes. This will not be displayed to the user, use for your internal processes."),
+ ),
+ Param(
+ name: "provider_token",
+ ty: String,
+ descr: Doc(
+ md: "Payments provider token, obtained via [Botfather]",
+ md_links: {"Botfather":"https://t.me/botfather"}
+ ),
+ ),
+ Param(
+ name: "currency",
+ ty: String,
+ descr: Doc(md: "Three-letter ISO 4217 currency code, see more on currencies"),
+ ),
+ Param(
+ name: "prices",
+ ty: ArrayOf(RawTy("LabeledPrice")),
+ descr: Doc(md: "Price breakdown, a JSON-serialized list of components (e.g. product price, tax, discount, delivery cost, delivery tax, bonus, etc.)"),
+ ),
+ Param(
+ name: "max_tip_amount",
+ ty: Option(u32),
+ descr: Doc(
+ md: "The maximum accepted amount for tips in the smallest units of the currency (integer, **not** float/double). For example, for a maximum tip of `US$ 1.45` pass `max_tip_amount = 145`. See the exp parameter in [`currencies.json`], it shows the number of digits past the decimal point for each currency (2 for the majority of currencies). Defaults to 0",
+ md_links: {"`currencies.json`":"https://core.telegram.org/bots/payments/currencies.json"}
+ ),
+ ),
+ Param(
+ name: "suggested_tip_amounts",
+ ty: Option(ArrayOf(u32)),
+ descr: Doc(md: "A JSON-serialized array of suggested amounts of tips in the smallest units of the currency (integer, **not** float/double). At most 4 suggested tip amounts can be specified. The suggested tip amounts must be positive, passed in a strictly increased order and must not exceed _max_tip_amount_."),
+ ),
+ Param(
+ name: "provider_data",
+ ty: Option(String),
+ descr: Doc(md: "A JSON-serialized data about the invoice, which will be shared with the payment provider. A detailed description of required fields should be provided by the payment provider.")
+ ),
+ Param(
+ name: "photo_url",
+ ty: Option(String),
+ descr: Doc(md: "URL of the product photo for the invoice. Can be a photo of the goods or a marketing image for a service. People like it better when they see what they are paying for.")
+ ),
+ Param(
+ name: "photo_size",
+ ty: Option(String),
+ descr: Doc(md: "Photo size in bytes")
+ ),
+ Param(
+ name: "photo_width",
+ ty: Option(String),
+ descr: Doc(md: "Photo width")
+ ),
+ Param(
+ name: "photo_height",
+ ty: Option(String),
+ descr: Doc(md: "Photo height")
+ ),
+ Param(
+ name: "need_name",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if you require the user's full name to complete the order")
+ ),
+ Param(
+ name: "need_phone_number",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if you require the user's phone number to complete the order")
+ ),
+ Param(
+ name: "need_email",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if you require the user's email address to complete the order")
+ ),
+ Param(
+ name: "need_shipping_address",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if you require the user's shipping address to complete the order")
+ ),
+ Param(
+ name: "send_phone_number_to_provider",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if user's phone number should be sent to provider")
+ ),
+ Param(
+ name: "send_email_to_provider",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if user's email address should be sent to provider")
+ ),
+ Param(
+ name: "is_flexible",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if the final price depends on the shipping method")
+ ),
+ ],
+ ),
+ Method(
+ names: ("answerShippingQuery", "AnswerShippingQuery", "answer_shipping_query"),
+ return_ty: True,
+ doc: Doc(
+ md: "If you sent an invoice requesting a shipping address and the parameter _is\\_flexible_ was specified, the Bot API will send an [Update] with a shipping_query field to the bot. Use this method to reply to shipping queries. On success, True is returned.",
+ md_links: {"Update":"https://core.telegram.org/bots/api#update"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#answershippingquery",
+ tg_category: "Payments",
+ params: [
+ Param(
+ name: "shipping_query_id",
+ ty: String,
+ descr: Doc(md: "Unique identifier for the query to be answered"),
+ ),
+ Param(
+ name: "ok",
+ ty: bool,
+ descr: Doc(md: "Specify True if delivery to the specified address is possible and False if there are any problems (for example, if delivery to the specified address is not possible)"),
+ ),
+ Param(
+ name: "shipping_options",
+ ty: Option(ArrayOf(RawTy("ShippingOption"))),
+ descr: Doc(md: "Required if ok is True. A JSON-serialized array of available shipping options."),
+ ),
+ Param(
+ name: "error_message",
+ ty: Option(String),
+ descr: Doc(md: "Required if ok is False. Error message in human readable form that explains why it is impossible to complete the order (e.g. 'Sorry, delivery to your desired address is unavailable'). Telegram will display this message to the user."),
+ ),
+ ],
+ ),
+ Method(
+ names: ("answerPreCheckoutQuery", "AnswerPreCheckoutQuery", "answer_pre_checkout_query"),
+ return_ty: True,
+ doc: Doc(
+ md: "Once the user has confirmed their payment and shipping details, the Bot API sends the final confirmation in the form of an [Update] with the field pre\\_checkout\\_query. Use this method to respond to such pre-checkout queries. On success, True is returned. **Note:** The Bot API must receive an answer within 10 seconds after the pre-checkout query was sent.",
+ md_links: {"Update":"https://core.telegram.org/bots/api#update"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#answershippingquery",
+ tg_category: "Payments",
+ params: [
+ Param(
+ name: "pre_checkout_query_id",
+ ty: String,
+ descr: Doc(md: "Unique identifier for the query to be answered"),
+ ),
+ Param(
+ name: "ok",
+ ty: bool,
+ descr: Doc(md: "Specify True if everything is alright (goods are available, etc.) and the bot is ready to proceed with the order. Use False if there are any problems."),
+ ),
+ Param(
+ name: "error_message",
+ ty: Option(String),
+ descr: Doc(md: "Required if ok is False. Error message in human readable form that explains the reason for failure to proceed with the checkout (e.g. \"Sorry, somebody just bought the last of our amazing black T-shirts while you were busy filling out your payment details. Please choose a different color or garment!\"). Telegram will display this message to the user."),
+ ),
+ ],
+ ),
+ Method(
+ names: ("setPassportDataErrors", "SetPassportDataErrors", "set_passport_data_errors"),
+ return_ty: True,
+ doc: Doc(md: "Informs a user that some of the Telegram Passport elements they provided contains errors. The user will not be able to re-submit their Passport to you until the errors are fixed (the contents of the field for which you returned the error must change). Returns _True_ on success.\n\nUse this if the data submitted by the user doesn't satisfy the standards your service requires for any reason. For example, if a birthday date seems invalid, a submitted document is blurry, a scan shows evidence of tampering, etc. Supply some details in the error message to make sure the user knows how to correct the issues."),
+ tg_doc: "https://core.telegram.org/bots/api#setpassportdataerrors",
+ tg_category: "Telegram Passport",
+ params: [
+ Param(
+ name: "user_id",
+ ty: RawTy("UserId"),
+ descr: Doc(md: "User identifier"),
+ ),
+ Param(
+ name: "errors",
+ ty: ArrayOf(RawTy("PassportElementError")),
+ descr: Doc(md: "A JSON-serialized array describing the errors"),
+ ),
+ ],
+ ),
+ Method(
+ names: ("sendGame", "SendGame", "send_game"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "Use this method to send a game. On success, the sent [Message] is returned.",
+ md_links: {"Message": "https://core.telegram.org/bots/api#message"}
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#sendgame",
+ tg_category: "Games",
+ params: [
+ Param(
+ name: "chat_id",
+ ty: u32,
+ descr: Doc(md: "Unique identifier for the target chat"),
+ ),
+ Param(
+ name: "game_short_name",
+ ty: String,
+ descr: Doc(md: "Short name of the game, serves as the unique identifier for the game. Set up your games via Botfather."),
+ ),
+ Param(
+ name: "disable_notification",
+ ty: Option(bool),
+ descr: Doc(
+ md: "Sends the message [silently]. Users will receive a notification with no sound.",
+ md_links: {"silently": "https://telegram.org/blog/channels-2-0#silent-messages"}
+ )
+ ),
+ Param(
+ name: "protect_content",
+ ty: Option(bool),
+ descr: Doc(md: "Protects the contents of sent messages from forwarding and saving"),
+ ),
+ Param(
+ name: "reply_to_message_id",
+ ty: Option(i32),
+ descr: Doc(md: "If the message is a reply, ID of the original message")
+ ),
+ Param(
+ name: "allow_sending_without_reply",
+ ty: Option(bool),
+ descr: Doc(md: "Pass _True_, if the message should be sent even if the specified replied-to message is not found")
+ ),
+ Param(
+ 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_links: {"inline keyboard": "https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating"},
+ ),
+ ),
+ ],
+ ),
+ Method(
+ names: ("setGameScore", "SetGameScore", "set_game_score"),
+ return_ty: RawTy("Message"),
+ doc: Doc(
+ md: "Use this method to set the score of the specified user in a game. On success, returns the edited [Message]. Returns an error, if the new score is not greater than the user's current score in the chat and force is False.",
+ md_links: {"Message": "https://core.telegram.org/bots/api#message"}
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#setgamescore",
+ tg_category: "Games",
+ params: [
+ Param(
+ name: "user_id",
+ ty: RawTy("UserId"),
+ descr: Doc(md: "User identifier"),
+ ),
+ Param(
+ name: "score",
+ ty: u64,
+ descr: Doc(md: "New score"),
+ ),
+ Param(
+ name: "force",
+ ty: Option(bool),
+ descr: Doc(md: "Pass True, if the high score is allowed to decrease. This can be useful when fixing mistakes or banning cheaters"),
+ ),
+ Param(
+ name: "disable_edit_message",
+ ty: Option(bool),
+ descr: Doc(md: "Pass True, if the game message should not be automatically edited to include the current scoreboard"),
+ ),
+ Param(
+ name: "chat_id",
+ ty: u32,
+ descr: Doc(md: "Unique identifier for the target chat")
+ ),
+ Param(
+ name: "message_id",
+ ty: RawTy("MessageId"),
+ descr: Doc(md: "Identifier of the message to edit")
+ ),
+ ],
+ sibling: Some("setGameScoreInline"),
+ ),
+ Method(
+ names: ("setGameScoreInline", "SetGameScoreInline", "set_game_score_inline"),
+ return_ty: RawTy("Message"),
+ doc: Doc(md: "Use this method to set the score of the specified user in a game. On success, returns _True_. Returns an error, if the new score is not greater than the user's current score in the chat and force is False."),
+ tg_doc: "https://core.telegram.org/bots/api#setgamescore",
+ tg_category: "Games",
+ params: [
+ Param(
+ name: "user_id",
+ ty: RawTy("UserId"),
+ descr: Doc(md: "User identifier"),
+ ),
+ Param(
+ name: "score",
+ ty: u64,
+ descr: Doc(md: "New score"),
+ ),
+ Param(
+ name: "force",
+ ty: Option(bool),
+ descr: Doc(md: "Pass True, if the high score is allowed to decrease. This can be useful when fixing mistakes or banning cheaters"),
+ ),
+ Param(
+ name: "disable_edit_message",
+ ty: Option(bool),
+ descr: Doc(md: "Pass True, if the game message should not be automatically edited to include the current scoreboard"),
+ ),
+ Param(
+ name: "inline_message_id",
+ ty: String,
+ descr: Doc(md: "Identifier of the inline message"),
+ ),
+ ],
+ sibling: Some("setGameScore"),
+ ),
+ Method(
+ names: ("getGameHighScores", "GetGameHighScores", "get_game_high_scores"),
+ return_ty: True,
+ doc: Doc(
+ md: "Use this method to get data for high score tables. Will return the score of the specified user and several of their neighbors in a game. On success, returns an Array of [GameHighScore] objects.\n\n> This method will currently return scores for the target user, plus two of their closest neighbors on each side. Will also return the top three users if the user and his neighbors are not among them. Please note that this behavior is subject to change.",
+ md_links: {"GameHighScore": "https://core.telegram.org/bots/api#gamehighscore"},
+ ),
+ tg_doc: "https://core.telegram.org/bots/api#getgamehighscores",
+ tg_category: "Games",
+ params: [
+ Param(
+ name: "user_id",
+ ty: RawTy("UserId"),
+ descr: Doc(md: "User identifier"),
+ ),
+ Param(
+ name: "target",
+ ty: RawTy("TargetMessage"),
+ descr: Doc(md: "Target message")
+ )
+ ],
+ ),
+ ],
+ tg_categories: {
+ "Getting updates": "https://core.telegram.org/bots/api#getting-updates",
+ "Available methods": "https://core.telegram.org/bots/api#available-methods",
+ "Inline Mode": "https://core.telegram.org/bots/api#inline-mode",
+ "Updating messages": "https://core.telegram.org/bots/api#updating-messages",
+ "Stickers": "https://core.telegram.org/bots/api#stickers",
+ "Payments": "https://core.telegram.org/bots/api#payments",
+ "Telegram Passport": "https://core.telegram.org/bots/api#telegram-passport",
+ "Games": "https://core.telegram.org/bots/api#games",
+ }
+)
diff --git a/crates/teloxide-core/src/adaptors.rs b/crates/teloxide-core/src/adaptors.rs
new file mode 100644
index 00000000..c54a65ec
--- /dev/null
+++ b/crates/teloxide-core/src/adaptors.rs
@@ -0,0 +1,62 @@
+//! Wrappers altering functionality of a bot.
+//!
+//! Bot adaptors are very similar to the [`Iterator`] adaptors: they are bots
+//! wrapping other bots to alter existing or add new functionality.
+//!
+//! [`Requester`]: crate::requests::Requester
+
+/// [`AutoSend`] bot adaptor which used to allow sending a request without
+/// calling [`send`].
+///
+/// [`AutoSend`]: auto_send::AutoSend
+/// [`send`]: crate::requests::Request::send
+#[cfg(feature = "auto_send")]
+#[deprecated(
+ since = "0.8.0",
+ note = "`AutoSend` is no longer required to `.await` requests and is now noop"
+)]
+pub mod auto_send;
+
+/// [`CacheMe`] bot adaptor which caches [`GetMe`] requests.
+///
+/// [`CacheMe`]: cache_me::CacheMe
+/// [`GetMe`]: crate::payloads::GetMe
+#[cfg(feature = "cache_me")]
+pub mod cache_me;
+
+/// [`Trace`] bot adaptor which traces requests.
+///
+/// [`Trace`]: trace::Trace
+#[cfg(feature = "trace_adaptor")]
+pub mod trace;
+
+/// [`ErasedRequester`] bot adaptor which allows to erase type of
+/// [`Requester`].
+///
+/// [`ErasedRequester`]: erased::ErasedRequester
+/// [`Requester`]: crate::requests::Requester
+#[cfg(feature = "erased")]
+pub mod erased;
+
+/// [`Throttle`] bot adaptor which allows automatically throttle when hitting
+/// API limits.
+///
+/// [`Throttle`]: throttle::Throttle
+#[cfg(feature = "throttle")]
+pub mod throttle;
+
+mod parse_mode;
+
+#[cfg(feature = "auto_send")]
+#[allow(deprecated)]
+pub use auto_send::AutoSend;
+#[cfg(feature = "cache_me")]
+pub use cache_me::CacheMe;
+#[cfg(feature = "erased")]
+pub use erased::ErasedRequester;
+#[cfg(feature = "throttle")]
+pub use throttle::Throttle;
+#[cfg(feature = "trace_adaptor")]
+pub use trace::Trace;
+
+pub use parse_mode::DefaultParseMode;
diff --git a/crates/teloxide-core/src/adaptors/auto_send.rs b/crates/teloxide-core/src/adaptors/auto_send.rs
new file mode 100644
index 00000000..607d69c0
--- /dev/null
+++ b/crates/teloxide-core/src/adaptors/auto_send.rs
@@ -0,0 +1,222 @@
+use std::future::IntoFuture;
+
+use url::Url;
+
+use crate::{
+ requests::{HasPayload, Output, Request, Requester},
+ types::*,
+};
+
+/// Previously was used to send requests automatically.
+///
+/// Before addition of [`IntoFuture`] you could only `.await` [`Future`]s.
+/// This adaptor turned requests into futures, allowing to `.await` them,
+/// without calling `.send()`.
+///
+/// Now, however, all requests are required to implement `IntoFuture`, allowing
+/// you to `.await` them directly. This adaptor is noop, and shouldn't be used.
+///
+/// [`Future`]: std::future::Future
+#[derive(Clone, Debug)]
+pub struct AutoSend {
+ bot: B,
+}
+
+impl AutoSend {
+ /// Creates new `AutoSend`.
+ ///
+ /// Note: it's recommended to use [`RequesterExt::auto_send`] instead.
+ ///
+ /// [`RequesterExt::auto_send`]: crate::requests::RequesterExt::auto_send
+ pub fn new(inner: B) -> AutoSend {
+ Self { bot: inner }
+ }
+
+ /// Allows to access the inner bot.
+ pub fn inner(&self) -> &B {
+ &self.bot
+ }
+
+ /// Unwraps the inner bot.
+ pub fn into_inner(self) -> B {
+ self.bot
+ }
+}
+
+macro_rules! f {
+ ($m:ident $this:ident ($($arg:ident : $T:ty),*)) => {
+ AutoRequest::new($this.inner().$m($($arg),*))
+ };
+}
+
+macro_rules! fty {
+ ($T:ident) => {
+ AutoRequest
+ };
+}
+
+impl Requester for AutoSend
+where
+ B: Requester,
+{
+ type Err = B::Err;
+
+ requester_forward! {
+ get_me,
+ log_out,
+ close,
+ get_updates,
+ set_webhook,
+ delete_webhook,
+ get_webhook_info,
+ forward_message,
+ copy_message,
+ send_message,
+ send_photo,
+ send_audio,
+ send_document,
+ send_video,
+ send_animation,
+ send_voice,
+ send_video_note,
+ send_media_group,
+ send_location,
+ edit_message_live_location,
+ edit_message_live_location_inline,
+ stop_message_live_location,
+ stop_message_live_location_inline,
+ send_venue,
+ send_contact,
+ send_poll,
+ send_dice,
+ send_chat_action,
+ get_user_profile_photos,
+ get_file,
+ kick_chat_member,
+ ban_chat_member,
+ unban_chat_member,
+ restrict_chat_member,
+ promote_chat_member,
+ set_chat_administrator_custom_title,
+ ban_chat_sender_chat,
+ unban_chat_sender_chat,
+ set_chat_permissions,
+ export_chat_invite_link,
+ create_chat_invite_link,
+ edit_chat_invite_link,
+ revoke_chat_invite_link,
+ set_chat_photo,
+ delete_chat_photo,
+ set_chat_title,
+ set_chat_description,
+ pin_chat_message,
+ unpin_chat_message,
+ unpin_all_chat_messages,
+ leave_chat,
+ get_chat,
+ get_chat_administrators,
+ get_chat_members_count,
+ get_chat_member_count,
+ get_chat_member,
+ set_chat_sticker_set,
+ delete_chat_sticker_set,
+ answer_callback_query,
+ set_my_commands,
+ get_my_commands,
+ set_chat_menu_button,
+ get_chat_menu_button,
+ set_my_default_administrator_rights,
+ get_my_default_administrator_rights,
+ delete_my_commands,
+ answer_inline_query,
+ answer_web_app_query,
+ edit_message_text,
+ edit_message_text_inline,
+ edit_message_caption,
+ edit_message_caption_inline,
+ edit_message_media,
+ edit_message_media_inline,
+ edit_message_reply_markup,
+ edit_message_reply_markup_inline,
+ stop_poll,
+ delete_message,
+ send_sticker,
+ get_sticker_set,
+ get_custom_emoji_stickers,
+ upload_sticker_file,
+ create_new_sticker_set,
+ add_sticker_to_set,
+ set_sticker_position_in_set,
+ delete_sticker_from_set,
+ set_sticker_set_thumb,
+ send_invoice,
+ create_invoice_link,
+ answer_shipping_query,
+ answer_pre_checkout_query,
+ set_passport_data_errors,
+ send_game,
+ set_game_score,
+ set_game_score_inline,
+ get_game_high_scores,
+ approve_chat_join_request,
+ decline_chat_join_request
+ => f, fty
+ }
+}
+
+download_forward! {
+ 'w
+ B
+ AutoSend
+ { this => this.inner() }
+}
+
+#[must_use = "Futures are lazy and do nothing unless polled or awaited"]
+pub struct AutoRequest(R);
+
+impl AutoRequest
+where
+ R: Request,
+{
+ pub fn new(inner: R) -> Self {
+ Self(inner)
+ }
+}
+
+impl Request for AutoRequest
+where
+ R: Request,
+{
+ type Err = R::Err;
+ type Send = R::Send;
+ type SendRef = R::SendRef;
+
+ fn send(self) -> Self::Send {
+ self.0.send()
+ }
+
+ fn send_ref(&self) -> Self::SendRef {
+ self.0.send_ref()
+ }
+}
+
+impl IntoFuture for AutoRequest {
+ type Output = Result