@mtkruto/node 0.1.131 → 0.1.133

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 (564) hide show
  1. package/esm/0_deps.d.ts +4 -4
  2. package/esm/0_deps.js +5 -5
  3. package/esm/3_types.d.ts +5 -0
  4. package/esm/3_types.js +5 -0
  5. package/esm/4_constants.d.ts +2 -2
  6. package/esm/4_constants.js +2 -2
  7. package/esm/client/0_utilities.d.ts +3 -3
  8. package/esm/client/0_utilities.js +3 -5
  9. package/esm/client/3_types.d.ts +69 -459
  10. package/esm/client/4_composer.d.ts +4 -4
  11. package/esm/client/4_composer.js +13 -1
  12. package/esm/client/5_client.d.ts +56 -36
  13. package/esm/client/5_client.js +235 -196
  14. package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/encoding/base64.d.ts +0 -13
  15. package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/encoding/base64.js +0 -13
  16. package/esm/deps/deno.land/std@0.210.0/path/common.d.ts +13 -0
  17. package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/extname.js +1 -1
  18. package/{script/deps/deno.land/std@0.209.0 → esm/deps/deno.land/std@0.210.0}/path/mod.d.ts +2 -2
  19. package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/mod.js +3 -1
  20. package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/separator.d.ts +1 -1
  21. package/esm/tl/2_types.d.ts +313 -24
  22. package/esm/tl/2_types.js +982 -46
  23. package/esm/tl/3_functions.d.ts +95 -32
  24. package/esm/tl/3_functions.js +227 -66
  25. package/esm/types/0_chat_photo.d.ts +22 -21
  26. package/esm/types/0_giveaway_parameters.d.ts +9 -0
  27. package/esm/types/0_giveaway_parameters.js +9 -0
  28. package/esm/types/0_message_entity.d.ts +93 -74
  29. package/esm/types/0_reaction.d.ts +14 -0
  30. package/esm/types/0_reaction.js +16 -0
  31. package/esm/types/1_bot_command_scope.d.ts +32 -27
  32. package/esm/types/1_chat_p.d.ts +76 -68
  33. package/esm/types/1_giveaway.d.ts +8 -0
  34. package/esm/types/1_giveaway.js +7 -0
  35. package/esm/types/1_keyboard_button.d.ts +62 -56
  36. package/esm/types/1_keyboard_button.js +3 -0
  37. package/esm/types/1_message_reaction.d.ts +14 -0
  38. package/esm/types/1_message_reaction.js +22 -0
  39. package/esm/types/1_reply_quote.d.ts +8 -0
  40. package/esm/types/1_reply_quote.js +11 -0
  41. package/esm/types/1_user.d.ts +2 -2
  42. package/esm/types/2_inline_keyboard_button.d.ts +44 -37
  43. package/esm/types/3_message.d.ts +171 -112
  44. package/esm/types/3_message.js +221 -120
  45. package/esm/types/4_chat.d.ts +32 -29
  46. package/package.json +1 -1
  47. package/script/0_deps.d.ts +4 -4
  48. package/script/0_deps.js +5 -5
  49. package/script/3_types.d.ts +5 -0
  50. package/script/3_types.js +5 -0
  51. package/script/4_constants.d.ts +2 -2
  52. package/script/4_constants.js +2 -2
  53. package/script/client/0_utilities.d.ts +3 -3
  54. package/script/client/0_utilities.js +3 -5
  55. package/script/client/3_types.d.ts +69 -459
  56. package/script/client/4_composer.d.ts +4 -4
  57. package/script/client/4_composer.js +13 -1
  58. package/script/client/5_client.d.ts +56 -36
  59. package/script/client/5_client.js +234 -195
  60. package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/encoding/base64.d.ts +0 -13
  61. package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/encoding/base64.js +1 -14
  62. package/script/deps/deno.land/std@0.210.0/path/common.d.ts +13 -0
  63. package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/extname.js +1 -1
  64. package/{esm/deps/deno.land/std@0.209.0 → script/deps/deno.land/std@0.210.0}/path/mod.d.ts +2 -2
  65. package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/mod.js +3 -1
  66. package/script/deps/deno.land/std@0.210.0/path/separator.d.ts +2 -0
  67. package/script/tl/2_types.d.ts +313 -24
  68. package/script/tl/2_types.js +1169 -217
  69. package/script/tl/3_functions.d.ts +95 -32
  70. package/script/tl/3_functions.js +241 -77
  71. package/script/types/0_chat_photo.d.ts +22 -21
  72. package/script/types/0_giveaway_parameters.d.ts +9 -0
  73. package/script/types/0_giveaway_parameters.js +13 -0
  74. package/script/types/0_message_entity.d.ts +93 -74
  75. package/script/types/0_reaction.d.ts +14 -0
  76. package/script/types/0_reaction.js +21 -0
  77. package/script/types/1_bot_command_scope.d.ts +32 -27
  78. package/script/types/1_chat_p.d.ts +76 -68
  79. package/script/types/1_giveaway.d.ts +8 -0
  80. package/script/types/1_giveaway.js +11 -0
  81. package/script/types/1_keyboard_button.d.ts +62 -56
  82. package/script/types/1_keyboard_button.js +3 -0
  83. package/script/types/1_message_reaction.d.ts +14 -0
  84. package/script/types/1_message_reaction.js +26 -0
  85. package/script/types/1_reply_quote.d.ts +8 -0
  86. package/script/types/1_reply_quote.js +15 -0
  87. package/script/types/1_user.d.ts +2 -2
  88. package/script/types/2_inline_keyboard_button.d.ts +44 -37
  89. package/script/types/3_message.d.ts +171 -112
  90. package/script/types/3_message.js +223 -121
  91. package/script/types/4_chat.d.ts +32 -29
  92. package/script/deps/deno.land/std@0.209.0/path/posix/common.d.ts +0 -13
  93. package/script/deps/deno.land/std@0.209.0/path/separator.d.ts +0 -2
  94. package/script/deps/deno.land/std@0.209.0/path/windows/common.d.ts +0 -13
  95. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/_constants.d.ts +0 -0
  96. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/_constants.js +0 -0
  97. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/_diff.d.ts +0 -0
  98. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/_diff.js +0 -0
  99. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/_format.d.ts +0 -0
  100. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/_format.js +0 -0
  101. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert.d.ts +0 -0
  102. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert.js +0 -0
  103. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_almost_equals.d.ts +0 -0
  104. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_almost_equals.js +0 -0
  105. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_array_includes.d.ts +0 -0
  106. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_array_includes.js +0 -0
  107. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_equals.d.ts +0 -0
  108. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_equals.js +0 -0
  109. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_exists.d.ts +0 -0
  110. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_exists.js +0 -0
  111. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_false.d.ts +0 -0
  112. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_false.js +0 -0
  113. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_greater.d.ts +0 -0
  114. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_greater.js +0 -0
  115. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_greater_or_equal.d.ts +0 -0
  116. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_greater_or_equal.js +0 -0
  117. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_instance_of.d.ts +0 -0
  118. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_instance_of.js +0 -0
  119. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_is_error.d.ts +0 -0
  120. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_is_error.js +0 -0
  121. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_less.d.ts +0 -0
  122. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_less.js +0 -0
  123. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_less_or_equal.d.ts +0 -0
  124. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_less_or_equal.js +0 -0
  125. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_match.d.ts +0 -0
  126. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_match.js +0 -0
  127. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_not_equals.d.ts +0 -0
  128. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_not_equals.js +0 -0
  129. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_not_instance_of.d.ts +0 -0
  130. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_not_instance_of.js +0 -0
  131. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_not_match.d.ts +0 -0
  132. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_not_match.js +0 -0
  133. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_not_strict_equals.d.ts +0 -0
  134. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_not_strict_equals.js +0 -0
  135. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_object_match.d.ts +0 -0
  136. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_object_match.js +0 -0
  137. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_rejects.d.ts +0 -0
  138. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_rejects.js +0 -0
  139. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_strict_equals.d.ts +0 -0
  140. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_strict_equals.js +0 -0
  141. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_string_includes.d.ts +0 -0
  142. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_string_includes.js +0 -0
  143. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_throws.d.ts +0 -0
  144. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_throws.js +0 -0
  145. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assertion_error.d.ts +0 -0
  146. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assertion_error.js +0 -0
  147. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/equal.d.ts +0 -0
  148. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/equal.js +0 -0
  149. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/fail.d.ts +0 -0
  150. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/fail.js +0 -0
  151. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/mod.d.ts +0 -0
  152. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/mod.js +0 -0
  153. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/unimplemented.d.ts +0 -0
  154. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/unimplemented.js +0 -0
  155. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/unreachable.d.ts +0 -0
  156. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/unreachable.js +0 -0
  157. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/encoding/_util.d.ts +0 -0
  158. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/encoding/_util.js +0 -0
  159. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/fmt/colors.d.ts +0 -0
  160. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/fmt/colors.js +0 -0
  161. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/_db.d.ts +0 -0
  162. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/_db.js +0 -0
  163. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/_util.d.ts +0 -0
  164. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/_util.js +0 -0
  165. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/content_type.d.ts +0 -0
  166. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/content_type.js +0 -0
  167. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/extension.d.ts +0 -0
  168. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/extension.js +0 -0
  169. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/extensions_by_type.d.ts +0 -0
  170. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/extensions_by_type.js +0 -0
  171. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/format_media_type.d.ts +0 -0
  172. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/format_media_type.js +0 -0
  173. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/get_charset.d.ts +0 -0
  174. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/get_charset.js +0 -0
  175. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/parse_media_type.d.ts +0 -0
  176. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/parse_media_type.js +0 -0
  177. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/type_by_extension.d.ts +0 -0
  178. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/type_by_extension.js +0 -0
  179. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/vendor/mime-db.v1.52.0.d.ts +0 -0
  180. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/vendor/mime-db.v1.52.0.js +0 -0
  181. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/assert_path.d.ts +0 -0
  182. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/assert_path.js +0 -0
  183. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/basename.d.ts +0 -0
  184. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/basename.js +0 -0
  185. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/common.d.ts +0 -0
  186. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/common.js +0 -0
  187. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/constants.d.ts +0 -0
  188. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/constants.js +0 -0
  189. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/dirname.d.ts +0 -0
  190. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/dirname.js +0 -0
  191. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/format.d.ts +0 -0
  192. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/format.js +0 -0
  193. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/from_file_url.d.ts +0 -0
  194. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/from_file_url.js +0 -0
  195. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/glob_to_reg_exp.d.ts +0 -0
  196. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/glob_to_reg_exp.js +0 -0
  197. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/normalize.d.ts +0 -0
  198. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/normalize.js +0 -0
  199. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/normalize_string.d.ts +0 -0
  200. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/normalize_string.js +0 -0
  201. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/relative.d.ts +0 -0
  202. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/relative.js +0 -0
  203. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/strip_trailing_separators.d.ts +0 -0
  204. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/strip_trailing_separators.js +0 -0
  205. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/to_file_url.d.ts +0 -0
  206. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/to_file_url.js +0 -0
  207. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_interface.d.ts +0 -0
  208. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_interface.js +0 -0
  209. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_os.d.ts +0 -0
  210. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_os.js +0 -0
  211. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/basename.d.ts +0 -0
  212. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/basename.js +0 -0
  213. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/common.js +0 -0
  214. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/dirname.d.ts +0 -0
  215. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/dirname.js +0 -0
  216. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/extname.d.ts +0 -0
  217. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/format.d.ts +0 -0
  218. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/format.js +0 -0
  219. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/from_file_url.d.ts +0 -0
  220. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/from_file_url.js +0 -0
  221. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/glob_to_regexp.d.ts +0 -0
  222. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/glob_to_regexp.js +0 -0
  223. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/is_absolute.d.ts +0 -0
  224. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/is_absolute.js +0 -0
  225. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/is_glob.d.ts +0 -0
  226. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/is_glob.js +0 -0
  227. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/join.d.ts +0 -0
  228. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/join.js +0 -0
  229. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/join_globs.d.ts +0 -0
  230. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/join_globs.js +0 -0
  231. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/normalize.d.ts +0 -0
  232. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/normalize.js +0 -0
  233. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/normalize_glob.d.ts +0 -0
  234. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/normalize_glob.js +0 -0
  235. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/parse.d.ts +0 -0
  236. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/parse.js +0 -0
  237. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/_util.d.ts +0 -0
  238. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/_util.js +0 -0
  239. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/basename.d.ts +0 -0
  240. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/basename.js +0 -0
  241. /package/esm/deps/deno.land/{std@0.209.0/path → std@0.210.0/path/posix}/common.d.ts +0 -0
  242. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/common.js +0 -0
  243. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/dirname.d.ts +0 -0
  244. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/dirname.js +0 -0
  245. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/extname.d.ts +0 -0
  246. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/extname.js +0 -0
  247. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/format.d.ts +0 -0
  248. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/format.js +0 -0
  249. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/from_file_url.d.ts +0 -0
  250. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/from_file_url.js +0 -0
  251. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/glob_to_regexp.d.ts +0 -0
  252. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/glob_to_regexp.js +0 -0
  253. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/is_absolute.d.ts +0 -0
  254. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/is_absolute.js +0 -0
  255. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/is_glob.d.ts +0 -0
  256. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/is_glob.js +0 -0
  257. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/join.d.ts +0 -0
  258. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/join.js +0 -0
  259. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/join_globs.d.ts +0 -0
  260. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/join_globs.js +0 -0
  261. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/mod.d.ts +0 -0
  262. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/mod.js +0 -0
  263. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/normalize.d.ts +0 -0
  264. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/normalize.js +0 -0
  265. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/normalize_glob.d.ts +0 -0
  266. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/normalize_glob.js +0 -0
  267. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/parse.d.ts +0 -0
  268. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/parse.js +0 -0
  269. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/relative.d.ts +0 -0
  270. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/relative.js +0 -0
  271. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/resolve.d.ts +0 -0
  272. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/resolve.js +0 -0
  273. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/separator.d.ts +0 -0
  274. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/separator.js +0 -0
  275. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/to_file_url.d.ts +0 -0
  276. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/to_file_url.js +0 -0
  277. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/to_namespaced_path.d.ts +0 -0
  278. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/to_namespaced_path.js +0 -0
  279. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/relative.d.ts +0 -0
  280. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/relative.js +0 -0
  281. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/resolve.d.ts +0 -0
  282. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/resolve.js +0 -0
  283. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/separator.js +0 -0
  284. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/to_file_url.d.ts +0 -0
  285. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/to_file_url.js +0 -0
  286. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/to_namespaced_path.d.ts +0 -0
  287. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/to_namespaced_path.js +0 -0
  288. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/_util.d.ts +0 -0
  289. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/_util.js +0 -0
  290. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/basename.d.ts +0 -0
  291. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/basename.js +0 -0
  292. /package/esm/deps/deno.land/{std@0.209.0/path/posix → std@0.210.0/path/windows}/common.d.ts +0 -0
  293. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/common.js +0 -0
  294. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/dirname.d.ts +0 -0
  295. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/dirname.js +0 -0
  296. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/extname.d.ts +0 -0
  297. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/extname.js +0 -0
  298. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/format.d.ts +0 -0
  299. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/format.js +0 -0
  300. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/from_file_url.d.ts +0 -0
  301. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/from_file_url.js +0 -0
  302. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/glob_to_regexp.d.ts +0 -0
  303. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/glob_to_regexp.js +0 -0
  304. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/is_absolute.d.ts +0 -0
  305. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/is_absolute.js +0 -0
  306. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/is_glob.d.ts +0 -0
  307. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/is_glob.js +0 -0
  308. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/join.d.ts +0 -0
  309. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/join.js +0 -0
  310. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/join_globs.d.ts +0 -0
  311. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/join_globs.js +0 -0
  312. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/mod.d.ts +0 -0
  313. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/mod.js +0 -0
  314. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/normalize.d.ts +0 -0
  315. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/normalize.js +0 -0
  316. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/normalize_glob.d.ts +0 -0
  317. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/normalize_glob.js +0 -0
  318. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/parse.d.ts +0 -0
  319. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/parse.js +0 -0
  320. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/relative.d.ts +0 -0
  321. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/relative.js +0 -0
  322. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/resolve.d.ts +0 -0
  323. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/resolve.js +0 -0
  324. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/separator.d.ts +0 -0
  325. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/separator.js +0 -0
  326. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/to_file_url.d.ts +0 -0
  327. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/to_file_url.js +0 -0
  328. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/to_namespaced_path.d.ts +0 -0
  329. /package/esm/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/to_namespaced_path.js +0 -0
  330. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/_constants.d.ts +0 -0
  331. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/_constants.js +0 -0
  332. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/_diff.d.ts +0 -0
  333. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/_diff.js +0 -0
  334. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/_format.d.ts +0 -0
  335. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/_format.js +0 -0
  336. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert.d.ts +0 -0
  337. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert.js +0 -0
  338. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_almost_equals.d.ts +0 -0
  339. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_almost_equals.js +0 -0
  340. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_array_includes.d.ts +0 -0
  341. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_array_includes.js +0 -0
  342. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_equals.d.ts +0 -0
  343. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_equals.js +0 -0
  344. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_exists.d.ts +0 -0
  345. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_exists.js +0 -0
  346. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_false.d.ts +0 -0
  347. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_false.js +0 -0
  348. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_greater.d.ts +0 -0
  349. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_greater.js +0 -0
  350. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_greater_or_equal.d.ts +0 -0
  351. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_greater_or_equal.js +0 -0
  352. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_instance_of.d.ts +0 -0
  353. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_instance_of.js +0 -0
  354. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_is_error.d.ts +0 -0
  355. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_is_error.js +0 -0
  356. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_less.d.ts +0 -0
  357. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_less.js +0 -0
  358. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_less_or_equal.d.ts +0 -0
  359. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_less_or_equal.js +0 -0
  360. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_match.d.ts +0 -0
  361. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_match.js +0 -0
  362. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_not_equals.d.ts +0 -0
  363. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_not_equals.js +0 -0
  364. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_not_instance_of.d.ts +0 -0
  365. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_not_instance_of.js +0 -0
  366. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_not_match.d.ts +0 -0
  367. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_not_match.js +0 -0
  368. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_not_strict_equals.d.ts +0 -0
  369. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_not_strict_equals.js +0 -0
  370. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_object_match.d.ts +0 -0
  371. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_object_match.js +0 -0
  372. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_rejects.d.ts +0 -0
  373. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_rejects.js +0 -0
  374. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_strict_equals.d.ts +0 -0
  375. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_strict_equals.js +0 -0
  376. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_string_includes.d.ts +0 -0
  377. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_string_includes.js +0 -0
  378. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_throws.d.ts +0 -0
  379. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assert_throws.js +0 -0
  380. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assertion_error.d.ts +0 -0
  381. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/assertion_error.js +0 -0
  382. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/equal.d.ts +0 -0
  383. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/equal.js +0 -0
  384. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/fail.d.ts +0 -0
  385. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/fail.js +0 -0
  386. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/mod.d.ts +0 -0
  387. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/mod.js +0 -0
  388. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/unimplemented.d.ts +0 -0
  389. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/unimplemented.js +0 -0
  390. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/unreachable.d.ts +0 -0
  391. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/assert/unreachable.js +0 -0
  392. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/encoding/_util.d.ts +0 -0
  393. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/encoding/_util.js +0 -0
  394. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/fmt/colors.d.ts +0 -0
  395. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/fmt/colors.js +0 -0
  396. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/_db.d.ts +0 -0
  397. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/_db.js +0 -0
  398. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/_util.d.ts +0 -0
  399. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/_util.js +0 -0
  400. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/content_type.d.ts +0 -0
  401. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/content_type.js +0 -0
  402. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/extension.d.ts +0 -0
  403. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/extension.js +0 -0
  404. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/extensions_by_type.d.ts +0 -0
  405. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/extensions_by_type.js +0 -0
  406. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/format_media_type.d.ts +0 -0
  407. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/format_media_type.js +0 -0
  408. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/get_charset.d.ts +0 -0
  409. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/get_charset.js +0 -0
  410. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/parse_media_type.d.ts +0 -0
  411. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/parse_media_type.js +0 -0
  412. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/type_by_extension.d.ts +0 -0
  413. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/type_by_extension.js +0 -0
  414. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/vendor/mime-db.v1.52.0.d.ts +0 -0
  415. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/media_types/vendor/mime-db.v1.52.0.js +0 -0
  416. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/assert_path.d.ts +0 -0
  417. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/assert_path.js +0 -0
  418. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/basename.d.ts +0 -0
  419. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/basename.js +0 -0
  420. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/common.d.ts +0 -0
  421. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/common.js +0 -0
  422. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/constants.d.ts +0 -0
  423. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/constants.js +0 -0
  424. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/dirname.d.ts +0 -0
  425. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/dirname.js +0 -0
  426. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/format.d.ts +0 -0
  427. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/format.js +0 -0
  428. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/from_file_url.d.ts +0 -0
  429. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/from_file_url.js +0 -0
  430. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/glob_to_reg_exp.d.ts +0 -0
  431. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/glob_to_reg_exp.js +0 -0
  432. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/normalize.d.ts +0 -0
  433. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/normalize.js +0 -0
  434. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/normalize_string.d.ts +0 -0
  435. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/normalize_string.js +0 -0
  436. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/relative.d.ts +0 -0
  437. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/relative.js +0 -0
  438. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/strip_trailing_separators.d.ts +0 -0
  439. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/strip_trailing_separators.js +0 -0
  440. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/to_file_url.d.ts +0 -0
  441. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_common/to_file_url.js +0 -0
  442. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_interface.d.ts +0 -0
  443. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_interface.js +0 -0
  444. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_os.d.ts +0 -0
  445. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/_os.js +0 -0
  446. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/basename.d.ts +0 -0
  447. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/basename.js +0 -0
  448. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/common.js +0 -0
  449. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/dirname.d.ts +0 -0
  450. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/dirname.js +0 -0
  451. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/extname.d.ts +0 -0
  452. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/format.d.ts +0 -0
  453. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/format.js +0 -0
  454. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/from_file_url.d.ts +0 -0
  455. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/from_file_url.js +0 -0
  456. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/glob_to_regexp.d.ts +0 -0
  457. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/glob_to_regexp.js +0 -0
  458. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/is_absolute.d.ts +0 -0
  459. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/is_absolute.js +0 -0
  460. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/is_glob.d.ts +0 -0
  461. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/is_glob.js +0 -0
  462. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/join.d.ts +0 -0
  463. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/join.js +0 -0
  464. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/join_globs.d.ts +0 -0
  465. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/join_globs.js +0 -0
  466. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/normalize.d.ts +0 -0
  467. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/normalize.js +0 -0
  468. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/normalize_glob.d.ts +0 -0
  469. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/normalize_glob.js +0 -0
  470. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/parse.d.ts +0 -0
  471. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/parse.js +0 -0
  472. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/_util.d.ts +0 -0
  473. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/_util.js +0 -0
  474. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/basename.d.ts +0 -0
  475. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/basename.js +0 -0
  476. /package/{esm/deps/deno.land/std@0.209.0/path/windows → script/deps/deno.land/std@0.210.0/path/posix}/common.d.ts +0 -0
  477. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/common.js +0 -0
  478. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/dirname.d.ts +0 -0
  479. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/dirname.js +0 -0
  480. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/extname.d.ts +0 -0
  481. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/extname.js +0 -0
  482. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/format.d.ts +0 -0
  483. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/format.js +0 -0
  484. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/from_file_url.d.ts +0 -0
  485. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/from_file_url.js +0 -0
  486. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/glob_to_regexp.d.ts +0 -0
  487. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/glob_to_regexp.js +0 -0
  488. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/is_absolute.d.ts +0 -0
  489. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/is_absolute.js +0 -0
  490. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/is_glob.d.ts +0 -0
  491. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/is_glob.js +0 -0
  492. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/join.d.ts +0 -0
  493. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/join.js +0 -0
  494. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/join_globs.d.ts +0 -0
  495. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/join_globs.js +0 -0
  496. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/mod.d.ts +0 -0
  497. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/mod.js +0 -0
  498. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/normalize.d.ts +0 -0
  499. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/normalize.js +0 -0
  500. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/normalize_glob.d.ts +0 -0
  501. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/normalize_glob.js +0 -0
  502. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/parse.d.ts +0 -0
  503. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/parse.js +0 -0
  504. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/relative.d.ts +0 -0
  505. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/relative.js +0 -0
  506. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/resolve.d.ts +0 -0
  507. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/resolve.js +0 -0
  508. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/separator.d.ts +0 -0
  509. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/separator.js +0 -0
  510. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/to_file_url.d.ts +0 -0
  511. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/to_file_url.js +0 -0
  512. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/to_namespaced_path.d.ts +0 -0
  513. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/posix/to_namespaced_path.js +0 -0
  514. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/relative.d.ts +0 -0
  515. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/relative.js +0 -0
  516. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/resolve.d.ts +0 -0
  517. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/resolve.js +0 -0
  518. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/separator.js +0 -0
  519. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/to_file_url.d.ts +0 -0
  520. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/to_file_url.js +0 -0
  521. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/to_namespaced_path.d.ts +0 -0
  522. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/to_namespaced_path.js +0 -0
  523. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/_util.d.ts +0 -0
  524. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/_util.js +0 -0
  525. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/basename.d.ts +0 -0
  526. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/basename.js +0 -0
  527. /package/script/deps/deno.land/{std@0.209.0/path → std@0.210.0/path/windows}/common.d.ts +0 -0
  528. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/common.js +0 -0
  529. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/dirname.d.ts +0 -0
  530. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/dirname.js +0 -0
  531. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/extname.d.ts +0 -0
  532. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/extname.js +0 -0
  533. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/format.d.ts +0 -0
  534. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/format.js +0 -0
  535. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/from_file_url.d.ts +0 -0
  536. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/from_file_url.js +0 -0
  537. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/glob_to_regexp.d.ts +0 -0
  538. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/glob_to_regexp.js +0 -0
  539. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/is_absolute.d.ts +0 -0
  540. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/is_absolute.js +0 -0
  541. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/is_glob.d.ts +0 -0
  542. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/is_glob.js +0 -0
  543. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/join.d.ts +0 -0
  544. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/join.js +0 -0
  545. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/join_globs.d.ts +0 -0
  546. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/join_globs.js +0 -0
  547. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/mod.d.ts +0 -0
  548. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/mod.js +0 -0
  549. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/normalize.d.ts +0 -0
  550. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/normalize.js +0 -0
  551. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/normalize_glob.d.ts +0 -0
  552. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/normalize_glob.js +0 -0
  553. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/parse.d.ts +0 -0
  554. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/parse.js +0 -0
  555. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/relative.d.ts +0 -0
  556. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/relative.js +0 -0
  557. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/resolve.d.ts +0 -0
  558. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/resolve.js +0 -0
  559. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/separator.d.ts +0 -0
  560. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/separator.js +0 -0
  561. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/to_file_url.d.ts +0 -0
  562. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/to_file_url.js +0 -0
  563. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/to_namespaced_path.d.ts +0 -0
  564. /package/script/deps/deno.land/{std@0.209.0 → std@0.210.0}/path/windows/to_namespaced_path.js +0 -0
