telegram-bot-types 0.6.1 → 0.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (106) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +11 -1
  3. data/.travis.yml +1 -1
  4. data/CHANGELOG.md +4 -0
  5. data/Gemfile +2 -0
  6. data/Rakefile +2 -0
  7. data/bin/console +1 -0
  8. data/bin/install_git_hooks +2 -1
  9. data/lib/telegram/bot/types.rb +10 -72
  10. data/lib/telegram/bot/types/animation.rb +6 -0
  11. data/lib/telegram/bot/types/audio.rb +4 -0
  12. data/lib/telegram/bot/types/base.rb +2 -0
  13. data/lib/telegram/bot/types/callback_game.rb +2 -0
  14. data/lib/telegram/bot/types/callback_query.rb +2 -0
  15. data/lib/telegram/bot/types/chat.rb +6 -0
  16. data/lib/telegram/bot/types/chat_member.rb +8 -3
  17. data/lib/telegram/bot/types/chat_permissions.rb +18 -0
  18. data/lib/telegram/bot/types/chat_photo.rb +4 -0
  19. data/lib/telegram/bot/types/chosen_inline_result.rb +2 -0
  20. data/lib/telegram/bot/types/contact.rb +3 -0
  21. data/lib/telegram/bot/types/document.rb +3 -0
  22. data/lib/telegram/bot/types/encrypted_credentials.rb +13 -0
  23. data/lib/telegram/bot/types/encrypted_passport_element.rb +20 -0
  24. data/lib/telegram/bot/types/file.rb +3 -0
  25. data/lib/telegram/bot/types/force_reply.rb +2 -0
  26. data/lib/telegram/bot/types/game.rb +2 -0
  27. data/lib/telegram/bot/types/game_high_score.rb +2 -0
  28. data/lib/telegram/bot/types/inline_keyboard_button.rb +3 -0
  29. data/lib/telegram/bot/types/inline_keyboard_markup.rb +2 -0
  30. data/lib/telegram/bot/types/inline_query.rb +2 -0
  31. data/lib/telegram/bot/types/inline_query_result_article.rb +2 -0
  32. data/lib/telegram/bot/types/inline_query_result_audio.rb +2 -0
  33. data/lib/telegram/bot/types/inline_query_result_cached_audio.rb +2 -0
  34. data/lib/telegram/bot/types/inline_query_result_cached_document.rb +2 -0
  35. data/lib/telegram/bot/types/inline_query_result_cached_gif.rb +2 -0
  36. data/lib/telegram/bot/types/inline_query_result_cached_mpeg4_gif.rb +2 -0
  37. data/lib/telegram/bot/types/inline_query_result_cached_photo.rb +2 -0
  38. data/lib/telegram/bot/types/inline_query_result_cached_sticker.rb +2 -0
  39. data/lib/telegram/bot/types/inline_query_result_cached_video.rb +2 -0
  40. data/lib/telegram/bot/types/inline_query_result_cached_voice.rb +2 -0
  41. data/lib/telegram/bot/types/inline_query_result_contact.rb +3 -0
  42. data/lib/telegram/bot/types/inline_query_result_document.rb +2 -0
  43. data/lib/telegram/bot/types/inline_query_result_game.rb +2 -0
  44. data/lib/telegram/bot/types/inline_query_result_gif.rb +2 -0
  45. data/lib/telegram/bot/types/inline_query_result_location.rb +2 -0
  46. data/lib/telegram/bot/types/inline_query_result_mpeg4_gif.rb +2 -0
  47. data/lib/telegram/bot/types/inline_query_result_photo.rb +2 -0
  48. data/lib/telegram/bot/types/inline_query_result_venue.rb +3 -0
  49. data/lib/telegram/bot/types/inline_query_result_video.rb +2 -0
  50. data/lib/telegram/bot/types/inline_query_result_voice.rb +2 -0
  51. data/lib/telegram/bot/types/input_contact_message_content.rb +3 -0
  52. data/lib/telegram/bot/types/input_location_message_content.rb +2 -0
  53. data/lib/telegram/bot/types/input_media_animation.rb +18 -0
  54. data/lib/telegram/bot/types/input_media_audio.rb +18 -0
  55. data/lib/telegram/bot/types/input_media_document.rb +15 -0
  56. data/lib/telegram/bot/types/input_media_photo.rb +13 -0
  57. data/lib/telegram/bot/types/input_media_video.rb +17 -0
  58. data/lib/telegram/bot/types/input_message_content.rb +2 -0
  59. data/lib/telegram/bot/types/input_text_message_content.rb +2 -0
  60. data/lib/telegram/bot/types/input_venue_message_content.rb +3 -0
  61. data/lib/telegram/bot/types/invoice.rb +2 -0
  62. data/lib/telegram/bot/types/keyboard_button.rb +3 -0
  63. data/lib/telegram/bot/types/keyboard_button_poll_type.rb +11 -0
  64. data/lib/telegram/bot/types/labeled_price.rb +2 -0
  65. data/lib/telegram/bot/types/location.rb +2 -0
  66. data/lib/telegram/bot/types/login_url.rb +14 -0
  67. data/lib/telegram/bot/types/mask_position.rb +2 -0
  68. data/lib/telegram/bot/types/message.rb +10 -0
  69. data/lib/telegram/bot/types/message_entity.rb +3 -0
  70. data/lib/telegram/bot/types/order_info.rb +2 -0
  71. data/lib/telegram/bot/types/passport_data.rb +12 -0
  72. data/lib/telegram/bot/types/passport_element_error_data_field.rb +15 -0
  73. data/lib/telegram/bot/types/passport_element_error_file.rb +14 -0
  74. data/lib/telegram/bot/types/passport_element_error_files.rb +14 -0
  75. data/lib/telegram/bot/types/passport_element_error_front_side.rb +14 -0
  76. data/lib/telegram/bot/types/passport_element_error_reverse_side.rb +14 -0
  77. data/lib/telegram/bot/types/passport_element_error_selfie.rb +14 -0
  78. data/lib/telegram/bot/types/passport_element_error_translation_file.rb +14 -0
  79. data/lib/telegram/bot/types/passport_element_error_translation_files.rb +14 -0
  80. data/lib/telegram/bot/types/passport_element_error_unspecified.rb +14 -0
  81. data/lib/telegram/bot/types/passport_file.rb +14 -0
  82. data/lib/telegram/bot/types/photo_size.rb +3 -0
  83. data/lib/telegram/bot/types/poll.rb +19 -0
  84. data/lib/telegram/bot/types/poll_answer.rb +13 -0
  85. data/lib/telegram/bot/types/poll_option.rb +12 -0
  86. data/lib/telegram/bot/types/pre_checkout_query.rb +2 -0
  87. data/lib/telegram/bot/types/reply_keyboard_markup.rb +2 -0
  88. data/lib/telegram/bot/types/reply_keyboard_remove.rb +2 -0
  89. data/lib/telegram/bot/types/response.rb +2 -0
  90. data/lib/telegram/bot/types/shipping_address.rb +2 -0
  91. data/lib/telegram/bot/types/shipping_option.rb +2 -0
  92. data/lib/telegram/bot/types/shipping_query.rb +2 -0
  93. data/lib/telegram/bot/types/sticker.rb +4 -0
  94. data/lib/telegram/bot/types/sticker_set.rb +3 -0
  95. data/lib/telegram/bot/types/successful_payment.rb +2 -0
  96. data/lib/telegram/bot/types/update.rb +4 -0
  97. data/lib/telegram/bot/types/user.rb +5 -0
  98. data/lib/telegram/bot/types/user_profile_photos.rb +2 -0
  99. data/lib/telegram/bot/types/venue.rb +3 -0
  100. data/lib/telegram/bot/types/version.rb +3 -1
  101. data/lib/telegram/bot/types/video.rb +3 -0
  102. data/lib/telegram/bot/types/video_note.rb +3 -0
  103. data/lib/telegram/bot/types/voice.rb +3 -0
  104. data/lib/telegram/bot/types/webhook_info.rb +4 -2
  105. data/telegram-bot-types.gemspec +5 -3
  106. metadata +31 -8
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -7,6 +9,7 @@ module Telegram
7
9
  attribute :phone_number, String
