@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
package/esm/tl/2_types.js CHANGED
@@ -920,6 +920,10 @@ export class _help_PeerColorOption_ extends Type_ {
920
920
  }
921
921
  export class _help_PeerColors_ extends Type_ {
922
922
  }
923
+ export class _StoryReaction_ extends Type_ {
924
+ }
925
+ export class _stories_StoryReactionsList_ extends Type_ {
926
+ }
923
927
  export class ResPQ_ extends _ResPQ_ {
924
928
  get [id]() {
925
929
  return 0x05162463;
@@ -5633,7 +5637,7 @@ export class ChatForbidden_ extends _Chat_ {
5633
5637
  }
5634
5638
  export class Channel_ extends _Chat_ {
5635
5639
  get [id]() {
5636
- return 0x8E87CCD8;
5640
+ return 0x0AADFC8F;
5637
5641
  }
5638
5642
  static get [name]() {
5639
5643
  return "channel";
@@ -5679,6 +5683,9 @@ export class Channel_ extends _Chat_ {
5679
5683
  ["usernames", [_Username_], "flags2.0?Vector<Username>"],
5680
5684
  ["stories_max_id", "number", "flags2.4?int"],
5681
5685
  ["color", _PeerColor_, "flags2.7?PeerColor"],
5686
+ ["profile_color", _PeerColor_, "flags2.8?PeerColor"],
5687
+ ["emoji_status", _EmojiStatus_, "flags2.9?EmojiStatus"],
5688
+ ["level", "number", "flags2.10?int"],
5682
5689
  ];
5683
5690
  }
5684
5691
  get [params]() {
@@ -5722,6 +5729,9 @@ export class Channel_ extends _Chat_ {
5722
5729
  [this.usernames ?? null, [_Username_], "flags2.0?Vector<Username>"],
5723
5730
  [this.stories_max_id ?? null, "number", "flags2.4?int"],
5724
5731
  [this.color ?? null, _PeerColor_, "flags2.7?PeerColor"],
5732
+ [this.profile_color ?? null, _PeerColor_, "flags2.8?PeerColor"],
5733
+ [this.emoji_status ?? null, _EmojiStatus_, "flags2.9?EmojiStatus"],
5734
+ [this.level ?? null, "number", "flags2.10?int"],
5725
5735
  ];
5726
5736
  }
5727
5737
  constructor(params) {
@@ -5948,6 +5958,24 @@ export class Channel_ extends _Chat_ {
5948
5958
  writable: true,
5949
5959
  value: void 0
5950
5960
  });
5961
+ Object.defineProperty(this, "profile_color", {
5962
+ enumerable: true,
5963
+ configurable: true,
5964
+ writable: true,
5965
+ value: void 0
5966
+ });
5967
+ Object.defineProperty(this, "emoji_status", {
5968
+ enumerable: true,
5969
+ configurable: true,
5970
+ writable: true,
5971
+ value: void 0
5972
+ });
5973
+ Object.defineProperty(this, "level", {
5974
+ enumerable: true,
5975
+ configurable: true,
5976
+ writable: true,
5977
+ value: void 0
5978
+ });
5951
5979
  this.creator = params.creator;
5952
5980
  this.left = params.left;
5953
5981
  this.broadcast = params.broadcast;
@@ -5985,6 +6013,9 @@ export class Channel_ extends _Chat_ {
5985
6013
  this.usernames = params.usernames;
5986
6014
  this.stories_max_id = params.stories_max_id;
5987
6015
  this.color = params.color;
6016
+ this.profile_color = params.profile_color;
6017
+ this.emoji_status = params.emoji_status;
6018
+ this.level = params.level;
5988
6019
  }
5989
6020
  }
5990
6021
  export class ChannelForbidden_ extends _Chat_ {
@@ -6256,7 +6287,7 @@ export class ChatFull_ extends _ChatFull_ {
6256
6287
  }
6257
6288
  export class ChannelFull_ extends _ChatFull_ {
6258
6289
  get [id]() {
6259
- return 0x723027BD;
6290
+ return 0x0F2BCB6F;
6260
6291
  }
6261
6292
  static get [name]() {
6262
6293
  return "channelFull";
@@ -6315,6 +6346,7 @@ export class ChannelFull_ extends _ChatFull_ {
6315
6346
  ["default_send_as", _Peer_, "flags.29?Peer"],
6316
6347
  ["available_reactions", _ChatReactions_, "flags.30?ChatReactions"],
6317
6348
  ["stories", _PeerStories_, "flags2.4?PeerStories"],
6349
+ ["wallpaper", _WallPaper_, "flags2.7?WallPaper"],
6318
6350
  ];
6319
6351
  }
6320
6352
  get [params]() {
@@ -6371,6 +6403,7 @@ export class ChannelFull_ extends _ChatFull_ {
6371
6403
  [this.default_send_as ?? null, _Peer_, "flags.29?Peer"],
6372
6404
  [this.available_reactions ?? null, _ChatReactions_, "flags.30?ChatReactions"],
6373
6405
  [this.stories ?? null, _PeerStories_, "flags2.4?PeerStories"],
6406
+ [this.wallpaper ?? null, _WallPaper_, "flags2.7?WallPaper"],
6374
6407
  ];
6375
6408
  }
6376
6409
  constructor(params) {
@@ -6675,6 +6708,12 @@ export class ChannelFull_ extends _ChatFull_ {
6675
6708
  writable: true,
6676
6709
  value: void 0
6677
6710
  });
6711
+ Object.defineProperty(this, "wallpaper", {
6712
+ enumerable: true,
6713
+ configurable: true,
6714
+ writable: true,
6715
+ value: void 0
6716
+ });
6678
6717
  this.can_view_participants = params.can_view_participants;
6679
6718
  this.can_set_username = params.can_set_username;
6680
6719
  this.can_set_stickers = params.can_set_stickers;
@@ -6725,6 +6764,7 @@ export class ChannelFull_ extends _ChatFull_ {
6725
6764
  this.default_send_as = params.default_send_as;
6726
6765
  this.available_reactions = params.available_reactions;
6727
6766
  this.stories = params.stories;
6767
+ this.wallpaper = params.wallpaper;
6728
6768
  }
6729
6769
  }
6730
6770
  export class ChatParticipant_ extends _ChatParticipant_ {
@@ -8191,7 +8231,7 @@ export class MessageMediaStory_ extends _MessageMedia_ {
8191
8231
  }
8192
8232
  export class MessageMediaGiveaway_ extends _MessageMedia_ {
8193
8233
  get [id]() {
8194
- return 0x58260664;
8234
+ return 0xDAAD85B0;
8195
8235
  }
8196
8236
  static get [name]() {
8197
8237
  return "messageMediaGiveaway";
@@ -8200,8 +8240,10 @@ export class MessageMediaGiveaway_ extends _MessageMedia_ {
8200
8240
  return [
8201
8241
  ["flags", flags, "#"],
8202
8242
  ["only_new_subscribers", "true", "flags.0?true"],
8243
+ ["winners_are_visible", "true", "flags.2?true"],
8203
8244
  ["channels", ["bigint"], "Vector<long>"],
8204
8245
  ["countries_iso2", ["string"], "flags.1?Vector<string>"],
8246
+ ["prize_description", "string", "flags.3?string"],
8205
8247
  ["quantity", "number", "int"],
8206
8248
  ["months", "number", "int"],
8207
8249
  ["until_date", "number", "int"],
@@ -8211,8 +8253,10 @@ export class MessageMediaGiveaway_ extends _MessageMedia_ {
8211
8253
  return [
8212
8254
  ["flags", flags, "#"],
8213
8255
  [this.only_new_subscribers ?? null, "true", "flags.0?true"],
8256
+ [this.winners_are_visible ?? null, "true", "flags.2?true"],
8214
8257
  [this.channels, ["bigint"], "Vector<long>"],
8215
8258
  [this.countries_iso2 ?? null, ["string"], "flags.1?Vector<string>"],
8259
+ [this.prize_description ?? null, "string", "flags.3?string"],
8216
8260
  [this.quantity, "number", "int"],
8217
8261
  [this.months, "number", "int"],
8218
8262
  [this.until_date, "number", "int"],
@@ -8226,6 +8270,12 @@ export class MessageMediaGiveaway_ extends _MessageMedia_ {
8226
8270
  writable: true,
8227
8271
  value: void 0
8228
8272
  });
8273
+ Object.defineProperty(this, "winners_are_visible", {
8274
+ enumerable: true,
8275
+ configurable: true,
8276
+ writable: true,
8277
+ value: void 0
8278
+ });
8229
8279
  Object.defineProperty(this, "channels", {
8230
8280
  enumerable: true,
8231
8281
  configurable: true,
@@ -8238,6 +8288,12 @@ export class MessageMediaGiveaway_ extends _MessageMedia_ {
8238
8288
  writable: true,
8239
8289
  value: void 0
8240
8290
  });
8291
+ Object.defineProperty(this, "prize_description", {
8292
+ enumerable: true,
8293
+ configurable: true,
8294
+ writable: true,
8295
+ value: void 0
8296
+ });
8241
8297
  Object.defineProperty(this, "quantity", {
8242
8298
  enumerable: true,
8243
8299
  configurable: true,
@@ -8257,13 +8313,135 @@ export class MessageMediaGiveaway_ extends _MessageMedia_ {
8257
8313
  value: void 0
8258
8314
  });
8259
8315
  this.only_new_subscribers = params.only_new_subscribers;
8316
+ this.winners_are_visible = params.winners_are_visible;
8260
8317
  this.channels = params.channels;
8261
8318
  this.countries_iso2 = params.countries_iso2;
8319
+ this.prize_description = params.prize_description;
8262
8320
  this.quantity = params.quantity;
8263
8321
  this.months = params.months;
8264
8322
  this.until_date = params.until_date;
8265
8323
  }
8266
8324
  }
8325
+ export class MessageMediaGiveawayResults_ extends _MessageMedia_ {
8326
+ get [id]() {
8327
+ return 0xC6991068;
8328
+ }
8329
+ static get [name]() {
8330
+ return "messageMediaGiveawayResults";
8331
+ }
8332
+ static get [paramDesc]() {
8333
+ return [
8334
+ ["flags", flags, "#"],
8335
+ ["only_new_subscribers", "true", "flags.0?true"],
8336
+ ["refunded", "true", "flags.2?true"],
8337
+ ["channel_id", "bigint", "long"],
8338
+ ["additional_peers_count", "number", "flags.3?int"],
8339
+ ["launch_msg_id", "number", "int"],
8340
+ ["winners_count", "number", "int"],
8341
+ ["unclaimed_count", "number", "int"],
8342
+ ["winners", ["bigint"], "Vector<long>"],
8343
+ ["months", "number", "int"],
8344
+ ["prize_description", "string", "flags.1?string"],
8345
+ ["until_date", "number", "int"],
8346
+ ];
8347
+ }
8348
+ get [params]() {
8349
+ return [
8350
+ ["flags", flags, "#"],
8351
+ [this.only_new_subscribers ?? null, "true", "flags.0?true"],
8352
+ [this.refunded ?? null, "true", "flags.2?true"],
8353
+ [this.channel_id, "bigint", "long"],
8354
+ [this.additional_peers_count ?? null, "number", "flags.3?int"],
8355
+ [this.launch_msg_id, "number", "int"],
8356
+ [this.winners_count, "number", "int"],
8357
+ [this.unclaimed_count, "number", "int"],
8358
+ [this.winners, ["bigint"], "Vector<long>"],
8359
+ [this.months, "number", "int"],
8360
+ [this.prize_description ?? null, "string", "flags.1?string"],
8361
+ [this.until_date, "number", "int"],
8362
+ ];
8363
+ }
8364
+ constructor(params) {
8365
+ super();
8366
+ Object.defineProperty(this, "only_new_subscribers", {
8367
+ enumerable: true,
8368
+ configurable: true,
8369
+ writable: true,
8370
+ value: void 0
8371
+ });
8372
+ Object.defineProperty(this, "refunded", {
8373
+ enumerable: true,
8374
+ configurable: true,
8375
+ writable: true,
8376
+ value: void 0
8377
+ });
8378
+ Object.defineProperty(this, "channel_id", {
8379
+ enumerable: true,
8380
+ configurable: true,
8381
+ writable: true,
8382
+ value: void 0
8383
+ });
8384
+ Object.defineProperty(this, "additional_peers_count", {
8385
+ enumerable: true,
8386
+ configurable: true,
8387
+ writable: true,
8388
+ value: void 0
8389
+ });
8390
+ Object.defineProperty(this, "launch_msg_id", {
8391
+ enumerable: true,
8392
+ configurable: true,
8393
+ writable: true,
8394
+ value: void 0
8395
+ });
8396
+ Object.defineProperty(this, "winners_count", {
8397
+ enumerable: true,
8398
+ configurable: true,
8399
+ writable: true,
8400
+ value: void 0
8401
+ });
8402
+ Object.defineProperty(this, "unclaimed_count", {
8403
+ enumerable: true,
8404
+ configurable: true,
8405
+ writable: true,
8406
+ value: void 0
8407
+ });
8408
+ Object.defineProperty(this, "winners", {
8409
+ enumerable: true,
8410
+ configurable: true,
8411
+ writable: true,
8412
+ value: void 0
8413
+ });
8414
+ Object.defineProperty(this, "months", {
8415
+ enumerable: true,
8416
+ configurable: true,
8417
+ writable: true,
8418
+ value: void 0
8419
+ });
8420
+ Object.defineProperty(this, "prize_description", {
8421
+ enumerable: true,
8422
+ configurable: true,
8423
+ writable: true,
8424
+ value: void 0
8425
+ });
8426
+ Object.defineProperty(this, "until_date", {
8427
+ enumerable: true,
8428
+ configurable: true,
8429
+ writable: true,
8430
+ value: void 0
8431
+ });
8432
+ this.only_new_subscribers = params.only_new_subscribers;
8433
+ this.refunded = params.refunded;
8434
+ this.channel_id = params.channel_id;
8435
+ this.additional_peers_count = params.additional_peers_count;
8436
+ this.launch_msg_id = params.launch_msg_id;
8437
+ this.winners_count = params.winners_count;
8438
+ this.unclaimed_count = params.unclaimed_count;
8439
+ this.winners = params.winners;
8440
+ this.months = params.months;
8441
+ this.prize_description = params.prize_description;
8442
+ this.until_date = params.until_date;
8443
+ }
8444
+ }
8267
8445
  export class MessageActionEmpty_ extends _MessageAction_ {
8268
8446
  get [id]() {
8269
8447
  return 0xB6AEF7B0;
@@ -9548,7 +9726,7 @@ export class MessageActionSuggestProfilePhoto_ extends _MessageAction_ {
9548
9726
  }
9549
9727
  export class MessageActionRequestedPeer_ extends _MessageAction_ {
9550
9728
  get [id]() {
9551
- return 0xFE77345D;
9729
+ return 0x31518E9B;
9552
9730
  }
9553
9731
  static get [name]() {
9554
9732
  return "messageActionRequestedPeer";
@@ -9556,13 +9734,13 @@ export class MessageActionRequestedPeer_ extends _MessageAction_ {
9556
9734
  static get [paramDesc]() {
9557
9735
  return [
9558
9736
  ["button_id", "number", "int"],
9559
- ["peer", _Peer_, "Peer"],
9737
+ ["peers", [_Peer_], "Vector<Peer>"],
9560
9738
  ];
9561
9739
  }
9562
9740
  get [params]() {
9563
9741
  return [
9564
9742
  [this.button_id, "number", "int"],
9565
- [this.peer, _Peer_, "Peer"],
9743
+ [this.peers, [_Peer_], "Vector<Peer>"],
9566
9744
  ];
9567
9745
  }
9568
9746
  constructor(params) {
@@ -9573,14 +9751,14 @@ export class MessageActionRequestedPeer_ extends _MessageAction_ {
9573
9751
  writable: true,
9574
9752
  value: void 0
9575
9753
  });
9576
- Object.defineProperty(this, "peer", {
9754
+ Object.defineProperty(this, "peers", {
9577
9755
  enumerable: true,
9578
9756
  configurable: true,
9579
9757
  writable: true,
9580
9758
  value: void 0
9581
9759
  });
9582
9760
  this.button_id = params.button_id;
9583
- this.peer = params.peer;
9761
+ this.peers = params.peers;
9584
9762
  }
9585
9763
  }
9586
9764
  export class MessageActionSetChatWallPaper_ extends _MessageAction_ {
@@ -9633,7 +9811,7 @@ export class MessageActionSetChatWallPaper_ extends _MessageAction_ {
9633
9811
  }
9634
9812
  export class MessageActionGiftCode_ extends _MessageAction_ {
9635
9813
  get [id]() {
9636
- return 0xD2CFDB0E;
9814
+ return 0x678C2E09;
9637
9815
  }
9638
9816
  static get [name]() {
9639
9817
  return "messageActionGiftCode";
@@ -9646,6 +9824,10 @@ export class MessageActionGiftCode_ extends _MessageAction_ {
9646
9824
  ["boost_peer", _Peer_, "flags.1?Peer"],
9647
9825
  ["months", "number", "int"],
9648
9826
  ["slug", "string", "string"],
9827
+ ["currency", "string", "flags.2?string"],
9828
+ ["amount", "bigint", "flags.2?long"],
9829
+ ["crypto_currency", "string", "flags.3?string"],
9830
+ ["crypto_amount", "bigint", "flags.3?long"],
9649
9831
  ];
9650
9832
  }
9651
9833
  get [params]() {
@@ -9656,6 +9838,10 @@ export class MessageActionGiftCode_ extends _MessageAction_ {
9656
9838
  [this.boost_peer ?? null, _Peer_, "flags.1?Peer"],
9657
9839
  [this.months, "number", "int"],
9658
9840
  [this.slug, "string", "string"],
9841
+ [this.currency ?? null, "string", "flags.2?string"],
9842
+ [this.amount ?? null, "bigint", "flags.2?long"],
9843
+ [this.crypto_currency ?? null, "string", "flags.3?string"],
9844
+ [this.crypto_amount ?? null, "bigint", "flags.3?long"],
9659
9845
  ];
9660
9846
  }
9661
9847
  constructor(params) {
@@ -9690,11 +9876,39 @@ export class MessageActionGiftCode_ extends _MessageAction_ {
9690
9876
  writable: true,
9691
9877
  value: void 0
9692
9878
  });
9879
+ Object.defineProperty(this, "currency", {
9880
+ enumerable: true,
9881
+ configurable: true,
9882
+ writable: true,
9883
+ value: void 0
9884
+ });
9885
+ Object.defineProperty(this, "amount", {
9886
+ enumerable: true,
9887
+ configurable: true,
9888
+ writable: true,
9889
+ value: void 0
9890
+ });
9891
+ Object.defineProperty(this, "crypto_currency", {
9892
+ enumerable: true,
9893
+ configurable: true,
9894
+ writable: true,
9895
+ value: void 0
9896
+ });
9897
+ Object.defineProperty(this, "crypto_amount", {
9898
+ enumerable: true,
9899
+ configurable: true,
9900
+ writable: true,
9901
+ value: void 0
9902
+ });
9693
9903
  this.via_giveaway = params.via_giveaway;
9694
9904
  this.unclaimed = params.unclaimed;
9695
9905
  this.boost_peer = params.boost_peer;
9696
9906
  this.months = params.months;
9697
9907
  this.slug = params.slug;
9908
+ this.currency = params.currency;
9909
+ this.amount = params.amount;
9910
+ this.crypto_currency = params.crypto_currency;
9911
+ this.crypto_amount = params.crypto_amount;
9698
9912
  }
9699
9913
  }
9700
9914
  export class MessageActionGiveawayLaunch_ extends _MessageAction_ {
@@ -18064,6 +18278,152 @@ export class UpdatePeerWallpaper_ extends _Update_ {
18064
18278
  this.wallpaper = params.wallpaper;
18065
18279
  }
18066
18280
  }
18281
+ export class UpdateBotMessageReaction_ extends _Update_ {
18282
+ get [id]() {
18283
+ return 0xAC21D3CE;
18284
+ }
18285
+ static get [name]() {
18286
+ return "updateBotMessageReaction";
18287
+ }
18288
+ static get [paramDesc]() {
18289
+ return [
18290
+ ["peer", _Peer_, "Peer"],
18291
+ ["msg_id", "number", "int"],
18292
+ ["date", "number", "int"],
18293
+ ["actor", _Peer_, "Peer"],
18294
+ ["old_reactions", [_Reaction_], "Vector<Reaction>"],
18295
+ ["new_reactions", [_Reaction_], "Vector<Reaction>"],
18296
+ ["qts", "number", "int"],
18297
+ ];
18298
+ }
18299
+ get [params]() {
18300
+ return [
18301
+ [this.peer, _Peer_, "Peer"],
18302
+ [this.msg_id, "number", "int"],
18303
+ [this.date, "number", "int"],
18304
+ [this.actor, _Peer_, "Peer"],
18305
+ [this.old_reactions, [_Reaction_], "Vector<Reaction>"],
18306
+ [this.new_reactions, [_Reaction_], "Vector<Reaction>"],
18307
+ [this.qts, "number", "int"],
18308
+ ];
18309
+ }
18310
+ constructor(params) {
18311
+ super();
18312
+ Object.defineProperty(this, "peer", {
18313
+ enumerable: true,
18314
+ configurable: true,
18315
+ writable: true,
18316
+ value: void 0
18317
+ });
18318
+ Object.defineProperty(this, "msg_id", {
18319
+ enumerable: true,
18320
+ configurable: true,
18321
+ writable: true,
18322
+ value: void 0
18323
+ });
18324
+ Object.defineProperty(this, "date", {
18325
+ enumerable: true,
18326
+ configurable: true,
18327
+ writable: true,
18328
+ value: void 0
18329
+ });
18330
+ Object.defineProperty(this, "actor", {
18331
+ enumerable: true,
18332
+ configurable: true,
18333
+ writable: true,
18334
+ value: void 0
18335
+ });
18336
+ Object.defineProperty(this, "old_reactions", {
18337
+ enumerable: true,
18338
+ configurable: true,
18339
+ writable: true,
18340
+ value: void 0
18341
+ });
18342
+ Object.defineProperty(this, "new_reactions", {
18343
+ enumerable: true,
18344
+ configurable: true,
18345
+ writable: true,
18346
+ value: void 0
18347
+ });
18348
+ Object.defineProperty(this, "qts", {
18349
+ enumerable: true,
18350
+ configurable: true,
18351
+ writable: true,
18352
+ value: void 0
18353
+ });
18354
+ this.peer = params.peer;
18355
+ this.msg_id = params.msg_id;
18356
+ this.date = params.date;
18357
+ this.actor = params.actor;
18358
+ this.old_reactions = params.old_reactions;
18359
+ this.new_reactions = params.new_reactions;
18360
+ this.qts = params.qts;
18361
+ }
18362
+ }
18363
+ export class UpdateBotMessageReactions_ extends _Update_ {
18364
+ get [id]() {
18365
+ return 0x09CB7759;
18366
+ }
18367
+ static get [name]() {
18368
+ return "updateBotMessageReactions";
18369
+ }
18370
+ static get [paramDesc]() {
18371
+ return [
18372
+ ["peer", _Peer_, "Peer"],
18373
+ ["msg_id", "number", "int"],
18374
+ ["date", "number", "int"],
18375
+ ["reactions", [_ReactionCount_], "Vector<ReactionCount>"],
18376
+ ["qts", "number", "int"],
18377
+ ];
18378
+ }
18379
+ get [params]() {
18380
+ return [
18381
+ [this.peer, _Peer_, "Peer"],
18382
+ [this.msg_id, "number", "int"],
18383
+ [this.date, "number", "int"],
18384
+ [this.reactions, [_ReactionCount_], "Vector<ReactionCount>"],
18385
+ [this.qts, "number", "int"],
18386
+ ];
18387
+ }
18388
+ constructor(params) {
18389
+ super();
18390
+ Object.defineProperty(this, "peer", {
18391
+ enumerable: true,
18392
+ configurable: true,
18393
+ writable: true,
18394
+ value: void 0
18395
+ });
18396
+ Object.defineProperty(this, "msg_id", {
18397
+ enumerable: true,
18398
+ configurable: true,
18399
+ writable: true,
18400
+ value: void 0
18401
+ });
18402
+ Object.defineProperty(this, "date", {
18403
+ enumerable: true,
18404
+ configurable: true,
18405
+ writable: true,
18406
+ value: void 0
18407
+ });
18408
+ Object.defineProperty(this, "reactions", {
18409
+ enumerable: true,
18410
+ configurable: true,
18411
+ writable: true,
18412
+ value: void 0
18413
+ });
18414
+ Object.defineProperty(this, "qts", {
18415
+ enumerable: true,
18416
+ configurable: true,
18417
+ writable: true,
18418
+ value: void 0
18419
+ });
18420
+ this.peer = params.peer;
18421
+ this.msg_id = params.msg_id;
18422
+ this.date = params.date;
18423
+ this.reactions = params.reactions;
18424
+ this.qts = params.qts;
18425
+ }
18426
+ }
18067
18427
  export class updates_State_ extends _updates_State_ {
18068
18428
  get [id]() {
18069
18429
  return 0xA56C2A3E;
@@ -24332,6 +24692,23 @@ export class InputStickerSetEmojiDefaultTopicIcons_ extends _InputStickerSet_ {
24332
24692
  super();
24333
24693
  }
24334
24694
  }
24695
+ export class InputStickerSetEmojiChannelDefaultStatuses_ extends _InputStickerSet_ {
24696
+ get [id]() {
24697
+ return 0x49748553;
24698
+ }
24699
+ static get [name]() {
24700
+ return "inputStickerSetEmojiChannelDefaultStatuses";
24701
+ }
24702
+ static get [paramDesc]() {
24703
+ return [];
24704
+ }
24705
+ get [params]() {
24706
+ return [];
24707
+ }
24708
+ constructor() {
24709
+ super();
24710
+ }
24711
+ }
24335
24712
  export class StickerSet_ extends _StickerSet_ {
24336
24713
  get [id]() {
24337
24714
  return 0x2DD14EDC;
@@ -24349,6 +24726,7 @@ export class StickerSet_ extends _StickerSet_ {
24349
24726
  ["videos", "true", "flags.6?true"],
24350
24727
  ["emojis", "true", "flags.7?true"],
24351
24728
  ["text_color", "true", "flags.9?true"],
24729
+ ["channel_emoji_status", "true", "flags.10?true"],
24352
24730
  ["installed_date", "number", "flags.0?int"],
24353
24731
  ["id", "bigint", "long"],
24354
24732
  ["access_hash", "bigint", "long"],
@@ -24372,6 +24750,7 @@ export class StickerSet_ extends _StickerSet_ {
24372
24750
  [this.videos ?? null, "true", "flags.6?true"],
24373
24751
  [this.emojis ?? null, "true", "flags.7?true"],
24374
24752
  [this.text_color ?? null, "true", "flags.9?true"],
24753
+ [this.channel_emoji_status ?? null, "true", "flags.10?true"],
24375
24754
  [this.installed_date ?? null, "number", "flags.0?int"],
24376
24755
  [this.id, "bigint", "long"],
24377
24756
  [this.access_hash, "bigint", "long"],
@@ -24429,6 +24808,12 @@ export class StickerSet_ extends _StickerSet_ {
24429
24808
  writable: true,
24430
24809
  value: void 0
24431
24810
  });
24811
+ Object.defineProperty(this, "channel_emoji_status", {
24812
+ enumerable: true,
24813
+ configurable: true,
24814
+ writable: true,
24815
+ value: void 0
24816
+ });
24432
24817
  Object.defineProperty(this, "installed_date", {
24433
24818
  enumerable: true,
24434
24819
  configurable: true,
@@ -24502,6 +24887,7 @@ export class StickerSet_ extends _StickerSet_ {
24502
24887
  this.videos = params.videos;
24503
24888
  this.emojis = params.emojis;
24504
24889
  this.text_color = params.text_color;
24890
+ this.channel_emoji_status = params.channel_emoji_status;
24505
24891
  this.installed_date = params.installed_date;
24506
24892
  this.id = params.id;
24507
24893
  this.access_hash = params.access_hash;
@@ -25293,7 +25679,7 @@ export class KeyboardButtonSimpleWebView_ extends _KeyboardButton_ {
25293
25679
  }
25294
25680
  export class KeyboardButtonRequestPeer_ extends _KeyboardButton_ {
25295
25681
  get [id]() {
25296
- return 0x0D0B468C;
25682
+ return 0x53D7BFD8;
25297
25683
  }
25298
25684
  static get [name]() {
25299
25685
  return "keyboardButtonRequestPeer";
@@ -25303,6 +25689,7 @@ export class KeyboardButtonRequestPeer_ extends _KeyboardButton_ {
25303
25689
  ["text", "string", "string"],
25304
25690
  ["button_id", "number", "int"],
25305
25691
  ["peer_type", _RequestPeerType_, "RequestPeerType"],
25692
+ ["max_quantity", "number", "int"],
25306
25693
  ];
25307
25694
  }
25308
25695
  get [params]() {
@@ -25310,6 +25697,7 @@ export class KeyboardButtonRequestPeer_ extends _KeyboardButton_ {
25310
25697
  [this.text, "string", "string"],
25311
25698
  [this.button_id, "number", "int"],
25312
25699
  [this.peer_type, _RequestPeerType_, "RequestPeerType"],
25700
+ [this.max_quantity, "number", "int"],
25313
25701
  ];
25314
25702
  }
25315
25703
  constructor(params) {
@@ -25332,9 +25720,16 @@ export class KeyboardButtonRequestPeer_ extends _KeyboardButton_ {
25332
25720
  writable: true,
25333
25721
  value: void 0
25334
25722
  });
25723
+ Object.defineProperty(this, "max_quantity", {
25724
+ enumerable: true,
25725
+ configurable: true,
25726
+ writable: true,
25727
+ value: void 0
25728
+ });
25335
25729
  this.text = params.text;
25336
25730
  this.button_id = params.button_id;
25337
25731
  this.peer_type = params.peer_type;
25732
+ this.max_quantity = params.max_quantity;
25338
25733
  }
25339
25734
  }
25340
25735
  export class KeyboardButtonRow_ extends _KeyboardButtonRow_ {
@@ -37130,23 +37525,23 @@ export class ChannelAdminLogEventActionToggleAntiSpam_ extends _ChannelAdminLogE
37130
37525
  this.new_value = params.new_value;
37131
37526
  }
37132
37527
  }
37133
- export class ChannelAdminLogEventActionChangeColor_ extends _ChannelAdminLogEventAction_ {
37528
+ export class ChannelAdminLogEventActionChangePeerColor_ extends _ChannelAdminLogEventAction_ {
37134
37529
  get [id]() {
37135
- return 0x3C2B247B;
37530
+ return 0x5796E780;
37136
37531
  }
37137
37532
  static get [name]() {
37138
- return "channelAdminLogEventActionChangeColor";
37533
+ return "channelAdminLogEventActionChangePeerColor";
37139
37534
  }
37140
37535
  static get [paramDesc]() {
37141
37536
  return [
37142
- ["prev_value", "number", "int"],
37143
- ["new_value", "number", "int"],
37537
+ ["prev_value", _PeerColor_, "PeerColor"],
37538
+ ["new_value", _PeerColor_, "PeerColor"],
37144
37539
  ];
37145
37540
  }
37146
37541
  get [params]() {
37147
37542
  return [
37148
- [this.prev_value, "number", "int"],
37149
- [this.new_value, "number", "int"],
37543
+ [this.prev_value, _PeerColor_, "PeerColor"],
37544
+ [this.new_value, _PeerColor_, "PeerColor"],
37150
37545
  ];
37151
37546
  }
37152
37547
  constructor(params) {
@@ -37167,23 +37562,97 @@ export class ChannelAdminLogEventActionChangeColor_ extends _ChannelAdminLogEven
37167
37562
  this.new_value = params.new_value;
37168
37563
  }
37169
37564
  }
37170
- export class ChannelAdminLogEventActionChangeBackgroundEmoji_ extends _ChannelAdminLogEventAction_ {
37565
+ export class ChannelAdminLogEventActionChangeProfilePeerColor_ extends _ChannelAdminLogEventAction_ {
37171
37566
  get [id]() {
37172
- return 0x445FC434;
37567
+ return 0x5E477B25;
37173
37568
  }
37174
37569
  static get [name]() {
37175
- return "channelAdminLogEventActionChangeBackgroundEmoji";
37570
+ return "channelAdminLogEventActionChangeProfilePeerColor";
37176
37571
  }
37177
37572
  static get [paramDesc]() {
37178
37573
  return [
37179
- ["prev_value", "bigint", "long"],
37180
- ["new_value", "bigint", "long"],
37574
+ ["prev_value", _PeerColor_, "PeerColor"],
37575
+ ["new_value", _PeerColor_, "PeerColor"],
37181
37576
  ];
37182
37577
  }
37183
37578
  get [params]() {
37184
37579
  return [
37185
- [this.prev_value, "bigint", "long"],
37186
- [this.new_value, "bigint", "long"],
37580
+ [this.prev_value, _PeerColor_, "PeerColor"],
37581
+ [this.new_value, _PeerColor_, "PeerColor"],
37582
+ ];
37583
+ }
37584
+ constructor(params) {
37585
+ super();
37586
+ Object.defineProperty(this, "prev_value", {
37587
+ enumerable: true,
37588
+ configurable: true,
37589
+ writable: true,
37590
+ value: void 0
37591
+ });
37592
+ Object.defineProperty(this, "new_value", {
37593
+ enumerable: true,
37594
+ configurable: true,
37595
+ writable: true,
37596
+ value: void 0
37597
+ });
37598
+ this.prev_value = params.prev_value;
37599
+ this.new_value = params.new_value;
37600
+ }
37601
+ }
37602
+ export class ChannelAdminLogEventActionChangeWallpaper_ extends _ChannelAdminLogEventAction_ {
37603
+ get [id]() {
37604
+ return 0x31BB5D52;
37605
+ }
37606
+ static get [name]() {
37607
+ return "channelAdminLogEventActionChangeWallpaper";
37608
+ }
37609
+ static get [paramDesc]() {
37610
+ return [
37611
+ ["prev_value", _WallPaper_, "WallPaper"],
37612
+ ["new_value", _WallPaper_, "WallPaper"],
37613
+ ];
37614
+ }
37615
+ get [params]() {
37616
+ return [
37617
+ [this.prev_value, _WallPaper_, "WallPaper"],
37618
+ [this.new_value, _WallPaper_, "WallPaper"],
37619
+ ];
37620
+ }
37621
+ constructor(params) {
37622
+ super();
37623
+ Object.defineProperty(this, "prev_value", {
37624
+ enumerable: true,
37625
+ configurable: true,
37626
+ writable: true,
37627
+ value: void 0
37628
+ });
37629
+ Object.defineProperty(this, "new_value", {
37630
+ enumerable: true,
37631
+ configurable: true,
37632
+ writable: true,
37633
+ value: void 0
37634
+ });
37635
+ this.prev_value = params.prev_value;
37636
+ this.new_value = params.new_value;
37637
+ }
37638
+ }
37639
+ export class ChannelAdminLogEventActionChangeEmojiStatus_ extends _ChannelAdminLogEventAction_ {
37640
+ get [id]() {
37641
+ return 0x3EA9FEB1;
37642
+ }
37643
+ static get [name]() {
37644
+ return "channelAdminLogEventActionChangeEmojiStatus";
37645
+ }
37646
+ static get [paramDesc]() {
37647
+ return [
37648
+ ["prev_value", _EmojiStatus_, "EmojiStatus"],
37649
+ ["new_value", _EmojiStatus_, "EmojiStatus"],
37650
+ ];
37651
+ }
37652
+ get [params]() {
37653
+ return [
37654
+ [this.prev_value, _EmojiStatus_, "EmojiStatus"],
37655
+ [this.new_value, _EmojiStatus_, "EmojiStatus"],
37187
37656
  ];
37188
37657
  }
37189
37658
  constructor(params) {
@@ -42045,7 +42514,7 @@ export class CodeSettings_ extends _CodeSettings_ {
42045
42514
  }
42046
42515
  export class WallPaperSettings_ extends _WallPaperSettings_ {
42047
42516
  get [id]() {
42048
- return 0x1DC1BCA4;
42517
+ return 0x372EFCD0;
42049
42518
  }
42050
42519
  static get [name]() {
42051
42520
  return "wallPaperSettings";
@@ -42061,6 +42530,7 @@ export class WallPaperSettings_ extends _WallPaperSettings_ {
42061
42530
  ["fourth_background_color", "number", "flags.6?int"],
42062
42531
  ["intensity", "number", "flags.3?int"],
42063
42532
  ["rotation", "number", "flags.4?int"],
42533
+ ["emoticon", "string", "flags.7?string"],
42064
42534
  ];
42065
42535
  }
42066
42536
  get [params]() {
@@ -42074,6 +42544,7 @@ export class WallPaperSettings_ extends _WallPaperSettings_ {
42074
42544
  [this.fourth_background_color ?? null, "number", "flags.6?int"],
42075
42545
  [this.intensity ?? null, "number", "flags.3?int"],
42076
42546
  [this.rotation ?? null, "number", "flags.4?int"],
42547
+ [this.emoticon ?? null, "string", "flags.7?string"],
42077
42548
  ];
42078
42549
  }
42079
42550
  constructor(params) {
@@ -42126,6 +42597,12 @@ export class WallPaperSettings_ extends _WallPaperSettings_ {
42126
42597
  writable: true,
42127
42598
  value: void 0
42128
42599
  });
42600
+ Object.defineProperty(this, "emoticon", {
42601
+ enumerable: true,
42602
+ configurable: true,
42603
+ writable: true,
42604
+ value: void 0
42605
+ });
42129
42606
  this.blur = params?.blur;
42130
42607
  this.motion = params?.motion;
42131
42608
  this.background_color = params?.background_color;
@@ -42134,6 +42611,7 @@ export class WallPaperSettings_ extends _WallPaperSettings_ {
42134
42611
  this.fourth_background_color = params?.fourth_background_color;
42135
42612
  this.intensity = params?.intensity;
42136
42613
  this.rotation = params?.rotation;
42614
+ this.emoticon = params?.emoticon;
42137
42615
  }
42138
42616
  }
42139
42617
  export class AutoDownloadSettings_ extends _AutoDownloadSettings_ {
@@ -49773,7 +50251,7 @@ export class InputStorePaymentPremiumGiftCode_ extends _InputStorePaymentPurpose
49773
50251
  }
49774
50252
  export class InputStorePaymentPremiumGiveaway_ extends _InputStorePaymentPurpose_ {
49775
50253
  get [id]() {
49776
- return 0x7C9375E6;
50254
+ return 0x160544CA;
49777
50255
  }
49778
50256
  static get [name]() {
49779
50257
  return "inputStorePaymentPremiumGiveaway";
@@ -49782,9 +50260,11 @@ export class InputStorePaymentPremiumGiveaway_ extends _InputStorePaymentPurpose
49782
50260
  return [
49783
50261
  ["flags", flags, "#"],
49784
50262
  ["only_new_subscribers", "true", "flags.0?true"],
50263
+ ["winners_are_visible", "true", "flags.3?true"],
49785
50264
  ["boost_peer", _InputPeer_, "InputPeer"],
49786
50265
  ["additional_peers", [_InputPeer_], "flags.1?Vector<InputPeer>"],
49787
50266
  ["countries_iso2", ["string"], "flags.2?Vector<string>"],
50267
+ ["prize_description", "string", "flags.4?string"],
49788
50268
  ["random_id", "bigint", "long"],
49789
50269
  ["until_date", "number", "int"],
49790
50270
  ["currency", "string", "string"],
@@ -49795,9 +50275,11 @@ export class InputStorePaymentPremiumGiveaway_ extends _InputStorePaymentPurpose
49795
50275
  return [
49796
50276
  ["flags", flags, "#"],
49797
50277
  [this.only_new_subscribers ?? null, "true", "flags.0?true"],
50278
+ [this.winners_are_visible ?? null, "true", "flags.3?true"],
49798
50279
  [this.boost_peer, _InputPeer_, "InputPeer"],
49799
50280
  [this.additional_peers ?? null, [_InputPeer_], "flags.1?Vector<InputPeer>"],
49800
50281
  [this.countries_iso2 ?? null, ["string"], "flags.2?Vector<string>"],
50282
+ [this.prize_description ?? null, "string", "flags.4?string"],
49801
50283
  [this.random_id, "bigint", "long"],
49802
50284
  [this.until_date, "number", "int"],
49803
50285
  [this.currency, "string", "string"],
@@ -49812,6 +50294,12 @@ export class InputStorePaymentPremiumGiveaway_ extends _InputStorePaymentPurpose
49812
50294
  writable: true,
49813
50295
  value: void 0
49814
50296
  });
50297
+ Object.defineProperty(this, "winners_are_visible", {
50298
+ enumerable: true,
50299
+ configurable: true,
50300
+ writable: true,
50301
+ value: void 0
50302
+ });
49815
50303
  Object.defineProperty(this, "boost_peer", {
49816
50304
  enumerable: true,
49817
50305
  configurable: true,
@@ -49830,6 +50318,12 @@ export class InputStorePaymentPremiumGiveaway_ extends _InputStorePaymentPurpose
49830
50318
  writable: true,
49831
50319
  value: void 0
49832
50320
  });
50321
+ Object.defineProperty(this, "prize_description", {
50322
+ enumerable: true,
50323
+ configurable: true,
50324
+ writable: true,
50325
+ value: void 0
50326
+ });
49833
50327
  Object.defineProperty(this, "random_id", {
49834
50328
  enumerable: true,
49835
50329
  configurable: true,
@@ -49855,9 +50349,11 @@ export class InputStorePaymentPremiumGiveaway_ extends _InputStorePaymentPurpose
49855
50349
  value: void 0
49856
50350
  });
49857
50351
  this.only_new_subscribers = params.only_new_subscribers;
50352
+ this.winners_are_visible = params.winners_are_visible;
49858
50353
  this.boost_peer = params.boost_peer;
49859
50354
  this.additional_peers = params.additional_peers;
49860
50355
  this.countries_iso2 = params.countries_iso2;
50356
+ this.prize_description = params.prize_description;
49861
50357
  this.random_id = params.random_id;
49862
50358
  this.until_date = params.until_date;
49863
50359
  this.currency = params.currency;
@@ -53304,9 +53800,114 @@ export class StoryView_ extends _StoryView_ {
53304
53800
  this.reaction = params.reaction;
53305
53801
  }
53306
53802
  }
53803
+ export class StoryViewPublicForward_ extends _StoryView_ {
53804
+ get [id]() {
53805
+ return 0x9083670B;
53806
+ }
53807
+ static get [name]() {
53808
+ return "storyViewPublicForward";
53809
+ }
53810
+ static get [paramDesc]() {
53811
+ return [
53812
+ ["flags", flags, "#"],
53813
+ ["blocked", "true", "flags.0?true"],
53814
+ ["blocked_my_stories_from", "true", "flags.1?true"],
53815
+ ["message", _Message_, "Message"],
53816
+ ];
53817
+ }
53818
+ get [params]() {
53819
+ return [
53820
+ ["flags", flags, "#"],
53821
+ [this.blocked ?? null, "true", "flags.0?true"],
53822
+ [this.blocked_my_stories_from ?? null, "true", "flags.1?true"],
53823
+ [this.message, _Message_, "Message"],
53824
+ ];
53825
+ }
53826
+ constructor(params) {
53827
+ super();
53828
+ Object.defineProperty(this, "blocked", {
53829
+ enumerable: true,
53830
+ configurable: true,
53831
+ writable: true,
53832
+ value: void 0
53833
+ });
53834
+ Object.defineProperty(this, "blocked_my_stories_from", {
53835
+ enumerable: true,
53836
+ configurable: true,
53837
+ writable: true,
53838
+ value: void 0
53839
+ });
53840
+ Object.defineProperty(this, "message", {
53841
+ enumerable: true,
53842
+ configurable: true,
53843
+ writable: true,
53844
+ value: void 0
53845
+ });
53846
+ this.blocked = params.blocked;
53847
+ this.blocked_my_stories_from = params.blocked_my_stories_from;
53848
+ this.message = params.message;
53849
+ }
53850
+ }
53851
+ export class StoryViewPublicRepost_ extends _StoryView_ {
53852
+ get [id]() {
53853
+ return 0xBD74CF49;
53854
+ }
53855
+ static get [name]() {
53856
+ return "storyViewPublicRepost";
53857
+ }
53858
+ static get [paramDesc]() {
53859
+ return [
53860
+ ["flags", flags, "#"],
53861
+ ["blocked", "true", "flags.0?true"],
53862
+ ["blocked_my_stories_from", "true", "flags.1?true"],
53863
+ ["peer_id", _Peer_, "Peer"],
53864
+ ["story", _StoryItem_, "StoryItem"],
53865
+ ];
53866
+ }
53867
+ get [params]() {
53868
+ return [
53869
+ ["flags", flags, "#"],
53870
+ [this.blocked ?? null, "true", "flags.0?true"],
53871
+ [this.blocked_my_stories_from ?? null, "true", "flags.1?true"],
53872
+ [this.peer_id, _Peer_, "Peer"],
53873
+ [this.story, _StoryItem_, "StoryItem"],
53874
+ ];
53875
+ }
53876
+ constructor(params) {
53877
+ super();
53878
+ Object.defineProperty(this, "blocked", {
53879
+ enumerable: true,
53880
+ configurable: true,
53881
+ writable: true,
53882
+ value: void 0
53883
+ });
53884
+ Object.defineProperty(this, "blocked_my_stories_from", {
53885
+ enumerable: true,
53886
+ configurable: true,
53887
+ writable: true,
53888
+ value: void 0
53889
+ });
53890
+ Object.defineProperty(this, "peer_id", {
53891
+ enumerable: true,
53892
+ configurable: true,
53893
+ writable: true,
53894
+ value: void 0
53895
+ });
53896
+ Object.defineProperty(this, "story", {
53897
+ enumerable: true,
53898
+ configurable: true,
53899
+ writable: true,
53900
+ value: void 0
53901
+ });
53902
+ this.blocked = params.blocked;
53903
+ this.blocked_my_stories_from = params.blocked_my_stories_from;
53904
+ this.peer_id = params.peer_id;
53905
+ this.story = params.story;
53906
+ }
53907
+ }
53307
53908
  export class stories_StoryViewsList_ extends _stories_StoryViewsList_ {
53308
53909
  get [id]() {
53309
- return 0x46E9B9EC;
53910
+ return 0x59D78FC5;
53310
53911
  }
53311
53912
  static get [name]() {
53312
53913
  return "stories.storyViewsList";
@@ -53315,8 +53916,11 @@ export class stories_StoryViewsList_ extends _stories_StoryViewsList_ {
53315
53916
  return [
53316
53917
  ["flags", flags, "#"],
53317
53918
  ["count", "number", "int"],
53919
+ ["views_count", "number", "int"],
53920
+ ["forwards_count", "number", "int"],
53318
53921
  ["reactions_count", "number", "int"],
53319
53922
  ["views", [_StoryView_], "Vector<StoryView>"],
53923
+ ["chats", [_Chat_], "Vector<Chat>"],
53320
53924
  ["users", [_User_], "Vector<User>"],
53321
53925
  ["next_offset", "string", "flags.0?string"],
53322
53926
  ];
@@ -53325,8 +53929,11 @@ export class stories_StoryViewsList_ extends _stories_StoryViewsList_ {
53325
53929
  return [
53326
53930
  ["flags", flags, "#"],
53327
53931
  [this.count, "number", "int"],
53932
+ [this.views_count, "number", "int"],
53933
+ [this.forwards_count, "number", "int"],
53328
53934
  [this.reactions_count, "number", "int"],
53329
53935
  [this.views, [_StoryView_], "Vector<StoryView>"],
53936
+ [this.chats, [_Chat_], "Vector<Chat>"],
53330
53937
  [this.users, [_User_], "Vector<User>"],
53331
53938
  [this.next_offset ?? null, "string", "flags.0?string"],
53332
53939
  ];
@@ -53339,6 +53946,18 @@ export class stories_StoryViewsList_ extends _stories_StoryViewsList_ {
53339
53946
  writable: true,
53340
53947
  value: void 0
53341
53948
  });
53949
+ Object.defineProperty(this, "views_count", {
53950
+ enumerable: true,
53951
+ configurable: true,
53952
+ writable: true,
53953
+ value: void 0
53954
+ });
53955
+ Object.defineProperty(this, "forwards_count", {
53956
+ enumerable: true,
53957
+ configurable: true,
53958
+ writable: true,
53959
+ value: void 0
53960
+ });
53342
53961
  Object.defineProperty(this, "reactions_count", {
53343
53962
  enumerable: true,
53344
53963
  configurable: true,
@@ -53351,6 +53970,12 @@ export class stories_StoryViewsList_ extends _stories_StoryViewsList_ {
53351
53970
  writable: true,
53352
53971
  value: void 0
53353
53972
  });
53973
+ Object.defineProperty(this, "chats", {
53974
+ enumerable: true,
53975
+ configurable: true,
53976
+ writable: true,
53977
+ value: void 0
53978
+ });
53354
53979
  Object.defineProperty(this, "users", {
53355
53980
  enumerable: true,
53356
53981
  configurable: true,
@@ -53364,8 +53989,11 @@ export class stories_StoryViewsList_ extends _stories_StoryViewsList_ {
53364
53989
  value: void 0
53365
53990
  });
53366
53991
  this.count = params.count;
53992
+ this.views_count = params.views_count;
53993
+ this.forwards_count = params.forwards_count;
53367
53994
  this.reactions_count = params.reactions_count;
53368
53995
  this.views = params.views;
53996
+ this.chats = params.chats;
53369
53997
  this.users = params.users;
53370
53998
  this.next_offset = params.next_offset;
53371
53999
  }
@@ -53872,6 +54500,98 @@ export class MediaAreaSuggestedReaction_ extends _MediaArea_ {
53872
54500
  this.reaction = params.reaction;
53873
54501
  }
53874
54502
  }
54503
+ export class MediaAreaChannelPost_ extends _MediaArea_ {
54504
+ get [id]() {
54505
+ return 0x770416AF;
54506
+ }
54507
+ static get [name]() {
54508
+ return "mediaAreaChannelPost";
54509
+ }
54510
+ static get [paramDesc]() {
54511
+ return [
54512
+ ["coordinates", _MediaAreaCoordinates_, "MediaAreaCoordinates"],
54513
+ ["channel_id", "bigint", "long"],
54514
+ ["msg_id", "number", "int"],
54515
+ ];
54516
+ }
54517
+ get [params]() {
54518
+ return [
54519
+ [this.coordinates, _MediaAreaCoordinates_, "MediaAreaCoordinates"],
54520
+ [this.channel_id, "bigint", "long"],
54521
+ [this.msg_id, "number", "int"],
54522
+ ];
54523
+ }
54524
+ constructor(params) {
54525
+ super();
54526
+ Object.defineProperty(this, "coordinates", {
54527
+ enumerable: true,
54528
+ configurable: true,
54529
+ writable: true,
54530
+ value: void 0
54531
+ });
54532
+ Object.defineProperty(this, "channel_id", {
54533
+ enumerable: true,
54534
+ configurable: true,
54535
+ writable: true,
54536
+ value: void 0
54537
+ });
54538
+ Object.defineProperty(this, "msg_id", {
54539
+ enumerable: true,
54540
+ configurable: true,
54541
+ writable: true,
54542
+ value: void 0
54543
+ });
54544
+ this.coordinates = params.coordinates;
54545
+ this.channel_id = params.channel_id;
54546
+ this.msg_id = params.msg_id;
54547
+ }
54548
+ }
54549
+ export class InputMediaAreaChannelPost_ extends _MediaArea_ {
54550
+ get [id]() {
54551
+ return 0x2271F2BF;
54552
+ }
54553
+ static get [name]() {
54554
+ return "inputMediaAreaChannelPost";
54555
+ }
54556
+ static get [paramDesc]() {
54557
+ return [
54558
+ ["coordinates", _MediaAreaCoordinates_, "MediaAreaCoordinates"],
54559
+ ["channel", _InputChannel_, "InputChannel"],
54560
+ ["msg_id", "number", "int"],
54561
+ ];
54562
+ }
54563
+ get [params]() {
54564
+ return [
54565
+ [this.coordinates, _MediaAreaCoordinates_, "MediaAreaCoordinates"],
54566
+ [this.channel, _InputChannel_, "InputChannel"],
54567
+ [this.msg_id, "number", "int"],
54568
+ ];
54569
+ }
54570
+ constructor(params) {
54571
+ super();
54572
+ Object.defineProperty(this, "coordinates", {
54573
+ enumerable: true,
54574
+ configurable: true,
54575
+ writable: true,
54576
+ value: void 0
54577
+ });
54578
+ Object.defineProperty(this, "channel", {
54579
+ enumerable: true,
54580
+ configurable: true,
54581
+ writable: true,
54582
+ value: void 0
54583
+ });
54584
+ Object.defineProperty(this, "msg_id", {
54585
+ enumerable: true,
54586
+ configurable: true,
54587
+ writable: true,
54588
+ value: void 0
54589
+ });
54590
+ this.coordinates = params.coordinates;
54591
+ this.channel = params.channel;
54592
+ this.msg_id = params.msg_id;
54593
+ }
54594
+ }
53875
54595
  export class PeerStories_ extends _PeerStories_ {
53876
54596
  get [id]() {
53877
54597
  return 0x9A35E999;
@@ -54089,7 +54809,7 @@ export class PremiumGiftCodeOption_ extends _PremiumGiftCodeOption_ {
54089
54809
  }
54090
54810
  export class payments_CheckedGiftCode_ extends _payments_CheckedGiftCode_ {
54091
54811
  get [id]() {
54092
- return 0xB722F158;
54812
+ return 0x284A1096;
54093
54813
  }
54094
54814
  static get [name]() {
54095
54815
  return "payments.checkedGiftCode";
@@ -54098,7 +54818,7 @@ export class payments_CheckedGiftCode_ extends _payments_CheckedGiftCode_ {
54098
54818
  return [
54099
54819
  ["flags", flags, "#"],
54100
54820
  ["via_giveaway", "true", "flags.2?true"],
54101
- ["from_id", _Peer_, "Peer"],
54821
+ ["from_id", _Peer_, "flags.4?Peer"],
54102
54822
  ["giveaway_msg_id", "number", "flags.3?int"],
54103
54823
  ["to_id", "bigint", "flags.0?long"],
54104
54824
  ["date", "number", "int"],
@@ -54112,7 +54832,7 @@ export class payments_CheckedGiftCode_ extends _payments_CheckedGiftCode_ {
54112
54832
  return [
54113
54833
  ["flags", flags, "#"],
54114
54834
  [this.via_giveaway ?? null, "true", "flags.2?true"],
54115
- [this.from_id, _Peer_, "Peer"],
54835
+ [this.from_id ?? null, _Peer_, "flags.4?Peer"],
54116
54836
  [this.giveaway_msg_id ?? null, "number", "flags.3?int"],
54117
54837
  [this.to_id ?? null, "bigint", "flags.0?long"],
54118
54838
  [this.date, "number", "int"],
@@ -55244,7 +55964,7 @@ export class help_PeerColorProfileSet_ extends _help_PeerColorSet_ {
55244
55964
  }
55245
55965
  export class help_PeerColorOption_ extends _help_PeerColorOption_ {
55246
55966
  get [id]() {
55247
- return 0x135BD42F;
55967
+ return 0xEF8430AB;
55248
55968
  }
55249
55969
  static get [name]() {
55250
55970
  return "help.peerColorOption";
@@ -55256,6 +55976,7 @@ export class help_PeerColorOption_ extends _help_PeerColorOption_ {
55256
55976
  ["color_id", "number", "int"],
55257
55977
  ["colors", _help_PeerColorSet_, "flags.1?help.PeerColorSet"],
55258
55978
  ["dark_colors", _help_PeerColorSet_, "flags.2?help.PeerColorSet"],
55979
+ ["channel_min_level", "number", "flags.3?int"],
55259
55980
  ];
55260
55981
  }
55261
55982
  get [params]() {
@@ -55265,6 +55986,7 @@ export class help_PeerColorOption_ extends _help_PeerColorOption_ {
55265
55986
  [this.color_id, "number", "int"],
55266
55987
  [this.colors ?? null, _help_PeerColorSet_, "flags.1?help.PeerColorSet"],
55267
55988
  [this.dark_colors ?? null, _help_PeerColorSet_, "flags.2?help.PeerColorSet"],
55989
+ [this.channel_min_level ?? null, "number", "flags.3?int"],
55268
55990
  ];
55269
55991
  }
55270
55992
  constructor(params) {
@@ -55293,10 +56015,17 @@ export class help_PeerColorOption_ extends _help_PeerColorOption_ {
55293
56015
  writable: true,
55294
56016
  value: void 0
55295
56017
  });
56018
+ Object.defineProperty(this, "channel_min_level", {
56019
+ enumerable: true,
56020
+ configurable: true,
56021
+ writable: true,
56022
+ value: void 0
56023
+ });
55296
56024
  this.hidden = params.hidden;
55297
56025
  this.color_id = params.color_id;
55298
56026
  this.colors = params.colors;
55299
56027
  this.dark_colors = params.dark_colors;
56028
+ this.channel_min_level = params.channel_min_level;
55300
56029
  }
55301
56030
  }
55302
56031
  export class help_PeerColorsNotModified_ extends _help_PeerColors_ {
@@ -55353,6 +56082,183 @@ export class help_PeerColors_ extends _help_PeerColors_ {
55353
56082
  this.colors = params.colors;
55354
56083
  }
55355
56084
  }
56085
+ export class StoryReaction_ extends _StoryReaction_ {
56086
+ get [id]() {
56087
+ return 0x6090D6D5;
56088
+ }
56089
+ static get [name]() {
56090
+ return "storyReaction";
56091
+ }
56092
+ static get [paramDesc]() {
56093
+ return [
56094
+ ["peer_id", _Peer_, "Peer"],
56095
+ ["date", "number", "int"],
56096
+ ["reaction", _Reaction_, "Reaction"],
56097
+ ];
56098
+ }
56099
+ get [params]() {
56100
+ return [
56101
+ [this.peer_id, _Peer_, "Peer"],
56102
+ [this.date, "number", "int"],
56103
+ [this.reaction, _Reaction_, "Reaction"],
56104
+ ];
56105
+ }
56106
+ constructor(params) {
56107
+ super();
56108
+ Object.defineProperty(this, "peer_id", {
56109
+ enumerable: true,
56110
+ configurable: true,
56111
+ writable: true,
56112
+ value: void 0
56113
+ });
56114
+ Object.defineProperty(this, "date", {
56115
+ enumerable: true,
56116
+ configurable: true,
56117
+ writable: true,
56118
+ value: void 0
56119
+ });
56120
+ Object.defineProperty(this, "reaction", {
56121
+ enumerable: true,
56122
+ configurable: true,
56123
+ writable: true,
56124
+ value: void 0
56125
+ });
56126
+ this.peer_id = params.peer_id;
56127
+ this.date = params.date;
56128
+ this.reaction = params.reaction;
56129
+ }
56130
+ }
56131
+ export class StoryReactionPublicForward_ extends _StoryReaction_ {
56132
+ get [id]() {
56133
+ return 0xBBAB2643;
56134
+ }
56135
+ static get [name]() {
56136
+ return "storyReactionPublicForward";
56137
+ }
56138
+ static get [paramDesc]() {
56139
+ return [
56140
+ ["message", _Message_, "Message"],
56141
+ ];
56142
+ }
56143
+ get [params]() {
56144
+ return [
56145
+ [this.message, _Message_, "Message"],
56146
+ ];
56147
+ }
56148
+ constructor(params) {
56149
+ super();
56150
+ Object.defineProperty(this, "message", {
56151
+ enumerable: true,
56152
+ configurable: true,
56153
+ writable: true,
56154
+ value: void 0
56155
+ });
56156
+ this.message = params.message;
56157
+ }
56158
+ }
56159
+ export class StoryReactionPublicRepost_ extends _StoryReaction_ {
56160
+ get [id]() {
56161
+ return 0xCFCD0F13;
56162
+ }
56163
+ static get [name]() {
56164
+ return "storyReactionPublicRepost";
56165
+ }
56166
+ static get [paramDesc]() {
56167
+ return [
56168
+ ["peer_id", _Peer_, "Peer"],
56169
+ ["story", _StoryItem_, "StoryItem"],
56170
+ ];
56171
+ }
56172
+ get [params]() {
56173
+ return [
56174
+ [this.peer_id, _Peer_, "Peer"],
56175
+ [this.story, _StoryItem_, "StoryItem"],
56176
+ ];
56177
+ }
56178
+ constructor(params) {
56179
+ super();
56180
+ Object.defineProperty(this, "peer_id", {
56181
+ enumerable: true,
56182
+ configurable: true,
56183
+ writable: true,
56184
+ value: void 0
56185
+ });
56186
+ Object.defineProperty(this, "story", {
56187
+ enumerable: true,
56188
+ configurable: true,
56189
+ writable: true,
56190
+ value: void 0
56191
+ });
56192
+ this.peer_id = params.peer_id;
56193
+ this.story = params.story;
56194
+ }
56195
+ }
56196
+ export class stories_StoryReactionsList_ extends _stories_StoryReactionsList_ {
56197
+ get [id]() {
56198
+ return 0xAA5F789C;
56199
+ }
56200
+ static get [name]() {
56201
+ return "stories.storyReactionsList";
56202
+ }
56203
+ static get [paramDesc]() {
56204
+ return [
56205
+ ["flags", flags, "#"],
56206
+ ["count", "number", "int"],
56207
+ ["reactions", [_StoryReaction_], "Vector<StoryReaction>"],
56208
+ ["chats", [_Chat_], "Vector<Chat>"],
56209
+ ["users", [_User_], "Vector<User>"],
56210
+ ["next_offset", "string", "flags.0?string"],
56211
+ ];
56212
+ }
56213
+ get [params]() {
56214
+ return [
56215
+ ["flags", flags, "#"],
56216
+ [this.count, "number", "int"],
56217
+ [this.reactions, [_StoryReaction_], "Vector<StoryReaction>"],
56218
+ [this.chats, [_Chat_], "Vector<Chat>"],
56219
+ [this.users, [_User_], "Vector<User>"],
56220
+ [this.next_offset ?? null, "string", "flags.0?string"],
56221
+ ];
56222
+ }
56223
+ constructor(params) {
56224
+ super();
56225
+ Object.defineProperty(this, "count", {
56226
+ enumerable: true,
56227
+ configurable: true,
56228
+ writable: true,
56229
+ value: void 0
56230
+ });
56231
+ Object.defineProperty(this, "reactions", {
56232
+ enumerable: true,
56233
+ configurable: true,
56234
+ writable: true,
56235
+ value: void 0
56236
+ });
56237
+ Object.defineProperty(this, "chats", {
56238
+ enumerable: true,
56239
+ configurable: true,
56240
+ writable: true,
56241
+ value: void 0
56242
+ });
56243
+ Object.defineProperty(this, "users", {
56244
+ enumerable: true,
56245
+ configurable: true,
56246
+ writable: true,
56247
+ value: void 0
56248
+ });
56249
+ Object.defineProperty(this, "next_offset", {
56250
+ enumerable: true,
56251
+ configurable: true,
56252
+ writable: true,
56253
+ value: void 0
56254
+ });
56255
+ this.count = params.count;
56256
+ this.reactions = params.reactions;
56257
+ this.chats = params.chats;
56258
+ this.users = params.users;
56259
+ this.next_offset = params.next_offset;
56260
+ }
56261
+ }
55356
56262
  export const types = {
55357
56263
  Type: Type_,
55358
56264
  TypeX: TypeX_,
@@ -55812,6 +56718,8 @@ export const types = {
55812
56718
  _help_PeerColorSet: _help_PeerColorSet_,
55813
56719
  _help_PeerColorOption: _help_PeerColorOption_,
55814
56720
  _help_PeerColors: _help_PeerColors_,
56721
+ _StoryReaction: _StoryReaction_,
56722
+ _stories_StoryReactionsList: _stories_StoryReactionsList_,
55815
56723
  ResPQ: ResPQ_,
55816
56724
  P_q_inner_data_dc: P_q_inner_data_dc_,
55817
56725
  P_q_inner_data_temp_dc: P_q_inner_data_temp_dc_,
@@ -55942,6 +56850,7 @@ export const types = {
55942
56850
  MessageMediaDice: MessageMediaDice_,
55943
56851
  MessageMediaStory: MessageMediaStory_,
55944
56852
  MessageMediaGiveaway: MessageMediaGiveaway_,
56853
+ MessageMediaGiveawayResults: MessageMediaGiveawayResults_,
55945
56854
  MessageActionEmpty: MessageActionEmpty_,
55946
56855
  MessageActionChatCreate: MessageActionChatCreate_,
55947
56856
  MessageActionChatEditTitle: MessageActionChatEditTitle_,
@@ -56156,6 +57065,8 @@ export const types = {
56156
57065
  UpdateBotChatBoost: UpdateBotChatBoost_,
56157
57066
  UpdateChannelViewForumAsMessages: UpdateChannelViewForumAsMessages_,
56158
57067
  UpdatePeerWallpaper: UpdatePeerWallpaper_,
57068
+ UpdateBotMessageReaction: UpdateBotMessageReaction_,
57069
+ UpdateBotMessageReactions: UpdateBotMessageReactions_,
56159
57070
  UpdatesTooLong: UpdatesTooLong_,
56160
57071
  UpdateShortMessage: UpdateShortMessage_,
56161
57072
  UpdateShortChatMessage: UpdateShortChatMessage_,
@@ -56276,6 +57187,7 @@ export const types = {
56276
57187
  InputStickerSetEmojiGenericAnimations: InputStickerSetEmojiGenericAnimations_,
56277
57188
  InputStickerSetEmojiDefaultStatuses: InputStickerSetEmojiDefaultStatuses_,
56278
57189
  InputStickerSetEmojiDefaultTopicIcons: InputStickerSetEmojiDefaultTopicIcons_,
57190
+ InputStickerSetEmojiChannelDefaultStatuses: InputStickerSetEmojiChannelDefaultStatuses_,
56279
57191
  StickerSet: StickerSet_,
56280
57192
  BotCommand: BotCommand_,
56281
57193
  BotInfo: BotInfo_,
@@ -56518,8 +57430,10 @@ export const types = {
56518
57430
  ChannelAdminLogEventActionDeleteTopic: ChannelAdminLogEventActionDeleteTopic_,
56519
57431
  ChannelAdminLogEventActionPinTopic: ChannelAdminLogEventActionPinTopic_,
56520
57432
  ChannelAdminLogEventActionToggleAntiSpam: ChannelAdminLogEventActionToggleAntiSpam_,
56521
- ChannelAdminLogEventActionChangeColor: ChannelAdminLogEventActionChangeColor_,
56522
- ChannelAdminLogEventActionChangeBackgroundEmoji: ChannelAdminLogEventActionChangeBackgroundEmoji_,
57433
+ ChannelAdminLogEventActionChangePeerColor: ChannelAdminLogEventActionChangePeerColor_,
57434
+ ChannelAdminLogEventActionChangeProfilePeerColor: ChannelAdminLogEventActionChangeProfilePeerColor_,
57435
+ ChannelAdminLogEventActionChangeWallpaper: ChannelAdminLogEventActionChangeWallpaper_,
57436
+ ChannelAdminLogEventActionChangeEmojiStatus: ChannelAdminLogEventActionChangeEmojiStatus_,
56523
57437
  ChannelAdminLogEvent: ChannelAdminLogEvent_,
56524
57438
  ChannelAdminLogEventsFilter: ChannelAdminLogEventsFilter_,
56525
57439
  PopularContact: PopularContact_,
@@ -56777,6 +57691,8 @@ export const types = {
56777
57691
  StoryItemSkipped: StoryItemSkipped_,
56778
57692
  StoryItem: StoryItem_,
56779
57693
  StoryView: StoryView_,
57694
+ StoryViewPublicForward: StoryViewPublicForward_,
57695
+ StoryViewPublicRepost: StoryViewPublicRepost_,
56780
57696
  InputReplyToMessage: InputReplyToMessage_,
56781
57697
  InputReplyToStory: InputReplyToStory_,
56782
57698
  ExportedStoryLink: ExportedStoryLink_,
@@ -56786,6 +57702,8 @@ export const types = {
56786
57702
  InputMediaAreaVenue: InputMediaAreaVenue_,
56787
57703
  MediaAreaGeoPoint: MediaAreaGeoPoint_,
56788
57704
  MediaAreaSuggestedReaction: MediaAreaSuggestedReaction_,
57705
+ MediaAreaChannelPost: MediaAreaChannelPost_,
57706
+ InputMediaAreaChannelPost: InputMediaAreaChannelPost_,
56789
57707
  PeerStories: PeerStories_,
56790
57708
  PremiumGiftCodeOption: PremiumGiftCodeOption_,
56791
57709
  PrepaidGiveaway: PrepaidGiveaway_,
@@ -56797,6 +57715,9 @@ export const types = {
56797
57715
  PublicForwardMessage: PublicForwardMessage_,
56798
57716
  PublicForwardStory: PublicForwardStory_,
56799
57717
  PeerColor: PeerColor_,
57718
+ StoryReaction: StoryReaction_,
57719
+ StoryReactionPublicForward: StoryReactionPublicForward_,
57720
+ StoryReactionPublicRepost: StoryReactionPublicRepost_,
56800
57721
  storage: {
56801
57722
  FileUnknown: storage_FileUnknown_,
56802
57723
  FilePartial: storage_FilePartial_,
@@ -57062,6 +57983,7 @@ export const types = {
57062
57983
  StoryViewsList: stories_StoryViewsList_,
57063
57984
  StoryViews: stories_StoryViews_,
57064
57985
  PeerStories: stories_PeerStories_,
57986
+ StoryReactionsList: stories_StoryReactionsList_,
57065
57987
  },
57066
57988
  premium: {
57067
57989
  BoostsList: premium_BoostsList_,
@@ -57181,10 +58103,10 @@ export const map = new Map([
57181
58103
  [0x29562865, ChatEmpty_],
57182
58104
  [0x41CBF256, Chat_],
57183
58105
  [0x6592A1A7, ChatForbidden_],
57184
- [0x8E87CCD8, Channel_],
58106
+ [0x0AADFC8F, Channel_],
57185
58107
  [0x17D493D5, ChannelForbidden_],
57186
58108
  [0xC9D31138, ChatFull_],
57187
- [0x723027BD, ChannelFull_],
58109
+ [0x0F2BCB6F, ChannelFull_],
57188
58110
  [0xC02D4007, ChatParticipant_],
57189
58111
  [0xE46BCEE4, ChatParticipantCreator_],
57190
58112
  [0xA0933F5B, ChatParticipantAdmin_],
@@ -57209,7 +58131,8 @@ export const map = new Map([
57209
58131
  [0x4BD6E798, MessageMediaPoll_],
57210
58132
  [0x3F7EE58B, MessageMediaDice_],
57211
58133
  [0x68CB6283, MessageMediaStory_],
57212
- [0x58260664, MessageMediaGiveaway_],
58134
+ [0xDAAD85B0, MessageMediaGiveaway_],
58135
+ [0xC6991068, MessageMediaGiveawayResults_],
57213
58136
  [0xB6AEF7B0, MessageActionEmpty_],
57214
58137
  [0xBD47CBAD, MessageActionChatCreate_],
57215
58138
  [0xB5A1CE5A, MessageActionChatEditTitle_],
@@ -57246,9 +58169,9 @@ export const map = new Map([
57246
58169
  [0x0D999256, MessageActionTopicCreate_],
57247
58170
  [0xC0944820, MessageActionTopicEdit_],
57248
58171
  [0x57DE635E, MessageActionSuggestProfilePhoto_],
57249
- [0xFE77345D, MessageActionRequestedPeer_],
58172
+ [0x31518E9B, MessageActionRequestedPeer_],
57250
58173
  [0x5060A3F4, MessageActionSetChatWallPaper_],
57251
- [0xD2CFDB0E, MessageActionGiftCode_],
58174
+ [0x678C2E09, MessageActionGiftCode_],
57252
58175
  [0x332BA9ED, MessageActionGiveawayLaunch_],
57253
58176
  [0x2A9FADC5, MessageActionGiveawayResults_],
57254
58177
  [0xD58A08C6, Dialog_],
@@ -57445,6 +58368,8 @@ export const map = new Map([
57445
58368
  [0x904DD49C, UpdateBotChatBoost_],
57446
58369
  [0x07B68920, UpdateChannelViewForumAsMessages_],
57447
58370
  [0xAE3F101D, UpdatePeerWallpaper_],
58371
+ [0xAC21D3CE, UpdateBotMessageReaction_],
58372
+ [0x09CB7759, UpdateBotMessageReactions_],
57448
58373
  [0xA56C2A3E, updates_State_],
57449
58374
  [0x5D75A138, updates_DifferenceEmpty_],
57450
58375
  [0x00F49CA0, updates_Difference_],
@@ -57595,6 +58520,7 @@ export const map = new Map([
57595
58520
  [0x04C4D4CE, InputStickerSetEmojiGenericAnimations_],
57596
58521
  [0x29D0F5EE, InputStickerSetEmojiDefaultStatuses_],
57597
58522
  [0x44C1F8E9, InputStickerSetEmojiDefaultTopicIcons_],
58523
+ [0x49748553, InputStickerSetEmojiChannelDefaultStatuses_],
57598
58524
  [0x2DD14EDC, StickerSet_],
57599
58525
  [0x6E153F16, messages_StickerSet_],
57600
58526
  [0xD3F924EB, messages_StickerSetNotModified_],
@@ -57615,7 +58541,7 @@ export const map = new Map([
57615
58541
  [0x308660C1, KeyboardButtonUserProfile_],
57616
58542
  [0x13767230, KeyboardButtonWebView_],
57617
58543
  [0xA0C0505C, KeyboardButtonSimpleWebView_],
57618
- [0x0D0B468C, KeyboardButtonRequestPeer_],
58544
+ [0x53D7BFD8, KeyboardButtonRequestPeer_],
57619
58545
  [0x77608B83, KeyboardButtonRow_],
57620
58546
  [0xA03E5B85, ReplyKeyboardHide_],
57621
58547
  [0x86B40B08, ReplyKeyboardForceReply_],
@@ -57889,8 +58815,10 @@ export const map = new Map([
57889
58815
  [0xAE168909, ChannelAdminLogEventActionDeleteTopic_],
57890
58816
  [0x5D8D353B, ChannelAdminLogEventActionPinTopic_],
57891
58817
  [0x64F36DFC, ChannelAdminLogEventActionToggleAntiSpam_],
57892
- [0x3C2B247B, ChannelAdminLogEventActionChangeColor_],
57893
- [0x445FC434, ChannelAdminLogEventActionChangeBackgroundEmoji_],
58818
+ [0x5796E780, ChannelAdminLogEventActionChangePeerColor_],
58819
+ [0x5E477B25, ChannelAdminLogEventActionChangeProfilePeerColor_],
58820
+ [0x31BB5D52, ChannelAdminLogEventActionChangeWallpaper_],
58821
+ [0x3EA9FEB1, ChannelAdminLogEventActionChangeEmojiStatus_],
57894
58822
  [0x1FAD68CD, ChannelAdminLogEvent_],
57895
58823
  [0xED8AF74D, channels_AdminLogResults_],
57896
58824
  [0xEA107AE4, ChannelAdminLogEventsFilter_],
@@ -58005,7 +58933,7 @@ export const map = new Map([
58005
58933
  [0x1C199183, account_WallPapersNotModified_],
58006
58934
  [0xCDC3858C, account_WallPapers_],
58007
58935
  [0xAD253D78, CodeSettings_],
58008
- [0x1DC1BCA4, WallPaperSettings_],
58936
+ [0x372EFCD0, WallPaperSettings_],
58009
58937
  [0xBAA57628, AutoDownloadSettings_],
58010
58938
  [0x63CACF26, account_AutoDownloadSettings_],
58011
58939
  [0xD5B3B9F9, EmojiKeyword_],
@@ -58173,7 +59101,7 @@ export const map = new Map([
58173
59101
  [0xA6751E66, InputStorePaymentPremiumSubscription_],
58174
59102
  [0x616F7FE8, InputStorePaymentGiftPremium_],
58175
59103
  [0xA3805F3F, InputStorePaymentPremiumGiftCode_],
58176
- [0x7C9375E6, InputStorePaymentPremiumGiveaway_],
59104
+ [0x160544CA, InputStorePaymentPremiumGiveaway_],
58177
59105
  [0x74C34319, PremiumGiftOption_],
58178
59106
  [0x88F8F21B, PaymentFormMethod_],
58179
59107
  [0x2DE11AAE, EmojiStatusEmpty_],
@@ -58251,7 +59179,9 @@ export const map = new Map([
58251
59179
  [0x6EFC5E81, stories_AllStories_],
58252
59180
  [0x5DD8C3C8, stories_Stories_],
58253
59181
  [0xB0BDEAC5, StoryView_],
58254
- [0x46E9B9EC, stories_StoryViewsList_],
59182
+ [0x9083670B, StoryViewPublicForward_],
59183
+ [0xBD74CF49, StoryViewPublicRepost_],
59184
+ [0x59D78FC5, stories_StoryViewsList_],
58255
59185
  [0xDE9EED1D, stories_StoryViews_],
58256
59186
  [0x22C0F6D5, InputReplyToMessage_],
58257
59187
  [0x15B0F283, InputReplyToStory_],
@@ -58262,11 +59192,13 @@ export const map = new Map([
58262
59192
  [0xB282217F, InputMediaAreaVenue_],
58263
59193
  [0xDF8B3B22, MediaAreaGeoPoint_],
58264
59194
  [0x14455871, MediaAreaSuggestedReaction_],
59195
+ [0x770416AF, MediaAreaChannelPost_],
59196
+ [0x2271F2BF, InputMediaAreaChannelPost_],
58265
59197
  [0x9A35E999, PeerStories_],
58266
59198
  [0xCAE68768, stories_PeerStories_],
58267
59199
  [0xFD5E12BD, messages_WebPage_],
58268
59200
  [0x257E962B, PremiumGiftCodeOption_],
58269
- [0xB722F158, payments_CheckedGiftCode_],
59201
+ [0x284A1096, payments_CheckedGiftCode_],
58270
59202
  [0x4367DAA0, payments_GiveawayInfo_],
58271
59203
  [0x00CD5570, payments_GiveawayInfoResults_],
58272
59204
  [0xB2539D54, PrepaidGiveaway_],
@@ -58285,8 +59217,12 @@ export const map = new Map([
58285
59217
  [0xB54B5ACF, PeerColor_],
58286
59218
  [0x26219A58, help_PeerColorSet_],
58287
59219
  [0x767D61EB, help_PeerColorProfileSet_],
58288
- [0x135BD42F, help_PeerColorOption_],
59220
+ [0xEF8430AB, help_PeerColorOption_],
58289
59221
  [0x2BA1F5CE, help_PeerColorsNotModified_],
58290
59222
  [0x00F8ED08, help_PeerColors_],
59223
+ [0x6090D6D5, StoryReaction_],
59224
+ [0xBBAB2643, StoryReactionPublicForward_],
59225
+ [0xCFCD0F13, StoryReactionPublicRepost_],
59226
+ [0xAA5F789C, stories_StoryReactionsList_],
58291
59227
  // deno-lint-ignore no-explicit-any
58292
59228
  ]);