From 9dab5f97fb1e5fb54f79f6ebbbdf29d410c73bad Mon Sep 17 00:00:00 2001 From: Denis Date: Sat, 19 Jul 2025 17:00:45 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5=D0=BD?= =?UTF-8?q?=D1=8B=20=D0=B8=D0=BC=D0=BF=D0=BE=D1=80=D1=82=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- maxapi/types/__init__.py | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/maxapi/types/__init__.py b/maxapi/types/__init__.py index 7d81881..18f18b9 100644 --- a/maxapi/types/__init__.py +++ b/maxapi/types/__init__.py @@ -11,6 +11,7 @@ from ..types.updates.user_added import UserAdded from ..types.updates.user_removed import UserRemoved from ..types.updates import UpdateUnion +from ..types.attachments.attachment import Attachment from ..types.attachments.attachment import PhotoAttachmentPayload from ..types.attachments.attachment import OtherAttachmentPayload from ..types.attachments.attachment import ContactAttachmentPayload @@ -19,23 +20,31 @@ from ..types.attachments.attachment import StickerAttachmentPayload from ..types.attachments.buttons.callback_button import CallbackButton from ..types.attachments.buttons.chat_button import ChatButton from ..types.attachments.buttons.link_button import LinkButton -from ..types.attachments.buttons.request_contact import RequestContact +from ..types.attachments.buttons.request_contact import RequestContactButton +from ..types.attachments.buttons.open_app_button import OpenAppButton from ..types.attachments.buttons.request_geo_location_button import RequestGeoLocationButton +from ..types.attachments.buttons.message_button import MessageButton from ..types.message import Message -from ..types.command import Command, BotCommand +from ..types.command import Command, BotCommand, CommandStart from .input_media import InputMedia from .input_media import InputMediaBuffer __all__ = [ + CommandStart, + OpenAppButton, + Message, + Attachment, + InputMediaBuffer, + MessageButton, UpdateUnion, InputMedia, BotCommand, CallbackButton, ChatButton, LinkButton, - RequestContact, + RequestContactButton, RequestGeoLocationButton, Command, PhotoAttachmentPayload,