8
10
  attribute :first_name, String
9
11
  attribute :last_name, String
12
+ attribute :vcard, String
10
13
  attribute :reply_markup, InlineKeyboardMarkup
11
14
  attribute :input_message_content, InputMessageContent
12
15
  attribute :thumb_url, String
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -9,6 +11,7 @@ module Telegram
9
11
  attribute :title, String
10
12
  attribute :address, String
11
13
  attribute :foursquare_id, String
14
+ attribute :foursquare_type, String
12
15
  attribute :reply_markup, InlineKeyboardMarkup
13
16
  attribute :input_message_content, InputMessageContent
14
17
  attribute :thumb_url, String
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -5,6 +7,7 @@ module Telegram
5
7
  attribute :phone_number, String
6
8
  attribute :first_name, String
7
9
  attribute :last_name, String
10
+ attribute :vcard, String
8
11
  end
9
12
  end
10
13
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Telegram
4
+ module Bot
5
+ module Types
6
+ class InputMediaAnimation < Base
7
+ attribute :type, String, default: 'animation'
8
+ attribute :media, String
9
+ attribute :thumb, String
10
+ attribute :caption, String
11
+ attribute :parse_mode, String
12
+ attribute :width, Integer
13
+ attribute :height, Integer
14
+ attribute :duration, Integer
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Telegram
4
+ module Bot
5
+ module Types
6
+ class InputMediaAudio < Base
7
+ attribute :type, String, default: 'audio'
8
+ attribute :media, String
9
+ attribute :thumb, String
10
+ attribute :caption, String
11
+ attribute :parse_mode, String
12
+ attribute :duration, Integer
13
+ attribute :performer, String
14
+ attribute :title, String
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Telegram
4
+ module Bot
5
+ module Types
6
+ class InputMediaDocument < Base
7
+ attribute :type, String, default: 'document'
8
+ attribute :media, String
9
+ attribute :thumb, String
10
+ attribute :caption, String
11
+ attribute :parse_mode, String
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Telegram
4
+ module Bot
5
+ module Types
6
+ class InputMediaPhoto < Base
7
+ attribute :type, String, default: 'photo'
8
+ attribute :media, String
9
+ attribute :caption, String
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Telegram
4
+ module Bot
5
+ module Types
6
+ class InputMediaVideo < Base
7
+ attribute :type, String, default: 'video'
8
+ attribute :media, String
9
+ attribute :caption, String
10
+ attribute :width, Integer
11
+ attribute :height, Integer
12
+ attribute :duration, Integer
13
+ attribute :supports_streaming, Boolean
14
+ end
15
+ end
16
+ end
17
+ end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -7,6 +9,7 @@ module Telegram
7
9
  attribute :title, String