@@ -916,6 +916,10 @@ export declare abstract class _help_PeerColorOption_ extends Type_ {
916
916
  }
917
917
  export declare abstract class _help_PeerColors_ extends Type_ {
918
918
  }
919
+ export declare abstract class _StoryReaction_ extends Type_ {
920
+ }
921
+ export declare abstract class _stories_StoryReactionsList_ extends Type_ {
922
+ }
919
923
  export declare class ResPQ_ extends _ResPQ_ {
920
924
  nonce: bigint;
921
925
  server_nonce: bigint;
@@ -2395,6 +2399,9 @@ export declare class Channel_ extends _Chat_ {
2395
2399
  usernames?: Array<enums.Username>;
2396
2400
  stories_max_id?: number;
2397
2401
  color?: enums.PeerColor;
2402
+ profile_color?: enums.PeerColor;
2403
+ emoji_status?: enums.EmojiStatus;
2404
+ level?: number;
2398
2405
  protected get [id](): number;
2399
2406
  static get [name](): string;
2400
2407
  static get [paramDesc](): ParamDesc;
@@ -2437,6 +2444,9 @@ export declare class Channel_ extends _Chat_ {
2437
2444
  usernames?: Array<enums.Username>;
2438
2445
  stories_max_id?: number;
2439
2446
  color?: enums.PeerColor;
2447
+ profile_color?: enums.PeerColor;
2448
+ emoji_status?: enums.EmojiStatus;
2449
+ level?: number;
2440
2450
  });
2441
2451
  }
