@mtkruto/node 0.0.989 → 0.0.991

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 (51) hide show
  1. package/esm/client/3_client.d.ts +11 -1
  2. package/esm/client/3_client.js +72 -23
  3. package/esm/constants.d.ts +1 -1
  4. package/esm/constants.js +1 -1
  5. package/esm/tl/2_types.d.ts +2055 -1617
  6. package/esm/tl/2_types.js +3447 -3447
  7. package/esm/tl/3_functions.d.ts +154 -154
  8. package/esm/tl/3_functions.js +988 -988
  9. package/esm/types/0_poll_option.d.ts +8 -0
  10. package/esm/types/0_poll_option.js +6 -0
  11. package/esm/types/1_chat.js +3 -4
  12. package/esm/types/1_keyboard_button.js +4 -5
  13. package/esm/types/1_photo.js +0 -2
  14. package/esm/types/1_poll.d.ts +32 -0
  15. package/esm/types/1_poll.js +23 -0
  16. package/esm/types/1_sticker.js +1 -1
  17. package/esm/types/1_user.js +1 -2
  18. package/esm/types/2_game.js +2 -2
  19. package/esm/types/2_inline_keyboard_markup.js +1 -2
  20. package/esm/types/2_reply_keyboard_markup.js +1 -2
  21. package/esm/types/3_message.d.ts +4 -0
  22. package/esm/types/3_message.js +7 -0
  23. package/esm/utilities/0_queue.d.ts +2 -0
  24. package/esm/utilities/0_queue.js +14 -2
  25. package/esm/utilities/1_misc.js +1 -1
  26. package/package.json +1 -1
  27. package/script/client/3_client.d.ts +11 -1
  28. package/script/client/3_client.js +72 -23
  29. package/script/constants.d.ts +1 -1
  30. package/script/constants.js +1 -1
  31. package/script/tl/2_types.d.ts +2055 -1617
  32. package/script/tl/2_types.js +3894 -3894
  33. package/script/tl/3_functions.d.ts +154 -154
  34. package/script/tl/3_functions.js +988 -988
  35. package/script/types/0_poll_option.d.ts +8 -0
  36. package/script/types/0_poll_option.js +10 -0
  37. package/script/types/1_chat.js +3 -4
  38. package/script/types/1_keyboard_button.js +4 -5
  39. package/script/types/1_photo.js +0 -2
  40. package/script/types/1_poll.d.ts +32 -0
  41. package/script/types/1_poll.js +27 -0
  42. package/script/types/1_sticker.js +1 -1
  43. package/script/types/1_user.js +1 -2
  44. package/script/types/2_game.js +2 -2
  45. package/script/types/2_inline_keyboard_markup.js +1 -2
  46. package/script/types/2_reply_keyboard_markup.js +1 -2
  47. package/script/types/3_message.d.ts +4 -0
  48. package/script/types/3_message.js +7 -0
  49. package/script/utilities/0_queue.d.ts +2 -0
  50. package/script/utilities/0_queue.js +14 -2
  51. package/script/utilities/1_misc.js +1 -1
@@ -80,7 +80,7 @@ exports.PUBLIC_KEYS = Object.freeze([
80
80
  exports.VECTOR_CONSTRUCTOR = 0x1CB5C415;
81
81
  exports.INITIAL_DC = "2-test";
82
82
  exports.LAYER = 161;
83
- exports.APP_VERSION = "MTKruto 0.0.989";
83
+ exports.APP_VERSION = "MTKruto 0.0.991";
84
84
  // @ts-ignore: lib
85
85
  exports.DEVICE_MODEL = typeof dntShim.Deno === "undefined" ? typeof navigator === "undefined" ? typeof process === "undefined" ? "Unknown" : process.platform + "-" + process.arch : navigator.userAgent.split(" ")[0] : dntShim.Deno.build.os + "-" + dntShim.Deno.build.arch;
86
86
  exports.LANG_CODE = typeof navigator === "undefined" ? "en" : navigator.language.split("-")[0];