8
10
  attribute :address, String
9
11
  attribute :foursquare_id, String
12
+ attribute :foursquare_type, String
10
13
  end
11
14
  end
12
15
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -5,6 +7,7 @@ module Telegram
5
7
  attribute :text, String
6
8
  attribute :request_contact, Boolean
7
9
  attribute :request_location, Boolean
10
+ attribute :request_poll, KeyboardButtonPollType
8
11
  end
9
12
  end
10
13
  end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Telegram
4
+ module Bot
5
+ module Types
6
+ class KeyboardButtonPollType < Base
7
+ attribute :type, String
8
+ end
9
+ end
10
+ end
11
+ end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Telegram
4
+ module Bot
5
+ module Types
6
+ class LoginUrl < Base
7
+ attribute :url, String
8
+ attribute :forward_text, String
9
+ attribute :bot_username, String
10
+ attribute :request_write_access, Boolean
11
+ end
12
+ end
13
+ end
14
+ end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -10,14 +12,18 @@ module Telegram
10
12
  attribute :forward_from_chat, Chat
11
13
  attribute :forward_from_message_id, Integer
12
14
  attribute :forward_signature, String
15
+ attribute :forward_sender_name, String
13
16
  attribute :forward_date, Integer
14
17
  attribute :reply_to_message, Message
15
18
  attribute :edit_date, Integer
19
+ attribute :media_group_id, String
16
20
  attribute :author_signature, String
17
21
  attribute :text, String
18
22
  attribute :entities, [MessageEntity]
23
+ attribute :caption_entities, [MessageEntity]
19
24
  attribute :audio, Audio
20
25
  attribute :document, Document
26
+ attribute :animation, Animation
21
27
  attribute :game, Game
22
28
  attribute :photo, [PhotoSize]
23
29
  attribute :sticker, Sticker
@@ -28,6 +34,7 @@ module Telegram
28
34
  attribute :contact, Contact
29
35
  attribute :location, Location
30
36
  attribute :venue, Venue
37
+ attribute :poll, Poll
31
38
  attribute :new_chat_members, [User]
32
39
  attribute :left_chat_member, User
33
40
  attribute :new_chat_title, String
@@ -41,6 +48,9 @@ module Telegram
41
48
  attribute :pinned_message, Message
42
49
  attribute :invoice, Invoice
43
50
  attribute :successful_payment, SuccessfulPayment
51
+ attribute :connected_website, String
52
+ attribute :passport_data, PassportData
53
+ attribute :reply_markup, InlineKeyboardMarkup
44
54
 
45
55
  alias_method :to_s, :text
46
56
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -7,6 +9,7 @@ module Telegram
7
9
  attribute :length, Integer
8
10
  attribute :url, String
9
11
  attribute :user, User
12
+ attribute :language, String
10
13
  end
11
14
  end
12
15
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Telegram
2
4
  module Bot
3
5
  module Types
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Telegram
4
+ module Bot
5
+ module Types
6
+ class PassportData < Base
7
+ attribute :data, [EncryptedPassportElement]
8
+ attribute :credentials, EncryptedCredentials
9
+ end
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Telegram
4
+ module Bot
5
+ module Types
6
+ class PassportElementErrorDataField < Base
7
+ attribute :source, String, default: 'data'
8
+ attribute :type, String
9
+ attribute :field_name, String
10
+ attribute :data_hash, String
11
+ attribute :message, String
12
+ end
13
+ end
14
+ end
15
+ end