2442
2452
  export declare class ChannelForbidden_ extends _Chat_ {
@@ -2556,6 +2566,7 @@ export declare class ChannelFull_ extends _ChatFull_ {
2556
2566
  default_send_as?: enums.Peer;
2557
2567
  available_reactions?: enums.ChatReactions;
2558
2568
  stories?: enums.PeerStories;
2569
+ wallpaper?: enums.WallPaper;
2559
2570
  protected get [id](): number;
2560
2571
  static get [name](): string;
2561
2572
  static get [paramDesc](): ParamDesc;
@@ -2611,6 +2622,7 @@ export declare class ChannelFull_ extends _ChatFull_ {
2611
2622
  default_send_as?: enums.Peer;
2612
2623
  available_reactions?: enums.ChatReactions;
2613
2624
  stories?: enums.PeerStories;
2625
+ wallpaper?: enums.WallPaper;
2614
2626
  });
2615
2627
  }
2616
2628
  export declare class ChatParticipant_ extends _ChatParticipant_ {
@@ -3024,8 +3036,10 @@ export declare class MessageMediaStory_ extends _MessageMedia_ {
3024
3036
  }
3025
3037
  export declare class MessageMediaGiveaway_ extends _MessageMedia_ {
3026
3038
  only_new_subscribers?: true;
3039
+ winners_are_visible?: true;
3027
3040
  channels: Array<bigint>;
3028
3041
  countries_iso2?: Array<string>;
3042
+ prize_description?: string;
3029
3043
  quantity: number;
3030
3044
  months: number;
3031
3045
  until_date: number;
@@ -3035,13 +3049,45 @@ export declare class MessageMediaGiveaway_ extends _MessageMedia_ {
3035
3049
  protected get [params](): Params;
3036
3050
  constructor(params: {
3037
3051
  only_new_subscribers?: true;
3052
+ winners_are_visible?: true;
3038
3053
  channels: Array<bigint>;
3039
3054
  countries_iso2?: Array<string>;
3055
+ prize_description?: string;
3040
3056
  quantity: number;
3041
3057
  months: number;
3042
3058
  until_date: number;
3043
3059
  });
3044
3060
  }
3061
+ export declare class MessageMediaGiveawayResults_ extends _MessageMedia_ {
3062
+ only_new_subscribers?: true;
3063
+ refunded?: true;
3064
+ channel_id: bigint;
3065
+ additional_peers_count?: number;
3066
+ launch_msg_id: number;
3067
+ winners_count: number;
3068
+ unclaimed_count: number;
3069
+ winners: Array<bigint>;
3070
+ months: number;
3071
+ prize_description?: string;
3072
+ until_date: number;
3073
+ protected get [id](): number;
3074
+ static get [name](): string;
3075
+ static get [paramDesc](): ParamDesc;
3076
+ protected get [params](): Params;
3077
+ constructor(params: {
3078
+ only_new_subscribers?: true;
3079
+ refunded?: true;
3080
+ channel_id: bigint;
3081
+ additional_peers_count?: number;
3082
+ launch_msg_id: number;
3083
+ winners_count: number;
3084
+ unclaimed_count: number;
3085
+ winners: Array<bigint>;
3086
+ months: number;
3087
+ prize_description?: string;
3088
+ until_date: number;
3089
+ });
3090
+ }
3045
3091
  export declare class MessageActionEmpty_ extends _MessageAction_ {
3046
3092
  protected get [id](): number;
3047
3093
  static get [name](): string;
@@ -3457,14 +3503,14 @@ export declare class MessageActionSuggestProfilePhoto_ extends _MessageAction_ {
3457
3503
  }
3458
3504
  export declare class MessageActionRequestedPeer_ extends _MessageAction_ {
3459
3505
  button_id: number;
3460
- peer: enums.Peer;
3506
+ peers: Array<enums.Peer>;
3461
3507
  protected get [id](): number;
3462
3508
  static get [name](): string;
3463
3509
  static get [paramDesc](): ParamDesc;
3464
3510
  protected get [params](): Params;
3465
3511
  constructor(params: {
3466
3512
  button_id: number;
3467
- peer: enums.Peer;
3513
+ peers: Array<enums.Peer>;
3468
3514
  });
3469
3515
  }
3470
3516
  export declare class MessageActionSetChatWallPaper_ extends _MessageAction_ {
@@ -3487,6 +3533,10 @@ export declare class MessageActionGiftCode_ extends _MessageAction_ {
3487
3533
  boost_peer?: enums.Peer;
3488
3534
  months: number;
3489
3535
  slug: string;
3536
+ currency?: string;
3537
+ amount?: bigint;
3538
+ crypto_currency?: string;
3539
+ crypto_amount?: bigint;
3490
3540
  protected get [id](): number;
3491
3541
  static get [name](): string;
3492
3542
  static get [paramDesc](): ParamDesc;
@@ -3497,6 +3547,10 @@ export declare class MessageActionGiftCode_ extends _MessageAction_ {
3497
3547
  boost_peer?: enums.Peer;
3498
3548
  months: number;
3499
3549
  slug: string;
3550
+ currency?: string;
3551
+ amount?: bigint;
3552
+ crypto_currency?: string;
3553
+ crypto_amount?: bigint;
3500
3554
  });
3501
3555
  }
3502
3556
  export declare class MessageActionGiveawayLaunch_ extends _MessageAction_ {
@@ -6050,6 +6104,46 @@ export declare class UpdatePeerWallpaper_ extends _Update_ {
6050
6104
  wallpaper?: enums.WallPaper;
6051
6105
  });
6052
6106
  }
6107
+ export declare class UpdateBotMessageReaction_ extends _Update_ {
6108
+ peer: enums.Peer;
6109
+ msg_id: number;
6110
+ date: number;
6111
+ actor: enums.Peer;
6112
+ old_reactions: Array<enums.Reaction>;
6113
+ new_reactions: Array<enums.Reaction>;
6114
+ qts: number;
6115
+ protected get [id](): number;
6116
+ static get [name](): string;
6117
+ static get [paramDesc](): ParamDesc;
6118
+ protected get [params](): Params;
6119
+ constructor(params: {
6120
+ peer: enums.Peer;
6121
+ msg_id: number;
6122
+ date: number;
6123
+ actor: enums.Peer;
6124
+ old_reactions: Array<enums.Reaction>;
6125
+ new_reactions: Array<enums.Reaction>;
6126
+ qts: number;
6127
+ });
6128
+ }
6129
+ export declare class UpdateBotMessageReactions_ extends _Update_ {
6130
+ peer: enums.Peer;
6131
+ msg_id: number;
6132
+ date: number;
6133
+ reactions: Array<enums.ReactionCount>;
6134
+ qts: number;
6135
+ protected get [id](): number;
6136
+ static get [name](): string;
6137
+ static get [paramDesc](): ParamDesc;
6138
+ protected get [params](): Params;
6139
+ constructor(params: {
6140
+ peer: enums.Peer;
6141
+ msg_id: number;
6142
+ date: number;
6143
+ reactions: Array<enums.ReactionCount>;
6144
+ qts: number;
6145
+ });
6146
+ }
6053
6147
  export declare class updates_State_ extends _updates_State_ {
6054
6148
  pts: number;
6055
6149
  qts: number;
@@ -7966,6 +8060,13 @@ export declare class InputStickerSetEmojiDefaultTopicIcons_ extends _InputSticke
7966
8060
  protected get [params](): Params;
7967
8061
  constructor();
7968
8062
  }
8063
+ export declare class InputStickerSetEmojiChannelDefaultStatuses_ extends _InputStickerSet_ {
8064
+ protected get [id](): number;
8065
+ static get [name](): string;
8066
+ static get [paramDesc](): ParamDesc;
8067
+ protected get [params](): Params;
8068
+ constructor();
8069
+ }
7969
8070
  export declare class StickerSet_ extends _StickerSet_ {
7970
8071
  archived?: true;
7971
8072
  official?: true;
@@ -7974,6 +8075,7 @@ export declare class StickerSet_ extends _StickerSet_ {
7974
8075
  videos?: true;
7975
8076
  emojis?: true;
7976
8077
  text_color?: true;
8078
+ channel_emoji_status?: true;
7977
8079
  installed_date?: number;
7978
8080
  id: bigint;
7979
8081
  access_hash: bigint;
@@ -7997,6 +8099,7 @@ export declare class StickerSet_ extends _StickerSet_ {
7997
8099
  videos?: true;
7998
8100
  emojis?: true;
7999
8101
  text_color?: true;
8102
+ channel_emoji_status?: true;
8000
8103
  installed_date?: number;
8001
8104
  id: bigint;
8002
8105
  access_hash: bigint;
@@ -8255,6 +8358,7 @@ export declare class KeyboardButtonRequestPeer_ extends _KeyboardButton_ {
8255
8358
  text: string;
8256
8359
  button_id: number;
8257
8360
  peer_type: enums.RequestPeerType;
8361
+ max_quantity: number;
8258
8362
  protected get [id](): number;
8259
8363
  static get [name](): string;
8260
8364
  static get [paramDesc](): ParamDesc;
@@ -8263,6 +8367,7 @@ export declare class KeyboardButtonRequestPeer_ extends _KeyboardButton_ {
8263
8367
  text: string;
8264
8368
  button_id: number;
8265
8369
  peer_type: enums.RequestPeerType;
8370
+ max_quantity: number;
8266
8371
  });
8267
8372
  }
8268
8373
  export declare class KeyboardButtonRow_ extends _KeyboardButtonRow_ {
@@ -11868,28 +11973,52 @@ export declare class ChannelAdminLogEventActionToggleAntiSpam_ extends _ChannelA
11868
11973
  new_value: boolean;
11869
11974
  });
11870
11975
  }
11871
- export declare class ChannelAdminLogEventActionChangeColor_ extends _ChannelAdminLogEventAction_ {
11872
- prev_value: number;
11873
- new_value: number;
11976
+ export declare class ChannelAdminLogEventActionChangePeerColor_ extends _ChannelAdminLogEventAction_ {
11977
+ prev_value: enums.PeerColor;
11978
+ new_value: enums.PeerColor;
11874
11979
  protected get [id](): number;
11875
11980
  static get [name](): string;
11876
11981
  static get [paramDesc](): ParamDesc;
11877
11982
  protected get [params](): Params;
11878
11983
  constructor(params: {
11879
- prev_value: number;
11880
- new_value: number;
11984
+ prev_value: enums.PeerColor;
11985
+ new_value: enums.PeerColor;
11881
11986
  });
11882
11987
  }
11883
- export declare class ChannelAdminLogEventActionChangeBackgroundEmoji_ extends _ChannelAdminLogEventAction_ {
11884
- prev_value: bigint;
11885
- new_value: bigint;
11988
+ export declare class ChannelAdminLogEventActionChangeProfilePeerColor_ extends _ChannelAdminLogEventAction_ {
11989
+ prev_value: enums.PeerColor;
11990
+ new_value: enums.PeerColor;
11886
11991
  protected get [id](): number;
11887
11992
  static get [name](): string;
11888
11993
  static get [paramDesc](): ParamDesc;
11889
11994
  protected get [params](): Params;
11890
11995
  constructor(params: {
11891
- prev_value: bigint;
11892
- new_value: bigint;
11996
+ prev_value: enums.PeerColor;
11997
+ new_value: enums.PeerColor;
11998
+ });
11999
+ }
12000
+ export declare class ChannelAdminLogEventActionChangeWallpaper_ extends _ChannelAdminLogEventAction_ {
12001
+ prev_value: enums.WallPaper;
12002
+ new_value: enums.WallPaper;
12003
+ protected get [id](): number;
12004
+ static get [name](): string;
12005
+ static get [paramDesc](): ParamDesc;
12006
+ protected get [params](): Params;
12007
+ constructor(params: {
12008
+ prev_value: enums.WallPaper;
12009
+ new_value: enums.WallPaper;
12010
+ });
12011
+ }
12012
+ export declare class ChannelAdminLogEventActionChangeEmojiStatus_ extends _ChannelAdminLogEventAction_ {
12013
+ prev_value: enums.EmojiStatus;
12014
+ new_value: enums.EmojiStatus;
12015
+ protected get [id](): number;
12016
+ static get [name](): string;
12017
+ static get [paramDesc](): ParamDesc;
12018
+ protected get [params](): Params;
12019
+ constructor(params: {
12020
+ prev_value: enums.EmojiStatus;
12021
+ new_value: enums.EmojiStatus;
11893
12022
  });
11894
12023
  }
11895
12024
  export declare class ChannelAdminLogEvent_ extends _ChannelAdminLogEvent_ {
@@ -13386,6 +13515,7 @@ export declare class WallPaperSettings_ extends _WallPaperSettings_ {
13386
13515
  fourth_background_color?: number;
13387
13516
  intensity?: number;
13388
13517
  rotation?: number;
13518
+ emoticon?: string;
13389
13519
  protected get [id](): number;
13390
13520
  static get [name](): string;
13391
13521
  static get [paramDesc](): ParamDesc;
@@ -13399,6 +13529,7 @@ export declare class WallPaperSettings_ extends _WallPaperSettings_ {
13399
13529
  fourth_background_color?: number;
13400
13530
  intensity?: number;
13401
13531
  rotation?: number;
13532
+ emoticon?: string;
13402
13533
  });
13403
13534
  }
13404
13535
  export declare class AutoDownloadSettings_ extends _AutoDownloadSettings_ {
@@ -15692,9 +15823,11 @@ export declare class InputStorePaymentPremiumGiftCode_ extends _InputStorePaymen
15692
15823
  }
15693
15824
  export declare class InputStorePaymentPremiumGiveaway_ extends _InputStorePaymentPurpose_ {
15694
15825
  only_new_subscribers?: true;
15826
+ winners_are_visible?: true;
15695
15827
  boost_peer: enums.InputPeer;
15696
15828
  additional_peers?: Array<enums.InputPeer>;
15697
15829
  countries_iso2?: Array<string>;
15830
+ prize_description?: string;
15698
15831
  random_id: bigint;
15699
15832
  until_date: number;
15700
15833
  currency: string;
@@ -15705,9 +15838,11 @@ export declare class InputStorePaymentPremiumGiveaway_ extends _InputStorePaymen
15705
15838
  protected get [params](): Params;
15706
15839
  constructor(params: {
15707
15840
  only_new_subscribers?: true;
15841
+ winners_are_visible?: true;
15708
15842
  boost_peer: enums.InputPeer;
15709
15843
  additional_peers?: Array<enums.InputPeer>;
15710
15844
  countries_iso2?: Array<string>;
15845
+ prize_description?: string;
15711
15846
  random_id: bigint;
15712
15847
  until_date: number;
15713
15848
  currency: string;
@@ -16753,10 +16888,43 @@ export declare class StoryView_ extends _StoryView_ {
16753
16888
  reaction?: enums.Reaction;
16754
16889
  });
16755
16890
  }
16891
+ export declare class StoryViewPublicForward_ extends _StoryView_ {
16892
+ blocked?: true;
16893
+ blocked_my_stories_from?: true;
16894
+ message: enums.Message;
16895
+ protected get [id](): number;
16896
+ static get [name](): string;
16897
+ static get [paramDesc](): ParamDesc;
16898
+ protected get [params](): Params;
16899
+ constructor(params: {
16900
+ blocked?: true;
16901
+ blocked_my_stories_from?: true;
16902
+ message: enums.Message;
16903
+ });
16904
+ }
16905
+ export declare class StoryViewPublicRepost_ extends _StoryView_ {
16906
+ blocked?: true;
16907
+ blocked_my_stories_from?: true;
16908
+ peer_id: enums.Peer;
16909
+ story: enums.StoryItem;
16910
+ protected get [id](): number;
16911
+ static get [name](): string;
16912
+ static get [paramDesc](): ParamDesc;
16913
+ protected get [params](): Params;
16914
+ constructor(params: {
16915
+ blocked?: true;
16916
+ blocked_my_stories_from?: true;
16917
+ peer_id: enums.Peer;
16918
+ story: enums.StoryItem;
16919
+ });
16920
+ }
16756
16921
  export declare class stories_StoryViewsList_ extends _stories_StoryViewsList_ {
16757
16922
  count: number;
16923
+ views_count: number;
16924
+ forwards_count: number;
16758
16925
  reactions_count: number;
16759
16926
  views: Array<enums.StoryView>;
16927
+ chats: Array<enums.Chat>;
16760
16928
  users: Array<enums.User>;
16761
16929
  next_offset?: string;
16762
16930
  protected get [id](): number;
@@ -16765,8 +16933,11 @@ export declare class stories_StoryViewsList_ extends _stories_StoryViewsList_ {
16765
16933
  protected get [params](): Params;
16766
16934
  constructor(params: {
16767
16935
  count: number;
16936
+ views_count: number;
16937
+ forwards_count: number;
16768
16938
  reactions_count: number;
16769
16939
  views: Array<enums.StoryView>;
16940
+ chats: Array<enums.Chat>;
16770
16941
  users: Array<enums.User>;
16771
16942
  next_offset?: string;
16772
16943
  });
@@ -16919,6 +17090,34 @@ export declare class MediaAreaSuggestedReaction_ extends _MediaArea_ {
16919
17090
  reaction: enums.Reaction;
16920
17091
  });
16921
17092
  }
17093
+ export declare class MediaAreaChannelPost_ extends _MediaArea_ {
17094
+ coordinates: enums.MediaAreaCoordinates;
17095
+ channel_id: bigint;
17096
+ msg_id: number;
17097
+ protected get [id](): number;
17098
+ static get [name](): string;
17099
+ static get [paramDesc](): ParamDesc;
17100
+ protected get [params](): Params;
17101
+ constructor(params: {
17102
+ coordinates: enums.MediaAreaCoordinates;
17103
+ channel_id: bigint;
17104
+ msg_id: number;
17105
+ });
17106
+ }
17107
+ export declare class InputMediaAreaChannelPost_ extends _MediaArea_ {
17108
+ coordinates: enums.MediaAreaCoordinates;
17109
+ channel: enums.InputChannel;
17110
+ msg_id: number;
17111
+ protected get [id](): number;
17112
+ static get [name](): string;
17113
+ static get [paramDesc](): ParamDesc;
17114
+ protected get [params](): Params;
17115
+ constructor(params: {
17116
+ coordinates: enums.MediaAreaCoordinates;
17117
+ channel: enums.InputChannel;
17118
+ msg_id: number;
17119
+ });
17120
+ }
16922
17121
  export declare class PeerStories_ extends _PeerStories_ {
16923
17122
  peer: enums.Peer;
16924
17123
  max_read_id?: number;
@@ -16983,7 +17182,7 @@ export declare class PremiumGiftCodeOption_ extends _PremiumGiftCodeOption_ {
16983
17182
  }
16984
17183
  export declare class payments_CheckedGiftCode_ extends _payments_CheckedGiftCode_ {
16985
17184
  via_giveaway?: true;
16986
- from_id: enums.Peer;
17185
+ from_id?: enums.Peer;
16987
17186
  giveaway_msg_id?: number;
16988
17187
  to_id?: bigint;
16989
17188
  date: number;
@@ -16997,7 +17196,7 @@ export declare class payments_CheckedGiftCode_ extends _payments_CheckedGiftCode
16997
17196
  protected get [params](): Params;
16998
17197
  constructor(params: {
16999
17198
  via_giveaway?: true;
17000
- from_id: enums.Peer;
17199
+ from_id?: enums.Peer;
17001
17200
  giveaway_msg_id?: number;
17002
17201
  to_id?: bigint;
17003
17202
  date: number;
@@ -17310,6 +17509,7 @@ export declare class help_PeerColorOption_ extends _help_PeerColorOption_ {
17310
17509
  color_id: number;
17311
17510
  colors?: enums.help.PeerColorSet;
17312
17511
  dark_colors?: enums.help.PeerColorSet;
17512
+ channel_min_level?: number;
17313
17513
  protected get [id](): number;
17314
17514
  static get [name](): string;
17315
17515
  static get [paramDesc](): ParamDesc;
@@ -17319,6 +17519,7 @@ export declare class help_PeerColorOption_ extends _help_PeerColorOption_ {
17319
17519
  color_id: number;
17320
17520
  colors?: enums.help.PeerColorSet;
17321
17521
  dark_colors?: enums.help.PeerColorSet;
17522
+ channel_min_level?: number;
17322
17523
  });
17323
17524
  }
17324
17525
  export declare class help_PeerColorsNotModified_ extends _help_PeerColors_ {
@@ -17340,6 +17541,60 @@ export declare class help_PeerColors_ extends _help_PeerColors_ {
17340
17541
  colors: Array<enums.help.PeerColorOption>;
17341
17542
  });
17342
17543
  }
17544
+ export declare class StoryReaction_ extends _StoryReaction_ {
17545
+ peer_id: enums.Peer;
17546
+ date: number;
17547
+ reaction: enums.Reaction;
17548
+ protected get [id](): number;
17549
+ static get [name](): string;
17550
+ static get [paramDesc](): ParamDesc;
17551
+ protected get [params](): Params;
17552
+ constructor(params: {
17553
+ peer_id: enums.Peer;
17554
+ date: number;
17555
+ reaction: enums.Reaction;
17556
+ });
17557
+ }
17558
+ export declare class StoryReactionPublicForward_ extends _StoryReaction_ {
17559
+ message: enums.Message;
17560
+ protected get [id](): number;
17561
+ static get [name](): string;
17562
+ static get [paramDesc](): ParamDesc;
17563
+ protected get [params](): Params;
17564
+ constructor(params: {
17565
+ message: enums.Message;
17566
+ });
17567
+ }
17568
+ export declare class StoryReactionPublicRepost_ extends _StoryReaction_ {
17569
+ peer_id: enums.Peer;
17570
+ story: enums.StoryItem;
17571
+ protected get [id](): number;
17572
+ static get [name](): string;
17573
+ static get [paramDesc](): ParamDesc;
17574
+ protected get [params](): Params;
17575
+ constructor(params: {
17576
+ peer_id: enums.Peer;
17577
+ story: enums.StoryItem;
17578
+ });
17579
+ }
17580
+ export declare class stories_StoryReactionsList_ extends _stories_StoryReactionsList_ {
17581
+ count: number;
17582
+ reactions: Array<enums.StoryReaction>;
17583
+ chats: Array<enums.Chat>;
17584
+ users: Array<enums.User>;
17585
+ next_offset?: string;
17586
+ protected get [id](): number;
17587
+ static get [name](): string;
17588
+ static get [paramDesc](): ParamDesc;
17589
+ protected get [params](): Params;
17590
+ constructor(params: {
17591
+ count: number;
17592
+ reactions: Array<enums.StoryReaction>;
17593
+ chats: Array<enums.Chat>;
17594
+ users: Array<enums.User>;
17595
+ next_offset?: string;
17596
+ });
17597
+ }
17343
17598
  export declare const types: {
17344
17599
  Type: typeof Type_;
17345
17600
  TypeX: typeof TypeX_;
@@ -17799,6 +18054,8 @@ export declare const types: {
17799
18054
  _help_PeerColorSet: typeof _help_PeerColorSet_;
17800
18055
  _help_PeerColorOption: typeof _help_PeerColorOption_;
17801
18056
  _help_PeerColors: typeof _help_PeerColors_;
18057
+ _StoryReaction: typeof _StoryReaction_;
18058
+ _stories_StoryReactionsList: typeof _stories_StoryReactionsList_;
17802
18059
  ResPQ: typeof ResPQ_;
17803
18060
  P_q_inner_data_dc: typeof P_q_inner_data_dc_;
17804
18061
  P_q_inner_data_temp_dc: typeof P_q_inner_data_temp_dc_;
@@ -17929,6 +18186,7 @@ export declare const types: {
17929
18186
  MessageMediaDice: typeof MessageMediaDice_;
17930
18187
  MessageMediaStory: typeof MessageMediaStory_;
17931
18188
  MessageMediaGiveaway: typeof MessageMediaGiveaway_;
18189
+ MessageMediaGiveawayResults: typeof MessageMediaGiveawayResults_;
17932
18190
  MessageActionEmpty: typeof MessageActionEmpty_;
17933
18191
  MessageActionChatCreate: typeof MessageActionChatCreate_;
17934
18192
  MessageActionChatEditTitle: typeof MessageActionChatEditTitle_;
@@ -18143,6 +18401,8 @@ export declare const types: {
18143
18401
  UpdateBotChatBoost: typeof UpdateBotChatBoost_;
18144
18402
  UpdateChannelViewForumAsMessages: typeof UpdateChannelViewForumAsMessages_;
18145
18403
  UpdatePeerWallpaper: typeof UpdatePeerWallpaper_;
18404
+ UpdateBotMessageReaction: typeof UpdateBotMessageReaction_;
18405
+ UpdateBotMessageReactions: typeof UpdateBotMessageReactions_;
18146
18406
  UpdatesTooLong: typeof UpdatesTooLong_;
18147
18407
  UpdateShortMessage: typeof UpdateShortMessage_;
18148
18408
  UpdateShortChatMessage: typeof UpdateShortChatMessage_;
@@ -18263,6 +18523,7 @@ export declare const types: {
18263
18523
  InputStickerSetEmojiGenericAnimations: typeof InputStickerSetEmojiGenericAnimations_;
18264
18524
  InputStickerSetEmojiDefaultStatuses: typeof InputStickerSetEmojiDefaultStatuses_;
18265
18525
  InputStickerSetEmojiDefaultTopicIcons: typeof InputStickerSetEmojiDefaultTopicIcons_;
18526
+ InputStickerSetEmojiChannelDefaultStatuses: typeof InputStickerSetEmojiChannelDefaultStatuses_;
18266
18527
  StickerSet: typeof StickerSet_;
18267
18528
  BotCommand: typeof BotCommand_;
18268
18529
  BotInfo: typeof BotInfo_;
@@ -18505,8 +18766,10 @@ export declare const types: {
18505
18766
  ChannelAdminLogEventActionDeleteTopic: typeof ChannelAdminLogEventActionDeleteTopic_;
18506
18767
  ChannelAdminLogEventActionPinTopic: typeof ChannelAdminLogEventActionPinTopic_;
18507
18768
  ChannelAdminLogEventActionToggleAntiSpam: typeof ChannelAdminLogEventActionToggleAntiSpam_;
18508
- ChannelAdminLogEventActionChangeColor: typeof ChannelAdminLogEventActionChangeColor_;
18509
- ChannelAdminLogEventActionChangeBackgroundEmoji: typeof ChannelAdminLogEventActionChangeBackgroundEmoji_;
18769
+ ChannelAdminLogEventActionChangePeerColor: typeof ChannelAdminLogEventActionChangePeerColor_;
18770
+ ChannelAdminLogEventActionChangeProfilePeerColor: typeof ChannelAdminLogEventActionChangeProfilePeerColor_;
18771
+ ChannelAdminLogEventActionChangeWallpaper: typeof ChannelAdminLogEventActionChangeWallpaper_;
18772
+ ChannelAdminLogEventActionChangeEmojiStatus: typeof ChannelAdminLogEventActionChangeEmojiStatus_;
18510
18773
  ChannelAdminLogEvent: typeof ChannelAdminLogEvent_;
18511
18774
  ChannelAdminLogEventsFilter: typeof ChannelAdminLogEventsFilter_;
18512
18775
  PopularContact: typeof PopularContact_;
@@ -18764,6 +19027,8 @@ export declare const types: {
18764
19027
  StoryItemSkipped: typeof StoryItemSkipped_;
18765
19028
  StoryItem: typeof StoryItem_;
18766
19029
  StoryView: typeof StoryView_;
19030
+ StoryViewPublicForward: typeof StoryViewPublicForward_;
19031
+ StoryViewPublicRepost: typeof StoryViewPublicRepost_;
18767
19032
  InputReplyToMessage: typeof InputReplyToMessage_;
18768
19033
  InputReplyToStory: typeof InputReplyToStory_;
18769
19034
  ExportedStoryLink: typeof ExportedStoryLink_;
@@ -18773,6 +19038,8 @@ export declare const types: {
18773
19038
  InputMediaAreaVenue: typeof InputMediaAreaVenue_;
18774
19039
  MediaAreaGeoPoint: typeof MediaAreaGeoPoint_;
18775
19040
  MediaAreaSuggestedReaction: typeof MediaAreaSuggestedReaction_;
19041
+ MediaAreaChannelPost: typeof MediaAreaChannelPost_;
19042
+ InputMediaAreaChannelPost: typeof InputMediaAreaChannelPost_;
18776
19043
  PeerStories: typeof PeerStories_;
18777
19044
  PremiumGiftCodeOption: typeof PremiumGiftCodeOption_;
18778
19045
  PrepaidGiveaway: typeof PrepaidGiveaway_;
@@ -18784,6 +19051,9 @@ export declare const types: {
18784
19051
  PublicForwardMessage: typeof PublicForwardMessage_;
18785
19052
  PublicForwardStory: typeof PublicForwardStory_;
18786
19053
  PeerColor: typeof PeerColor_;
19054
+ StoryReaction: typeof StoryReaction_;
19055
+ StoryReactionPublicForward: typeof StoryReactionPublicForward_;
19056
+ StoryReactionPublicRepost: typeof StoryReactionPublicRepost_;
18787
19057
  storage: {
18788
19058
  FileUnknown: typeof storage_FileUnknown_;
18789
19059
  FilePartial: typeof storage_FilePartial_;
@@ -19049,6 +19319,7 @@ export declare const types: {
19049
19319
  StoryViewsList: typeof stories_StoryViewsList_;
19050
19320
  StoryViews: typeof stories_StoryViews_;
19051
19321
  PeerStories: typeof stories_PeerStories_;
19322
+ StoryReactionsList: typeof stories_StoryReactionsList_;
19052
19323
  };
19053
19324
  premium: {
19054
19325
  BoostsList: typeof premium_BoostsList_;
@@ -19515,6 +19786,8 @@ export declare namespace types {
19515
19786
  type _help_PeerColorSet = _help_PeerColorSet_;
19516
19787
  type _help_PeerColorOption = _help_PeerColorOption_;
19517
19788
  type _help_PeerColors = _help_PeerColors_;
19789
+ type _StoryReaction = _StoryReaction_;
19790
+ type _stories_StoryReactionsList = _stories_StoryReactionsList_;
19518
19791
  type ResPQ = ResPQ_;
19519
19792
  type P_q_inner_data_dc = P_q_inner_data_dc_;
19520
19793
  type P_q_inner_data_temp_dc = P_q_inner_data_temp_dc_;
@@ -19645,6 +19918,7 @@ export declare namespace types {
19645
19918
  type MessageMediaDice = MessageMediaDice_;
19646
19919
  type MessageMediaStory = MessageMediaStory_;
19647
19920
  type MessageMediaGiveaway = MessageMediaGiveaway_;
19921
+ type MessageMediaGiveawayResults = MessageMediaGiveawayResults_;
19648
19922
  type MessageActionEmpty = MessageActionEmpty_;
19649
19923
  type MessageActionChatCreate = MessageActionChatCreate_;
19650
19924
  type MessageActionChatEditTitle = MessageActionChatEditTitle_;
@@ -19859,6 +20133,8 @@ export declare namespace types {
19859
20133
  type UpdateBotChatBoost = UpdateBotChatBoost_;
19860
20134
  type UpdateChannelViewForumAsMessages = UpdateChannelViewForumAsMessages_;
19861
20135
  type UpdatePeerWallpaper = UpdatePeerWallpaper_;
20136
+ type UpdateBotMessageReaction = UpdateBotMessageReaction_;
20137
+ type UpdateBotMessageReactions = UpdateBotMessageReactions_;
19862
20138
  type UpdatesTooLong = UpdatesTooLong_;
19863
20139
  type UpdateShortMessage = UpdateShortMessage_;
19864
20140
  type UpdateShortChatMessage = UpdateShortChatMessage_;
@@ -19979,6 +20255,7 @@ export declare namespace types {
19979
20255
  type InputStickerSetEmojiGenericAnimations = InputStickerSetEmojiGenericAnimations_;
19980
20256
  type InputStickerSetEmojiDefaultStatuses = InputStickerSetEmojiDefaultStatuses_;
19981
20257
  type InputStickerSetEmojiDefaultTopicIcons = InputStickerSetEmojiDefaultTopicIcons_;
20258
+ type InputStickerSetEmojiChannelDefaultStatuses = InputStickerSetEmojiChannelDefaultStatuses_;
19982
20259
  type StickerSet = StickerSet_;
19983
20260
  type BotCommand = BotCommand_;
19984
20261
  type BotInfo = BotInfo_;
@@ -20221,8 +20498,10 @@ export declare namespace types {
20221
20498
  type ChannelAdminLogEventActionDeleteTopic = ChannelAdminLogEventActionDeleteTopic_;
20222
20499
  type ChannelAdminLogEventActionPinTopic = ChannelAdminLogEventActionPinTopic_;
20223
20500
  type ChannelAdminLogEventActionToggleAntiSpam = ChannelAdminLogEventActionToggleAntiSpam_;
20224
- type ChannelAdminLogEventActionChangeColor = ChannelAdminLogEventActionChangeColor_;
20225
- type ChannelAdminLogEventActionChangeBackgroundEmoji = ChannelAdminLogEventActionChangeBackgroundEmoji_;
20501
+ type ChannelAdminLogEventActionChangePeerColor = ChannelAdminLogEventActionChangePeerColor_;
20502
+ type ChannelAdminLogEventActionChangeProfilePeerColor = ChannelAdminLogEventActionChangeProfilePeerColor_;
20503
+ type ChannelAdminLogEventActionChangeWallpaper = ChannelAdminLogEventActionChangeWallpaper_;
20504
+ type ChannelAdminLogEventActionChangeEmojiStatus = ChannelAdminLogEventActionChangeEmojiStatus_;
20226
20505
  type ChannelAdminLogEvent = ChannelAdminLogEvent_;
20227
20506
  type ChannelAdminLogEventsFilter = ChannelAdminLogEventsFilter_;
20228
20507
  type PopularContact = PopularContact_;
@@ -20480,6 +20759,8 @@ export declare namespace types {
20480
20759
  type StoryItemSkipped = StoryItemSkipped_;
20481
20760
  type StoryItem = StoryItem_;
20482
20761
  type StoryView = StoryView_;
20762
+ type StoryViewPublicForward = StoryViewPublicForward_;
20763
+ type StoryViewPublicRepost = StoryViewPublicRepost_;
20483
20764
  type InputReplyToMessage = InputReplyToMessage_;
20484
20765
  type InputReplyToStory = InputReplyToStory_;
20485
20766
  type ExportedStoryLink = ExportedStoryLink_;
@@ -20489,6 +20770,8 @@ export declare namespace types {
20489
20770
  type InputMediaAreaVenue = InputMediaAreaVenue_;
20490
20771
  type MediaAreaGeoPoint = MediaAreaGeoPoint_;
20491
20772
  type MediaAreaSuggestedReaction = MediaAreaSuggestedReaction_;
20773
+ type MediaAreaChannelPost = MediaAreaChannelPost_;
20774
+ type InputMediaAreaChannelPost = InputMediaAreaChannelPost_;
20492
20775
  type PeerStories = PeerStories_;
20493
20776
  type PremiumGiftCodeOption = PremiumGiftCodeOption_;
20494
20777
  type PrepaidGiveaway = PrepaidGiveaway_;
@@ -20500,6 +20783,9 @@ export declare namespace types {
20500
20783
  type PublicForwardMessage = PublicForwardMessage_;
20501
20784
  type PublicForwardStory = PublicForwardStory_;
20502
20785
  type PeerColor = PeerColor_;
20786
+ type StoryReaction = StoryReaction_;
20787
+ type StoryReactionPublicForward = StoryReactionPublicForward_;
20788
+ type StoryReactionPublicRepost = StoryReactionPublicRepost_;
20503
20789
  namespace storage {
20504
20790
  type FileUnknown = storage_FileUnknown_;
20505
20791
  type FilePartial = storage_FilePartial_;
@@ -20765,6 +21051,7 @@ export declare namespace types {
20765
21051
  type StoryViewsList = stories_StoryViewsList_;
20766
21052
  type StoryViews = stories_StoryViews_;
20767
21053
  type PeerStories = stories_PeerStories_;
21054
+ type StoryReactionsList = stories_StoryReactionsList_;
20768
21055
  }
20769
21056
  namespace premium {
20770
21057
  type BoostsList = premium_BoostsList_;
@@ -20820,7 +21107,7 @@ export declare namespace enums {
20820
21107
  type ChatParticipants = types.ChatParticipantsForbidden | types.ChatParticipants;
20821
21108
  type ChatPhoto = types.ChatPhotoEmpty | types.ChatPhoto;
20822
21109
  type Message = types.MessageEmpty | types.Message | types.MessageService;
20823
- type MessageMedia = types.MessageMediaEmpty | types.MessageMediaPhoto | types.MessageMediaGeo | types.MessageMediaContact | types.MessageMediaUnsupported | types.MessageMediaDocument | types.MessageMediaWebPage | types.MessageMediaVenue | types.MessageMediaGame | types.MessageMediaInvoice | types.MessageMediaGeoLive | types.MessageMediaPoll | types.MessageMediaDice | types.MessageMediaStory | types.MessageMediaGiveaway;
21110
+ type MessageMedia = types.MessageMediaEmpty | types.MessageMediaPhoto | types.MessageMediaGeo | types.MessageMediaContact | types.MessageMediaUnsupported | types.MessageMediaDocument | types.MessageMediaWebPage | types.MessageMediaVenue | types.MessageMediaGame | types.MessageMediaInvoice | types.MessageMediaGeoLive | types.MessageMediaPoll | types.MessageMediaDice | types.MessageMediaStory | types.MessageMediaGiveaway | types.MessageMediaGiveawayResults;
20824
21111
  type MessageAction = types.MessageActionEmpty | types.MessageActionChatCreate | types.MessageActionChatEditTitle | types.MessageActionChatEditPhoto | types.MessageActionChatDeletePhoto | types.MessageActionChatAddUser | types.MessageActionChatDeleteUser | types.MessageActionChatJoinedByLink | types.MessageActionChannelCreate | types.MessageActionChatMigrateTo | types.MessageActionChannelMigrateFrom | types.MessageActionPinMessage | types.MessageActionHistoryClear | types.MessageActionGameScore | types.MessageActionPaymentSentMe | types.MessageActionPaymentSent | types.MessageActionPhoneCall | types.MessageActionScreenshotTaken | types.MessageActionCustomAction | types.MessageActionBotAllowed | types.MessageActionSecureValuesSentMe | types.MessageActionSecureValuesSent | types.MessageActionContactSignUp | types.MessageActionGeoProximityReached | types.MessageActionGroupCall | types.MessageActionInviteToGroupCall | types.MessageActionSetMessagesTTL | types.MessageActionGroupCallScheduled | types.MessageActionSetChatTheme | types.MessageActionChatJoinedByRequest | types.MessageActionWebViewDataSentMe | types.MessageActionWebViewDataSent | types.MessageActionGiftPremium | types.MessageActionTopicCreate | types.MessageActionTopicEdit | types.MessageActionSuggestProfilePhoto | types.MessageActionRequestedPeer | types.MessageActionSetChatWallPaper | types.MessageActionGiftCode | types.MessageActionGiveawayLaunch | types.MessageActionGiveawayResults;
20825
21112
  type Dialog = types.Dialog | types.DialogFolder;
20826
21113
  type Photo = types.PhotoEmpty | types.Photo;
@@ -20837,7 +21124,7 @@ export declare namespace enums {
20837
21124
  type ImportedContact = types.ImportedContact;
20838
21125
  type ContactStatus = types.ContactStatus;
20839
21126
  type MessagesFilter = types.InputMessagesFilterEmpty | types.InputMessagesFilterPhotos | types.InputMessagesFilterVideo | types.InputMessagesFilterPhotoVideo | types.InputMessagesFilterDocument | types.InputMessagesFilterUrl | types.InputMessagesFilterGif | types.InputMessagesFilterVoice | types.InputMessagesFilterMusic | types.InputMessagesFilterChatPhotos | types.InputMessagesFilterPhoneCalls | types.InputMessagesFilterRoundVoice | types.InputMessagesFilterRoundVideo | types.InputMessagesFilterMyMentions | types.InputMessagesFilterGeo | types.InputMessagesFilterContacts | types.InputMessagesFilterPinned;
20840
- type Update = types.UpdateNewMessage | types.UpdateMessageID | types.UpdateDeleteMessages | types.UpdateUserTyping | types.UpdateChatUserTyping | types.UpdateChatParticipants | types.UpdateUserStatus | types.UpdateUserName | types.UpdateNewAuthorization | types.UpdateNewEncryptedMessage | types.UpdateEncryptedChatTyping | types.UpdateEncryption | types.UpdateEncryptedMessagesRead | types.UpdateChatParticipantAdd | types.UpdateChatParticipantDelete | types.UpdateDcOptions | types.UpdateNotifySettings | types.UpdateServiceNotification | types.UpdatePrivacy | types.UpdateUserPhone | types.UpdateReadHistoryInbox | types.UpdateReadHistoryOutbox | types.UpdateWebPage | types.UpdateReadMessagesContents | types.UpdateChannelTooLong | types.UpdateChannel | types.UpdateNewChannelMessage | types.UpdateReadChannelInbox | types.UpdateDeleteChannelMessages | types.UpdateChannelMessageViews | types.UpdateChatParticipantAdmin | types.UpdateNewStickerSet | types.UpdateStickerSetsOrder | types.UpdateStickerSets | types.UpdateSavedGifs | types.UpdateBotInlineQuery | types.UpdateBotInlineSend | types.UpdateEditChannelMessage | types.UpdateBotCallbackQuery | types.UpdateEditMessage | types.UpdateInlineBotCallbackQuery | types.UpdateReadChannelOutbox | types.UpdateDraftMessage | types.UpdateReadFeaturedStickers | types.UpdateRecentStickers | types.UpdateConfig | types.UpdatePtsChanged | types.UpdateChannelWebPage | types.UpdateDialogPinned | types.UpdatePinnedDialogs | types.UpdateBotWebhookJSON | types.UpdateBotWebhookJSONQuery | types.UpdateBotShippingQuery | types.UpdateBotPrecheckoutQuery | types.UpdatePhoneCall | types.UpdateLangPackTooLong | types.UpdateLangPack | types.UpdateFavedStickers | types.UpdateChannelReadMessagesContents | types.UpdateContactsReset | types.UpdateChannelAvailableMessages | types.UpdateDialogUnreadMark | types.UpdateMessagePoll | types.UpdateChatDefaultBannedRights | types.UpdateFolderPeers | types.UpdatePeerSettings | types.UpdatePeerLocated | types.UpdateNewScheduledMessage | types.UpdateDeleteScheduledMessages | types.UpdateTheme | types.UpdateGeoLiveViewed | types.UpdateLoginToken | types.UpdateMessagePollVote | types.UpdateDialogFilter | types.UpdateDialogFilterOrder | types.UpdateDialogFilters | types.UpdatePhoneCallSignalingData | types.UpdateChannelMessageForwards | types.UpdateReadChannelDiscussionInbox | types.UpdateReadChannelDiscussionOutbox | types.UpdatePeerBlocked | types.UpdateChannelUserTyping | types.UpdatePinnedMessages | types.UpdatePinnedChannelMessages | types.UpdateChat | types.UpdateGroupCallParticipants | types.UpdateGroupCall | types.UpdatePeerHistoryTTL | types.UpdateChatParticipant | types.UpdateChannelParticipant | types.UpdateBotStopped | types.UpdateGroupCallConnection | types.UpdateBotCommands | types.UpdatePendingJoinRequests | types.UpdateBotChatInviteRequester | types.UpdateMessageReactions | types.UpdateAttachMenuBots | types.UpdateWebViewResultSent | types.UpdateBotMenuButton | types.UpdateSavedRingtones | types.UpdateTranscribedAudio | types.UpdateReadFeaturedEmojiStickers | types.UpdateUserEmojiStatus | types.UpdateRecentEmojiStatuses | types.UpdateRecentReactions | types.UpdateMoveStickerSetToTop | types.UpdateMessageExtendedMedia | types.UpdateChannelPinnedTopic | types.UpdateChannelPinnedTopics | types.UpdateUser | types.UpdateAutoSaveSettings | types.UpdateGroupInvitePrivacyForbidden | types.UpdateStory | types.UpdateReadStories | types.UpdateStoryID | types.UpdateStoriesStealthMode | types.UpdateSentStoryReaction | types.UpdateBotChatBoost | types.UpdateChannelViewForumAsMessages | types.UpdatePeerWallpaper;
21127
+ type Update = types.UpdateNewMessage | types.UpdateMessageID | types.UpdateDeleteMessages | types.UpdateUserTyping | types.UpdateChatUserTyping | types.UpdateChatParticipants | types.UpdateUserStatus | types.UpdateUserName | types.UpdateNewAuthorization | types.UpdateNewEncryptedMessage | types.UpdateEncryptedChatTyping | types.UpdateEncryption | types.UpdateEncryptedMessagesRead | types.UpdateChatParticipantAdd | types.UpdateChatParticipantDelete | types.UpdateDcOptions | types.UpdateNotifySettings | types.UpdateServiceNotification | types.UpdatePrivacy | types.UpdateUserPhone | types.UpdateReadHistoryInbox | types.UpdateReadHistoryOutbox | types.UpdateWebPage | types.UpdateReadMessagesContents | types.UpdateChannelTooLong | types.UpdateChannel | types.UpdateNewChannelMessage | types.UpdateReadChannelInbox | types.UpdateDeleteChannelMessages | types.UpdateChannelMessageViews | types.UpdateChatParticipantAdmin | types.UpdateNewStickerSet | types.UpdateStickerSetsOrder | types.UpdateStickerSets | types.UpdateSavedGifs | types.UpdateBotInlineQuery | types.UpdateBotInlineSend | types.UpdateEditChannelMessage | types.UpdateBotCallbackQuery | types.UpdateEditMessage | types.UpdateInlineBotCallbackQuery | types.UpdateReadChannelOutbox | types.UpdateDraftMessage | types.UpdateReadFeaturedStickers | types.UpdateRecentStickers | types.UpdateConfig | types.UpdatePtsChanged | types.UpdateChannelWebPage | types.UpdateDialogPinned | types.UpdatePinnedDialogs | types.UpdateBotWebhookJSON | types.UpdateBotWebhookJSONQuery | types.UpdateBotShippingQuery | types.UpdateBotPrecheckoutQuery | types.UpdatePhoneCall | types.UpdateLangPackTooLong | types.UpdateLangPack | types.UpdateFavedStickers | types.UpdateChannelReadMessagesContents | types.UpdateContactsReset | types.UpdateChannelAvailableMessages | types.UpdateDialogUnreadMark | types.UpdateMessagePoll | types.UpdateChatDefaultBannedRights | types.UpdateFolderPeers | types.UpdatePeerSettings | types.UpdatePeerLocated | types.UpdateNewScheduledMessage | types.UpdateDeleteScheduledMessages | types.UpdateTheme | types.UpdateGeoLiveViewed | types.UpdateLoginToken | types.UpdateMessagePollVote | types.UpdateDialogFilter | types.UpdateDialogFilterOrder | types.UpdateDialogFilters | types.UpdatePhoneCallSignalingData | types.UpdateChannelMessageForwards | types.UpdateReadChannelDiscussionInbox | types.UpdateReadChannelDiscussionOutbox | types.UpdatePeerBlocked | types.UpdateChannelUserTyping | types.UpdatePinnedMessages | types.UpdatePinnedChannelMessages | types.UpdateChat | types.UpdateGroupCallParticipants | types.UpdateGroupCall | types.UpdatePeerHistoryTTL | types.UpdateChatParticipant | types.UpdateChannelParticipant | types.UpdateBotStopped | types.UpdateGroupCallConnection | types.UpdateBotCommands | types.UpdatePendingJoinRequests | types.UpdateBotChatInviteRequester | types.UpdateMessageReactions | types.UpdateAttachMenuBots | types.UpdateWebViewResultSent | types.UpdateBotMenuButton | types.UpdateSavedRingtones | types.UpdateTranscribedAudio | types.UpdateReadFeaturedEmojiStickers | types.UpdateUserEmojiStatus | types.UpdateRecentEmojiStatuses | types.UpdateRecentReactions | types.UpdateMoveStickerSetToTop | types.UpdateMessageExtendedMedia | types.UpdateChannelPinnedTopic | types.UpdateChannelPinnedTopics | types.UpdateUser | types.UpdateAutoSaveSettings | types.UpdateGroupInvitePrivacyForbidden | types.UpdateStory | types.UpdateReadStories | types.UpdateStoryID | types.UpdateStoriesStealthMode | types.UpdateSentStoryReaction | types.UpdateBotChatBoost | types.UpdateChannelViewForumAsMessages | types.UpdatePeerWallpaper | types.UpdateBotMessageReaction | types.UpdateBotMessageReactions;
20841
21128
  type Updates = types.UpdatesTooLong | types.UpdateShortMessage | types.UpdateShortChatMessage | types.UpdateShort | types.UpdatesCombined | types.Updates | types.UpdateShortSentMessage;
20842
21129
  type DcOption = types.DcOption;
20843
21130
  type Config = types.Config;
@@ -20863,7 +21150,7 @@ export declare namespace enums {
20863
21150
  type ReceivedNotifyMessage = types.ReceivedNotifyMessage;
20864
21151
  type ExportedChatInvite = types.ChatInviteExported | types.ChatInvitePublicJoinRequests;
20865
21152
  type ChatInvite = types.ChatInviteAlready | types.ChatInvite | types.ChatInvitePeek;
20866
- type InputStickerSet = types.InputStickerSetEmpty | types.InputStickerSetID | types.InputStickerSetShortName | types.InputStickerSetAnimatedEmoji | types.InputStickerSetDice | types.InputStickerSetAnimatedEmojiAnimations | types.InputStickerSetPremiumGifts | types.InputStickerSetEmojiGenericAnimations | types.InputStickerSetEmojiDefaultStatuses | types.InputStickerSetEmojiDefaultTopicIcons;
21153
+ type InputStickerSet = types.InputStickerSetEmpty | types.InputStickerSetID | types.InputStickerSetShortName | types.InputStickerSetAnimatedEmoji | types.InputStickerSetDice | types.InputStickerSetAnimatedEmojiAnimations | types.InputStickerSetPremiumGifts | types.InputStickerSetEmojiGenericAnimations | types.InputStickerSetEmojiDefaultStatuses | types.InputStickerSetEmojiDefaultTopicIcons | types.InputStickerSetEmojiChannelDefaultStatuses;
20867
21154
  type StickerSet = types.StickerSet;
20868
21155
  type BotCommand = types.BotCommand;
20869
21156
  type BotInfo = types.BotInfo;
@@ -20919,7 +21206,7 @@ export declare namespace enums {
20919
21206
  type LangPackString = types.LangPackString | types.LangPackStringPluralized | types.LangPackStringDeleted;
20920
21207
  type LangPackDifference = types.LangPackDifference;
20921
21208
  type LangPackLanguage = types.LangPackLanguage;
20922
- type ChannelAdminLogEventAction = types.ChannelAdminLogEventActionChangeTitle | types.ChannelAdminLogEventActionChangeAbout | types.ChannelAdminLogEventActionChangeUsername | types.ChannelAdminLogEventActionChangePhoto | types.ChannelAdminLogEventActionToggleInvites | types.ChannelAdminLogEventActionToggleSignatures | types.ChannelAdminLogEventActionUpdatePinned | types.ChannelAdminLogEventActionEditMessage | types.ChannelAdminLogEventActionDeleteMessage | types.ChannelAdminLogEventActionParticipantJoin | types.ChannelAdminLogEventActionParticipantLeave | types.ChannelAdminLogEventActionParticipantInvite | types.ChannelAdminLogEventActionParticipantToggleBan | types.ChannelAdminLogEventActionParticipantToggleAdmin | types.ChannelAdminLogEventActionChangeStickerSet | types.ChannelAdminLogEventActionTogglePreHistoryHidden | types.ChannelAdminLogEventActionDefaultBannedRights | types.ChannelAdminLogEventActionStopPoll | types.ChannelAdminLogEventActionChangeLinkedChat | types.ChannelAdminLogEventActionChangeLocation | types.ChannelAdminLogEventActionToggleSlowMode | types.ChannelAdminLogEventActionStartGroupCall | types.ChannelAdminLogEventActionDiscardGroupCall | types.ChannelAdminLogEventActionParticipantMute | types.ChannelAdminLogEventActionParticipantUnmute | types.ChannelAdminLogEventActionToggleGroupCallSetting | types.ChannelAdminLogEventActionParticipantJoinByInvite | types.ChannelAdminLogEventActionExportedInviteDelete | types.ChannelAdminLogEventActionExportedInviteRevoke | types.ChannelAdminLogEventActionExportedInviteEdit | types.ChannelAdminLogEventActionParticipantVolume | types.ChannelAdminLogEventActionChangeHistoryTTL | types.ChannelAdminLogEventActionParticipantJoinByRequest | types.ChannelAdminLogEventActionToggleNoForwards | types.ChannelAdminLogEventActionSendMessage | types.ChannelAdminLogEventActionChangeAvailableReactions | types.ChannelAdminLogEventActionChangeUsernames | types.ChannelAdminLogEventActionToggleForum | types.ChannelAdminLogEventActionCreateTopic | types.ChannelAdminLogEventActionEditTopic | types.ChannelAdminLogEventActionDeleteTopic | types.ChannelAdminLogEventActionPinTopic | types.ChannelAdminLogEventActionToggleAntiSpam | types.ChannelAdminLogEventActionChangeColor | types.ChannelAdminLogEventActionChangeBackgroundEmoji;
21209
+ type ChannelAdminLogEventAction = types.ChannelAdminLogEventActionChangeTitle | types.ChannelAdminLogEventActionChangeAbout | types.ChannelAdminLogEventActionChangeUsername | types.ChannelAdminLogEventActionChangePhoto | types.ChannelAdminLogEventActionToggleInvites | types.ChannelAdminLogEventActionToggleSignatures | types.ChannelAdminLogEventActionUpdatePinned | types.ChannelAdminLogEventActionEditMessage | types.ChannelAdminLogEventActionDeleteMessage | types.ChannelAdminLogEventActionParticipantJoin | types.ChannelAdminLogEventActionParticipantLeave | types.ChannelAdminLogEventActionParticipantInvite | types.ChannelAdminLogEventActionParticipantToggleBan | types.ChannelAdminLogEventActionParticipantToggleAdmin | types.ChannelAdminLogEventActionChangeStickerSet | types.ChannelAdminLogEventActionTogglePreHistoryHidden | types.ChannelAdminLogEventActionDefaultBannedRights | types.ChannelAdminLogEventActionStopPoll | types.ChannelAdminLogEventActionChangeLinkedChat | types.ChannelAdminLogEventActionChangeLocation | types.ChannelAdminLogEventActionToggleSlowMode | types.ChannelAdminLogEventActionStartGroupCall | types.ChannelAdminLogEventActionDiscardGroupCall | types.ChannelAdminLogEventActionParticipantMute | types.ChannelAdminLogEventActionParticipantUnmute | types.ChannelAdminLogEventActionToggleGroupCallSetting | types.ChannelAdminLogEventActionParticipantJoinByInvite | types.ChannelAdminLogEventActionExportedInviteDelete | types.ChannelAdminLogEventActionExportedInviteRevoke | types.ChannelAdminLogEventActionExportedInviteEdit | types.ChannelAdminLogEventActionParticipantVolume | types.ChannelAdminLogEventActionChangeHistoryTTL | types.ChannelAdminLogEventActionParticipantJoinByRequest | types.ChannelAdminLogEventActionToggleNoForwards | types.ChannelAdminLogEventActionSendMessage | types.ChannelAdminLogEventActionChangeAvailableReactions | types.ChannelAdminLogEventActionChangeUsernames | types.ChannelAdminLogEventActionToggleForum | types.ChannelAdminLogEventActionCreateTopic | types.ChannelAdminLogEventActionEditTopic | types.ChannelAdminLogEventActionDeleteTopic | types.ChannelAdminLogEventActionPinTopic | types.ChannelAdminLogEventActionToggleAntiSpam | types.ChannelAdminLogEventActionChangePeerColor | types.ChannelAdminLogEventActionChangeProfilePeerColor | types.ChannelAdminLogEventActionChangeWallpaper | types.ChannelAdminLogEventActionChangeEmojiStatus;
20923
21210
  type ChannelAdminLogEvent = types.ChannelAdminLogEvent;
20924
21211
  type ChannelAdminLogEventsFilter = types.ChannelAdminLogEventsFilter;
20925
21212
  type PopularContact = types.PopularContact;
@@ -21064,12 +21351,12 @@ export declare namespace enums {
21064
21351
  type SponsoredWebPage = types.SponsoredWebPage;
21065
21352
  type StoryViews = types.StoryViews;
21066
21353
  type StoryItem = types.StoryItemDeleted | types.StoryItemSkipped | types.StoryItem;
21067
- type StoryView = types.StoryView;
21354
+ type StoryView = types.StoryView | types.StoryViewPublicForward | types.StoryViewPublicRepost;
21068
21355
  type InputReplyTo = types.InputReplyToMessage | types.InputReplyToStory;
21069
21356
  type ExportedStoryLink = types.ExportedStoryLink;
21070
21357
  type StoriesStealthMode = types.StoriesStealthMode;
21071
21358
  type MediaAreaCoordinates = types.MediaAreaCoordinates;
21072
- type MediaArea = types.MediaAreaVenue | types.InputMediaAreaVenue | types.MediaAreaGeoPoint | types.MediaAreaSuggestedReaction;
21359
+ type MediaArea = types.MediaAreaVenue | types.InputMediaAreaVenue | types.MediaAreaGeoPoint | types.MediaAreaSuggestedReaction | types.MediaAreaChannelPost | types.InputMediaAreaChannelPost;
21073
21360
  type PeerStories = types.PeerStories;
21074
21361
  type PremiumGiftCodeOption = types.PremiumGiftCodeOption;
21075
21362
  type PrepaidGiveaway = types.PrepaidGiveaway;
@@ -21079,6 +21366,7 @@ export declare namespace enums {
21079
21366
  type PostInteractionCounters = types.PostInteractionCountersMessage | types.PostInteractionCountersStory;
21080
21367
  type PublicForward = types.PublicForwardMessage | types.PublicForwardStory;
21081
21368
  type PeerColor = types.PeerColor;
21369
+ type StoryReaction = types.StoryReaction | types.StoryReactionPublicForward | types.StoryReactionPublicRepost;
21082
21370
  namespace storage {
21083
21371
  type FileType = types.storage.FileUnknown | types.storage.FilePartial | types.storage.FileJpeg | types.storage.FileGif | types.storage.FilePng | types.storage.FilePdf | types.storage.FileMp3 | types.storage.FileMov | types.storage.FileMp4 | types.storage.FileWebp;
21084
21372
  }
@@ -21262,6 +21550,7 @@ export declare namespace enums {
21262
21550
  type StoryViewsList = types.stories.StoryViewsList;
21263
21551
  type StoryViews = types.stories.StoryViews;
21264
21552
  type PeerStories = types.stories.PeerStories;
21553
+ type StoryReactionsList = types.stories.StoryReactionsList;
21265
21554
  }
21266
21555
  namespace premium {
21267
21556
  type BoostsList = types.premium.BoostsList;