Add support for ShippingQuery events

This commit is contained in:
netkas 2024-11-01 21:50:21 -04:00
parent f1342e3f42
commit e843c8ca4f
3 changed files with 37 additions and 0 deletions

View file

@ -12,6 +12,7 @@
use TgBotLib\Events\PaidMediaPurchasedEvent;
use TgBotLib\Events\PreCheckoutQueryEvent;
use TgBotLib\Events\RemovedChatBoostEvent;
use TgBotLib\Events\ShippingQueryEvent;
enum UpdateEventType : string
{
@ -25,4 +26,5 @@
case POLL = PollEvent::class;
case PAID_MEDIA_PURCHASED = PaidMediaPurchasedEvent::class;
case PRE_CHECKOUT_QUERY = PreCheckoutQueryEvent::class;
case SHIPPING_QUERY = ShippingQueryEvent::class;
}