telegram-types 0.2.0 → 0.2.1
raw patch · 2 files changed
+5/−4 lines, 2 files
Files
- src/Web/Telegram/Types.hs +3/−2
- telegram-types.cabal +2/−2
src/Web/Telegram/Types.hs view
@@ -1,6 +1,6 @@ {-# LANGUAGE DataKinds #-}-{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DeriveAnyClass #-}+{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DerivingVia #-} module Web.Telegram.Types@@ -19,6 +19,7 @@ Chat (..), ChatPermissions (..), ChatPhoto (..),+ ChatStatus (..), ChatMember (..), -- ** Media Types@@ -92,11 +93,11 @@ import Deriving.Aeson import Servant.API import Web.Telegram.Types.Internal.Common+import Web.Telegram.Types.Internal.InputMedia import Web.Telegram.Types.Internal.Media import Web.Telegram.Types.Internal.Sticker import Web.Telegram.Types.Internal.User import Web.Telegram.Types.Internal.Utils-import Web.Telegram.Types.Internal.InputMedia data ChatId = ChatId Integer
telegram-types.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 1be5360a189c397c80b5940e0650cf2b4f0e99d01a774a73c7070823db8e1abd+-- hash: 738f31baf7fda44bdbce8e3198f25eb3b73be9e115fc1b66da3f88180c31f8d4 name: telegram-types-version: 0.2.0+version: 0.2.1 synopsis: Types used in Telegram bot API description: Defines various datatypes and their serialization methods useful for writing bindings to Telegram bot API. category: Web