@mtkruto/browser 0.6.0 → 0.119.0
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.
- package/README.md +75 -1
- package/esm/0_deps.d.ts +24 -11
- package/esm/0_deps.d.ts.map +1 -1
- package/esm/0_deps.js +27 -14
- package/esm/0_errors.d.ts +9 -2
- package/esm/0_errors.d.ts.map +1 -1
- package/esm/0_errors.js +35 -1
- package/esm/1_utilities.d.ts +6 -6
- package/esm/1_utilities.d.ts.map +1 -1
- package/esm/1_utilities.js +6 -6
- package/esm/2_connection.d.ts +1 -1
- package/esm/2_connection.js +1 -1
- package/esm/2_storage.d.ts +1 -1
- package/esm/2_storage.js +1 -1
- package/esm/2_tl.d.ts +7 -10
- package/esm/2_tl.d.ts.map +1 -1
- package/esm/2_tl.js +7 -10
- package/esm/3_errors.d.ts +8 -3
- package/esm/3_errors.d.ts.map +1 -1
- package/esm/3_errors.js +9 -2
- package/esm/3_transport.d.ts +4 -4
- package/esm/3_transport.js +4 -4
- package/esm/3_types.d.ts +74 -34
- package/esm/3_types.d.ts.map +1 -1
- package/esm/3_types.js +74 -34
- package/esm/4_constants.d.ts +21 -2
- package/esm/4_constants.d.ts.map +1 -1
- package/esm/4_constants.js +4 -4
- package/esm/4_errors.d.ts +4 -4
- package/esm/4_errors.d.ts.map +1 -1
- package/esm/4_errors.js +1 -1
- package/esm/4_session.d.ts +24 -0
- package/esm/4_session.d.ts.map +1 -0
- package/esm/4_session.js +23 -0
- package/esm/5_client.d.ts +9 -3
- package/esm/5_client.d.ts.map +1 -1
- package/esm/5_client.js +9 -3
- package/esm/_dnt.polyfills.d.ts +119 -0
- package/esm/_dnt.polyfills.d.ts.map +1 -1
- package/esm/_dnt.polyfills.js +247 -1
- package/esm/_dnt.shims.d.ts +0 -1
- package/esm/_dnt.shims.d.ts.map +1 -1
- package/esm/client/0_abortable_loop.d.ts +27 -0
- package/esm/client/0_abortable_loop.d.ts.map +1 -0
- package/esm/client/0_abortable_loop.js +69 -0
- package/esm/client/0_client_abstract.d.ts +31 -28
- package/esm/client/0_client_abstract.d.ts.map +1 -1
- package/esm/client/0_client_abstract.js +21 -90
- package/esm/client/0_html.d.ts +4 -3
- package/esm/client/0_html.d.ts.map +1 -1
- package/esm/client/0_html.js +412 -74
- package/esm/client/0_markdown.d.ts +2 -2
- package/esm/client/0_markdown.d.ts.map +1 -1
- package/esm/client/0_markdown.js +39 -19
- package/esm/client/0_params.d.ts +327 -44
- package/esm/client/0_params.d.ts.map +1 -1
- package/esm/client/0_params.js +1 -1
- package/esm/client/0_password.d.ts +6 -6
- package/esm/client/0_password.d.ts.map +1 -1
- package/esm/client/0_password.js +13 -13
- package/esm/client/0_storage_operations.d.ts +81 -69
- package/esm/client/0_storage_operations.d.ts.map +1 -1
- package/esm/client/0_storage_operations.js +356 -235
- package/esm/client/0_update_processor.d.ts +26 -0
- package/esm/client/0_update_processor.d.ts.map +1 -0
- package/esm/client/0_update_processor.js +20 -0
- package/esm/client/0_utilities.d.ts +10 -5
- package/esm/client/0_utilities.d.ts.map +1 -1
- package/esm/client/0_utilities.js +45 -31
- package/esm/client/0_worker_error.d.ts +26 -0
- package/esm/client/0_worker_error.d.ts.map +1 -0
- package/esm/client/0_worker_error.js +86 -0
- package/esm/client/0_worker_request.d.ts +27 -0
- package/esm/client/0_worker_request.d.ts.map +1 -0
- package/esm/client/0_worker_request.js +20 -0
- package/esm/client/1_client_generic.d.ts +1846 -0
- package/esm/client/1_client_generic.d.ts.map +1 -0
- package/esm/client/1_client_generic.js +24 -0
- package/esm/client/1_client_plain.d.ts +12 -9
- package/esm/client/1_client_plain.d.ts.map +1 -1
- package/esm/client/1_client_plain.js +41 -52
- package/esm/client/1_invoke_middleware.d.ts +32 -0
- package/esm/client/1_invoke_middleware.d.ts.map +1 -0
- package/esm/client/1_invoke_middleware.js +22 -0
- package/esm/client/1_types.d.ts +17 -32
- package/esm/client/1_types.d.ts.map +1 -1
- package/esm/client/1_types.js +1 -1
- package/esm/client/1_worker_response.d.ts +37 -0
- package/esm/client/1_worker_response.d.ts.map +1 -0
- package/esm/client/1_worker_response.js +20 -0
- package/esm/client/2_account_manager.d.ts +43 -5
- package/esm/client/2_account_manager.d.ts.map +1 -1
- package/esm/client/2_account_manager.js +338 -9
- package/esm/client/2_bot_info_manager.d.ts +12 -5
- package/esm/client/2_bot_info_manager.d.ts.map +1 -1
- package/esm/client/2_bot_info_manager.js +15 -1
- package/esm/client/2_business_connection_manager.d.ts +6 -5
- package/esm/client/2_business_connection_manager.d.ts.map +1 -1
- package/esm/client/2_business_connection_manager.js +9 -9
- package/esm/client/2_client_encrypted.d.ts +58 -0
- package/esm/client/2_client_encrypted.d.ts.map +1 -0
- package/esm/client/2_client_encrypted.js +290 -0
- package/esm/client/2_file_manager.d.ts +27 -7
- package/esm/client/2_file_manager.d.ts.map +1 -1
- package/esm/client/2_file_manager.js +242 -197
- package/esm/client/2_network_statistics_manager.d.ts +5 -5
- package/esm/client/2_network_statistics_manager.d.ts.map +1 -1
- package/esm/client/2_network_statistics_manager.js +36 -10
- package/esm/client/2_payment_manager.d.ts +8 -7
- package/esm/client/2_payment_manager.d.ts.map +1 -1
- package/esm/client/2_payment_manager.js +7 -7
- package/esm/client/2_reaction_manager.d.ts +6 -5
- package/esm/client/2_reaction_manager.d.ts.map +1 -1
- package/esm/client/2_reaction_manager.js +14 -14
- package/esm/client/2_sign_in.d.ts +25 -0
- package/esm/client/2_sign_in.d.ts.map +1 -0
- package/esm/client/2_sign_in.js +114 -0
- package/esm/client/2_translations_manager.d.ts +35 -0
- package/esm/client/2_translations_manager.d.ts.map +1 -0
- package/esm/client/2_translations_manager.js +171 -0
- package/esm/client/2_update_manager.d.ts +11 -8
- package/esm/client/2_update_manager.d.ts.map +1 -1
- package/esm/client/2_update_manager.js +354 -296
- package/esm/client/3_client_encrypted_pool.d.ts +29 -0
- package/esm/client/3_client_encrypted_pool.d.ts.map +1 -0
- package/esm/client/3_client_encrypted_pool.js +63 -0
- package/esm/client/3_filters.d.ts +96 -0
- package/esm/client/3_filters.d.ts.map +1 -0
- package/esm/client/3_filters.js +52 -0
- package/esm/client/3_message_manager.d.ts +30 -35
- package/esm/client/3_message_manager.d.ts.map +1 -1
- package/esm/client/3_message_manager.js +791 -493
- package/esm/client/3_video_chat_manager.d.ts +11 -10
- package/esm/client/3_video_chat_manager.d.ts.map +1 -1
- package/esm/client/3_video_chat_manager.js +49 -46
- package/esm/client/4_callback_query_manager.d.ts +9 -8
- package/esm/client/4_callback_query_manager.d.ts.map +1 -1
- package/esm/client/4_callback_query_manager.js +14 -13
- package/esm/client/4_chat_list_manager.d.ts +20 -11
- package/esm/client/4_chat_list_manager.d.ts.map +1 -1
- package/esm/client/4_chat_list_manager.js +143 -367
- package/esm/client/4_chat_manager.d.ts +86 -0
- package/esm/client/4_chat_manager.d.ts.map +1 -0
- package/esm/client/4_chat_manager.js +486 -0
- package/esm/client/4_checklist_manager.d.ts +38 -0
- package/esm/client/4_checklist_manager.d.ts.map +1 -0
- package/esm/client/4_checklist_manager.js +81 -0
- package/esm/client/4_context.d.ts +691 -0
- package/esm/client/4_context.d.ts.map +1 -0
- package/esm/client/4_context.js +1421 -0
- package/esm/client/4_forum_manager.d.ts +40 -0
- package/esm/client/4_forum_manager.d.ts.map +1 -0
- package/esm/client/4_forum_manager.js +134 -0
- package/esm/client/4_gift_manager.d.ts +39 -0
- package/esm/client/4_gift_manager.d.ts.map +1 -0
- package/esm/client/4_gift_manager.js +97 -0
- package/esm/client/4_inline_query_manager.d.ts +10 -9
- package/esm/client/4_inline_query_manager.d.ts.map +1 -1
- package/esm/client/4_inline_query_manager.js +15 -15
- package/esm/client/4_link_preview_manager.d.ts +39 -0
- package/esm/client/4_link_preview_manager.d.ts.map +1 -0
- package/esm/client/4_link_preview_manager.js +64 -0
- package/esm/client/4_poll_manager.d.ts +39 -0
- package/esm/client/4_poll_manager.d.ts.map +1 -0
- package/esm/client/4_poll_manager.js +118 -0
- package/esm/client/4_story_manager.d.ts +11 -10
- package/esm/client/4_story_manager.d.ts.map +1 -1
- package/esm/client/4_story_manager.js +21 -21
- package/esm/client/5_composer.d.ts +51 -0
- package/esm/client/5_composer.d.ts.map +1 -0
- package/esm/client/5_composer.js +119 -0
- package/esm/client/6_client.d.ts +1952 -0
- package/esm/client/6_client.d.ts.map +1 -0
- package/esm/client/6_client.js +3439 -0
- package/esm/client/6_client_dispatcher.d.ts +1917 -0
- package/esm/client/6_client_dispatcher.d.ts.map +1 -0
- package/esm/client/6_client_dispatcher.js +2493 -0
- package/esm/client/7_client_worker.d.ts +27 -0
- package/esm/client/7_client_worker.d.ts.map +1 -0
- package/esm/client/7_client_worker.js +89 -0
- package/esm/connection/0_connection.d.ts +9 -8
- package/esm/connection/0_connection.d.ts.map +1 -1
- package/esm/connection/0_connection.js +1 -1
- package/esm/connection/1_connection_tcp.d.ts +4 -5
- package/esm/connection/1_connection_tcp.d.ts.map +1 -1
- package/esm/connection/1_connection_tcp.js +26 -27
- package/esm/connection/1_connection_web_socket.d.ts +3 -3
- package/esm/connection/1_connection_web_socket.d.ts.map +1 -1
- package/esm/connection/1_connection_web_socket.js +10 -13
- package/esm/deps/jsr.io/@roj/tgcrypto/1.0.1/dist/mod.d.ts +18 -0
- package/esm/deps/jsr.io/@roj/tgcrypto/1.0.1/dist/mod.d.ts.map +1 -0
- package/esm/deps/jsr.io/@roj/tgcrypto/1.0.1/dist/mod.js +63 -0
- package/esm/deps/jsr.io/@roj/tgcrypto/1.0.1/dist/tgcrypto.d.ts +3 -0
- package/esm/deps/jsr.io/@roj/tgcrypto/1.0.1/dist/tgcrypto.d.ts.map +1 -0
- package/esm/deps/jsr.io/@roj/tgcrypto/1.0.1/dist/tgcrypto.js +301 -0
- package/esm/deps/jsr.io/@std/assert/1.0.19/assert.d.ts +17 -0
- package/esm/deps/jsr.io/@std/assert/1.0.19/assert.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/assert/1.0.19/assert.js +23 -0
- package/esm/deps/jsr.io/@std/assert/1.0.19/assertion_error.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/assert/1.0.19/assertion_error.js +30 -0
- package/esm/deps/jsr.io/@std/assert/1.0.19/equal.d.ts +25 -0
- package/esm/deps/jsr.io/@std/assert/1.0.19/equal.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/assert/1.0.19/equal.js +194 -0
- package/esm/deps/jsr.io/@std/assert/1.0.19/equals.d.ts +37 -0
- package/esm/deps/jsr.io/@std/assert/1.0.19/equals.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/assert/1.0.19/equals.js +61 -0
- package/esm/deps/jsr.io/@std/assert/1.0.19/false.d.ts +19 -0
- package/esm/deps/jsr.io/@std/assert/1.0.19/false.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/assert/1.0.19/false.js +23 -0
- package/esm/deps/jsr.io/@std/assert/1.0.19/unreachable.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/assert/1.0.19/unreachable.js +20 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/_util.d.ts +2 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/_util.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/_util.js +6 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/abortable.d.ts +107 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/abortable.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/abortable.js +46 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/deadline.d.ts +37 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/deadline.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/deadline.js +41 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/debounce.d.ts +44 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/debounce.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/debounce.js +57 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/delay.d.ts +45 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/delay.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/delay.js +84 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/mod.d.ts +22 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/mod.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/mod.js +23 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/mux_async_iterator.d.ts +111 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/mux_async_iterator.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/mux_async_iterator.js +170 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/pool.d.ts +33 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/pool.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/pool.js +99 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/retry.d.ts +155 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/retry.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/retry.js +147 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/tee.d.ts +43 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/tee.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/async/1.2.0/tee.js +102 -0
- package/esm/deps/jsr.io/@std/bytes/1.0.6/_types.d.ts +9 -0
- package/esm/deps/jsr.io/@std/bytes/1.0.6/_types.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/bytes/1.0.6/_types.js +2 -0
- package/esm/deps/jsr.io/@std/bytes/1.0.6/concat.d.ts +21 -0
- package/esm/deps/jsr.io/@std/bytes/1.0.6/concat.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/bytes/1.0.6/concat.js +32 -0
- package/esm/deps/jsr.io/@std/bytes/1.0.6/equals.d.ts +22 -0
- package/esm/deps/jsr.io/@std/bytes/1.0.6/equals.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/bytes/1.0.6/equals.js +82 -0
- package/esm/deps/jsr.io/@std/bytes/1.0.6/starts_with.d.ts +24 -0
- package/esm/deps/jsr.io/@std/bytes/1.0.6/starts_with.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/bytes/1.0.6/starts_with.js +34 -0
- package/esm/deps/jsr.io/@std/cache/0.2.2/_serialize_arg_list.d.ts +12 -0
- package/esm/deps/jsr.io/@std/cache/0.2.2/_serialize_arg_list.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/cache/0.2.2/_serialize_arg_list.js +69 -0
- package/esm/deps/jsr.io/@std/cache/0.2.2/lru_cache.d.ts +155 -0
- package/esm/deps/jsr.io/@std/cache/0.2.2/lru_cache.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/cache/0.2.2/lru_cache.js +205 -0
- package/esm/deps/jsr.io/@std/cache/0.2.2/memoize.d.ts +111 -0
- package/esm/deps/jsr.io/@std/cache/0.2.2/memoize.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/cache/0.2.2/memoize.js +82 -0
- package/esm/deps/jsr.io/@std/datetime/0.225.7/_date_time_formatter.d.ts +19 -0
- package/esm/deps/jsr.io/@std/datetime/0.225.7/_date_time_formatter.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/datetime/0.225.7/_date_time_formatter.js +550 -0
- package/esm/deps/jsr.io/@std/datetime/0.225.7/constants.d.ts +265 -0
- package/esm/deps/jsr.io/@std/datetime/0.225.7/constants.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/datetime/0.225.7/constants.js +266 -0
- package/esm/deps/jsr.io/@std/datetime/0.225.7/format.d.ts +70 -0
- package/esm/deps/jsr.io/@std/datetime/0.225.7/format.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/datetime/0.225.7/format.js +66 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.10/_common16.d.ts +23 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.10/_common16.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.10/_common16.js +51 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.10/_common64.d.ts +35 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.10/_common64.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.10/_common64.js +113 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.10/_common_detach.d.ts +4 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.10/_common_detach.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.10/_common_detach.js +13 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.10/_types.d.ts +9 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.10/_types.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.10/_types.js +2 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.10/base64.d.ts +40 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.10/base64.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.10/base64.js +82 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.10/hex.d.ts +39 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.10/hex.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.10/hex.js +87 -0
- package/esm/deps/jsr.io/@std/internal/1.0.12/_os.d.ts +2 -0
- package/esm/deps/jsr.io/@std/internal/1.0.12/_os.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/internal/1.0.12/_os.js +12 -0
- package/esm/deps/jsr.io/@std/internal/1.0.12/build_message.d.ts +80 -0
- package/esm/deps/jsr.io/@std/internal/1.0.12/build_message.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/internal/1.0.12/build_message.js +116 -0
- package/esm/deps/jsr.io/@std/internal/1.0.12/diff.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/internal/1.0.12/diff.js +276 -0
- package/esm/deps/jsr.io/@std/internal/1.0.12/diff_str.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/internal/1.0.12/diff_str.js +182 -0
- package/esm/deps/jsr.io/@std/internal/1.0.12/format.d.ts +29 -0
- package/esm/deps/jsr.io/@std/internal/1.0.12/format.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/internal/1.0.12/format.js +70 -0
- package/esm/deps/jsr.io/@std/internal/1.0.12/os.d.ts +3 -0
- package/esm/deps/jsr.io/@std/internal/1.0.12/os.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/internal/1.0.12/os.js +5 -0
- package/esm/deps/jsr.io/@std/internal/1.0.12/styles.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/internal/1.0.12/styles.js +207 -0
- package/esm/deps/jsr.io/@std/internal/1.0.12/types.d.ts +25 -0
- package/esm/deps/jsr.io/@std/internal/1.0.12/types.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/internal/1.0.12/types.js +3 -0
- package/esm/deps/jsr.io/@std/io/0.225.3/_constants.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/io/0.225.3/_constants.js +4 -0
- package/esm/deps/jsr.io/@std/io/0.225.3/iterate_reader.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/io/0.225.3/iterate_reader.js +96 -0
- package/esm/deps/jsr.io/@std/io/0.225.3/types.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/io/0.225.3/types.js +15 -0
- package/esm/deps/jsr.io/@std/media-types/1.1.0/_db.d.ts +8 -0
- package/esm/deps/jsr.io/@std/media-types/1.1.0/_db.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/media-types/1.1.0/_util.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/media-types/1.1.0/all_extensions.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/media-types/1.1.0/content_type.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/media-types/1.1.0/extension.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/media-types/1.1.0/format_media_type.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/media-types/1.1.0/get_charset.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/media-types/1.1.0/parse_media_type.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/media-types/1.1.0/type_by_extension.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/media-types/1.1.0/vendor/db.d.ts +9103 -0
- package/esm/deps/jsr.io/@std/media-types/1.1.0/vendor/db.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/media-types/1.1.0/vendor/db.js +9138 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/_common/assert_path.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/_common/assert_path.js +7 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/_common/basename.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/_common/basename.js +40 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/_common/constants.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/_common/constants.js +46 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/_common/from_file_url.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/_common/from_file_url.js +9 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/_common/normalize.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/_common/normalize.js +8 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/_common/normalize_string.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/_common/normalize_string.js +77 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/_common/strip_trailing_separators.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/_common/strip_trailing_separators.js +19 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/_common/to_file_url.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/_common/to_file_url.js +15 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/basename.d.ts +27 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/basename.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/basename.js +35 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/extname.d.ts +22 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/extname.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/extname.js +28 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/is_absolute.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/is_absolute.js +28 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/join.d.ts +23 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/join.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/join.js +29 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/posix/_util.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/posix/_util.js +8 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/posix/basename.d.ts +39 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/posix/basename.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/posix/basename.js +52 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/posix/extname.d.ts +37 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/posix/extname.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/posix/extname.js +93 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/posix/from_file_url.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/posix/from_file_url.js +21 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/posix/is_absolute.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/posix/is_absolute.js +23 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/posix/join.d.ts +31 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/posix/join.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/posix/join.js +45 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/posix/normalize.d.ts +37 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/posix/normalize.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/posix/normalize.js +58 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/posix/to_file_url.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/posix/to_file_url.js +27 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/to_file_url.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/to_file_url.js +28 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/windows/_util.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/windows/_util.js +15 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/windows/basename.d.ts +22 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/windows/basename.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/windows/basename.js +47 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/windows/extname.d.ts +17 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/windows/extname.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/windows/extname.js +82 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/windows/from_file_url.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/windows/from_file_url.js +30 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/windows/is_absolute.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/windows/is_absolute.js +38 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/windows/join.d.ts +18 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/windows/join.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/windows/join.js +77 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/windows/normalize.d.ts +19 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/windows/normalize.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/windows/normalize.js +135 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/windows/to_file_url.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/path/1.1.4/windows/to_file_url.js +34 -0
- package/esm/deps/jsr.io/@std/streams/1.0.17/to_array_buffer.d.ts +22 -0
- package/esm/deps/jsr.io/@std/streams/1.0.17/to_array_buffer.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/streams/1.0.17/to_array_buffer.js +35 -0
- package/esm/mod.d.ts +2 -2
- package/esm/mod.d.ts.map +1 -1
- package/esm/mod.js +2 -2
- package/esm/session/0_session_error.d.ts +24 -0
- package/esm/session/0_session_error.d.ts.map +1 -0
- package/esm/session/0_session_error.js +25 -0
- package/esm/session/0_session_state.d.ts +28 -0
- package/esm/session/0_session_state.d.ts.map +1 -0
- package/esm/session/0_session_state.js +77 -0
- package/esm/session/1_session.d.ts +51 -0
- package/esm/session/1_session.d.ts.map +1 -0
- package/esm/session/1_session.js +147 -0
- package/esm/session/2_session_encrypted.d.ts +41 -0
- package/esm/session/2_session_encrypted.d.ts.map +1 -0
- package/esm/session/2_session_encrypted.js +507 -0
- package/esm/session/2_session_plain.d.ts +25 -0
- package/esm/session/2_session_plain.d.ts.map +1 -0
- package/esm/session/2_session_plain.js +56 -0
- package/esm/storage/0_storage.d.ts +3 -2
- package/esm/storage/0_storage.d.ts.map +1 -1
- package/esm/storage/0_storage.js +1 -1
- package/esm/storage/1_utilities.d.ts +15 -11
- package/esm/storage/1_utilities.d.ts.map +1 -1
- package/esm/storage/1_utilities.js +33 -41
- package/esm/storage/2_storage_indexed_db.d.ts +3 -2
- package/esm/storage/2_storage_indexed_db.d.ts.map +1 -1
- package/esm/storage/2_storage_indexed_db.js +7 -4
- package/esm/storage/2_storage_local_storage.d.ts +3 -2
- package/esm/storage/2_storage_local_storage.d.ts.map +1 -1
- package/esm/storage/2_storage_local_storage.js +7 -4
- package/esm/storage/2_storage_memory.d.ts +4 -3
- package/esm/storage/2_storage_memory.d.ts.map +1 -1
- package/esm/storage/2_storage_memory.js +6 -3
- package/esm/storage/2_storage_session_storage.d.ts +4 -3
- package/esm/storage/2_storage_session_storage.d.ts.map +1 -1
- package/esm/storage/2_storage_session_storage.js +7 -4
- package/esm/tl/0_types.d.ts +25 -0
- package/esm/tl/0_types.d.ts.map +1 -0
- package/esm/tl/0_types.js +20 -0
- package/esm/tl/0_utilities.d.ts +34 -0
- package/esm/tl/0_utilities.d.ts.map +1 -0
- package/esm/tl/0_utilities.js +79 -0
- package/esm/tl/1_mtproto_api.d.ts +371 -0
- package/esm/tl/1_mtproto_api.d.ts.map +1 -0
- package/esm/tl/1_mtproto_api.js +416 -0
- package/esm/tl/1_telegram_api.d.ts +19410 -0
- package/esm/tl/1_telegram_api.d.ts.map +1 -0
- package/esm/tl/1_telegram_api.js +22386 -0
- package/esm/tl/1_tl_reader.d.ts +39 -0
- package/esm/tl/1_tl_reader.d.ts.map +1 -0
- package/esm/tl/1_tl_reader.js +228 -0
- package/esm/tl/1_tl_writer.d.ts +37 -0
- package/esm/tl/1_tl_writer.d.ts.map +1 -0
- package/esm/tl/1_tl_writer.js +278 -0
- package/esm/tl/1_utilities.d.ts +9 -14
- package/esm/tl/1_utilities.d.ts.map +1 -1
- package/esm/tl/1_utilities.js +21 -40
- package/esm/tl/2_message.d.ts +36 -0
- package/esm/tl/2_message.d.ts.map +1 -0
- package/esm/tl/2_message.js +73 -0
- package/esm/tl/2_mtproto.d.ts +33 -0
- package/esm/tl/2_mtproto.d.ts.map +1 -0
- package/esm/tl/2_mtproto.js +53 -0
- package/esm/tl/2_telegram.d.ts +49 -0
- package/esm/tl/2_telegram.d.ts.map +1 -0
- package/esm/tl/2_telegram.js +135 -0
- package/esm/transport/0_obfuscation.d.ts +2 -2
- package/esm/transport/0_obfuscation.d.ts.map +1 -1
- package/esm/transport/0_obfuscation.js +10 -9
- package/esm/transport/0_transport.d.ts +4 -6
- package/esm/transport/0_transport.d.ts.map +1 -1
- package/esm/transport/0_transport.js +10 -11
- package/esm/transport/1_transport_abridged.d.ts +2 -4
- package/esm/transport/1_transport_abridged.d.ts.map +1 -1
- package/esm/transport/1_transport_abridged.js +17 -34
- package/esm/transport/1_transport_intermediate.d.ts +2 -4
- package/esm/transport/1_transport_intermediate.d.ts.map +1 -1
- package/esm/transport/1_transport_intermediate.js +12 -31
- package/esm/transport/1_transport_provider.d.ts +35 -0
- package/esm/transport/1_transport_provider.d.ts.map +1 -0
- package/esm/transport/1_transport_provider.js +81 -0
- package/esm/transport/2_transport_provider_tcp.d.ts +25 -0
- package/esm/transport/2_transport_provider_tcp.d.ts.map +1 -0
- package/esm/transport/2_transport_provider_tcp.js +29 -0
- package/esm/transport/2_transport_provider_web_socket.d.ts +24 -0
- package/esm/transport/2_transport_provider_web_socket.d.ts.map +1 -0
- package/esm/transport/2_transport_provider_web_socket.js +43 -0
- package/esm/types/0_authorization_state.d.ts +2 -2
- package/esm/types/0_authorization_state.d.ts.map +1 -1
- package/esm/types/0_authorization_state.js +1 -1
- package/esm/types/0_birthday.d.ts +3 -2
- package/esm/types/0_birthday.d.ts.map +1 -1
- package/esm/types/0_birthday.js +10 -1
- package/esm/types/0_bot_command.d.ts +1 -1
- package/esm/types/0_bot_command.js +1 -1
- package/esm/types/0_bot_token_check_result.d.ts +31 -0
- package/esm/types/0_bot_token_check_result.d.ts.map +1 -0
- package/esm/types/0_bot_token_check_result.js +20 -0
- package/esm/types/0_button_style.d.ts +28 -0
- package/esm/types/0_button_style.d.ts.map +1 -0
- package/esm/types/0_button_style.js +36 -0
- package/esm/types/0_callback_query_answer.d.ts +3 -3
- package/esm/types/0_callback_query_answer.d.ts.map +1 -1
- package/esm/types/0_callback_query_answer.js +2 -2
- package/esm/types/0_callback_query_question.d.ts +1 -1
- package/esm/types/0_callback_query_question.js +3 -3
- package/esm/types/0_chat_action.d.ts +1 -1
- package/esm/types/0_chat_action.js +1 -1
- package/esm/types/0_chat_administrator_rights.d.ts +17 -7
- package/esm/types/0_chat_administrator_rights.d.ts.map +1 -1
- package/esm/types/0_chat_administrator_rights.js +31 -16
- package/esm/types/0_chat_folder.d.ts +29 -0
- package/esm/types/0_chat_folder.d.ts.map +1 -0
- package/esm/types/0_chat_folder.js +25 -0
- package/esm/types/0_chat_member_rights.d.ts +3 -3
- package/esm/types/0_chat_member_rights.d.ts.map +1 -1
- package/esm/types/0_chat_member_rights.js +23 -23
- package/esm/types/0_chat_photo.d.ts +2 -2
- package/esm/types/0_chat_photo.d.ts.map +1 -1
- package/esm/types/0_chat_photo.js +5 -5
- package/esm/types/0_checklist_changed.d.ts +29 -0
- package/esm/types/0_checklist_changed.d.ts.map +1 -0
- package/esm/types/0_checklist_changed.js +25 -0
- package/esm/types/0_code_check_result.d.ts +47 -0
- package/esm/types/0_code_check_result.d.ts.map +1 -0
- package/esm/types/0_code_check_result.js +20 -0
- package/esm/types/0_connection_state.d.ts +1 -1
- package/esm/types/0_connection_state.js +1 -1
- package/esm/types/0_contact.d.ts +2 -2
- package/esm/types/0_contact.d.ts.map +1 -1
- package/esm/types/0_contact.js +4 -3
- package/esm/types/0_dice.d.ts +2 -2
- package/esm/types/0_dice.d.ts.map +1 -1
- package/esm/types/0_dice.js +1 -1
- package/esm/types/0_emoji_status.d.ts +48 -0
- package/esm/types/0_emoji_status.d.ts.map +1 -0
- package/esm/types/0_emoji_status.js +33 -0
- package/esm/types/0_failed_invitation.d.ts +8 -4
- package/esm/types/0_failed_invitation.d.ts.map +1 -1
- package/esm/types/0_failed_invitation.js +3 -3
- package/esm/types/0_file_source.d.ts +2 -2
- package/esm/types/0_file_source.d.ts.map +1 -1
- package/esm/types/0_file_source.js +1 -1
- package/esm/types/0_gift_component_rarity.d.ts +50 -0
- package/esm/types/0_gift_component_rarity.d.ts.map +1 -0
- package/esm/types/0_gift_component_rarity.js +43 -0
- package/esm/types/0_gift_value.d.ts +25 -0
- package/esm/types/0_gift_value.d.ts.map +1 -0
- package/esm/types/0_gift_value.js +20 -0
- package/esm/types/0_giveaway_parameters.d.ts +2 -2
- package/esm/types/0_giveaway_parameters.d.ts.map +1 -1
- package/esm/types/0_giveaway_parameters.js +5 -6
- package/esm/types/0_id.d.ts +1 -1
- package/esm/types/0_id.js +1 -1
- package/esm/types/0_input_emoji_status.d.ts +36 -0
- package/esm/types/0_input_emoji_status.d.ts.map +1 -0
- package/esm/types/0_input_emoji_status.js +20 -0
- package/esm/types/0_invoice.d.ts +3 -2
- package/esm/types/0_invoice.d.ts.map +1 -1
- package/esm/types/0_invoice.js +1 -1
- package/esm/types/0_keyboard_button_poll_type.d.ts +1 -1
- package/esm/types/0_keyboard_button_poll_type.js +1 -1
- package/esm/types/0_link_preview_media_size.d.ts +22 -0
- package/esm/types/0_link_preview_media_size.d.ts.map +1 -0
- package/esm/types/0_link_preview_media_size.js +20 -0
- package/esm/types/0_live_stream_channel.d.ts +2 -2
- package/esm/types/0_live_stream_channel.d.ts.map +1 -1
- package/esm/types/0_live_stream_channel.js +1 -1
- package/esm/types/0_location.d.ts +1 -1
- package/esm/types/0_location.d.ts.map +1 -1
- package/esm/types/0_location.js +13 -12
- package/esm/types/0_login_url.d.ts +1 -1
- package/esm/types/0_login_url.js +1 -1
- package/esm/types/0_mask_position.d.ts +2 -2
- package/esm/types/0_mask_position.d.ts.map +1 -1
- package/esm/types/0_mask_position.js +2 -2
- package/esm/types/0_message_reference.d.ts +1 -1
- package/esm/types/0_message_reference.js +1 -1
- package/esm/types/0_message_search_filter.d.ts +3 -2
- package/esm/types/0_message_search_filter.d.ts.map +1 -1
- package/esm/types/0_message_search_filter.js +1 -1
- package/esm/types/0_mini_app_button_info.d.ts +26 -0
- package/esm/types/0_mini_app_button_info.d.ts.map +1 -0
- package/esm/types/0_mini_app_button_info.js +22 -0
- package/esm/types/0_mini_app_mode.d.ts +22 -0
- package/esm/types/0_mini_app_mode.d.ts.map +1 -0
- package/esm/types/0_mini_app_mode.js +20 -0
- package/esm/types/0_network_statistics_entry.d.ts +1 -1
- package/esm/types/0_network_statistics_entry.js +1 -1
- package/esm/types/0_parse_mode.d.ts +1 -1
- package/esm/types/0_parse_mode.js +1 -1
- package/esm/types/0_password_check_result.d.ts +39 -0
- package/esm/types/0_password_check_result.d.ts.map +1 -0
- package/esm/types/0_password_check_result.js +20 -0
- package/esm/types/0_price_tag.d.ts +1 -1
- package/esm/types/0_price_tag.js +1 -1
- package/esm/types/0_reaction.d.ts +4 -1
- package/esm/types/0_reaction.d.ts.map +1 -1
- package/esm/types/0_reaction.js +10 -10
- package/esm/types/0_refunded_payment.d.ts +2 -2
- package/esm/types/0_refunded_payment.d.ts.map +1 -1
- package/esm/types/0_refunded_payment.js +3 -3
- package/esm/types/0_restriction_reason.d.ts +2 -2
- package/esm/types/0_restriction_reason.d.ts.map +1 -1
- package/esm/types/0_restriction_reason.js +1 -1
- package/esm/types/0_self_destruct_option.d.ts +11 -3
- package/esm/types/0_self_destruct_option.d.ts.map +1 -1
- package/esm/types/0_self_destruct_option.js +12 -3
- package/esm/types/0_shipping_address.d.ts +2 -2
- package/esm/types/0_shipping_address.d.ts.map +1 -1
- package/esm/types/0_shipping_address.js +1 -1
- package/esm/types/0_slow_mode_duration.d.ts +23 -0
- package/esm/types/0_slow_mode_duration.d.ts.map +1 -0
- package/esm/types/0_slow_mode_duration.js +28 -0
- package/esm/types/0_story_reference.d.ts +1 -1
- package/esm/types/0_story_reference.js +1 -1
- package/esm/types/0_switch_inline_query_chosen_chats.d.ts +20 -0
- package/esm/types/0_switch_inline_query_chosen_chats.d.ts.map +1 -1
- package/esm/types/0_switch_inline_query_chosen_chats.js +19 -0
- package/esm/types/0_thumbnail.d.ts +1 -1
- package/esm/types/0_thumbnail.d.ts.map +1 -1
- package/esm/types/0_thumbnail.js +4 -4
- package/esm/types/0_translation.d.ts +32 -0
- package/esm/types/0_translation.d.ts.map +1 -0
- package/esm/types/0_translation.js +45 -0
- package/esm/types/0_upload_progress.d.ts +29 -0
- package/esm/types/0_upload_progress.d.ts.map +1 -0
- package/esm/types/0_upload_progress.js +20 -0
- package/esm/types/0_user_status.d.ts +66 -0
- package/esm/types/0_user_status.d.ts.map +1 -0
- package/esm/types/0_user_status.js +35 -0
- package/esm/types/0_video_chat.d.ts +8 -4
- package/esm/types/0_video_chat.d.ts.map +1 -1
- package/esm/types/0_video_chat.js +7 -8
- package/esm/types/0_voice.d.ts +2 -2
- package/esm/types/0_voice.d.ts.map +1 -1
- package/esm/types/0_voice.js +1 -1
- package/esm/types/0_voice_transcription.d.ts +31 -0
- package/esm/types/0_voice_transcription.d.ts.map +1 -0
- package/esm/types/0_voice_transcription.js +26 -0
- package/esm/types/0_working_hours_interval.d.ts +27 -0
- package/esm/types/0_working_hours_interval.d.ts.map +1 -0
- package/esm/types/0_working_hours_interval.js +20 -0
- package/esm/types/1_animation.d.ts +2 -2
- package/esm/types/1_animation.d.ts.map +1 -1
- package/esm/types/1_animation.js +6 -5
- package/esm/types/1_audio.d.ts +2 -2
- package/esm/types/1_audio.d.ts.map +1 -1
- package/esm/types/1_audio.js +6 -5
- package/esm/types/1_bot_command_scope.d.ts +3 -3
- package/esm/types/1_bot_command_scope.d.ts.map +1 -1
- package/esm/types/1_bot_command_scope.js +4 -4
- package/esm/types/1_bot_commands.d.ts +30 -0
- package/esm/types/1_bot_commands.d.ts.map +1 -0
- package/esm/types/1_bot_commands.js +20 -0
- package/esm/types/1_chat_p.d.ts +36 -7
- package/esm/types/1_chat_p.d.ts.map +1 -1
- package/esm/types/1_chat_p.js +43 -17
- package/esm/types/1_document.d.ts +2 -2
- package/esm/types/1_document.d.ts.map +1 -1
- package/esm/types/1_document.js +3 -3
- package/esm/types/1_giveaway.d.ts +3 -3
- package/esm/types/1_giveaway.d.ts.map +1 -1
- package/esm/types/1_giveaway.js +1 -1
- package/esm/types/1_inline_keyboard_button.d.ts +140 -0
- package/esm/types/1_inline_keyboard_button.d.ts.map +1 -0
- package/esm/types/1_inline_keyboard_button.js +128 -0
- package/esm/types/1_inline_query_result_button.d.ts +3 -3
- package/esm/types/1_inline_query_result_button.d.ts.map +1 -1
- package/esm/types/1_inline_query_result_button.js +1 -1
- package/esm/types/1_input_gift.d.ts +54 -0
- package/esm/types/1_input_gift.d.ts.map +1 -0
- package/esm/types/1_input_gift.js +32 -0
- package/esm/types/1_input_story_content.d.ts +3 -3
- package/esm/types/1_input_story_content.d.ts.map +1 -1
- package/esm/types/1_input_story_content.js +1 -1
- package/esm/types/1_keyboard_button.d.ts +14 -12
- package/esm/types/1_keyboard_button.d.ts.map +1 -1
- package/esm/types/1_keyboard_button.js +87 -34
- package/esm/types/1_message_reaction.d.ts +3 -3
- package/esm/types/1_message_reaction.d.ts.map +1 -1
- package/esm/types/1_message_reaction.js +8 -8
- package/esm/types/1_mini_app_info.d.ts +32 -0
- package/esm/types/1_mini_app_info.d.ts.map +1 -0
- package/esm/types/1_mini_app_info.js +27 -0
- package/esm/types/1_network_statistics.d.ts +2 -2
- package/esm/types/1_network_statistics.d.ts.map +1 -1
- package/esm/types/1_network_statistics.js +1 -1
- package/esm/types/1_order_info.d.ts +8 -3
- package/esm/types/1_order_info.d.ts.map +1 -1
- package/esm/types/1_order_info.js +1 -1
- package/esm/types/1_photo.d.ts +2 -2
- package/esm/types/1_photo.d.ts.map +1 -1
- package/esm/types/1_photo.js +4 -4
- package/esm/types/1_reaction_count.d.ts +3 -3
- package/esm/types/1_reaction_count.d.ts.map +1 -1
- package/esm/types/1_reaction_count.js +1 -1
- package/esm/types/1_sticker.d.ts +6 -5
- package/esm/types/1_sticker.d.ts.map +1 -1
- package/esm/types/1_sticker.js +15 -11
- package/esm/types/1_story_reaction.d.ts +4 -4
- package/esm/types/1_story_reaction.d.ts.map +1 -1
- package/esm/types/1_story_reaction.js +2 -2
- package/esm/types/1_venue.d.ts +2 -2
- package/esm/types/1_venue.d.ts.map +1 -1
- package/esm/types/1_venue.js +5 -8
- package/esm/types/1_video.d.ts +2 -2
- package/esm/types/1_video.d.ts.map +1 -1
- package/esm/types/1_video.js +3 -3
- package/esm/types/1_video_note.d.ts +2 -2
- package/esm/types/1_video_note.d.ts.map +1 -1
- package/esm/types/1_video_note.js +3 -3
- package/esm/types/1_working_hours.d.ts +31 -0
- package/esm/types/1_working_hours.d.ts.map +1 -0
- package/esm/types/1_working_hours.js +33 -0
- package/esm/types/2_chat.d.ts +14 -17
- package/esm/types/2_chat.d.ts.map +1 -1
- package/esm/types/2_chat.js +23 -28
- package/esm/types/2_chat_member.d.ts +72 -15
- package/esm/types/2_chat_member.d.ts.map +1 -1
- package/esm/types/2_chat_member.js +40 -28
- package/esm/types/2_inactive_chat.d.ts +3 -3
- package/esm/types/2_inactive_chat.d.ts.map +1 -1
- package/esm/types/2_inactive_chat.js +4 -5
- package/esm/types/2_message_entity.d.ts +148 -0
- package/esm/types/2_message_entity.d.ts.map +1 -0
- package/esm/types/2_message_entity.js +243 -0
- package/esm/types/2_message_interactions.d.ts +2 -2
- package/esm/types/2_message_interactions.d.ts.map +1 -1
- package/esm/types/2_message_interactions.js +1 -1
- package/esm/types/2_message_reaction_count.d.ts +6 -7
- package/esm/types/2_message_reaction_count.d.ts.map +1 -1
- package/esm/types/2_message_reaction_count.js +6 -9
- package/esm/types/2_message_reaction_list_item.d.ts +39 -0
- package/esm/types/2_message_reaction_list_item.d.ts.map +1 -0
- package/esm/types/2_message_reaction_list_item.js +50 -0
- package/esm/types/2_poll_answer.d.ts +32 -0
- package/esm/types/2_poll_answer.d.ts.map +1 -0
- package/esm/types/2_poll_answer.js +35 -0
- package/esm/types/2_reply_markup.d.ts +71 -0
- package/esm/types/2_reply_markup.d.ts.map +1 -0
- package/esm/types/2_reply_markup.js +127 -0
- package/esm/types/2_sticker_set.d.ts +51 -0
- package/esm/types/2_sticker_set.d.ts.map +1 -0
- package/esm/types/2_sticker_set.js +91 -0
- package/esm/types/2_story_content.d.ts +3 -3
- package/esm/types/2_story_content.d.ts.map +1 -1
- package/esm/types/2_story_content.js +7 -7
- package/esm/types/2_story_interactions.d.ts +3 -3
- package/esm/types/2_story_interactions.d.ts.map +1 -1
- package/esm/types/2_story_interactions.js +3 -2
- package/esm/types/2_story_interactive_area.d.ts +9 -9
- package/esm/types/2_story_interactive_area.d.ts.map +1 -1
- package/esm/types/2_story_interactive_area.js +16 -15
- package/esm/types/2_story_privacy.d.ts +46 -0
- package/esm/types/2_story_privacy.d.ts.map +1 -0
- package/esm/types/2_story_privacy.js +76 -0
- package/esm/types/2_successful_payment.d.ts +11 -3
- package/esm/types/2_successful_payment.d.ts.map +1 -1
- package/esm/types/2_successful_payment.js +3 -3
- package/esm/types/2_user.d.ts +73 -0
- package/esm/types/2_user.d.ts.map +1 -0
- package/esm/types/2_user.js +82 -0
- package/esm/types/3_business_connection.d.ts +37 -0
- package/esm/types/3_business_connection.d.ts.map +1 -0
- package/esm/types/3_business_connection.js +36 -0
- package/esm/types/3_chat_settings.d.ts +47 -0
- package/esm/types/3_chat_settings.d.ts.map +1 -0
- package/esm/types/3_chat_settings.js +51 -0
- package/esm/types/3_checklist_item.d.ts +65 -0
- package/esm/types/3_checklist_item.d.ts.map +1 -0
- package/esm/types/3_checklist_item.js +51 -0
- package/esm/types/3_chosen_inline_result.d.ts +38 -0
- package/esm/types/3_chosen_inline_result.d.ts.map +1 -0
- package/esm/types/3_chosen_inline_result.js +37 -0
- package/esm/types/3_forward_header.d.ts +77 -0
- package/esm/types/3_forward_header.d.ts.map +1 -0
- package/esm/types/3_forward_header.js +73 -0
- package/esm/types/3_game.d.ts +40 -0
- package/esm/types/3_game.d.ts.map +1 -0
- package/esm/types/3_game.js +44 -0
- package/esm/types/3_gift_upgraded_component.d.ts +96 -0
- package/esm/types/3_gift_upgraded_component.d.ts.map +1 -0
- package/esm/types/3_gift_upgraded_component.js +88 -0
- package/esm/types/3_inline_query.d.ts +40 -0
- package/esm/types/3_inline_query.d.ts.map +1 -0
- package/esm/types/3_inline_query.js +60 -0
- package/esm/types/3_input_checklist_item.d.ts +31 -0
- package/esm/types/3_input_checklist_item.d.ts.map +1 -0
- package/esm/types/3_input_checklist_item.js +20 -0
- package/esm/types/3_input_media.d.ts +123 -0
- package/esm/types/3_input_media.d.ts.map +1 -0
- package/esm/types/3_input_media.js +20 -0
- package/esm/types/3_input_poll_option.d.ts +31 -0
- package/esm/types/3_input_poll_option.d.ts.map +1 -0
- package/esm/types/3_input_poll_option.js +20 -0
- package/esm/types/3_invite_link.d.ts +47 -0
- package/esm/types/3_invite_link.d.ts.map +1 -0
- package/esm/types/3_invite_link.js +48 -0
- package/esm/types/3_message_reaction_list.d.ts +32 -0
- package/esm/types/3_message_reaction_list.d.ts.map +1 -0
- package/esm/types/3_message_reaction_list.js +31 -0
- package/esm/types/3_message_reactions.d.ts +42 -0
- package/esm/types/3_message_reactions.d.ts.map +1 -0
- package/esm/types/3_message_reactions.js +54 -0
- package/esm/types/3_poll_option.d.ts +34 -0
- package/esm/types/3_poll_option.d.ts.map +1 -0
- package/esm/types/3_poll_option.js +29 -0
- package/esm/types/3_pre_checkout_query.d.ts +42 -0
- package/esm/types/3_pre_checkout_query.d.ts.map +1 -0
- package/esm/types/3_pre_checkout_query.js +39 -0
- package/esm/types/3_reply_quote.d.ts +32 -0
- package/esm/types/3_reply_quote.d.ts.map +1 -0
- package/esm/types/3_reply_quote.js +30 -0
- package/esm/types/3_story.d.ts +13 -14
- package/esm/types/3_story.d.ts.map +1 -1
- package/esm/types/3_story.js +13 -14
- package/esm/types/4_chat_member_updated.d.ts +43 -0
- package/esm/types/4_chat_member_updated.d.ts.map +1 -0
- package/esm/types/4_chat_member_updated.js +52 -0
- package/esm/types/4_checklist.d.ts +38 -0
- package/esm/types/4_checklist.d.ts.map +1 -0
- package/esm/types/4_checklist.js +31 -0
- package/esm/types/4_gift.d.ts +100 -0
- package/esm/types/4_gift.d.ts.map +1 -0
- package/esm/types/4_gift.js +112 -0
- package/esm/types/4_join_request.d.ts +39 -0
- package/esm/types/4_join_request.d.ts.map +1 -0
- package/esm/types/4_join_request.js +62 -0
- package/esm/types/4_poll.d.ts +55 -0
- package/esm/types/4_poll.d.ts.map +1 -0
- package/esm/types/4_poll.js +43 -0
- package/esm/types/4_reply_to.d.ts +51 -0
- package/esm/types/4_reply_to.d.ts.map +1 -0
- package/esm/types/4_reply_to.js +20 -0
- package/esm/types/5_claimed_gift.d.ts +44 -0
- package/esm/types/5_claimed_gift.d.ts.map +1 -0
- package/esm/types/5_claimed_gift.js +43 -0
- package/esm/types/5_gift_non_upgraded_information.d.ts +47 -0
- package/esm/types/5_gift_non_upgraded_information.d.ts.map +1 -0
- package/esm/types/5_gift_non_upgraded_information.js +69 -0
- package/esm/types/5_gift_upgraded_information.d.ts +41 -0
- package/esm/types/5_gift_upgraded_information.d.ts.map +1 -0
- package/esm/types/5_gift_upgraded_information.js +58 -0
- package/esm/types/5_link_preview.d.ts +186 -0
- package/esm/types/5_link_preview.d.ts.map +1 -0
- package/esm/types/5_link_preview.js +205 -0
- package/esm/types/6_claimed_gifts.d.ts +33 -0
- package/esm/types/6_claimed_gifts.d.ts.map +1 -0
- package/esm/types/6_claimed_gifts.js +43 -0
- package/esm/types/6_message.d.ts +704 -0
- package/esm/types/6_message.d.ts.map +1 -0
- package/esm/types/6_message.js +553 -0
- package/esm/types/6_message_content.d.ts +124 -0
- package/esm/types/6_message_content.d.ts.map +1 -0
- package/esm/types/6_message_content.js +20 -0
- package/esm/types/7_callback_query.d.ts +43 -0
- package/esm/types/7_callback_query.d.ts.map +1 -0
- package/esm/types/7_callback_query.js +59 -0
- package/esm/types/7_chat_list_item.d.ts +43 -0
- package/esm/types/7_chat_list_item.d.ts.map +1 -0
- package/esm/types/7_chat_list_item.js +57 -0
- package/esm/types/7_inline_query_result.d.ts +251 -0
- package/esm/types/7_inline_query_result.d.ts.map +1 -0
- package/esm/types/7_inline_query_result.js +380 -0
- package/esm/types/7_message_list.d.ts +28 -0
- package/esm/types/7_message_list.d.ts.map +1 -0
- package/esm/types/7_message_list.js +20 -0
- package/esm/types/7_saved_chat.d.ts +35 -0
- package/esm/types/7_saved_chat.d.ts.map +1 -0
- package/esm/types/7_saved_chat.js +42 -0
- package/esm/types/7_topic.d.ts +44 -0
- package/esm/types/7_topic.d.ts.map +1 -0
- package/esm/types/7_topic.js +61 -0
- package/esm/types/8_inline_query_answer.d.ts +32 -0
- package/esm/types/8_inline_query_answer.d.ts.map +1 -0
- package/esm/types/8_inline_query_answer.js +28 -0
- package/esm/types/8_saved_chats.d.ts +33 -0
- package/esm/types/8_saved_chats.d.ts.map +1 -0
- package/esm/types/8_saved_chats.js +36 -0
- package/esm/types/8_update.d.ts +583 -0
- package/esm/types/8_update.d.ts.map +1 -0
- package/esm/types/8_update.js +20 -0
- package/esm/types/_file_id.d.ts +64 -51
- package/esm/types/_file_id.d.ts.map +1 -1
- package/esm/types/_file_id.js +96 -77
- package/esm/types/_getters.d.ts +4 -11
- package/esm/types/_getters.d.ts.map +1 -1
- package/esm/types/_getters.js +1 -1
- package/esm/utilities/0_color.d.ts +1 -1
- package/esm/utilities/0_color.js +1 -1
- package/esm/utilities/0_env.d.ts.map +1 -1
- package/esm/utilities/0_env.js +20 -1
- package/esm/utilities/0_gzip.d.ts +22 -0
- package/esm/utilities/0_gzip.d.ts.map +1 -0
- package/esm/utilities/0_gzip.js +42 -0
- package/esm/utilities/0_hash.d.ts +3 -3
- package/esm/utilities/0_hash.d.ts.map +1 -1
- package/esm/utilities/0_hash.js +1 -1
- package/esm/utilities/0_int.d.ts +71 -0
- package/esm/utilities/0_int.d.ts.map +1 -0
- package/esm/utilities/0_int.js +140 -0
- package/esm/utilities/0_misc.d.ts +29 -0
- package/esm/utilities/0_misc.d.ts.map +1 -0
- package/esm/utilities/0_misc.js +84 -0
- package/esm/utilities/0_mutex.d.ts +1 -1
- package/esm/utilities/0_mutex.js +1 -1
- package/esm/utilities/0_object.d.ts +1 -1
- package/esm/utilities/0_object.js +1 -1
- package/esm/utilities/0_part_stream.d.ts +4 -4
- package/esm/utilities/0_part_stream.d.ts.map +1 -1
- package/esm/utilities/0_part_stream.js +3 -3
- package/esm/utilities/0_rle.d.ts +3 -3
- package/esm/utilities/0_rle.d.ts.map +1 -1
- package/esm/utilities/0_rle.js +2 -2
- package/esm/utilities/0_text.d.ts +22 -0
- package/esm/utilities/0_text.d.ts.map +1 -0
- package/esm/utilities/0_text.js +27 -0
- package/esm/utilities/0_types.d.ts +1 -1
- package/esm/utilities/0_types.js +1 -1
- package/esm/utilities/0_units.d.ts +1 -4
- package/esm/utilities/0_units.d.ts.map +1 -1
- package/esm/utilities/0_units.js +1 -4
- package/esm/utilities/1_auth.d.ts +2 -2
- package/esm/utilities/1_auth.d.ts.map +1 -1
- package/esm/utilities/1_auth.js +5 -6
- package/esm/utilities/1_base64.d.ts +3 -3
- package/esm/utilities/1_base64.d.ts.map +1 -1
- package/esm/utilities/1_base64.js +3 -3
- package/esm/utilities/1_crypto.d.ts +30 -0
- package/esm/utilities/1_crypto.d.ts.map +1 -0
- package/esm/utilities/1_crypto.js +90 -0
- package/esm/utilities/1_logger.d.ts +3 -3
- package/esm/utilities/1_logger.d.ts.map +1 -1
- package/esm/utilities/1_logger.js +5 -4
- package/esm/utilities/1_math.d.ts +1 -1
- package/esm/utilities/1_math.js +4 -4
- package/esm/utilities/2_queue.d.ts +2 -2
- package/esm/utilities/2_queue.d.ts.map +1 -1
- package/esm/utilities/2_queue.js +12 -8
- package/package.json +2 -4
- package/script/0_deps.d.ts +24 -11
- package/script/0_deps.d.ts.map +1 -1
- package/script/0_deps.js +51 -51
- package/script/0_errors.d.ts +9 -2
- package/script/0_errors.d.ts.map +1 -1
- package/script/0_errors.js +37 -2
- package/script/1_utilities.d.ts +6 -6
- package/script/1_utilities.d.ts.map +1 -1
- package/script/1_utilities.js +6 -6
- package/script/2_connection.d.ts +1 -1
- package/script/2_connection.js +1 -1
- package/script/2_storage.d.ts +1 -1
- package/script/2_storage.js +1 -1
- package/script/2_tl.d.ts +7 -10
- package/script/2_tl.d.ts.map +1 -1
- package/script/2_tl.js +25 -19
- package/script/3_errors.d.ts +8 -3
- package/script/3_errors.d.ts.map +1 -1
- package/script/3_errors.js +14 -5
- package/script/3_transport.d.ts +4 -4
- package/script/3_transport.js +4 -4
- package/script/3_types.d.ts +74 -34
- package/script/3_types.d.ts.map +1 -1
- package/script/3_types.js +74 -34
- package/script/4_constants.d.ts +21 -2
- package/script/4_constants.d.ts.map +1 -1
- package/script/4_constants.js +6 -29
- package/script/4_errors.d.ts +4 -4
- package/script/4_errors.d.ts.map +1 -1
- package/script/4_errors.js +1 -1
- package/script/4_session.d.ts +24 -0
- package/script/4_session.d.ts.map +1 -0
- package/script/4_session.js +39 -0
- package/script/5_client.d.ts +9 -3
- package/script/5_client.d.ts.map +1 -1
- package/script/5_client.js +9 -3
- package/script/_dnt.polyfills.d.ts +119 -0
- package/script/_dnt.polyfills.d.ts.map +1 -1
- package/script/_dnt.polyfills.js +248 -0
- package/script/_dnt.shims.d.ts +0 -1
- package/script/_dnt.shims.d.ts.map +1 -1
- package/script/client/0_abortable_loop.d.ts +27 -0
- package/script/client/0_abortable_loop.d.ts.map +1 -0
- package/script/client/0_abortable_loop.js +73 -0
- package/script/client/0_client_abstract.d.ts +31 -28
- package/script/client/0_client_abstract.d.ts.map +1 -1
- package/script/client/0_client_abstract.js +23 -115
- package/script/client/0_html.d.ts +4 -3
- package/script/client/0_html.d.ts.map +1 -1
- package/script/client/0_html.js +413 -74
- package/script/client/0_markdown.d.ts +2 -2
- package/script/client/0_markdown.d.ts.map +1 -1
- package/script/client/0_markdown.js +39 -19
- package/script/client/0_params.d.ts +327 -44
- package/script/client/0_params.d.ts.map +1 -1
- package/script/client/0_params.js +1 -1
- package/script/client/0_password.d.ts +6 -6
- package/script/client/0_password.d.ts.map +1 -1
- package/script/client/0_password.js +11 -11
- package/script/client/0_storage_operations.d.ts +81 -69
- package/script/client/0_storage_operations.d.ts.map +1 -1
- package/script/client/0_storage_operations.js +354 -233
- package/script/client/0_update_processor.d.ts +26 -0
- package/script/client/0_update_processor.d.ts.map +1 -0
- package/script/client/0_update_processor.js +21 -0
- package/script/client/0_utilities.d.ts +10 -5
- package/script/client/0_utilities.d.ts.map +1 -1
- package/script/client/0_utilities.js +47 -32
- package/script/client/0_worker_error.d.ts +26 -0
- package/script/client/0_worker_error.d.ts.map +1 -0
- package/script/client/0_worker_error.js +90 -0
- package/script/client/0_worker_request.d.ts +27 -0
- package/script/client/0_worker_request.d.ts.map +1 -0
- package/script/client/0_worker_request.js +21 -0
- package/script/client/1_client_generic.d.ts +1846 -0
- package/script/client/1_client_generic.d.ts.map +1 -0
- package/script/client/1_client_generic.js +28 -0
- package/script/client/1_client_plain.d.ts +12 -9
- package/script/client/1_client_plain.d.ts.map +1 -1
- package/script/client/1_client_plain.js +39 -50
- package/script/client/1_invoke_middleware.d.ts +32 -0
- package/script/client/1_invoke_middleware.d.ts.map +1 -0
- package/script/client/1_invoke_middleware.js +25 -0
- package/script/client/1_types.d.ts +17 -32
- package/script/client/1_types.d.ts.map +1 -1
- package/script/client/1_types.js +1 -1
- package/script/client/1_worker_response.d.ts +37 -0
- package/script/client/1_worker_response.d.ts.map +1 -0
- package/script/client/1_worker_response.js +21 -0
- package/script/client/2_account_manager.d.ts +43 -5
- package/script/client/2_account_manager.d.ts.map +1 -1
- package/script/client/2_account_manager.js +336 -7
- package/script/client/2_bot_info_manager.d.ts +12 -5
- package/script/client/2_bot_info_manager.d.ts.map +1 -1
- package/script/client/2_bot_info_manager.js +15 -1
- package/script/client/2_business_connection_manager.d.ts +6 -5
- package/script/client/2_business_connection_manager.d.ts.map +1 -1
- package/script/client/2_business_connection_manager.js +8 -8
- package/script/client/2_client_encrypted.d.ts +58 -0
- package/script/client/2_client_encrypted.d.ts.map +1 -0
- package/script/client/2_client_encrypted.js +294 -0
- package/script/client/2_file_manager.d.ts +27 -7
- package/script/client/2_file_manager.d.ts.map +1 -1
- package/script/client/2_file_manager.js +240 -218
- package/script/client/2_network_statistics_manager.d.ts +5 -5
- package/script/client/2_network_statistics_manager.d.ts.map +1 -1
- package/script/client/2_network_statistics_manager.js +36 -10
- package/script/client/2_payment_manager.d.ts +8 -7
- package/script/client/2_payment_manager.d.ts.map +1 -1
- package/script/client/2_payment_manager.js +6 -6
- package/script/client/2_reaction_manager.d.ts +6 -5
- package/script/client/2_reaction_manager.d.ts.map +1 -1
- package/script/client/2_reaction_manager.js +13 -13
- package/script/client/2_sign_in.d.ts +25 -0
- package/script/client/2_sign_in.d.ts.map +1 -0
- package/script/client/2_sign_in.js +118 -0
- package/script/client/2_translations_manager.d.ts +35 -0
- package/script/client/2_translations_manager.d.ts.map +1 -0
- package/script/client/2_translations_manager.js +175 -0
- package/script/client/2_update_manager.d.ts +11 -8
- package/script/client/2_update_manager.d.ts.map +1 -1
- package/script/client/2_update_manager.js +351 -293
- package/script/client/3_client_encrypted_pool.d.ts +29 -0
- package/script/client/3_client_encrypted_pool.d.ts.map +1 -0
- package/script/client/3_client_encrypted_pool.js +67 -0
- package/script/client/3_filters.d.ts +96 -0
- package/script/client/3_filters.d.ts.map +1 -0
- package/script/client/3_filters.js +55 -0
- package/script/client/3_message_manager.d.ts +30 -35
- package/script/client/3_message_manager.d.ts.map +1 -1
- package/script/client/3_message_manager.js +785 -487
- package/script/client/3_video_chat_manager.d.ts +11 -10
- package/script/client/3_video_chat_manager.d.ts.map +1 -1
- package/script/client/3_video_chat_manager.js +46 -43
- package/script/client/4_callback_query_manager.d.ts +9 -8
- package/script/client/4_callback_query_manager.d.ts.map +1 -1
- package/script/client/4_callback_query_manager.js +13 -12
- package/script/client/4_chat_list_manager.d.ts +20 -11
- package/script/client/4_chat_list_manager.d.ts.map +1 -1
- package/script/client/4_chat_list_manager.js +141 -365
- package/script/client/4_chat_manager.d.ts +86 -0
- package/script/client/4_chat_manager.d.ts.map +1 -0
- package/script/client/4_chat_manager.js +490 -0
- package/script/client/4_checklist_manager.d.ts +38 -0
- package/script/client/4_checklist_manager.d.ts.map +1 -0
- package/script/client/4_checklist_manager.js +85 -0
- package/script/client/4_context.d.ts +691 -0
- package/script/client/4_context.d.ts.map +1 -0
- package/script/client/4_context.js +1425 -0
- package/script/client/4_forum_manager.d.ts +40 -0
- package/script/client/4_forum_manager.d.ts.map +1 -0
- package/script/client/4_forum_manager.js +138 -0
- package/script/client/4_gift_manager.d.ts +39 -0
- package/script/client/4_gift_manager.d.ts.map +1 -0
- package/script/client/4_gift_manager.js +101 -0
- package/script/client/4_inline_query_manager.d.ts +10 -9
- package/script/client/4_inline_query_manager.d.ts.map +1 -1
- package/script/client/4_inline_query_manager.js +13 -13
- package/script/client/4_link_preview_manager.d.ts +39 -0
- package/script/client/4_link_preview_manager.d.ts.map +1 -0
- package/script/client/4_link_preview_manager.js +68 -0
- package/script/client/4_poll_manager.d.ts +39 -0
- package/script/client/4_poll_manager.d.ts.map +1 -0
- package/script/client/4_poll_manager.js +122 -0
- package/script/client/4_story_manager.d.ts +11 -10
- package/script/client/4_story_manager.d.ts.map +1 -1
- package/script/client/4_story_manager.js +20 -20
- package/script/client/5_composer.d.ts +51 -0
- package/script/client/5_composer.d.ts.map +1 -0
- package/script/client/5_composer.js +126 -0
- package/script/client/6_client.d.ts +1952 -0
- package/script/client/6_client.d.ts.map +1 -0
- package/script/client/6_client.js +3444 -0
- package/script/client/6_client_dispatcher.d.ts +1917 -0
- package/script/client/6_client_dispatcher.d.ts.map +1 -0
- package/script/client/6_client_dispatcher.js +2497 -0
- package/script/client/7_client_worker.d.ts +27 -0
- package/script/client/7_client_worker.d.ts.map +1 -0
- package/script/client/7_client_worker.js +93 -0
- package/script/connection/0_connection.d.ts +9 -8
- package/script/connection/0_connection.d.ts.map +1 -1
- package/script/connection/0_connection.js +1 -1
- package/script/connection/1_connection_tcp.d.ts +4 -5
- package/script/connection/1_connection_tcp.d.ts.map +1 -1
- package/script/connection/1_connection_tcp.js +28 -52
- package/script/connection/1_connection_web_socket.d.ts +3 -3
- package/script/connection/1_connection_web_socket.d.ts.map +1 -1
- package/script/connection/1_connection_web_socket.js +10 -13
- package/script/deps/jsr.io/@roj/tgcrypto/1.0.1/dist/mod.d.ts +18 -0
- package/script/deps/jsr.io/@roj/tgcrypto/1.0.1/dist/mod.d.ts.map +1 -0
- package/script/deps/jsr.io/@roj/tgcrypto/1.0.1/dist/mod.js +71 -0
- package/script/deps/jsr.io/@roj/tgcrypto/1.0.1/dist/tgcrypto.d.ts +3 -0
- package/script/deps/jsr.io/@roj/tgcrypto/1.0.1/dist/tgcrypto.d.ts.map +1 -0
- package/script/deps/jsr.io/@roj/tgcrypto/1.0.1/dist/tgcrypto.js +303 -0
- package/script/deps/jsr.io/@std/assert/1.0.19/assert.d.ts +17 -0
- package/script/deps/jsr.io/@std/assert/1.0.19/assert.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/assert/1.0.19/assert.js +26 -0
- package/script/deps/jsr.io/@std/assert/1.0.19/assertion_error.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/assert/1.0.19/assertion_error.js +34 -0
- package/script/deps/jsr.io/@std/assert/1.0.19/equal.d.ts +25 -0
- package/script/deps/jsr.io/@std/assert/1.0.19/equal.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/assert/1.0.19/equal.js +230 -0
- package/script/deps/jsr.io/@std/assert/1.0.19/equals.d.ts +37 -0
- package/script/deps/jsr.io/@std/assert/1.0.19/equals.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/assert/1.0.19/equals.js +64 -0
- package/script/deps/jsr.io/@std/assert/1.0.19/false.d.ts +19 -0
- package/script/deps/jsr.io/@std/assert/1.0.19/false.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/assert/1.0.19/false.js +26 -0
- package/script/deps/jsr.io/@std/assert/1.0.19/unreachable.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/assert/1.0.19/unreachable.js +23 -0
- package/script/deps/jsr.io/@std/async/1.2.0/_util.d.ts +2 -0
- package/script/deps/jsr.io/@std/async/1.2.0/_util.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/async/1.2.0/_util.js +9 -0
- package/script/deps/jsr.io/@std/async/1.2.0/abortable.d.ts +107 -0
- package/script/deps/jsr.io/@std/async/1.2.0/abortable.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/async/1.2.0/abortable.js +49 -0
- package/script/deps/jsr.io/@std/async/1.2.0/deadline.d.ts +37 -0
- package/script/deps/jsr.io/@std/async/1.2.0/deadline.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/async/1.2.0/deadline.js +44 -0
- package/script/deps/jsr.io/@std/async/1.2.0/debounce.d.ts +44 -0
- package/script/deps/jsr.io/@std/async/1.2.0/debounce.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/async/1.2.0/debounce.js +60 -0
- package/script/deps/jsr.io/@std/async/1.2.0/delay.d.ts +45 -0
- package/script/deps/jsr.io/@std/async/1.2.0/delay.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/async/1.2.0/delay.js +87 -0
- package/script/deps/jsr.io/@std/async/1.2.0/mod.d.ts +22 -0
- package/script/deps/jsr.io/@std/async/1.2.0/mod.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/async/1.2.0/mod.js +39 -0
- package/script/deps/jsr.io/@std/async/1.2.0/mux_async_iterator.d.ts +111 -0
- package/script/deps/jsr.io/@std/async/1.2.0/mux_async_iterator.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/async/1.2.0/mux_async_iterator.js +174 -0
- package/script/deps/jsr.io/@std/async/1.2.0/pool.d.ts +33 -0
- package/script/deps/jsr.io/@std/async/1.2.0/pool.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/async/1.2.0/pool.js +102 -0
- package/script/deps/jsr.io/@std/async/1.2.0/retry.d.ts +155 -0
- package/script/deps/jsr.io/@std/async/1.2.0/retry.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/async/1.2.0/retry.js +152 -0
- package/script/deps/jsr.io/@std/async/1.2.0/tee.d.ts +43 -0
- package/script/deps/jsr.io/@std/async/1.2.0/tee.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/async/1.2.0/tee.js +105 -0
- package/script/deps/jsr.io/@std/bytes/1.0.6/_types.d.ts +9 -0
- package/script/deps/jsr.io/@std/bytes/1.0.6/_types.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/bytes/1.0.6/_types.js +3 -0
- package/script/deps/jsr.io/@std/bytes/1.0.6/concat.d.ts +21 -0
- package/script/deps/jsr.io/@std/bytes/1.0.6/concat.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/bytes/1.0.6/concat.js +35 -0
- package/script/deps/jsr.io/@std/bytes/1.0.6/equals.d.ts +22 -0
- package/script/deps/jsr.io/@std/bytes/1.0.6/equals.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/bytes/1.0.6/equals.js +85 -0
- package/script/deps/jsr.io/@std/bytes/1.0.6/starts_with.d.ts +24 -0
- package/script/deps/jsr.io/@std/bytes/1.0.6/starts_with.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/bytes/1.0.6/starts_with.js +37 -0
- package/script/deps/jsr.io/@std/cache/0.2.2/_serialize_arg_list.d.ts +12 -0
- package/script/deps/jsr.io/@std/cache/0.2.2/_serialize_arg_list.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/cache/0.2.2/_serialize_arg_list.js +72 -0
- package/script/deps/jsr.io/@std/cache/0.2.2/lru_cache.d.ts +155 -0
- package/script/deps/jsr.io/@std/cache/0.2.2/lru_cache.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/cache/0.2.2/lru_cache.js +209 -0
- package/script/deps/jsr.io/@std/cache/0.2.2/memoize.d.ts +111 -0
- package/script/deps/jsr.io/@std/cache/0.2.2/memoize.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/cache/0.2.2/memoize.js +85 -0
- package/script/deps/jsr.io/@std/datetime/0.225.7/_date_time_formatter.d.ts +19 -0
- package/script/deps/jsr.io/@std/datetime/0.225.7/_date_time_formatter.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/datetime/0.225.7/_date_time_formatter.js +554 -0
- package/script/deps/jsr.io/@std/datetime/0.225.7/constants.d.ts +265 -0
- package/script/deps/jsr.io/@std/datetime/0.225.7/constants.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/datetime/0.225.7/constants.js +269 -0
- package/script/deps/jsr.io/@std/datetime/0.225.7/format.d.ts +70 -0
- package/script/deps/jsr.io/@std/datetime/0.225.7/format.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/datetime/0.225.7/format.js +69 -0
- package/script/deps/jsr.io/@std/encoding/1.0.10/_common16.d.ts +23 -0
- package/script/deps/jsr.io/@std/encoding/1.0.10/_common16.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/encoding/1.0.10/_common16.js +57 -0
- package/script/deps/jsr.io/@std/encoding/1.0.10/_common64.d.ts +35 -0
- package/script/deps/jsr.io/@std/encoding/1.0.10/_common64.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/encoding/1.0.10/_common64.js +119 -0
- package/script/deps/jsr.io/@std/encoding/1.0.10/_common_detach.d.ts +4 -0
- package/script/deps/jsr.io/@std/encoding/1.0.10/_common_detach.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/encoding/1.0.10/_common_detach.js +16 -0
- package/script/deps/jsr.io/@std/encoding/1.0.10/_types.d.ts +9 -0
- package/script/deps/jsr.io/@std/encoding/1.0.10/_types.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/encoding/1.0.10/_types.js +3 -0
- package/script/deps/jsr.io/@std/encoding/1.0.10/base64.d.ts +40 -0
- package/script/deps/jsr.io/@std/encoding/1.0.10/base64.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/encoding/1.0.10/base64.js +86 -0
- package/script/deps/jsr.io/@std/encoding/1.0.10/hex.d.ts +39 -0
- package/script/deps/jsr.io/@std/encoding/1.0.10/hex.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/encoding/1.0.10/hex.js +91 -0
- package/script/deps/jsr.io/@std/internal/1.0.12/_os.d.ts +2 -0
- package/script/deps/jsr.io/@std/internal/1.0.12/_os.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/internal/1.0.12/_os.js +48 -0
- package/script/deps/jsr.io/@std/internal/1.0.12/build_message.d.ts +80 -0
- package/script/deps/jsr.io/@std/internal/1.0.12/build_message.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/internal/1.0.12/build_message.js +121 -0
- package/script/deps/jsr.io/@std/internal/1.0.12/diff.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/internal/1.0.12/diff.js +283 -0
- package/script/deps/jsr.io/@std/internal/1.0.12/diff_str.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/internal/1.0.12/diff_str.js +188 -0
- package/script/deps/jsr.io/@std/internal/1.0.12/format.d.ts +29 -0
- package/script/deps/jsr.io/@std/internal/1.0.12/format.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/internal/1.0.12/format.js +106 -0
- package/script/deps/jsr.io/@std/internal/1.0.12/os.d.ts +3 -0
- package/script/deps/jsr.io/@std/internal/1.0.12/os.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/internal/1.0.12/os.js +8 -0
- package/script/deps/jsr.io/@std/internal/1.0.12/styles.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/internal/1.0.12/styles.js +252 -0
- package/script/deps/jsr.io/@std/internal/1.0.12/types.d.ts +25 -0
- package/script/deps/jsr.io/@std/internal/1.0.12/types.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/internal/1.0.12/types.js +4 -0
- package/script/deps/jsr.io/@std/io/0.225.3/_constants.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/io/0.225.3/_constants.js +7 -0
- package/script/deps/jsr.io/@std/io/0.225.3/iterate_reader.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/io/0.225.3/iterate_reader.js +100 -0
- package/script/deps/jsr.io/@std/io/0.225.3/types.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/io/0.225.3/types.js +18 -0
- package/script/deps/jsr.io/@std/media-types/1.1.0/_db.d.ts +8 -0
- package/script/deps/jsr.io/@std/media-types/1.1.0/_db.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/media-types/1.1.0/_util.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/media-types/1.1.0/all_extensions.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/media-types/1.1.0/content_type.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/media-types/1.1.0/extension.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/media-types/1.1.0/format_media_type.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/media-types/1.1.0/get_charset.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/media-types/1.1.0/parse_media_type.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/media-types/1.1.0/type_by_extension.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/media-types/1.1.0/vendor/db.d.ts +9103 -0
- package/script/deps/jsr.io/@std/media-types/1.1.0/vendor/db.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/media-types/1.1.0/vendor/db.js +9140 -0
- package/script/deps/jsr.io/@std/path/1.1.4/_common/assert_path.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/_common/assert_path.js +10 -0
- package/script/deps/jsr.io/@std/path/1.1.4/_common/basename.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/_common/basename.js +45 -0
- package/script/deps/jsr.io/@std/path/1.1.4/_common/constants.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/_common/constants.js +49 -0
- package/script/deps/jsr.io/@std/path/1.1.4/_common/from_file_url.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/_common/from_file_url.js +12 -0
- package/script/deps/jsr.io/@std/path/1.1.4/_common/normalize.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/_common/normalize.js +11 -0
- package/script/deps/jsr.io/@std/path/1.1.4/_common/normalize_string.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/_common/normalize_string.js +80 -0
- package/script/deps/jsr.io/@std/path/1.1.4/_common/strip_trailing_separators.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/_common/strip_trailing_separators.js +22 -0
- package/script/deps/jsr.io/@std/path/1.1.4/_common/to_file_url.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/_common/to_file_url.js +18 -0
- package/script/deps/jsr.io/@std/path/1.1.4/basename.d.ts +27 -0
- package/script/deps/jsr.io/@std/path/1.1.4/basename.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/basename.js +38 -0
- package/script/deps/jsr.io/@std/path/1.1.4/extname.d.ts +22 -0
- package/script/deps/jsr.io/@std/path/1.1.4/extname.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/extname.js +31 -0
- package/script/deps/jsr.io/@std/path/1.1.4/is_absolute.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/is_absolute.js +31 -0
- package/script/deps/jsr.io/@std/path/1.1.4/join.d.ts +23 -0
- package/script/deps/jsr.io/@std/path/1.1.4/join.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/join.js +32 -0
- package/script/deps/jsr.io/@std/path/1.1.4/posix/_util.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/posix/_util.js +11 -0
- package/script/deps/jsr.io/@std/path/1.1.4/posix/basename.d.ts +39 -0
- package/script/deps/jsr.io/@std/path/1.1.4/posix/basename.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/posix/basename.js +55 -0
- package/script/deps/jsr.io/@std/path/1.1.4/posix/extname.d.ts +37 -0
- package/script/deps/jsr.io/@std/path/1.1.4/posix/extname.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/posix/extname.js +96 -0
- package/script/deps/jsr.io/@std/path/1.1.4/posix/from_file_url.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/posix/from_file_url.js +24 -0
- package/script/deps/jsr.io/@std/path/1.1.4/posix/is_absolute.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/posix/is_absolute.js +26 -0
- package/script/deps/jsr.io/@std/path/1.1.4/posix/join.d.ts +31 -0
- package/script/deps/jsr.io/@std/path/1.1.4/posix/join.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/posix/join.js +48 -0
- package/script/deps/jsr.io/@std/path/1.1.4/posix/normalize.d.ts +37 -0
- package/script/deps/jsr.io/@std/path/1.1.4/posix/normalize.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/posix/normalize.js +61 -0
- package/script/deps/jsr.io/@std/path/1.1.4/posix/to_file_url.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/posix/to_file_url.js +30 -0
- package/script/deps/jsr.io/@std/path/1.1.4/to_file_url.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/to_file_url.js +31 -0
- package/script/deps/jsr.io/@std/path/1.1.4/windows/_util.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/windows/_util.js +20 -0
- package/script/deps/jsr.io/@std/path/1.1.4/windows/basename.d.ts +22 -0
- package/script/deps/jsr.io/@std/path/1.1.4/windows/basename.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/windows/basename.js +50 -0
- package/script/deps/jsr.io/@std/path/1.1.4/windows/extname.d.ts +17 -0
- package/script/deps/jsr.io/@std/path/1.1.4/windows/extname.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/windows/extname.js +85 -0
- package/script/deps/jsr.io/@std/path/1.1.4/windows/from_file_url.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/windows/from_file_url.js +33 -0
- package/script/deps/jsr.io/@std/path/1.1.4/windows/is_absolute.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/windows/is_absolute.js +41 -0
- package/script/deps/jsr.io/@std/path/1.1.4/windows/join.d.ts +18 -0
- package/script/deps/jsr.io/@std/path/1.1.4/windows/join.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/windows/join.js +80 -0
- package/script/deps/jsr.io/@std/path/1.1.4/windows/normalize.d.ts +19 -0
- package/script/deps/jsr.io/@std/path/1.1.4/windows/normalize.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/windows/normalize.js +138 -0
- package/script/deps/jsr.io/@std/path/1.1.4/windows/to_file_url.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/path/1.1.4/windows/to_file_url.js +37 -0
- package/script/deps/jsr.io/@std/streams/1.0.17/to_array_buffer.d.ts +22 -0
- package/script/deps/jsr.io/@std/streams/1.0.17/to_array_buffer.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/streams/1.0.17/to_array_buffer.js +38 -0
- package/script/mod.d.ts +2 -2
- package/script/mod.d.ts.map +1 -1
- package/script/mod.js +19 -10
- package/script/session/0_session_error.d.ts +24 -0
- package/script/session/0_session_error.d.ts.map +1 -0
- package/script/session/0_session_error.js +29 -0
- package/script/session/0_session_state.d.ts +28 -0
- package/script/session/0_session_state.d.ts.map +1 -0
- package/script/session/0_session_state.js +81 -0
- package/script/session/1_session.d.ts +51 -0
- package/script/session/1_session.d.ts.map +1 -0
- package/script/session/1_session.js +151 -0
- package/script/session/2_session_encrypted.d.ts +41 -0
- package/script/session/2_session_encrypted.d.ts.map +1 -0
- package/script/session/2_session_encrypted.js +511 -0
- package/script/session/2_session_plain.d.ts +25 -0
- package/script/session/2_session_plain.d.ts.map +1 -0
- package/script/session/2_session_plain.js +60 -0
- package/script/storage/0_storage.d.ts +3 -2
- package/script/storage/0_storage.d.ts.map +1 -1
- package/script/storage/0_storage.js +1 -1
- package/script/storage/1_utilities.d.ts +15 -11
- package/script/storage/1_utilities.d.ts.map +1 -1
- package/script/storage/1_utilities.js +47 -55
- package/script/storage/2_storage_indexed_db.d.ts +3 -2
- package/script/storage/2_storage_indexed_db.d.ts.map +1 -1
- package/script/storage/2_storage_indexed_db.js +7 -4
- package/script/storage/2_storage_local_storage.d.ts +3 -2
- package/script/storage/2_storage_local_storage.d.ts.map +1 -1
- package/script/storage/2_storage_local_storage.js +7 -4
- package/script/storage/2_storage_memory.d.ts +4 -3
- package/script/storage/2_storage_memory.d.ts.map +1 -1
- package/script/storage/2_storage_memory.js +6 -3
- package/script/storage/2_storage_session_storage.d.ts +4 -3
- package/script/storage/2_storage_session_storage.d.ts.map +1 -1
- package/script/storage/2_storage_session_storage.js +7 -4
- package/script/tl/0_types.d.ts +25 -0
- package/script/tl/0_types.d.ts.map +1 -0
- package/script/tl/0_types.js +21 -0
- package/script/tl/0_utilities.d.ts +34 -0
- package/script/tl/0_utilities.d.ts.map +1 -0
- package/script/tl/0_utilities.js +89 -0
- package/script/tl/1_mtproto_api.d.ts +371 -0
- package/script/tl/1_mtproto_api.d.ts.map +1 -0
- package/script/tl/1_mtproto_api.js +419 -0
- package/script/tl/1_telegram_api.d.ts +19410 -0
- package/script/tl/1_telegram_api.d.ts.map +1 -0
- package/script/tl/1_telegram_api.js +22389 -0
- package/script/tl/1_tl_reader.d.ts +39 -0
- package/script/tl/1_tl_reader.d.ts.map +1 -0
- package/script/tl/1_tl_reader.js +232 -0
- package/script/tl/1_tl_writer.d.ts +37 -0
- package/script/tl/1_tl_writer.d.ts.map +1 -0
- package/script/tl/1_tl_writer.js +282 -0
- package/script/tl/1_utilities.d.ts +9 -14
- package/script/tl/1_utilities.d.ts.map +1 -1
- package/script/tl/1_utilities.js +23 -44
- package/script/tl/2_message.d.ts +36 -0
- package/script/tl/2_message.d.ts.map +1 -0
- package/script/tl/2_message.js +80 -0
- package/script/tl/2_mtproto.d.ts +33 -0
- package/script/tl/2_mtproto.d.ts.map +1 -0
- package/script/tl/2_mtproto.js +78 -0
- package/script/tl/2_telegram.d.ts +49 -0
- package/script/tl/2_telegram.d.ts.map +1 -0
- package/script/tl/2_telegram.js +189 -0
- package/script/transport/0_obfuscation.d.ts +2 -2
- package/script/transport/0_obfuscation.d.ts.map +1 -1
- package/script/transport/0_obfuscation.js +9 -8
- package/script/transport/0_transport.d.ts +4 -6
- package/script/transport/0_transport.d.ts.map +1 -1
- package/script/transport/0_transport.js +10 -11
- package/script/transport/1_transport_abridged.d.ts +2 -4
- package/script/transport/1_transport_abridged.d.ts.map +1 -1
- package/script/transport/1_transport_abridged.js +16 -33
- package/script/transport/1_transport_intermediate.d.ts +2 -4
- package/script/transport/1_transport_intermediate.d.ts.map +1 -1
- package/script/transport/1_transport_intermediate.js +11 -30
- package/script/transport/1_transport_provider.d.ts +35 -0
- package/script/transport/1_transport_provider.d.ts.map +1 -0
- package/script/transport/1_transport_provider.js +86 -0
- package/script/transport/2_transport_provider_tcp.d.ts +25 -0
- package/script/transport/2_transport_provider_tcp.d.ts.map +1 -0
- package/script/transport/2_transport_provider_tcp.js +32 -0
- package/script/transport/2_transport_provider_web_socket.d.ts +24 -0
- package/script/transport/2_transport_provider_web_socket.d.ts.map +1 -0
- package/script/transport/2_transport_provider_web_socket.js +47 -0
- package/script/types/0_authorization_state.d.ts +2 -2
- package/script/types/0_authorization_state.d.ts.map +1 -1
- package/script/types/0_authorization_state.js +1 -1
- package/script/types/0_birthday.d.ts +3 -2
- package/script/types/0_birthday.d.ts.map +1 -1
- package/script/types/0_birthday.js +11 -1
- package/script/types/0_bot_command.d.ts +1 -1
- package/script/types/0_bot_command.js +1 -1
- package/script/types/0_bot_token_check_result.d.ts +31 -0
- package/script/types/0_bot_token_check_result.d.ts.map +1 -0
- package/script/types/0_bot_token_check_result.js +21 -0
- package/script/types/0_button_style.d.ts +28 -0
- package/script/types/0_button_style.d.ts.map +1 -0
- package/script/types/0_button_style.js +40 -0
- package/script/types/0_callback_query_answer.d.ts +3 -3
- package/script/types/0_callback_query_answer.d.ts.map +1 -1
- package/script/types/0_callback_query_answer.js +2 -2
- package/script/types/0_callback_query_question.d.ts +1 -1
- package/script/types/0_callback_query_question.js +3 -3
- package/script/types/0_chat_action.d.ts +1 -1
- package/script/types/0_chat_action.js +1 -1
- package/script/types/0_chat_administrator_rights.d.ts +17 -7
- package/script/types/0_chat_administrator_rights.d.ts.map +1 -1
- package/script/types/0_chat_administrator_rights.js +31 -16
- package/script/types/0_chat_folder.d.ts +29 -0
- package/script/types/0_chat_folder.d.ts.map +1 -0
- package/script/types/0_chat_folder.js +28 -0
- package/script/types/0_chat_member_rights.d.ts +3 -3
- package/script/types/0_chat_member_rights.d.ts.map +1 -1
- package/script/types/0_chat_member_rights.js +22 -22
- package/script/types/0_chat_photo.d.ts +2 -2
- package/script/types/0_chat_photo.d.ts.map +1 -1
- package/script/types/0_chat_photo.js +4 -4
- package/script/types/0_checklist_changed.d.ts +29 -0
- package/script/types/0_checklist_changed.d.ts.map +1 -0
- package/script/types/0_checklist_changed.js +28 -0
- package/script/types/0_code_check_result.d.ts +47 -0
- package/script/types/0_code_check_result.d.ts.map +1 -0
- package/script/types/0_code_check_result.js +21 -0
- package/script/types/0_connection_state.d.ts +1 -1
- package/script/types/0_connection_state.js +1 -1
- package/script/types/0_contact.d.ts +2 -2
- package/script/types/0_contact.d.ts.map +1 -1
- package/script/types/0_contact.js +4 -3
- package/script/types/0_dice.d.ts +2 -2
- package/script/types/0_dice.d.ts.map +1 -1
- package/script/types/0_dice.js +1 -1
- package/script/types/0_emoji_status.d.ts +48 -0
- package/script/types/0_emoji_status.d.ts.map +1 -0
- package/script/types/0_emoji_status.js +36 -0
- package/script/types/0_failed_invitation.d.ts +8 -4
- package/script/types/0_failed_invitation.d.ts.map +1 -1
- package/script/types/0_failed_invitation.js +3 -3
- package/script/types/0_file_source.d.ts +2 -2
- package/script/types/0_file_source.d.ts.map +1 -1
- package/script/types/0_file_source.js +1 -1
- package/script/types/0_gift_component_rarity.d.ts +50 -0
- package/script/types/0_gift_component_rarity.d.ts.map +1 -0
- package/script/types/0_gift_component_rarity.js +46 -0
- package/script/types/0_gift_value.d.ts +25 -0
- package/script/types/0_gift_value.d.ts.map +1 -0
- package/script/types/0_gift_value.js +21 -0
- package/script/types/0_giveaway_parameters.d.ts +2 -2
- package/script/types/0_giveaway_parameters.d.ts.map +1 -1
- package/script/types/0_giveaway_parameters.js +4 -5
- package/script/types/0_id.d.ts +1 -1
- package/script/types/0_id.js +1 -1
- package/script/types/0_input_emoji_status.d.ts +36 -0
- package/script/types/0_input_emoji_status.d.ts.map +1 -0
- package/script/types/0_input_emoji_status.js +21 -0
- package/script/types/0_invoice.d.ts +3 -2
- package/script/types/0_invoice.d.ts.map +1 -1
- package/script/types/0_invoice.js +1 -1
- package/script/types/0_keyboard_button_poll_type.d.ts +1 -1
- package/script/types/0_keyboard_button_poll_type.js +1 -1
- package/script/types/0_link_preview_media_size.d.ts +22 -0
- package/script/types/0_link_preview_media_size.d.ts.map +1 -0
- package/script/types/0_link_preview_media_size.js +21 -0
- package/script/types/0_live_stream_channel.d.ts +2 -2
- package/script/types/0_live_stream_channel.d.ts.map +1 -1
- package/script/types/0_live_stream_channel.js +1 -1
- package/script/types/0_location.d.ts +1 -1
- package/script/types/0_location.d.ts.map +1 -1
- package/script/types/0_location.js +12 -11
- package/script/types/0_login_url.d.ts +1 -1
- package/script/types/0_login_url.js +1 -1
- package/script/types/0_mask_position.d.ts +2 -2
- package/script/types/0_mask_position.d.ts.map +1 -1
- package/script/types/0_mask_position.js +2 -2
- package/script/types/0_message_reference.d.ts +1 -1
- package/script/types/0_message_reference.js +1 -1
- package/script/types/0_message_search_filter.d.ts +3 -2
- package/script/types/0_message_search_filter.d.ts.map +1 -1
- package/script/types/0_message_search_filter.js +1 -1
- package/script/types/0_mini_app_button_info.d.ts +26 -0
- package/script/types/0_mini_app_button_info.d.ts.map +1 -0
- package/script/types/0_mini_app_button_info.js +25 -0
- package/script/types/0_mini_app_mode.d.ts +22 -0
- package/script/types/0_mini_app_mode.d.ts.map +1 -0
- package/script/types/0_mini_app_mode.js +21 -0
- package/script/types/0_network_statistics_entry.d.ts +1 -1
- package/script/types/0_network_statistics_entry.js +1 -1
- package/script/types/0_parse_mode.d.ts +1 -1
- package/script/types/0_parse_mode.js +1 -1
- package/script/types/0_password_check_result.d.ts +39 -0
- package/script/types/0_password_check_result.d.ts.map +1 -0
- package/script/types/0_password_check_result.js +21 -0
- package/script/types/0_price_tag.d.ts +1 -1
- package/script/types/0_price_tag.js +1 -1
- package/script/types/0_reaction.d.ts +4 -1
- package/script/types/0_reaction.d.ts.map +1 -1
- package/script/types/0_reaction.js +9 -9
- package/script/types/0_refunded_payment.d.ts +2 -2
- package/script/types/0_refunded_payment.d.ts.map +1 -1
- package/script/types/0_refunded_payment.js +2 -2
- package/script/types/0_restriction_reason.d.ts +2 -2
- package/script/types/0_restriction_reason.d.ts.map +1 -1
- package/script/types/0_restriction_reason.js +1 -1
- package/script/types/0_self_destruct_option.d.ts +11 -3
- package/script/types/0_self_destruct_option.d.ts.map +1 -1
- package/script/types/0_self_destruct_option.js +13 -3
- package/script/types/0_shipping_address.d.ts +2 -2
- package/script/types/0_shipping_address.d.ts.map +1 -1
- package/script/types/0_shipping_address.js +1 -1
- package/script/types/0_slow_mode_duration.d.ts +23 -0
- package/script/types/0_slow_mode_duration.d.ts.map +1 -0
- package/script/types/0_slow_mode_duration.js +31 -0
- package/script/types/0_story_reference.d.ts +1 -1
- package/script/types/0_story_reference.js +1 -1
- package/script/types/0_switch_inline_query_chosen_chats.d.ts +20 -0
- package/script/types/0_switch_inline_query_chosen_chats.d.ts.map +1 -1
- package/script/types/0_switch_inline_query_chosen_chats.js +19 -0
- package/script/types/0_thumbnail.d.ts +1 -1
- package/script/types/0_thumbnail.d.ts.map +1 -1
- package/script/types/0_thumbnail.js +3 -3
- package/script/types/0_translation.d.ts +32 -0
- package/script/types/0_translation.d.ts.map +1 -0
- package/script/types/0_translation.js +48 -0
- package/script/types/0_upload_progress.d.ts +29 -0
- package/script/types/0_upload_progress.d.ts.map +1 -0
- package/script/types/0_upload_progress.js +21 -0
- package/script/types/0_user_status.d.ts +66 -0
- package/script/types/0_user_status.d.ts.map +1 -0
- package/script/types/0_user_status.js +38 -0
- package/script/types/0_video_chat.d.ts +8 -4
- package/script/types/0_video_chat.d.ts.map +1 -1
- package/script/types/0_video_chat.js +6 -7
- package/script/types/0_voice.d.ts +2 -2
- package/script/types/0_voice.d.ts.map +1 -1
- package/script/types/0_voice.js +1 -1
- package/script/types/0_voice_transcription.d.ts +31 -0
- package/script/types/0_voice_transcription.d.ts.map +1 -0
- package/script/types/0_voice_transcription.js +29 -0
- package/script/types/0_working_hours_interval.d.ts +27 -0
- package/script/types/0_working_hours_interval.d.ts.map +1 -0
- package/script/types/0_working_hours_interval.js +21 -0
- package/script/types/1_animation.d.ts +2 -2
- package/script/types/1_animation.d.ts.map +1 -1
- package/script/types/1_animation.js +5 -4
- package/script/types/1_audio.d.ts +2 -2
- package/script/types/1_audio.d.ts.map +1 -1
- package/script/types/1_audio.js +5 -4
- package/script/types/1_bot_command_scope.d.ts +3 -3
- package/script/types/1_bot_command_scope.d.ts.map +1 -1
- package/script/types/1_bot_command_scope.js +3 -3
- package/script/types/1_bot_commands.d.ts +30 -0
- package/script/types/1_bot_commands.d.ts.map +1 -0
- package/script/types/1_bot_commands.js +21 -0
- package/script/types/1_chat_p.d.ts +36 -7
- package/script/types/1_chat_p.d.ts.map +1 -1
- package/script/types/1_chat_p.js +43 -16
- package/script/types/1_document.d.ts +2 -2
- package/script/types/1_document.d.ts.map +1 -1
- package/script/types/1_document.js +2 -2
- package/script/types/1_giveaway.d.ts +3 -3
- package/script/types/1_giveaway.d.ts.map +1 -1
- package/script/types/1_giveaway.js +1 -1
- package/script/types/1_inline_keyboard_button.d.ts +140 -0
- package/script/types/1_inline_keyboard_button.d.ts.map +1 -0
- package/script/types/1_inline_keyboard_button.js +132 -0
- package/script/types/1_inline_query_result_button.d.ts +3 -3
- package/script/types/1_inline_query_result_button.d.ts.map +1 -1
- package/script/types/1_inline_query_result_button.js +1 -1
- package/script/types/1_input_gift.d.ts +54 -0
- package/script/types/1_input_gift.d.ts.map +1 -0
- package/script/types/1_input_gift.js +35 -0
- package/script/types/1_input_story_content.d.ts +3 -3
- package/script/types/1_input_story_content.d.ts.map +1 -1
- package/script/types/1_input_story_content.js +1 -1
- package/script/types/1_keyboard_button.d.ts +14 -12
- package/script/types/1_keyboard_button.d.ts.map +1 -1
- package/script/types/1_keyboard_button.js +86 -33
- package/script/types/1_message_reaction.d.ts +3 -3
- package/script/types/1_message_reaction.d.ts.map +1 -1
- package/script/types/1_message_reaction.js +7 -7
- package/script/types/1_mini_app_info.d.ts +32 -0
- package/script/types/1_mini_app_info.d.ts.map +1 -0
- package/script/types/1_mini_app_info.js +30 -0
- package/script/types/1_network_statistics.d.ts +2 -2
- package/script/types/1_network_statistics.d.ts.map +1 -1
- package/script/types/1_network_statistics.js +1 -1
- package/script/types/1_order_info.d.ts +8 -3
- package/script/types/1_order_info.d.ts.map +1 -1
- package/script/types/1_order_info.js +1 -1
- package/script/types/1_photo.d.ts +2 -2
- package/script/types/1_photo.d.ts.map +1 -1
- package/script/types/1_photo.js +3 -3
- package/script/types/1_reaction_count.d.ts +3 -3
- package/script/types/1_reaction_count.d.ts.map +1 -1
- package/script/types/1_reaction_count.js +1 -1
- package/script/types/1_sticker.d.ts +6 -5
- package/script/types/1_sticker.d.ts.map +1 -1
- package/script/types/1_sticker.js +15 -10
- package/script/types/1_story_reaction.d.ts +4 -4
- package/script/types/1_story_reaction.d.ts.map +1 -1
- package/script/types/1_story_reaction.js +2 -2
- package/script/types/1_venue.d.ts +2 -2
- package/script/types/1_venue.d.ts.map +1 -1
- package/script/types/1_venue.js +4 -7
- package/script/types/1_video.d.ts +2 -2
- package/script/types/1_video.d.ts.map +1 -1
- package/script/types/1_video.js +2 -2
- package/script/types/1_video_note.d.ts +2 -2
- package/script/types/1_video_note.d.ts.map +1 -1
- package/script/types/1_video_note.js +2 -2
- package/script/types/1_working_hours.d.ts +31 -0
- package/script/types/1_working_hours.d.ts.map +1 -0
- package/script/types/1_working_hours.js +37 -0
- package/script/types/2_chat.d.ts +14 -17
- package/script/types/2_chat.d.ts.map +1 -1
- package/script/types/2_chat.js +22 -27
- package/script/types/2_chat_member.d.ts +72 -15
- package/script/types/2_chat_member.d.ts.map +1 -1
- package/script/types/2_chat_member.js +38 -26
- package/script/types/2_inactive_chat.d.ts +3 -3
- package/script/types/2_inactive_chat.d.ts.map +1 -1
- package/script/types/2_inactive_chat.js +3 -4
- package/script/types/2_message_entity.d.ts +148 -0
- package/script/types/2_message_entity.d.ts.map +1 -0
- package/script/types/2_message_entity.js +248 -0
- package/script/types/2_message_interactions.d.ts +2 -2
- package/script/types/2_message_interactions.d.ts.map +1 -1
- package/script/types/2_message_interactions.js +1 -1
- package/script/types/2_message_reaction_count.d.ts +6 -7
- package/script/types/2_message_reaction_count.d.ts.map +1 -1
- package/script/types/2_message_reaction_count.js +6 -9
- package/script/types/2_message_reaction_list_item.d.ts +39 -0
- package/script/types/2_message_reaction_list_item.d.ts.map +1 -0
- package/script/types/2_message_reaction_list_item.js +53 -0
- package/script/types/2_poll_answer.d.ts +32 -0
- package/script/types/2_poll_answer.d.ts.map +1 -0
- package/script/types/2_poll_answer.js +38 -0
- package/script/types/2_reply_markup.d.ts +71 -0
- package/script/types/2_reply_markup.d.ts.map +1 -0
- package/script/types/2_reply_markup.js +131 -0
- package/script/types/2_sticker_set.d.ts +51 -0
- package/script/types/2_sticker_set.d.ts.map +1 -0
- package/script/types/2_sticker_set.js +94 -0
- package/script/types/2_story_content.d.ts +3 -3
- package/script/types/2_story_content.d.ts.map +1 -1
- package/script/types/2_story_content.js +6 -6
- package/script/types/2_story_interactions.d.ts +3 -3
- package/script/types/2_story_interactions.d.ts.map +1 -1
- package/script/types/2_story_interactions.js +3 -2
- package/script/types/2_story_interactive_area.d.ts +9 -9
- package/script/types/2_story_interactive_area.d.ts.map +1 -1
- package/script/types/2_story_interactive_area.js +15 -14
- package/script/types/2_story_privacy.d.ts +46 -0
- package/script/types/2_story_privacy.d.ts.map +1 -0
- package/script/types/2_story_privacy.js +80 -0
- package/script/types/2_successful_payment.d.ts +11 -3
- package/script/types/2_successful_payment.d.ts.map +1 -1
- package/script/types/2_successful_payment.js +2 -2
- package/script/types/2_user.d.ts +73 -0
- package/script/types/2_user.d.ts.map +1 -0
- package/script/types/2_user.js +86 -0
- package/script/types/3_business_connection.d.ts +37 -0
- package/script/types/3_business_connection.d.ts.map +1 -0
- package/script/types/3_business_connection.js +39 -0
- package/script/types/3_chat_settings.d.ts +47 -0
- package/script/types/3_chat_settings.d.ts.map +1 -0
- package/script/types/3_chat_settings.js +54 -0
- package/script/types/3_checklist_item.d.ts +65 -0
- package/script/types/3_checklist_item.d.ts.map +1 -0
- package/script/types/3_checklist_item.js +54 -0
- package/script/types/3_chosen_inline_result.d.ts +38 -0
- package/script/types/3_chosen_inline_result.d.ts.map +1 -0
- package/script/types/3_chosen_inline_result.js +40 -0
- package/script/types/3_forward_header.d.ts +77 -0
- package/script/types/3_forward_header.d.ts.map +1 -0
- package/script/types/3_forward_header.js +76 -0
- package/script/types/3_game.d.ts +40 -0
- package/script/types/3_game.d.ts.map +1 -0
- package/script/types/3_game.js +47 -0
- package/script/types/3_gift_upgraded_component.d.ts +96 -0
- package/script/types/3_gift_upgraded_component.d.ts.map +1 -0
- package/script/types/3_gift_upgraded_component.js +91 -0
- package/script/types/3_inline_query.d.ts +40 -0
- package/script/types/3_inline_query.d.ts.map +1 -0
- package/script/types/3_inline_query.js +63 -0
- package/script/types/3_input_checklist_item.d.ts +31 -0
- package/script/types/3_input_checklist_item.d.ts.map +1 -0
- package/script/types/3_input_checklist_item.js +21 -0
- package/script/types/3_input_media.d.ts +123 -0
- package/script/types/3_input_media.d.ts.map +1 -0
- package/script/types/3_input_media.js +21 -0
- package/script/types/3_input_poll_option.d.ts +31 -0
- package/script/types/3_input_poll_option.d.ts.map +1 -0
- package/script/types/3_input_poll_option.js +21 -0
- package/script/types/3_invite_link.d.ts +47 -0
- package/script/types/3_invite_link.d.ts.map +1 -0
- package/script/types/3_invite_link.js +51 -0
- package/script/types/3_message_reaction_list.d.ts +32 -0
- package/script/types/3_message_reaction_list.d.ts.map +1 -0
- package/script/types/3_message_reaction_list.js +34 -0
- package/script/types/3_message_reactions.d.ts +42 -0
- package/script/types/3_message_reactions.d.ts.map +1 -0
- package/script/types/3_message_reactions.js +57 -0
- package/script/types/3_poll_option.d.ts +34 -0
- package/script/types/3_poll_option.d.ts.map +1 -0
- package/script/types/3_poll_option.js +32 -0
- package/script/types/3_pre_checkout_query.d.ts +42 -0
- package/script/types/3_pre_checkout_query.d.ts.map +1 -0
- package/script/types/3_pre_checkout_query.js +42 -0
- package/script/types/3_reply_quote.d.ts +32 -0
- package/script/types/3_reply_quote.d.ts.map +1 -0
- package/script/types/3_reply_quote.js +33 -0
- package/script/types/3_story.d.ts +13 -14
- package/script/types/3_story.d.ts.map +1 -1
- package/script/types/3_story.js +14 -15
- package/script/types/4_chat_member_updated.d.ts +43 -0
- package/script/types/4_chat_member_updated.d.ts.map +1 -0
- package/script/types/4_chat_member_updated.js +55 -0
- package/script/types/4_checklist.d.ts +38 -0
- package/script/types/4_checklist.d.ts.map +1 -0
- package/script/types/4_checklist.js +34 -0
- package/script/types/4_gift.d.ts +100 -0
- package/script/types/4_gift.d.ts.map +1 -0
- package/script/types/4_gift.js +117 -0
- package/script/types/4_join_request.d.ts +39 -0
- package/script/types/4_join_request.d.ts.map +1 -0
- package/script/types/4_join_request.js +66 -0
- package/script/types/4_poll.d.ts +55 -0
- package/script/types/4_poll.d.ts.map +1 -0
- package/script/types/4_poll.js +46 -0
- package/script/types/4_reply_to.d.ts +51 -0
- package/script/types/4_reply_to.d.ts.map +1 -0
- package/script/types/4_reply_to.js +21 -0
- package/script/types/5_claimed_gift.d.ts +44 -0
- package/script/types/5_claimed_gift.d.ts.map +1 -0
- package/script/types/5_claimed_gift.js +46 -0
- package/script/types/5_gift_non_upgraded_information.d.ts +47 -0
- package/script/types/5_gift_non_upgraded_information.d.ts.map +1 -0
- package/script/types/5_gift_non_upgraded_information.js +72 -0
- package/script/types/5_gift_upgraded_information.d.ts +41 -0
- package/script/types/5_gift_upgraded_information.d.ts.map +1 -0
- package/script/types/5_gift_upgraded_information.js +61 -0
- package/script/types/5_link_preview.d.ts +186 -0
- package/script/types/5_link_preview.d.ts.map +1 -0
- package/script/types/5_link_preview.js +208 -0
- package/script/types/6_claimed_gifts.d.ts +33 -0
- package/script/types/6_claimed_gifts.d.ts.map +1 -0
- package/script/types/6_claimed_gifts.js +46 -0
- package/script/types/6_message.d.ts +704 -0
- package/script/types/6_message.d.ts.map +1 -0
- package/script/types/6_message.js +558 -0
- package/script/types/6_message_content.d.ts +124 -0
- package/script/types/6_message_content.d.ts.map +1 -0
- package/script/types/6_message_content.js +21 -0
- package/script/types/7_callback_query.d.ts +43 -0
- package/script/types/7_callback_query.d.ts.map +1 -0
- package/script/types/7_callback_query.js +63 -0
- package/script/types/7_chat_list_item.d.ts +43 -0
- package/script/types/7_chat_list_item.d.ts.map +1 -0
- package/script/types/7_chat_list_item.js +60 -0
- package/script/types/7_inline_query_result.d.ts +251 -0
- package/script/types/7_inline_query_result.d.ts.map +1 -0
- package/script/types/7_inline_query_result.js +384 -0
- package/script/types/7_message_list.d.ts +28 -0
- package/script/types/7_message_list.d.ts.map +1 -0
- package/script/types/7_message_list.js +21 -0
- package/script/types/7_saved_chat.d.ts +35 -0
- package/script/types/7_saved_chat.d.ts.map +1 -0
- package/script/types/7_saved_chat.js +45 -0
- package/script/types/7_topic.d.ts +44 -0
- package/script/types/7_topic.d.ts.map +1 -0
- package/script/types/7_topic.js +64 -0
- package/script/types/8_inline_query_answer.d.ts +32 -0
- package/script/types/8_inline_query_answer.d.ts.map +1 -0
- package/script/types/8_inline_query_answer.js +31 -0
- package/script/types/8_saved_chats.d.ts +33 -0
- package/script/types/8_saved_chats.d.ts.map +1 -0
- package/script/types/8_saved_chats.js +39 -0
- package/script/types/8_update.d.ts +583 -0
- package/script/types/8_update.d.ts.map +1 -0
- package/script/types/8_update.js +21 -0
- package/script/types/_file_id.d.ts +64 -51
- package/script/types/_file_id.d.ts.map +1 -1
- package/script/types/_file_id.js +158 -139
- package/script/types/_getters.d.ts +4 -11
- package/script/types/_getters.d.ts.map +1 -1
- package/script/types/_getters.js +1 -1
- package/script/utilities/0_color.d.ts +1 -1
- package/script/utilities/0_color.js +1 -1
- package/script/utilities/0_env.d.ts.map +1 -1
- package/script/utilities/0_env.js +37 -8
- package/script/utilities/0_gzip.d.ts +22 -0
- package/script/utilities/0_gzip.d.ts.map +1 -0
- package/script/utilities/0_gzip.js +46 -0
- package/script/utilities/0_hash.d.ts +3 -3
- package/script/utilities/0_hash.d.ts.map +1 -1
- package/script/utilities/0_hash.js +1 -1
- package/script/utilities/0_int.d.ts +71 -0
- package/script/utilities/0_int.d.ts.map +1 -0
- package/script/utilities/0_int.js +149 -0
- package/script/utilities/0_misc.d.ts +29 -0
- package/script/utilities/0_misc.d.ts.map +1 -0
- package/script/utilities/0_misc.js +95 -0
- package/script/utilities/0_mutex.d.ts +1 -1
- package/script/utilities/0_mutex.js +1 -1
- package/script/utilities/0_object.d.ts +1 -1
- package/script/utilities/0_object.js +1 -1
- package/script/utilities/0_part_stream.d.ts +4 -4
- package/script/utilities/0_part_stream.d.ts.map +1 -1
- package/script/utilities/0_part_stream.js +3 -3
- package/script/utilities/0_rle.d.ts +3 -3
- package/script/utilities/0_rle.d.ts.map +1 -1
- package/script/utilities/0_rle.js +2 -2
- package/script/utilities/0_text.d.ts +22 -0
- package/script/utilities/0_text.d.ts.map +1 -0
- package/script/utilities/0_text.js +31 -0
- package/script/utilities/0_types.d.ts +1 -1
- package/script/utilities/0_types.js +1 -1
- package/script/utilities/0_units.d.ts +1 -4
- package/script/utilities/0_units.d.ts.map +1 -1
- package/script/utilities/0_units.js +2 -5
- package/script/utilities/1_auth.d.ts +2 -2
- package/script/utilities/1_auth.d.ts.map +1 -1
- package/script/utilities/1_auth.js +6 -7
- package/script/utilities/1_base64.d.ts +3 -3
- package/script/utilities/1_base64.d.ts.map +1 -1
- package/script/utilities/1_base64.js +4 -4
- package/script/utilities/1_crypto.d.ts +30 -0
- package/script/utilities/1_crypto.d.ts.map +1 -0
- package/script/utilities/1_crypto.js +94 -0
- package/script/utilities/1_logger.d.ts +3 -3
- package/script/utilities/1_logger.d.ts.map +1 -1
- package/script/utilities/1_logger.js +5 -4
- package/script/utilities/1_math.d.ts +1 -1
- package/script/utilities/1_math.js +7 -7
- package/script/utilities/2_queue.d.ts +2 -2
- package/script/utilities/2_queue.d.ts.map +1 -1
- package/script/utilities/2_queue.js +12 -8
- package/esm/client/0_filters.d.ts +0 -58
- package/esm/client/0_filters.d.ts.map +0 -1
- package/esm/client/0_filters.js +0 -49
- package/esm/client/0_message.d.ts +0 -29
- package/esm/client/0_message.d.ts.map +0 -1
- package/esm/client/0_message.js +0 -83
- package/esm/client/1_client_encrypted.d.ts +0 -52
- package/esm/client/1_client_encrypted.d.ts.map +0 -1
- package/esm/client/1_client_encrypted.js +0 -339
- package/esm/client/1_composer.d.ts +0 -51
- package/esm/client/1_composer.d.ts.map +0 -1
- package/esm/client/1_composer.js +0 -168
- package/esm/client/5_client.d.ts +0 -1372
- package/esm/client/5_client.d.ts.map +0 -1
- package/esm/client/5_client.js +0 -2858
- package/esm/deps/deno.land/std@0.224.0/io/types.d.ts +0 -95
- package/esm/deps/deno.land/std@0.224.0/io/types.d.ts.map +0 -1
- package/esm/deps/deno.land/std@0.224.0/io/types.js +0 -3
- package/esm/deps/deno.land/std@0.224.0/io/write_all.d.ts +0 -39
- package/esm/deps/deno.land/std@0.224.0/io/write_all.d.ts.map +0 -1
- package/esm/deps/deno.land/std@0.224.0/io/write_all.js +0 -49
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/DomHandler.d.ts +0 -84
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/DomHandler.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/DomHandler.js +0 -203
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/DomSerializer.d.ts +0 -51
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/DomSerializer.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/DomSerializer.js +0 -274
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/ElementType.d.ts +0 -48
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/ElementType.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/ElementType.js +0 -51
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/FeedHandler.d.ts +0 -67
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/FeedHandler.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/FeedHandler.js +0 -191
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/Node.d.ts +0 -169
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/Node.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/Node.js +0 -385
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/Parser.d.ts +0 -160
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/Parser.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/Parser.js +0 -431
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/Tokenizer.d.ts +0 -182
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/Tokenizer.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/Tokenizer.js +0 -1046
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/mod.d.ts +0 -43
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/mod.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/mod.js +0 -52
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/decode.d.ts +0 -12
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/decode.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/decode.js +0 -122
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/decode_codepoint.d.ts +0 -2
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/decode_codepoint.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/decode_codepoint.js +0 -24
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/encode.d.ts +0 -47
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/encode.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/encode.js +0 -121
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/decode.d.ts +0 -32
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/decode.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/decode.js +0 -30
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/entities.d.ts +0 -2129
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/entities.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/entities.js +0 -2127
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/legacy.d.ts +0 -110
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/legacy.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/legacy.js +0 -108
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/xml.d.ts +0 -9
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/xml.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/xml.js +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/mod.d.ts +0 -91
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/mod.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/mod.js +0 -95
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/helpers.d.ts +0 -51
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/helpers.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/helpers.js +0 -128
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/legacy.d.ts +0 -47
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/legacy.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/legacy.js +0 -110
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/manipulation.d.ts +0 -43
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/manipulation.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/manipulation.js +0 -120
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/mod.d.ts +0 -7
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/mod.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/mod.js +0 -6
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/querying.d.ts +0 -55
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/querying.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/querying.js +0 -110
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/stringify.d.ts +0 -41
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/stringify.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/stringify.js +0 -75
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/traversal.d.ts +0 -59
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/traversal.d.ts.map +0 -1
- package/esm/deps/deno.land/x/html_parser@v0.1.3/src/utils/traversal.js +0 -101
- package/esm/deps/deno.land/x/tgcrypto@0.4.1/mod.d.ts +0 -55
- package/esm/deps/deno.land/x/tgcrypto@0.4.1/mod.d.ts.map +0 -1
- package/esm/deps/deno.land/x/tgcrypto@0.4.1/mod.js +0 -167
- package/esm/deps/deno.land/x/tgcrypto@0.4.1/tgcrypto.d.ts +0 -3
- package/esm/deps/deno.land/x/tgcrypto@0.4.1/tgcrypto.d.ts.map +0 -1
- package/esm/deps/deno.land/x/tgcrypto@0.4.1/tgcrypto.js +0 -308
- package/esm/deps/jsr.io/@std/assert/1.0.7/almost_equals.d.ts +0 -29
- package/esm/deps/jsr.io/@std/assert/1.0.7/almost_equals.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/almost_equals.js +0 -46
- package/esm/deps/jsr.io/@std/assert/1.0.7/array_includes.d.ts +0 -24
- package/esm/deps/jsr.io/@std/assert/1.0.7/array_includes.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/array_includes.js +0 -46
- package/esm/deps/jsr.io/@std/assert/1.0.7/assert.d.ts +0 -16
- package/esm/deps/jsr.io/@std/assert/1.0.7/assert.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/assert.js +0 -22
- package/esm/deps/jsr.io/@std/assert/1.0.7/assertion_error.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/assertion_error.js +0 -30
- package/esm/deps/jsr.io/@std/assert/1.0.7/equal.d.ts +0 -17
- package/esm/deps/jsr.io/@std/assert/1.0.7/equal.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/equal.js +0 -136
- package/esm/deps/jsr.io/@std/assert/1.0.7/equals.d.ts +0 -22
- package/esm/deps/jsr.io/@std/assert/1.0.7/equals.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/equals.js +0 -45
- package/esm/deps/jsr.io/@std/assert/1.0.7/exists.d.ts +0 -18
- package/esm/deps/jsr.io/@std/assert/1.0.7/exists.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/exists.js +0 -27
- package/esm/deps/jsr.io/@std/assert/1.0.7/fail.d.ts +0 -15
- package/esm/deps/jsr.io/@std/assert/1.0.7/fail.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/fail.js +0 -20
- package/esm/deps/jsr.io/@std/assert/1.0.7/false.d.ts +0 -18
- package/esm/deps/jsr.io/@std/assert/1.0.7/false.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/false.js +0 -22
- package/esm/deps/jsr.io/@std/assert/1.0.7/greater.d.ts +0 -20
- package/esm/deps/jsr.io/@std/assert/1.0.7/greater.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/greater.js +0 -29
- package/esm/deps/jsr.io/@std/assert/1.0.7/greater_or_equal.d.ts +0 -20
- package/esm/deps/jsr.io/@std/assert/1.0.7/greater_or_equal.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/greater_or_equal.js +0 -29
- package/esm/deps/jsr.io/@std/assert/1.0.7/instance_of.d.ts +0 -23
- package/esm/deps/jsr.io/@std/assert/1.0.7/instance_of.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/instance_of.js +0 -52
- package/esm/deps/jsr.io/@std/assert/1.0.7/is_error.d.ts +0 -25
- package/esm/deps/jsr.io/@std/assert/1.0.7/is_error.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/is_error.js +0 -53
- package/esm/deps/jsr.io/@std/assert/1.0.7/less.d.ts +0 -19
- package/esm/deps/jsr.io/@std/assert/1.0.7/less.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/less.js +0 -28
- package/esm/deps/jsr.io/@std/assert/1.0.7/less_or_equal.d.ts +0 -20
- package/esm/deps/jsr.io/@std/assert/1.0.7/less_or_equal.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/less_or_equal.js +0 -29
- package/esm/deps/jsr.io/@std/assert/1.0.7/match.d.ts +0 -18
- package/esm/deps/jsr.io/@std/assert/1.0.7/match.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/match.js +0 -26
- package/esm/deps/jsr.io/@std/assert/1.0.7/mod.d.ts +0 -44
- package/esm/deps/jsr.io/@std/assert/1.0.7/mod.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/mod.js +0 -45
- package/esm/deps/jsr.io/@std/assert/1.0.7/not_equals.d.ts +0 -21
- package/esm/deps/jsr.io/@std/assert/1.0.7/not_equals.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/not_equals.js +0 -32
- package/esm/deps/jsr.io/@std/assert/1.0.7/not_instance_of.d.ts +0 -20
- package/esm/deps/jsr.io/@std/assert/1.0.7/not_instance_of.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/not_instance_of.js +0 -29
- package/esm/deps/jsr.io/@std/assert/1.0.7/not_match.d.ts +0 -18
- package/esm/deps/jsr.io/@std/assert/1.0.7/not_match.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/not_match.js +0 -26
- package/esm/deps/jsr.io/@std/assert/1.0.7/not_strict_equals.d.ts +0 -23
- package/esm/deps/jsr.io/@std/assert/1.0.7/not_strict_equals.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/not_strict_equals.js +0 -32
- package/esm/deps/jsr.io/@std/assert/1.0.7/object_match.d.ts +0 -28
- package/esm/deps/jsr.io/@std/assert/1.0.7/object_match.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/object_match.js +0 -159
- package/esm/deps/jsr.io/@std/assert/1.0.7/rejects.d.ts +0 -42
- package/esm/deps/jsr.io/@std/assert/1.0.7/rejects.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/rejects.js +0 -53
- package/esm/deps/jsr.io/@std/assert/1.0.7/strict_equals.d.ts +0 -24
- package/esm/deps/jsr.io/@std/assert/1.0.7/strict_equals.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/strict_equals.js +0 -57
- package/esm/deps/jsr.io/@std/assert/1.0.7/string_includes.d.ts +0 -18
- package/esm/deps/jsr.io/@std/assert/1.0.7/string_includes.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/string_includes.js +0 -26
- package/esm/deps/jsr.io/@std/assert/1.0.7/throws.d.ts +0 -45
- package/esm/deps/jsr.io/@std/assert/1.0.7/throws.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/throws.js +0 -44
- package/esm/deps/jsr.io/@std/assert/1.0.7/unimplemented.d.ts +0 -15
- package/esm/deps/jsr.io/@std/assert/1.0.7/unimplemented.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/unimplemented.js +0 -20
- package/esm/deps/jsr.io/@std/assert/1.0.7/unreachable.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/assert/1.0.7/unreachable.js +0 -20
- package/esm/deps/jsr.io/@std/bytes/1.0.3/concat.d.ts +0 -19
- package/esm/deps/jsr.io/@std/bytes/1.0.3/concat.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/bytes/1.0.3/concat.js +0 -32
- package/esm/deps/jsr.io/@std/encoding/1.0.5/_validate_binary_like.d.ts +0 -2
- package/esm/deps/jsr.io/@std/encoding/1.0.5/_validate_binary_like.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/encoding/1.0.5/_validate_binary_like.js +0 -26
- package/esm/deps/jsr.io/@std/encoding/1.0.5/base64.d.ts +0 -38
- package/esm/deps/jsr.io/@std/encoding/1.0.5/base64.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/encoding/1.0.5/base64.js +0 -163
- package/esm/deps/jsr.io/@std/internal/1.0.5/build_message.d.ts +0 -82
- package/esm/deps/jsr.io/@std/internal/1.0.5/build_message.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/internal/1.0.5/build_message.js +0 -110
- package/esm/deps/jsr.io/@std/internal/1.0.5/diff.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/internal/1.0.5/diff.js +0 -276
- package/esm/deps/jsr.io/@std/internal/1.0.5/diff_str.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/internal/1.0.5/diff_str.js +0 -179
- package/esm/deps/jsr.io/@std/internal/1.0.5/format.d.ts +0 -2
- package/esm/deps/jsr.io/@std/internal/1.0.5/format.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/internal/1.0.5/format.js +0 -37
- package/esm/deps/jsr.io/@std/internal/1.0.5/styles.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/internal/1.0.5/styles.js +0 -207
- package/esm/deps/jsr.io/@std/internal/1.0.5/types.d.ts +0 -16
- package/esm/deps/jsr.io/@std/internal/1.0.5/types.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/internal/1.0.5/types.js +0 -2
- package/esm/deps/jsr.io/@std/io/0.225.0/_constants.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/io/0.225.0/_constants.js +0 -4
- package/esm/deps/jsr.io/@std/io/0.225.0/iterate_reader.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/io/0.225.0/iterate_reader.js +0 -96
- package/esm/deps/jsr.io/@std/io/0.225.0/types.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/io/0.225.0/types.js +0 -15
- package/esm/deps/jsr.io/@std/media-types/1.0.3/_db.d.ts +0 -8
- package/esm/deps/jsr.io/@std/media-types/1.0.3/_db.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/media-types/1.0.3/_util.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/media-types/1.0.3/all_extensions.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/media-types/1.0.3/content_type.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/media-types/1.0.3/extension.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/media-types/1.0.3/format_media_type.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/media-types/1.0.3/get_charset.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/media-types/1.0.3/parse_media_type.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/media-types/1.0.3/type_by_extension.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/media-types/1.0.3/vendor/db.d.ts +0 -8796
- package/esm/deps/jsr.io/@std/media-types/1.0.3/vendor/db.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/media-types/1.0.3/vendor/db.js +0 -8831
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/assert_path.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/assert_path.js +0 -7
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/basename.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/basename.js +0 -40
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/common.d.ts +0 -2
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/common.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/common.js +0 -23
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/constants.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/constants.js +0 -46
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/dirname.d.ts +0 -2
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/dirname.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/dirname.js +0 -8
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/format.d.ts +0 -4
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/format.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/format.js +0 -19
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/from_file_url.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/from_file_url.js +0 -9
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/glob_to_reg_exp.d.ts +0 -35
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/glob_to_reg_exp.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/glob_to_reg_exp.js +0 -234
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/normalize.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/normalize.js +0 -8
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/normalize_string.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/normalize_string.js +0 -77
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/relative.d.ts +0 -2
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/relative.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/relative.js +0 -9
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/strip_trailing_separators.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/strip_trailing_separators.js +0 -19
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/to_file_url.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/_common/to_file_url.js +0 -15
- package/esm/deps/jsr.io/@std/path/1.0.8/_os.d.ts +0 -2
- package/esm/deps/jsr.io/@std/path/1.0.8/_os.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/_os.js +0 -9
- package/esm/deps/jsr.io/@std/path/1.0.8/basename.d.ts +0 -28
- package/esm/deps/jsr.io/@std/path/1.0.8/basename.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/basename.js +0 -36
- package/esm/deps/jsr.io/@std/path/1.0.8/common.d.ts +0 -28
- package/esm/deps/jsr.io/@std/path/1.0.8/common.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/common.js +0 -33
- package/esm/deps/jsr.io/@std/path/1.0.8/constants.d.ts +0 -15
- package/esm/deps/jsr.io/@std/path/1.0.8/constants.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/constants.js +0 -17
- package/esm/deps/jsr.io/@std/path/1.0.8/dirname.d.ts +0 -23
- package/esm/deps/jsr.io/@std/path/1.0.8/dirname.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/dirname.js +0 -29
- package/esm/deps/jsr.io/@std/path/1.0.8/extname.d.ts +0 -23
- package/esm/deps/jsr.io/@std/path/1.0.8/extname.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/extname.js +0 -29
- package/esm/deps/jsr.io/@std/path/1.0.8/format.d.ts +0 -22
- package/esm/deps/jsr.io/@std/path/1.0.8/format.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/format.js +0 -27
- package/esm/deps/jsr.io/@std/path/1.0.8/from_file_url.d.ts +0 -22
- package/esm/deps/jsr.io/@std/path/1.0.8/from_file_url.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/from_file_url.js +0 -28
- package/esm/deps/jsr.io/@std/path/1.0.8/glob_to_regexp.d.ts +0 -77
- package/esm/deps/jsr.io/@std/path/1.0.8/glob_to_regexp.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/glob_to_regexp.js +0 -83
- package/esm/deps/jsr.io/@std/path/1.0.8/is_absolute.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/is_absolute.js +0 -28
- package/esm/deps/jsr.io/@std/path/1.0.8/is_glob.d.ts +0 -17
- package/esm/deps/jsr.io/@std/path/1.0.8/is_glob.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/is_glob.js +0 -42
- package/esm/deps/jsr.io/@std/path/1.0.8/join.d.ts +0 -23
- package/esm/deps/jsr.io/@std/path/1.0.8/join.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/join.js +0 -29
- package/esm/deps/jsr.io/@std/path/1.0.8/join_globs.d.ts +0 -28
- package/esm/deps/jsr.io/@std/path/1.0.8/join_globs.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/join_globs.js +0 -34
- package/esm/deps/jsr.io/@std/path/1.0.8/mod.d.ts +0 -54
- package/esm/deps/jsr.io/@std/path/1.0.8/mod.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/mod.js +0 -57
- package/esm/deps/jsr.io/@std/path/1.0.8/normalize.d.ts +0 -27
- package/esm/deps/jsr.io/@std/path/1.0.8/normalize.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/normalize.js +0 -33
- package/esm/deps/jsr.io/@std/path/1.0.8/normalize_glob.d.ts +0 -29
- package/esm/deps/jsr.io/@std/path/1.0.8/normalize_glob.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/normalize_glob.js +0 -35
- package/esm/deps/jsr.io/@std/path/1.0.8/parse.d.ts +0 -35
- package/esm/deps/jsr.io/@std/path/1.0.8/parse.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/parse.js +0 -39
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/_util.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/_util.js +0 -8
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/basename.d.ts +0 -40
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/basename.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/basename.js +0 -49
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/constants.d.ts +0 -13
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/constants.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/constants.js +0 -14
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/dirname.d.ts +0 -32
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/dirname.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/dirname.js +0 -62
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/extname.d.ts +0 -37
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/extname.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/extname.js +0 -89
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/format.d.ts +0 -24
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/format.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/format.js +0 -28
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/from_file_url.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/from_file_url.js +0 -21
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/glob_to_regexp.d.ts +0 -72
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/glob_to_regexp.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/glob_to_regexp.js +0 -82
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/is_absolute.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/is_absolute.js +0 -23
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/join.d.ts +0 -33
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/join.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/join.js +0 -42
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/join_globs.d.ts +0 -20
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/join_globs.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/join_globs.js +0 -40
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/normalize.d.ts +0 -40
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/normalize.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/normalize.js +0 -57
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/normalize_glob.d.ts +0 -20
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/normalize_glob.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/normalize_glob.js +0 -32
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/parse.d.ts +0 -25
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/parse.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/parse.js +0 -115
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/relative.d.ts +0 -20
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/relative.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/relative.js +0 -106
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/resolve.d.ts +0 -17
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/resolve.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/resolve.js +0 -59
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/to_file_url.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/to_file_url.js +0 -27
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/to_namespaced_path.d.ts +0 -16
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/to_namespaced_path.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/posix/to_namespaced_path.js +0 -20
- package/esm/deps/jsr.io/@std/path/1.0.8/relative.d.ts +0 -24
- package/esm/deps/jsr.io/@std/path/1.0.8/relative.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/relative.js +0 -30
- package/esm/deps/jsr.io/@std/path/1.0.8/resolve.d.ts +0 -22
- package/esm/deps/jsr.io/@std/path/1.0.8/resolve.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/resolve.js +0 -30
- package/esm/deps/jsr.io/@std/path/1.0.8/to_file_url.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/to_file_url.js +0 -28
- package/esm/deps/jsr.io/@std/path/1.0.8/to_namespaced_path.d.ts +0 -21
- package/esm/deps/jsr.io/@std/path/1.0.8/to_namespaced_path.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/to_namespaced_path.js +0 -29
- package/esm/deps/jsr.io/@std/path/1.0.8/types.d.ts +0 -38
- package/esm/deps/jsr.io/@std/path/1.0.8/types.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/types.js +0 -3
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/_util.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/_util.js +0 -15
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/basename.d.ts +0 -23
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/basename.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/basename.js +0 -44
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/constants.d.ts +0 -13
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/constants.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/constants.js +0 -14
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/dirname.d.ts +0 -20
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/dirname.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/dirname.js +0 -112
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/extname.d.ts +0 -20
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/extname.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/extname.js +0 -81
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/format.d.ts +0 -24
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/format.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/format.js +0 -28
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/from_file_url.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/from_file_url.js +0 -30
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/glob_to_regexp.d.ts +0 -71
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/glob_to_regexp.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/glob_to_regexp.js +0 -82
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/is_absolute.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/is_absolute.js +0 -38
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/join.d.ts +0 -20
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/join.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/join.js +0 -74
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/join_globs.d.ts +0 -21
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/join_globs.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/join_globs.js +0 -41
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/normalize.d.ts +0 -22
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/normalize.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/normalize.js +0 -134
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/normalize_glob.d.ts +0 -20
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/normalize_glob.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/normalize_glob.js +0 -32
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/parse.d.ts +0 -25
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/parse.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/parse.js +0 -176
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/relative.d.ts +0 -23
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/relative.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/relative.js +0 -131
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/resolve.d.ts +0 -17
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/resolve.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/resolve.js +0 -154
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/to_file_url.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/to_file_url.js +0 -34
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/to_namespaced_path.d.ts +0 -17
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/to_namespaced_path.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/path/1.0.8/windows/to_namespaced_path.js +0 -49
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/mod.d.ts +0 -2
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/mod.d.ts.map +0 -1
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/mod.js +0 -1
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/utils/uint8.d.ts +0 -2
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/utils/uint8.d.ts.map +0 -1
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/utils/uint8.js +0 -10
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/deflate.d.ts +0 -28
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/deflate.d.ts.map +0 -1
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/deflate.js +0 -135
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/inflate.d.ts +0 -24
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/inflate.d.ts.map +0 -1
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/inflate.js +0 -172
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/mod.d.ts +0 -3
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/mod.d.ts.map +0 -1
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/mod.js +0 -2
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/adler32.d.ts +0 -2
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/adler32.d.ts.map +0 -1
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/adler32.js +0 -19
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/crc32.d.ts +0 -3
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/crc32.d.ts.map +0 -1
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/crc32.js +0 -25
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/deflate.d.ts +0 -79
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/deflate.d.ts.map +0 -1
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/deflate.js +0 -1941
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/gzheader.d.ts +0 -13
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/gzheader.d.ts.map +0 -1
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/gzheader.js +0 -85
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/inffast.d.ts +0 -2
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/inffast.d.ts.map +0 -1
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/inffast.js +0 -321
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/inflate.d.ts +0 -48
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/inflate.d.ts.map +0 -1
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/inflate.js +0 -1660
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/inftrees.d.ts +0 -2
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/inftrees.d.ts.map +0 -1
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/inftrees.js +0 -355
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/messages.d.ts +0 -13
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/messages.d.ts.map +0 -1
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/messages.js +0 -11
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/status.d.ts +0 -31
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/status.d.ts.map +0 -1
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/status.js +0 -42
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/trees.d.ts +0 -6
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/trees.d.ts.map +0 -1
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/trees.js +0 -1107
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/zstream.d.ts +0 -15
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/zstream.d.ts.map +0 -1
- package/esm/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/zstream.js +0 -86
- package/esm/deps/raw.githubusercontent.com/MTKruto/socks5/main/client.d.ts +0 -45
- package/esm/deps/raw.githubusercontent.com/MTKruto/socks5/main/client.d.ts.map +0 -1
- package/esm/deps/raw.githubusercontent.com/MTKruto/socks5/main/client.js +0 -253
- package/esm/deps/raw.githubusercontent.com/MTKruto/socks5/main/deps.d.ts +0 -3
- package/esm/deps/raw.githubusercontent.com/MTKruto/socks5/main/deps.d.ts.map +0 -1
- package/esm/deps/raw.githubusercontent.com/MTKruto/socks5/main/deps.js +0 -1
- package/esm/deps/raw.githubusercontent.com/MTKruto/socks5/main/utils.d.ts +0 -3
- package/esm/deps/raw.githubusercontent.com/MTKruto/socks5/main/utils.d.ts.map +0 -1
- package/esm/deps/raw.githubusercontent.com/MTKruto/socks5/main/utils.js +0 -13
- package/esm/tl/0_api.d.ts +0 -15839
- package/esm/tl/0_api.d.ts.map +0 -1
- package/esm/tl/0_api.js +0 -24746
- package/esm/tl/0_tl_raw_reader.d.ts +0 -36
- package/esm/tl/0_tl_raw_reader.d.ts.map +0 -1
- package/esm/tl/0_tl_raw_reader.js +0 -87
- package/esm/tl/0_tl_raw_writer.d.ts +0 -34
- package/esm/tl/0_tl_raw_writer.d.ts.map +0 -1
- package/esm/tl/0_tl_raw_writer.js +0 -86
- package/esm/tl/2_deserialize.d.ts +0 -23
- package/esm/tl/2_deserialize.d.ts.map +0 -1
- package/esm/tl/2_deserialize.js +0 -95
- package/esm/tl/2_serialize.d.ts +0 -22
- package/esm/tl/2_serialize.d.ts.map +0 -1
- package/esm/tl/2_serialize.js +0 -160
- package/esm/tl/3_tl_reader.d.ts +0 -26
- package/esm/tl/3_tl_reader.d.ts.map +0 -1
- package/esm/tl/3_tl_reader.js +0 -49
- package/esm/tl/3_utilities.d.ts +0 -34
- package/esm/tl/3_utilities.d.ts.map +0 -1
- package/esm/tl/3_utilities.js +0 -89
- package/esm/tl/4_rpc_result.d.ts +0 -27
- package/esm/tl/4_rpc_result.d.ts.map +0 -1
- package/esm/tl/4_rpc_result.js +0 -28
- package/esm/tl/4_tl_writer.d.ts +0 -25
- package/esm/tl/4_tl_writer.d.ts.map +0 -1
- package/esm/tl/4_tl_writer.js +0 -45
- package/esm/tl/5_message.d.ts +0 -39
- package/esm/tl/5_message.d.ts.map +0 -1
- package/esm/tl/5_message.js +0 -98
- package/esm/transport/2_transport_provider.d.ts +0 -35
- package/esm/transport/2_transport_provider.d.ts.map +0 -1
- package/esm/transport/2_transport_provider.js +0 -81
- package/esm/transport/3_transport_provider_tcp.d.ts +0 -14
- package/esm/transport/3_transport_provider_tcp.d.ts.map +0 -1
- package/esm/transport/3_transport_provider_tcp.js +0 -15
- package/esm/transport/3_transport_provider_web_socket.d.ts +0 -24
- package/esm/transport/3_transport_provider_web_socket.d.ts.map +0 -1
- package/esm/transport/3_transport_provider_web_socket.js +0 -43
- package/esm/types/0_link_preview.d.ts +0 -35
- package/esm/types/0_link_preview.d.ts.map +0 -1
- package/esm/types/0_link_preview.js +0 -28
- package/esm/types/0_message_entity.d.ts +0 -139
- package/esm/types/0_message_entity.d.ts.map +0 -1
- package/esm/types/0_message_entity.js +0 -183
- package/esm/types/0_mini_app_info.d.ts +0 -26
- package/esm/types/0_mini_app_info.d.ts.map +0 -1
- package/esm/types/0_mini_app_info.js +0 -22
- package/esm/types/0_opening_hours.d.ts +0 -26
- package/esm/types/0_opening_hours.d.ts.map +0 -1
- package/esm/types/0_opening_hours.js +0 -25
- package/esm/types/1_input_media.d.ts +0 -122
- package/esm/types/1_input_media.d.ts.map +0 -1
- package/esm/types/1_input_media.js +0 -20
- package/esm/types/1_message_content.d.ts +0 -119
- package/esm/types/1_message_content.d.ts.map +0 -1
- package/esm/types/1_message_content.js +0 -20
- package/esm/types/1_poll_option.d.ts +0 -32
- package/esm/types/1_poll_option.d.ts.map +0 -1
- package/esm/types/1_poll_option.js +0 -27
- package/esm/types/1_reply_quote.d.ts +0 -32
- package/esm/types/1_reply_quote.d.ts.map +0 -1
- package/esm/types/1_reply_quote.js +0 -30
- package/esm/types/1_story_privacy.d.ts +0 -46
- package/esm/types/1_story_privacy.d.ts.map +0 -1
- package/esm/types/1_story_privacy.js +0 -76
- package/esm/types/1_user.d.ts +0 -56
- package/esm/types/1_user.d.ts.map +0 -1
- package/esm/types/1_user.js +0 -47
- package/esm/types/2_business_connection.d.ts +0 -37
- package/esm/types/2_business_connection.d.ts.map +0 -1
- package/esm/types/2_business_connection.js +0 -30
- package/esm/types/2_chosen_inline_result.d.ts +0 -38
- package/esm/types/2_chosen_inline_result.d.ts.map +0 -1
- package/esm/types/2_chosen_inline_result.js +0 -37
- package/esm/types/2_forward_header.d.ts +0 -40
- package/esm/types/2_forward_header.d.ts.map +0 -1
- package/esm/types/2_forward_header.js +0 -55
- package/esm/types/2_game.d.ts +0 -40
- package/esm/types/2_game.d.ts.map +0 -1
- package/esm/types/2_game.js +0 -44
- package/esm/types/2_inline_keyboard_button.d.ts +0 -138
- package/esm/types/2_inline_keyboard_button.d.ts.map +0 -1
- package/esm/types/2_inline_keyboard_button.js +0 -117
- package/esm/types/2_inline_query.d.ts +0 -40
- package/esm/types/2_inline_query.d.ts.map +0 -1
- package/esm/types/2_inline_query.js +0 -60
- package/esm/types/2_invite_link.d.ts +0 -47
- package/esm/types/2_invite_link.d.ts.map +0 -1
- package/esm/types/2_invite_link.js +0 -48
- package/esm/types/2_message_reactions.d.ts +0 -43
- package/esm/types/2_message_reactions.d.ts.map +0 -1
- package/esm/types/2_message_reactions.js +0 -56
- package/esm/types/2_poll.d.ts +0 -55
- package/esm/types/2_poll.d.ts.map +0 -1
- package/esm/types/2_poll.js +0 -43
- package/esm/types/2_pre_checkout_query.d.ts +0 -34
- package/esm/types/2_pre_checkout_query.d.ts.map +0 -1
- package/esm/types/2_pre_checkout_query.js +0 -39
- package/esm/types/2_reply_to.d.ts +0 -35
- package/esm/types/2_reply_to.d.ts.map +0 -1
- package/esm/types/2_reply_to.js +0 -20
- package/esm/types/3_chat_member_updated.d.ts +0 -44
- package/esm/types/3_chat_member_updated.d.ts.map +0 -1
- package/esm/types/3_chat_member_updated.js +0 -53
- package/esm/types/3_join_request.d.ts +0 -39
- package/esm/types/3_join_request.d.ts.map +0 -1
- package/esm/types/3_join_request.js +0 -45
- package/esm/types/3_reply_markup.d.ts +0 -71
- package/esm/types/3_reply_markup.d.ts.map +0 -1
- package/esm/types/3_reply_markup.js +0 -127
- package/esm/types/4_inline_query_result.d.ts +0 -251
- package/esm/types/4_inline_query_result.d.ts.map +0 -1
- package/esm/types/4_inline_query_result.js +0 -380
- package/esm/types/4_message.d.ts +0 -615
- package/esm/types/4_message.d.ts.map +0 -1
- package/esm/types/4_message.js +0 -533
- package/esm/types/5_callback_query.d.ts +0 -43
- package/esm/types/5_callback_query.d.ts.map +0 -1
- package/esm/types/5_callback_query.js +0 -60
- package/esm/types/5_chat_list_item.d.ts +0 -36
- package/esm/types/5_chat_list_item.d.ts.map +0 -1
- package/esm/types/5_chat_list_item.js +0 -86
- package/esm/types/5_inline_query_answer.d.ts +0 -32
- package/esm/types/5_inline_query_answer.d.ts.map +0 -1
- package/esm/types/5_inline_query_answer.js +0 -28
- package/esm/types/6_update.d.ts +0 -388
- package/esm/types/6_update.d.ts.map +0 -1
- package/esm/types/6_update.js +0 -20
- package/esm/utilities/0_bigint.d.ts +0 -29
- package/esm/utilities/0_bigint.d.ts.map +0 -1
- package/esm/utilities/0_bigint.js +0 -90
- package/esm/utilities/0_buffer.d.ts +0 -21
- package/esm/utilities/0_buffer.d.ts.map +0 -1
- package/esm/utilities/0_buffer.js +0 -51
- package/esm/utilities/0_cache_map.d.ts +0 -26
- package/esm/utilities/0_cache_map.d.ts.map +0 -1
- package/esm/utilities/0_cache_map.js +0 -52
- package/esm/utilities/0_crypto.d.ts +0 -27
- package/esm/utilities/0_crypto.d.ts.map +0 -1
- package/esm/utilities/0_crypto.js +0 -48
- package/esm/utilities/1_misc.d.ts +0 -29
- package/esm/utilities/1_misc.d.ts.map +0 -1
- package/esm/utilities/1_misc.js +0 -72
- package/script/client/0_filters.d.ts +0 -58
- package/script/client/0_filters.d.ts.map +0 -1
- package/script/client/0_filters.js +0 -52
- package/script/client/0_message.d.ts +0 -29
- package/script/client/0_message.d.ts.map +0 -1
- package/script/client/0_message.js +0 -90
- package/script/client/1_client_encrypted.d.ts +0 -52
- package/script/client/1_client_encrypted.d.ts.map +0 -1
- package/script/client/1_client_encrypted.js +0 -343
- package/script/client/1_composer.d.ts +0 -51
- package/script/client/1_composer.d.ts.map +0 -1
- package/script/client/1_composer.js +0 -175
- package/script/client/5_client.d.ts +0 -1372
- package/script/client/5_client.d.ts.map +0 -1
- package/script/client/5_client.js +0 -2863
- package/script/deps/deno.land/std@0.224.0/io/types.d.ts +0 -95
- package/script/deps/deno.land/std@0.224.0/io/types.d.ts.map +0 -1
- package/script/deps/deno.land/std@0.224.0/io/types.js +0 -4
- package/script/deps/deno.land/std@0.224.0/io/write_all.d.ts +0 -39
- package/script/deps/deno.land/std@0.224.0/io/write_all.d.ts.map +0 -1
- package/script/deps/deno.land/std@0.224.0/io/write_all.js +0 -53
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/DomHandler.d.ts +0 -84
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/DomHandler.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/DomHandler.js +0 -207
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/DomSerializer.d.ts +0 -51
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/DomSerializer.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/DomSerializer.js +0 -301
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/ElementType.d.ts +0 -48
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/ElementType.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/ElementType.js +0 -55
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/FeedHandler.d.ts +0 -67
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/FeedHandler.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/FeedHandler.js +0 -222
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/Node.d.ts +0 -169
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/Node.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/Node.js +0 -404
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/Parser.d.ts +0 -160
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/Parser.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/Parser.js +0 -438
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/Tokenizer.d.ts +0 -182
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/Tokenizer.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/Tokenizer.js +0 -1052
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/mod.d.ts +0 -43
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/mod.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/mod.js +0 -88
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/decode.d.ts +0 -12
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/decode.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/decode.js +0 -128
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/decode_codepoint.d.ts +0 -2
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/decode_codepoint.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/decode_codepoint.js +0 -30
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/encode.d.ts +0 -47
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/encode.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/encode.js +0 -129
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/decode.d.ts +0 -32
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/decode.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/decode.js +0 -32
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/entities.d.ts +0 -2129
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/entities.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/entities.js +0 -2129
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/legacy.d.ts +0 -110
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/legacy.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/legacy.js +0 -110
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/xml.d.ts +0 -9
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/xml.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/xml.js +0 -3
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/mod.d.ts +0 -91
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/mod.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/entities/mod.js +0 -114
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/helpers.d.ts +0 -51
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/helpers.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/helpers.js +0 -134
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/legacy.d.ts +0 -47
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/legacy.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/legacy.js +0 -117
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/manipulation.d.ts +0 -43
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/manipulation.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/manipulation.js +0 -128
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/mod.d.ts +0 -7
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/mod.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/mod.js +0 -22
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/querying.d.ts +0 -55
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/querying.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/querying.js +0 -118
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/stringify.d.ts +0 -41
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/stringify.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/stringify.js +0 -85
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/traversal.d.ts +0 -59
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/traversal.d.ts.map +0 -1
- package/script/deps/deno.land/x/html_parser@v0.1.3/src/utils/traversal.js +0 -111
- package/script/deps/deno.land/x/tgcrypto@0.4.1/mod.d.ts +0 -55
- package/script/deps/deno.land/x/tgcrypto@0.4.1/mod.d.ts.map +0 -1
- package/script/deps/deno.land/x/tgcrypto@0.4.1/mod.js +0 -182
- package/script/deps/deno.land/x/tgcrypto@0.4.1/tgcrypto.d.ts +0 -3
- package/script/deps/deno.land/x/tgcrypto@0.4.1/tgcrypto.d.ts.map +0 -1
- package/script/deps/deno.land/x/tgcrypto@0.4.1/tgcrypto.js +0 -310
- package/script/deps/jsr.io/@std/assert/1.0.7/almost_equals.d.ts +0 -29
- package/script/deps/jsr.io/@std/assert/1.0.7/almost_equals.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/almost_equals.js +0 -49
- package/script/deps/jsr.io/@std/assert/1.0.7/array_includes.d.ts +0 -24
- package/script/deps/jsr.io/@std/assert/1.0.7/array_includes.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/array_includes.js +0 -49
- package/script/deps/jsr.io/@std/assert/1.0.7/assert.d.ts +0 -16
- package/script/deps/jsr.io/@std/assert/1.0.7/assert.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/assert.js +0 -25
- package/script/deps/jsr.io/@std/assert/1.0.7/assertion_error.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/assertion_error.js +0 -34
- package/script/deps/jsr.io/@std/assert/1.0.7/equal.d.ts +0 -17
- package/script/deps/jsr.io/@std/assert/1.0.7/equal.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/equal.js +0 -139
- package/script/deps/jsr.io/@std/assert/1.0.7/equals.d.ts +0 -22
- package/script/deps/jsr.io/@std/assert/1.0.7/equals.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/equals.js +0 -48
- package/script/deps/jsr.io/@std/assert/1.0.7/exists.d.ts +0 -18
- package/script/deps/jsr.io/@std/assert/1.0.7/exists.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/exists.js +0 -30
- package/script/deps/jsr.io/@std/assert/1.0.7/fail.d.ts +0 -15
- package/script/deps/jsr.io/@std/assert/1.0.7/fail.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/fail.js +0 -23
- package/script/deps/jsr.io/@std/assert/1.0.7/false.d.ts +0 -18
- package/script/deps/jsr.io/@std/assert/1.0.7/false.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/false.js +0 -25
- package/script/deps/jsr.io/@std/assert/1.0.7/greater.d.ts +0 -20
- package/script/deps/jsr.io/@std/assert/1.0.7/greater.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/greater.js +0 -32
- package/script/deps/jsr.io/@std/assert/1.0.7/greater_or_equal.d.ts +0 -20
- package/script/deps/jsr.io/@std/assert/1.0.7/greater_or_equal.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/greater_or_equal.js +0 -32
- package/script/deps/jsr.io/@std/assert/1.0.7/instance_of.d.ts +0 -23
- package/script/deps/jsr.io/@std/assert/1.0.7/instance_of.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/instance_of.js +0 -55
- package/script/deps/jsr.io/@std/assert/1.0.7/is_error.d.ts +0 -25
- package/script/deps/jsr.io/@std/assert/1.0.7/is_error.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/is_error.js +0 -56
- package/script/deps/jsr.io/@std/assert/1.0.7/less.d.ts +0 -19
- package/script/deps/jsr.io/@std/assert/1.0.7/less.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/less.js +0 -31
- package/script/deps/jsr.io/@std/assert/1.0.7/less_or_equal.d.ts +0 -20
- package/script/deps/jsr.io/@std/assert/1.0.7/less_or_equal.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/less_or_equal.js +0 -32
- package/script/deps/jsr.io/@std/assert/1.0.7/match.d.ts +0 -18
- package/script/deps/jsr.io/@std/assert/1.0.7/match.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/match.js +0 -29
- package/script/deps/jsr.io/@std/assert/1.0.7/mod.d.ts +0 -44
- package/script/deps/jsr.io/@std/assert/1.0.7/mod.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/mod.js +0 -61
- package/script/deps/jsr.io/@std/assert/1.0.7/not_equals.d.ts +0 -21
- package/script/deps/jsr.io/@std/assert/1.0.7/not_equals.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/not_equals.js +0 -35
- package/script/deps/jsr.io/@std/assert/1.0.7/not_instance_of.d.ts +0 -20
- package/script/deps/jsr.io/@std/assert/1.0.7/not_instance_of.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/not_instance_of.js +0 -32
- package/script/deps/jsr.io/@std/assert/1.0.7/not_match.d.ts +0 -18
- package/script/deps/jsr.io/@std/assert/1.0.7/not_match.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/not_match.js +0 -29
- package/script/deps/jsr.io/@std/assert/1.0.7/not_strict_equals.d.ts +0 -23
- package/script/deps/jsr.io/@std/assert/1.0.7/not_strict_equals.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/not_strict_equals.js +0 -35
- package/script/deps/jsr.io/@std/assert/1.0.7/object_match.d.ts +0 -28
- package/script/deps/jsr.io/@std/assert/1.0.7/object_match.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/object_match.js +0 -162
- package/script/deps/jsr.io/@std/assert/1.0.7/rejects.d.ts +0 -42
- package/script/deps/jsr.io/@std/assert/1.0.7/rejects.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/rejects.js +0 -56
- package/script/deps/jsr.io/@std/assert/1.0.7/strict_equals.d.ts +0 -24
- package/script/deps/jsr.io/@std/assert/1.0.7/strict_equals.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/strict_equals.js +0 -60
- package/script/deps/jsr.io/@std/assert/1.0.7/string_includes.d.ts +0 -18
- package/script/deps/jsr.io/@std/assert/1.0.7/string_includes.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/string_includes.js +0 -29
- package/script/deps/jsr.io/@std/assert/1.0.7/throws.d.ts +0 -45
- package/script/deps/jsr.io/@std/assert/1.0.7/throws.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/throws.js +0 -47
- package/script/deps/jsr.io/@std/assert/1.0.7/unimplemented.d.ts +0 -15
- package/script/deps/jsr.io/@std/assert/1.0.7/unimplemented.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/unimplemented.js +0 -23
- package/script/deps/jsr.io/@std/assert/1.0.7/unreachable.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/assert/1.0.7/unreachable.js +0 -23
- package/script/deps/jsr.io/@std/bytes/1.0.3/concat.d.ts +0 -19
- package/script/deps/jsr.io/@std/bytes/1.0.3/concat.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/bytes/1.0.3/concat.js +0 -35
- package/script/deps/jsr.io/@std/encoding/1.0.5/_validate_binary_like.d.ts +0 -2
- package/script/deps/jsr.io/@std/encoding/1.0.5/_validate_binary_like.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/encoding/1.0.5/_validate_binary_like.js +0 -29
- package/script/deps/jsr.io/@std/encoding/1.0.5/base64.d.ts +0 -38
- package/script/deps/jsr.io/@std/encoding/1.0.5/base64.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/encoding/1.0.5/base64.js +0 -167
- package/script/deps/jsr.io/@std/internal/1.0.5/build_message.d.ts +0 -82
- package/script/deps/jsr.io/@std/internal/1.0.5/build_message.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/internal/1.0.5/build_message.js +0 -115
- package/script/deps/jsr.io/@std/internal/1.0.5/diff.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/internal/1.0.5/diff.js +0 -283
- package/script/deps/jsr.io/@std/internal/1.0.5/diff_str.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/internal/1.0.5/diff_str.js +0 -185
- package/script/deps/jsr.io/@std/internal/1.0.5/format.d.ts +0 -2
- package/script/deps/jsr.io/@std/internal/1.0.5/format.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/internal/1.0.5/format.js +0 -63
- package/script/deps/jsr.io/@std/internal/1.0.5/styles.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/internal/1.0.5/styles.js +0 -242
- package/script/deps/jsr.io/@std/internal/1.0.5/types.d.ts +0 -16
- package/script/deps/jsr.io/@std/internal/1.0.5/types.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/internal/1.0.5/types.js +0 -3
- package/script/deps/jsr.io/@std/io/0.225.0/_constants.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/io/0.225.0/_constants.js +0 -7
- package/script/deps/jsr.io/@std/io/0.225.0/iterate_reader.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/io/0.225.0/iterate_reader.js +0 -100
- package/script/deps/jsr.io/@std/io/0.225.0/types.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/io/0.225.0/types.js +0 -18
- package/script/deps/jsr.io/@std/media-types/1.0.3/_db.d.ts +0 -8
- package/script/deps/jsr.io/@std/media-types/1.0.3/_db.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/media-types/1.0.3/_util.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/media-types/1.0.3/all_extensions.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/media-types/1.0.3/content_type.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/media-types/1.0.3/extension.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/media-types/1.0.3/format_media_type.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/media-types/1.0.3/get_charset.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/media-types/1.0.3/parse_media_type.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/media-types/1.0.3/type_by_extension.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/media-types/1.0.3/vendor/db.d.ts +0 -8796
- package/script/deps/jsr.io/@std/media-types/1.0.3/vendor/db.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/media-types/1.0.3/vendor/db.js +0 -8833
- package/script/deps/jsr.io/@std/path/1.0.8/_common/assert_path.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/_common/assert_path.js +0 -10
- package/script/deps/jsr.io/@std/path/1.0.8/_common/basename.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/_common/basename.js +0 -45
- package/script/deps/jsr.io/@std/path/1.0.8/_common/common.d.ts +0 -2
- package/script/deps/jsr.io/@std/path/1.0.8/_common/common.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/_common/common.js +0 -26
- package/script/deps/jsr.io/@std/path/1.0.8/_common/constants.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/_common/constants.js +0 -49
- package/script/deps/jsr.io/@std/path/1.0.8/_common/dirname.d.ts +0 -2
- package/script/deps/jsr.io/@std/path/1.0.8/_common/dirname.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/_common/dirname.js +0 -11
- package/script/deps/jsr.io/@std/path/1.0.8/_common/format.d.ts +0 -4
- package/script/deps/jsr.io/@std/path/1.0.8/_common/format.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/_common/format.js +0 -23
- package/script/deps/jsr.io/@std/path/1.0.8/_common/from_file_url.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/_common/from_file_url.js +0 -12
- package/script/deps/jsr.io/@std/path/1.0.8/_common/glob_to_reg_exp.d.ts +0 -35
- package/script/deps/jsr.io/@std/path/1.0.8/_common/glob_to_reg_exp.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/_common/glob_to_reg_exp.js +0 -237
- package/script/deps/jsr.io/@std/path/1.0.8/_common/normalize.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/_common/normalize.js +0 -11
- package/script/deps/jsr.io/@std/path/1.0.8/_common/normalize_string.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/_common/normalize_string.js +0 -80
- package/script/deps/jsr.io/@std/path/1.0.8/_common/relative.d.ts +0 -2
- package/script/deps/jsr.io/@std/path/1.0.8/_common/relative.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/_common/relative.js +0 -12
- package/script/deps/jsr.io/@std/path/1.0.8/_common/strip_trailing_separators.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/_common/strip_trailing_separators.js +0 -22
- package/script/deps/jsr.io/@std/path/1.0.8/_common/to_file_url.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/_common/to_file_url.js +0 -18
- package/script/deps/jsr.io/@std/path/1.0.8/_os.d.ts +0 -2
- package/script/deps/jsr.io/@std/path/1.0.8/_os.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/_os.js +0 -35
- package/script/deps/jsr.io/@std/path/1.0.8/basename.d.ts +0 -28
- package/script/deps/jsr.io/@std/path/1.0.8/basename.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/basename.js +0 -39
- package/script/deps/jsr.io/@std/path/1.0.8/common.d.ts +0 -28
- package/script/deps/jsr.io/@std/path/1.0.8/common.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/common.js +0 -36
- package/script/deps/jsr.io/@std/path/1.0.8/constants.d.ts +0 -15
- package/script/deps/jsr.io/@std/path/1.0.8/constants.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/constants.js +0 -20
- package/script/deps/jsr.io/@std/path/1.0.8/dirname.d.ts +0 -23
- package/script/deps/jsr.io/@std/path/1.0.8/dirname.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/dirname.js +0 -32
- package/script/deps/jsr.io/@std/path/1.0.8/extname.d.ts +0 -23
- package/script/deps/jsr.io/@std/path/1.0.8/extname.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/extname.js +0 -32
- package/script/deps/jsr.io/@std/path/1.0.8/format.d.ts +0 -22
- package/script/deps/jsr.io/@std/path/1.0.8/format.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/format.js +0 -30
- package/script/deps/jsr.io/@std/path/1.0.8/from_file_url.d.ts +0 -22
- package/script/deps/jsr.io/@std/path/1.0.8/from_file_url.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/from_file_url.js +0 -31
- package/script/deps/jsr.io/@std/path/1.0.8/glob_to_regexp.d.ts +0 -77
- package/script/deps/jsr.io/@std/path/1.0.8/glob_to_regexp.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/glob_to_regexp.js +0 -86
- package/script/deps/jsr.io/@std/path/1.0.8/is_absolute.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/is_absolute.js +0 -31
- package/script/deps/jsr.io/@std/path/1.0.8/is_glob.d.ts +0 -17
- package/script/deps/jsr.io/@std/path/1.0.8/is_glob.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/is_glob.js +0 -45
- package/script/deps/jsr.io/@std/path/1.0.8/join.d.ts +0 -23
- package/script/deps/jsr.io/@std/path/1.0.8/join.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/join.js +0 -32
- package/script/deps/jsr.io/@std/path/1.0.8/join_globs.d.ts +0 -28
- package/script/deps/jsr.io/@std/path/1.0.8/join_globs.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/join_globs.js +0 -37
- package/script/deps/jsr.io/@std/path/1.0.8/mod.d.ts +0 -54
- package/script/deps/jsr.io/@std/path/1.0.8/mod.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/mod.js +0 -73
- package/script/deps/jsr.io/@std/path/1.0.8/normalize.d.ts +0 -27
- package/script/deps/jsr.io/@std/path/1.0.8/normalize.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/normalize.js +0 -36
- package/script/deps/jsr.io/@std/path/1.0.8/normalize_glob.d.ts +0 -29
- package/script/deps/jsr.io/@std/path/1.0.8/normalize_glob.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/normalize_glob.js +0 -38
- package/script/deps/jsr.io/@std/path/1.0.8/parse.d.ts +0 -35
- package/script/deps/jsr.io/@std/path/1.0.8/parse.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/parse.js +0 -42
- package/script/deps/jsr.io/@std/path/1.0.8/posix/_util.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/posix/_util.js +0 -11
- package/script/deps/jsr.io/@std/path/1.0.8/posix/basename.d.ts +0 -40
- package/script/deps/jsr.io/@std/path/1.0.8/posix/basename.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/posix/basename.js +0 -52
- package/script/deps/jsr.io/@std/path/1.0.8/posix/constants.d.ts +0 -13
- package/script/deps/jsr.io/@std/path/1.0.8/posix/constants.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/posix/constants.js +0 -17
- package/script/deps/jsr.io/@std/path/1.0.8/posix/dirname.d.ts +0 -32
- package/script/deps/jsr.io/@std/path/1.0.8/posix/dirname.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/posix/dirname.js +0 -65
- package/script/deps/jsr.io/@std/path/1.0.8/posix/extname.d.ts +0 -37
- package/script/deps/jsr.io/@std/path/1.0.8/posix/extname.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/posix/extname.js +0 -92
- package/script/deps/jsr.io/@std/path/1.0.8/posix/format.d.ts +0 -24
- package/script/deps/jsr.io/@std/path/1.0.8/posix/format.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/posix/format.js +0 -31
- package/script/deps/jsr.io/@std/path/1.0.8/posix/from_file_url.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/posix/from_file_url.js +0 -24
- package/script/deps/jsr.io/@std/path/1.0.8/posix/glob_to_regexp.d.ts +0 -72
- package/script/deps/jsr.io/@std/path/1.0.8/posix/glob_to_regexp.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/posix/glob_to_regexp.js +0 -85
- package/script/deps/jsr.io/@std/path/1.0.8/posix/is_absolute.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/posix/is_absolute.js +0 -26
- package/script/deps/jsr.io/@std/path/1.0.8/posix/join.d.ts +0 -33
- package/script/deps/jsr.io/@std/path/1.0.8/posix/join.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/posix/join.js +0 -45
- package/script/deps/jsr.io/@std/path/1.0.8/posix/join_globs.d.ts +0 -20
- package/script/deps/jsr.io/@std/path/1.0.8/posix/join_globs.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/posix/join_globs.js +0 -43
- package/script/deps/jsr.io/@std/path/1.0.8/posix/normalize.d.ts +0 -40
- package/script/deps/jsr.io/@std/path/1.0.8/posix/normalize.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/posix/normalize.js +0 -60
- package/script/deps/jsr.io/@std/path/1.0.8/posix/normalize_glob.d.ts +0 -20
- package/script/deps/jsr.io/@std/path/1.0.8/posix/normalize_glob.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/posix/normalize_glob.js +0 -35
- package/script/deps/jsr.io/@std/path/1.0.8/posix/parse.d.ts +0 -25
- package/script/deps/jsr.io/@std/path/1.0.8/posix/parse.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/posix/parse.js +0 -118
- package/script/deps/jsr.io/@std/path/1.0.8/posix/relative.d.ts +0 -20
- package/script/deps/jsr.io/@std/path/1.0.8/posix/relative.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/posix/relative.js +0 -109
- package/script/deps/jsr.io/@std/path/1.0.8/posix/resolve.d.ts +0 -17
- package/script/deps/jsr.io/@std/path/1.0.8/posix/resolve.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/posix/resolve.js +0 -85
- package/script/deps/jsr.io/@std/path/1.0.8/posix/to_file_url.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/posix/to_file_url.js +0 -30
- package/script/deps/jsr.io/@std/path/1.0.8/posix/to_namespaced_path.d.ts +0 -16
- package/script/deps/jsr.io/@std/path/1.0.8/posix/to_namespaced_path.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/posix/to_namespaced_path.js +0 -23
- package/script/deps/jsr.io/@std/path/1.0.8/relative.d.ts +0 -24
- package/script/deps/jsr.io/@std/path/1.0.8/relative.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/relative.js +0 -33
- package/script/deps/jsr.io/@std/path/1.0.8/resolve.d.ts +0 -22
- package/script/deps/jsr.io/@std/path/1.0.8/resolve.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/resolve.js +0 -33
- package/script/deps/jsr.io/@std/path/1.0.8/to_file_url.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/to_file_url.js +0 -31
- package/script/deps/jsr.io/@std/path/1.0.8/to_namespaced_path.d.ts +0 -21
- package/script/deps/jsr.io/@std/path/1.0.8/to_namespaced_path.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/to_namespaced_path.js +0 -32
- package/script/deps/jsr.io/@std/path/1.0.8/types.d.ts +0 -38
- package/script/deps/jsr.io/@std/path/1.0.8/types.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/types.js +0 -4
- package/script/deps/jsr.io/@std/path/1.0.8/windows/_util.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/windows/_util.js +0 -20
- package/script/deps/jsr.io/@std/path/1.0.8/windows/basename.d.ts +0 -23
- package/script/deps/jsr.io/@std/path/1.0.8/windows/basename.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/windows/basename.js +0 -47
- package/script/deps/jsr.io/@std/path/1.0.8/windows/constants.d.ts +0 -13
- package/script/deps/jsr.io/@std/path/1.0.8/windows/constants.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/windows/constants.js +0 -17
- package/script/deps/jsr.io/@std/path/1.0.8/windows/dirname.d.ts +0 -20
- package/script/deps/jsr.io/@std/path/1.0.8/windows/dirname.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/windows/dirname.js +0 -115
- package/script/deps/jsr.io/@std/path/1.0.8/windows/extname.d.ts +0 -20
- package/script/deps/jsr.io/@std/path/1.0.8/windows/extname.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/windows/extname.js +0 -84
- package/script/deps/jsr.io/@std/path/1.0.8/windows/format.d.ts +0 -24
- package/script/deps/jsr.io/@std/path/1.0.8/windows/format.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/windows/format.js +0 -31
- package/script/deps/jsr.io/@std/path/1.0.8/windows/from_file_url.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/windows/from_file_url.js +0 -33
- package/script/deps/jsr.io/@std/path/1.0.8/windows/glob_to_regexp.d.ts +0 -71
- package/script/deps/jsr.io/@std/path/1.0.8/windows/glob_to_regexp.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/windows/glob_to_regexp.js +0 -85
- package/script/deps/jsr.io/@std/path/1.0.8/windows/is_absolute.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/windows/is_absolute.js +0 -41
- package/script/deps/jsr.io/@std/path/1.0.8/windows/join.d.ts +0 -20
- package/script/deps/jsr.io/@std/path/1.0.8/windows/join.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/windows/join.js +0 -77
- package/script/deps/jsr.io/@std/path/1.0.8/windows/join_globs.d.ts +0 -21
- package/script/deps/jsr.io/@std/path/1.0.8/windows/join_globs.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/windows/join_globs.js +0 -44
- package/script/deps/jsr.io/@std/path/1.0.8/windows/normalize.d.ts +0 -22
- package/script/deps/jsr.io/@std/path/1.0.8/windows/normalize.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/windows/normalize.js +0 -137
- package/script/deps/jsr.io/@std/path/1.0.8/windows/normalize_glob.d.ts +0 -20
- package/script/deps/jsr.io/@std/path/1.0.8/windows/normalize_glob.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/windows/normalize_glob.js +0 -35
- package/script/deps/jsr.io/@std/path/1.0.8/windows/parse.d.ts +0 -25
- package/script/deps/jsr.io/@std/path/1.0.8/windows/parse.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/windows/parse.js +0 -179
- package/script/deps/jsr.io/@std/path/1.0.8/windows/relative.d.ts +0 -23
- package/script/deps/jsr.io/@std/path/1.0.8/windows/relative.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/windows/relative.js +0 -134
- package/script/deps/jsr.io/@std/path/1.0.8/windows/resolve.d.ts +0 -17
- package/script/deps/jsr.io/@std/path/1.0.8/windows/resolve.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/windows/resolve.js +0 -180
- package/script/deps/jsr.io/@std/path/1.0.8/windows/to_file_url.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/windows/to_file_url.js +0 -37
- package/script/deps/jsr.io/@std/path/1.0.8/windows/to_namespaced_path.d.ts +0 -17
- package/script/deps/jsr.io/@std/path/1.0.8/windows/to_namespaced_path.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/path/1.0.8/windows/to_namespaced_path.js +0 -52
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/mod.d.ts +0 -2
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/mod.d.ts.map +0 -1
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/mod.js +0 -6
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/utils/uint8.d.ts +0 -2
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/utils/uint8.d.ts.map +0 -1
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/utils/uint8.js +0 -13
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/deflate.d.ts +0 -28
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/deflate.d.ts.map +0 -1
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/deflate.js +0 -166
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/inflate.d.ts +0 -24
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/inflate.d.ts.map +0 -1
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/inflate.js +0 -202
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/mod.d.ts +0 -3
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/mod.d.ts.map +0 -1
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/mod.js +0 -18
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/adler32.d.ts +0 -2
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/adler32.d.ts.map +0 -1
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/adler32.js +0 -22
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/crc32.d.ts +0 -3
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/crc32.d.ts.map +0 -1
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/crc32.js +0 -29
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/deflate.d.ts +0 -79
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/deflate.d.ts.map +0 -1
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/deflate.js +0 -1976
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/gzheader.d.ts +0 -13
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/gzheader.d.ts.map +0 -1
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/gzheader.js +0 -88
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/inffast.d.ts +0 -2
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/inffast.d.ts.map +0 -1
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/inffast.js +0 -324
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/inflate.d.ts +0 -48
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/inflate.d.ts.map +0 -1
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/inflate.js +0 -1676
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/inftrees.d.ts +0 -2
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/inftrees.d.ts.map +0 -1
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/inftrees.js +0 -358
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/messages.d.ts +0 -13
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/messages.d.ts.map +0 -1
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/messages.js +0 -14
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/status.d.ts +0 -31
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/status.d.ts.map +0 -1
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/status.js +0 -44
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/trees.d.ts +0 -6
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/trees.d.ts.map +0 -1
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/trees.js +0 -1114
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/zstream.d.ts +0 -15
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/zstream.d.ts.map +0 -1
- package/script/deps/raw.githubusercontent.com/MTKruto/compress/main/zlib/zlib/zstream.js +0 -89
- package/script/deps/raw.githubusercontent.com/MTKruto/socks5/main/client.d.ts +0 -45
- package/script/deps/raw.githubusercontent.com/MTKruto/socks5/main/client.d.ts.map +0 -1
- package/script/deps/raw.githubusercontent.com/MTKruto/socks5/main/client.js +0 -280
- package/script/deps/raw.githubusercontent.com/MTKruto/socks5/main/deps.d.ts +0 -3
- package/script/deps/raw.githubusercontent.com/MTKruto/socks5/main/deps.d.ts.map +0 -1
- package/script/deps/raw.githubusercontent.com/MTKruto/socks5/main/deps.js +0 -5
- package/script/deps/raw.githubusercontent.com/MTKruto/socks5/main/utils.d.ts +0 -3
- package/script/deps/raw.githubusercontent.com/MTKruto/socks5/main/utils.d.ts.map +0 -1
- package/script/deps/raw.githubusercontent.com/MTKruto/socks5/main/utils.js +0 -39
- package/script/tl/0_api.d.ts +0 -15839
- package/script/tl/0_api.d.ts.map +0 -1
- package/script/tl/0_api.js +0 -24772
- package/script/tl/0_tl_raw_reader.d.ts +0 -36
- package/script/tl/0_tl_raw_reader.d.ts.map +0 -1
- package/script/tl/0_tl_raw_reader.js +0 -92
- package/script/tl/0_tl_raw_writer.d.ts +0 -34
- package/script/tl/0_tl_raw_writer.d.ts.map +0 -1
- package/script/tl/0_tl_raw_writer.js +0 -90
- package/script/tl/2_deserialize.d.ts +0 -23
- package/script/tl/2_deserialize.d.ts.map +0 -1
- package/script/tl/2_deserialize.js +0 -98
- package/script/tl/2_serialize.d.ts +0 -22
- package/script/tl/2_serialize.d.ts.map +0 -1
- package/script/tl/2_serialize.js +0 -163
- package/script/tl/3_tl_reader.d.ts +0 -26
- package/script/tl/3_tl_reader.d.ts.map +0 -1
- package/script/tl/3_tl_reader.js +0 -53
- package/script/tl/3_utilities.d.ts +0 -34
- package/script/tl/3_utilities.d.ts.map +0 -1
- package/script/tl/3_utilities.js +0 -97
- package/script/tl/4_rpc_result.d.ts +0 -27
- package/script/tl/4_rpc_result.d.ts.map +0 -1
- package/script/tl/4_rpc_result.js +0 -32
- package/script/tl/4_tl_writer.d.ts +0 -25
- package/script/tl/4_tl_writer.d.ts.map +0 -1
- package/script/tl/4_tl_writer.js +0 -49
- package/script/tl/5_message.d.ts +0 -39
- package/script/tl/5_message.d.ts.map +0 -1
- package/script/tl/5_message.js +0 -106
- package/script/transport/2_transport_provider.d.ts +0 -35
- package/script/transport/2_transport_provider.d.ts.map +0 -1
- package/script/transport/2_transport_provider.js +0 -86
- package/script/transport/3_transport_provider_tcp.d.ts +0 -14
- package/script/transport/3_transport_provider_tcp.d.ts.map +0 -1
- package/script/transport/3_transport_provider_tcp.js +0 -18
- package/script/transport/3_transport_provider_web_socket.d.ts +0 -24
- package/script/transport/3_transport_provider_web_socket.d.ts.map +0 -1
- package/script/transport/3_transport_provider_web_socket.js +0 -47
- package/script/types/0_link_preview.d.ts +0 -35
- package/script/types/0_link_preview.d.ts.map +0 -1
- package/script/types/0_link_preview.js +0 -31
- package/script/types/0_message_entity.d.ts +0 -139
- package/script/types/0_message_entity.d.ts.map +0 -1
- package/script/types/0_message_entity.js +0 -188
- package/script/types/0_mini_app_info.d.ts +0 -26
- package/script/types/0_mini_app_info.d.ts.map +0 -1
- package/script/types/0_mini_app_info.js +0 -25
- package/script/types/0_opening_hours.d.ts +0 -26
- package/script/types/0_opening_hours.d.ts.map +0 -1
- package/script/types/0_opening_hours.js +0 -28
- package/script/types/1_input_media.d.ts +0 -122
- package/script/types/1_input_media.d.ts.map +0 -1
- package/script/types/1_input_media.js +0 -21
- package/script/types/1_message_content.d.ts +0 -119
- package/script/types/1_message_content.d.ts.map +0 -1
- package/script/types/1_message_content.js +0 -21
- package/script/types/1_poll_option.d.ts +0 -32
- package/script/types/1_poll_option.d.ts.map +0 -1
- package/script/types/1_poll_option.js +0 -30
- package/script/types/1_reply_quote.d.ts +0 -32
- package/script/types/1_reply_quote.d.ts.map +0 -1
- package/script/types/1_reply_quote.js +0 -33
- package/script/types/1_story_privacy.d.ts +0 -46
- package/script/types/1_story_privacy.d.ts.map +0 -1
- package/script/types/1_story_privacy.js +0 -80
- package/script/types/1_user.d.ts +0 -56
- package/script/types/1_user.d.ts.map +0 -1
- package/script/types/1_user.js +0 -50
- package/script/types/2_business_connection.d.ts +0 -37
- package/script/types/2_business_connection.d.ts.map +0 -1
- package/script/types/2_business_connection.js +0 -33
- package/script/types/2_chosen_inline_result.d.ts +0 -38
- package/script/types/2_chosen_inline_result.d.ts.map +0 -1
- package/script/types/2_chosen_inline_result.js +0 -40
- package/script/types/2_forward_header.d.ts +0 -40
- package/script/types/2_forward_header.d.ts.map +0 -1
- package/script/types/2_forward_header.js +0 -58
- package/script/types/2_game.d.ts +0 -40
- package/script/types/2_game.d.ts.map +0 -1
- package/script/types/2_game.js +0 -47
- package/script/types/2_inline_keyboard_button.d.ts +0 -138
- package/script/types/2_inline_keyboard_button.d.ts.map +0 -1
- package/script/types/2_inline_keyboard_button.js +0 -121
- package/script/types/2_inline_query.d.ts +0 -40
- package/script/types/2_inline_query.d.ts.map +0 -1
- package/script/types/2_inline_query.js +0 -63
- package/script/types/2_invite_link.d.ts +0 -47
- package/script/types/2_invite_link.d.ts.map +0 -1
- package/script/types/2_invite_link.js +0 -51
- package/script/types/2_message_reactions.d.ts +0 -43
- package/script/types/2_message_reactions.d.ts.map +0 -1
- package/script/types/2_message_reactions.js +0 -59
- package/script/types/2_poll.d.ts +0 -55
- package/script/types/2_poll.d.ts.map +0 -1
- package/script/types/2_poll.js +0 -46
- package/script/types/2_pre_checkout_query.d.ts +0 -34
- package/script/types/2_pre_checkout_query.d.ts.map +0 -1
- package/script/types/2_pre_checkout_query.js +0 -42
- package/script/types/2_reply_to.d.ts +0 -35
- package/script/types/2_reply_to.d.ts.map +0 -1
- package/script/types/2_reply_to.js +0 -21
- package/script/types/3_chat_member_updated.d.ts +0 -44
- package/script/types/3_chat_member_updated.d.ts.map +0 -1
- package/script/types/3_chat_member_updated.js +0 -56
- package/script/types/3_join_request.d.ts +0 -39
- package/script/types/3_join_request.d.ts.map +0 -1
- package/script/types/3_join_request.js +0 -48
- package/script/types/3_reply_markup.d.ts +0 -71
- package/script/types/3_reply_markup.d.ts.map +0 -1
- package/script/types/3_reply_markup.js +0 -131
- package/script/types/4_inline_query_result.d.ts +0 -251
- package/script/types/4_inline_query_result.d.ts.map +0 -1
- package/script/types/4_inline_query_result.js +0 -384
- package/script/types/4_message.d.ts +0 -615
- package/script/types/4_message.d.ts.map +0 -1
- package/script/types/4_message.js +0 -537
- package/script/types/5_callback_query.d.ts +0 -43
- package/script/types/5_callback_query.d.ts.map +0 -1
- package/script/types/5_callback_query.js +0 -64
- package/script/types/5_chat_list_item.d.ts +0 -36
- package/script/types/5_chat_list_item.d.ts.map +0 -1
- package/script/types/5_chat_list_item.js +0 -93
- package/script/types/5_inline_query_answer.d.ts +0 -32
- package/script/types/5_inline_query_answer.d.ts.map +0 -1
- package/script/types/5_inline_query_answer.js +0 -31
- package/script/types/6_update.d.ts +0 -388
- package/script/types/6_update.d.ts.map +0 -1
- package/script/types/6_update.js +0 -21
- package/script/utilities/0_bigint.d.ts +0 -29
- package/script/utilities/0_bigint.d.ts.map +0 -1
- package/script/utilities/0_bigint.js +0 -98
- package/script/utilities/0_buffer.d.ts +0 -21
- package/script/utilities/0_buffer.d.ts.map +0 -1
- package/script/utilities/0_buffer.js +0 -54
- package/script/utilities/0_cache_map.d.ts +0 -26
- package/script/utilities/0_cache_map.d.ts.map +0 -1
- package/script/utilities/0_cache_map.js +0 -56
- package/script/utilities/0_crypto.d.ts +0 -27
- package/script/utilities/0_crypto.d.ts.map +0 -1
- package/script/utilities/0_crypto.js +0 -52
- package/script/utilities/1_misc.d.ts +0 -29
- package/script/utilities/1_misc.d.ts.map +0 -1
- package/script/utilities/1_misc.js +0 -82
- /package/esm/deps/jsr.io/@std/assert/{1.0.7 → 1.0.19}/assertion_error.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/assert/{1.0.7 → 1.0.19}/unreachable.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/internal/{1.0.5 → 1.0.12}/diff.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/internal/{1.0.5 → 1.0.12}/diff_str.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/internal/{1.0.5 → 1.0.12}/styles.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/io/{0.225.0 → 0.225.3}/_constants.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/io/{0.225.0 → 0.225.3}/iterate_reader.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/io/{0.225.0 → 0.225.3}/types.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/_db.js +0 -0
- /package/esm/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/_util.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/_util.js +0 -0
- /package/esm/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/all_extensions.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/all_extensions.js +0 -0
- /package/esm/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/content_type.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/content_type.js +0 -0
- /package/esm/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/extension.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/extension.js +0 -0
- /package/esm/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/format_media_type.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/format_media_type.js +0 -0
- /package/esm/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/get_charset.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/get_charset.js +0 -0
- /package/esm/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/parse_media_type.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/parse_media_type.js +0 -0
- /package/esm/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/type_by_extension.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/type_by_extension.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/_common/assert_path.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/_common/basename.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/_common/constants.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/_common/from_file_url.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/_common/normalize.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/_common/normalize_string.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/_common/strip_trailing_separators.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/_common/to_file_url.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/is_absolute.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/posix/_util.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/posix/from_file_url.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/posix/is_absolute.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/posix/to_file_url.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/to_file_url.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/windows/_util.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/windows/from_file_url.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/windows/is_absolute.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/windows/to_file_url.d.ts +0 -0
- /package/script/deps/jsr.io/@std/assert/{1.0.7 → 1.0.19}/assertion_error.d.ts +0 -0
- /package/script/deps/jsr.io/@std/assert/{1.0.7 → 1.0.19}/unreachable.d.ts +0 -0
- /package/script/deps/jsr.io/@std/internal/{1.0.5 → 1.0.12}/diff.d.ts +0 -0
- /package/script/deps/jsr.io/@std/internal/{1.0.5 → 1.0.12}/diff_str.d.ts +0 -0
- /package/script/deps/jsr.io/@std/internal/{1.0.5 → 1.0.12}/styles.d.ts +0 -0
- /package/script/deps/jsr.io/@std/io/{0.225.0 → 0.225.3}/_constants.d.ts +0 -0
- /package/script/deps/jsr.io/@std/io/{0.225.0 → 0.225.3}/iterate_reader.d.ts +0 -0
- /package/script/deps/jsr.io/@std/io/{0.225.0 → 0.225.3}/types.d.ts +0 -0
- /package/script/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/_db.js +0 -0
- /package/script/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/_util.d.ts +0 -0
- /package/script/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/_util.js +0 -0
- /package/script/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/all_extensions.d.ts +0 -0
- /package/script/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/all_extensions.js +0 -0
- /package/script/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/content_type.d.ts +0 -0
- /package/script/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/content_type.js +0 -0
- /package/script/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/extension.d.ts +0 -0
- /package/script/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/extension.js +0 -0
- /package/script/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/format_media_type.d.ts +0 -0
- /package/script/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/format_media_type.js +0 -0
- /package/script/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/get_charset.d.ts +0 -0
- /package/script/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/get_charset.js +0 -0
- /package/script/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/parse_media_type.d.ts +0 -0
- /package/script/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/parse_media_type.js +0 -0
- /package/script/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/type_by_extension.d.ts +0 -0
- /package/script/deps/jsr.io/@std/media-types/{1.0.3 → 1.1.0}/type_by_extension.js +0 -0
- /package/script/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/_common/assert_path.d.ts +0 -0
- /package/script/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/_common/basename.d.ts +0 -0
- /package/script/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/_common/constants.d.ts +0 -0
- /package/script/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/_common/from_file_url.d.ts +0 -0
- /package/script/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/_common/normalize.d.ts +0 -0
- /package/script/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/_common/normalize_string.d.ts +0 -0
- /package/script/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/_common/strip_trailing_separators.d.ts +0 -0
- /package/script/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/_common/to_file_url.d.ts +0 -0
- /package/script/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/is_absolute.d.ts +0 -0
- /package/script/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/posix/_util.d.ts +0 -0
- /package/script/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/posix/from_file_url.d.ts +0 -0
- /package/script/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/posix/is_absolute.d.ts +0 -0
- /package/script/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/posix/to_file_url.d.ts +0 -0
- /package/script/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/to_file_url.d.ts +0 -0
- /package/script/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/windows/_util.d.ts +0 -0
- /package/script/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/windows/from_file_url.d.ts +0 -0
- /package/script/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/windows/is_absolute.d.ts +0 -0
- /package/script/deps/jsr.io/@std/path/{1.0.8 → 1.1.4}/windows/to_file_url.d.ts +0 -0
|
@@ -1,1676 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.InflateState = void 0;
|
|
7
|
-
exports.inflateResetKeep = inflateResetKeep;
|
|
8
|
-
exports.inflateReset = inflateReset;
|
|
9
|
-
exports.inflateReset2 = inflateReset2;
|
|
10
|
-
exports.inflateInit2 = inflateInit2;
|
|
11
|
-
exports.inflateInit = inflateInit;
|
|
12
|
-
exports.inflate = inflate;
|
|
13
|
-
exports.inflateEnd = inflateEnd;
|
|
14
|
-
exports.inflateGetHeader = inflateGetHeader;
|
|
15
|
-
exports.inflateSetDictionary = inflateSetDictionary;
|
|
16
|
-
const adler32_js_1 = __importDefault(require("./adler32.js"));
|
|
17
|
-
const crc32_js_1 = require("./crc32.js");
|
|
18
|
-
const inffast_js_1 = __importDefault(require("./inffast.js"));
|
|
19
|
-
const inftrees_js_1 = __importDefault(require("./inftrees.js"));
|
|
20
|
-
const CODES = 0;
|
|
21
|
-
const LENS = 1;
|
|
22
|
-
const DISTS = 2;
|
|
23
|
-
/* Public constants ==========================================================*/
|
|
24
|
-
/* ===========================================================================*/
|
|
25
|
-
/* Allowed flush values; see deflate() and inflate() below for details */
|
|
26
|
-
//const Z_NO_FLUSH = 0;
|
|
27
|
-
//const Z_PARTIAL_FLUSH = 1;
|
|
28
|
-
//const Z_SYNC_FLUSH = 2;
|
|
29
|
-
//const Z_FULL_FLUSH = 3;
|
|
30
|
-
const Z_FINISH = 4;
|
|
31
|
-
const Z_BLOCK = 5;
|
|
32
|
-
const Z_TREES = 6;
|
|
33
|
-
/* Return codes for the compression/decompression functions. Negative values
|
|
34
|
-
* are errors, positive values are used for special but normal events.
|
|
35
|
-
*/
|
|
36
|
-
const Z_OK = 0;
|
|
37
|
-
const Z_STREAM_END = 1;
|
|
38
|
-
const Z_NEED_DICT = 2;
|
|
39
|
-
//const Z_ERRNO = -1;
|
|
40
|
-
const Z_STREAM_ERROR = -2;
|
|
41
|
-
const Z_DATA_ERROR = -3;
|
|
42
|
-
const Z_MEM_ERROR = -4;
|
|
43
|
-
const Z_BUF_ERROR = -5;
|
|
44
|
-
//const Z_VERSION_ERROR = -6;
|
|
45
|
-
/* The deflate compression method */
|
|
46
|
-
const Z_DEFLATED = 8;
|
|
47
|
-
/* STATES ====================================================================*/
|
|
48
|
-
/* ===========================================================================*/
|
|
49
|
-
const HEAD = 1; /* i: waiting for magic header */
|
|
50
|
-
const FLAGS = 2; /* i: waiting for method and flags (gzip) */
|
|
51
|
-
const TIME = 3; /* i: waiting for modification time (gzip) */
|
|
52
|
-
const OS = 4; /* i: waiting for extra flags and operating system (gzip) */
|
|
53
|
-
const EXLEN = 5; /* i: waiting for extra length (gzip) */
|
|
54
|
-
const EXTRA = 6; /* i: waiting for extra bytes (gzip) */
|
|
55
|
-
const NAME = 7; /* i: waiting for end of file name (gzip) */
|
|
56
|
-
const COMMENT = 8; /* i: waiting for end of comment (gzip) */
|
|
57
|
-
const HCRC = 9; /* i: waiting for header crc (gzip) */
|
|
58
|
-
const DICTID = 10; /* i: waiting for dictionary check value */
|
|
59
|
-
const DICT = 11; /* waiting for inflateSetDictionary() call */
|
|
60
|
-
const TYPE = 12; /* i: waiting for type bits, including last-flag bit */
|
|
61
|
-
const TYPEDO = 13; /* i: same, but skip check to exit inflate on new block */
|
|
62
|
-
const STORED = 14; /* i: waiting for stored size (length and complement) */
|
|
63
|
-
const COPY_ = 15; /* i/o: same as COPY below, but only first time in */
|
|
64
|
-
const COPY = 16; /* i/o: waiting for input or output to copy stored block */
|
|
65
|
-
const TABLE = 17; /* i: waiting for dynamic block table lengths */
|
|
66
|
-
const LENLENS = 18; /* i: waiting for code length code lengths */
|
|
67
|
-
const CODELENS = 19; /* i: waiting for length/lit and distance code lengths */
|
|
68
|
-
const LEN_ = 20; /* i: same as LEN below, but only first time in */
|
|
69
|
-
const LEN = 21; /* i: waiting for length/lit/eob code */
|
|
70
|
-
const LENEXT = 22; /* i: waiting for length extra bits */
|
|
71
|
-
const DIST = 23; /* i: waiting for distance code */
|
|
72
|
-
const DISTEXT = 24; /* i: waiting for distance extra bits */
|
|
73
|
-
const MATCH = 25; /* o: waiting for output space to copy string */
|
|
74
|
-
const LIT = 26; /* o: waiting for output space to write literal */
|
|
75
|
-
const CHECK = 27; /* i: waiting for 32-bit check value */
|
|
76
|
-
const LENGTH = 28; /* i: waiting for 32-bit length (gzip) */
|
|
77
|
-
const DONE = 29; /* finished check, done -- remain here until reset */
|
|
78
|
-
const BAD = 30; /* got a data error -- remain here until reset */
|
|
79
|
-
const MEM = 31; /* got an inflate() memory error -- remain here until reset */
|
|
80
|
-
const SYNC = 32; /* looking for synchronization bytes to restart inflate() */
|
|
81
|
-
/* ===========================================================================*/
|
|
82
|
-
const ENOUGH_LENS = 852;
|
|
83
|
-
const ENOUGH_DISTS = 592;
|
|
84
|
-
//const ENOUGH = (ENOUGH_LENS+ENOUGH_DISTS);
|
|
85
|
-
const MAX_WBITS = 15;
|
|
86
|
-
/* 32K LZ77 window */
|
|
87
|
-
const DEF_WBITS = MAX_WBITS;
|
|
88
|
-
function zswap32(q) {
|
|
89
|
-
return (((q >>> 24) & 0xff) +
|
|
90
|
-
((q >>> 8) & 0xff00) +
|
|
91
|
-
((q & 0xff00) << 8) +
|
|
92
|
-
((q & 0xff) << 24));
|
|
93
|
-
}
|
|
94
|
-
class InflateState {
|
|
95
|
-
constructor() {
|
|
96
|
-
Object.defineProperty(this, "mode", {
|
|
97
|
-
enumerable: true,
|
|
98
|
-
configurable: true,
|
|
99
|
-
writable: true,
|
|
100
|
-
value: 0
|
|
101
|
-
}); /* current inflate mode */
|
|
102
|
-
Object.defineProperty(this, "last", {
|
|
103
|
-
enumerable: true,
|
|
104
|
-
configurable: true,
|
|
105
|
-
writable: true,
|
|
106
|
-
value: false
|
|
107
|
-
}); /* true if processing last block */
|
|
108
|
-
Object.defineProperty(this, "wrap", {
|
|
109
|
-
enumerable: true,
|
|
110
|
-
configurable: true,
|
|
111
|
-
writable: true,
|
|
112
|
-
value: 0
|
|
113
|
-
}); /* bit 0 true for zlib, bit 1 true for gzip */
|
|
114
|
-
Object.defineProperty(this, "havedict", {
|
|
115
|
-
enumerable: true,
|
|
116
|
-
configurable: true,
|
|
117
|
-
writable: true,
|
|
118
|
-
value: false
|
|
119
|
-
}); /* true if dictionary provided */
|
|
120
|
-
Object.defineProperty(this, "flags", {
|
|
121
|
-
enumerable: true,
|
|
122
|
-
configurable: true,
|
|
123
|
-
writable: true,
|
|
124
|
-
value: 0
|
|
125
|
-
}); /* gzip header method and flags (0 if zlib) */
|
|
126
|
-
Object.defineProperty(this, "dmax", {
|
|
127
|
-
enumerable: true,
|
|
128
|
-
configurable: true,
|
|
129
|
-
writable: true,
|
|
130
|
-
value: 0
|
|
131
|
-
}); /* zlib header max distance (INFLATE_STRICT) */
|
|
132
|
-
Object.defineProperty(this, "check", {
|
|
133
|
-
enumerable: true,
|
|
134
|
-
configurable: true,
|
|
135
|
-
writable: true,
|
|
136
|
-
value: 0
|
|
137
|
-
}); /* protected copy of check value */
|
|
138
|
-
Object.defineProperty(this, "total", {
|
|
139
|
-
enumerable: true,
|
|
140
|
-
configurable: true,
|
|
141
|
-
writable: true,
|
|
142
|
-
value: 0
|
|
143
|
-
}); /* protected copy of output count */
|
|
144
|
-
// TODO: may be {}
|
|
145
|
-
Object.defineProperty(this, "head", {
|
|
146
|
-
enumerable: true,
|
|
147
|
-
configurable: true,
|
|
148
|
-
writable: true,
|
|
149
|
-
value: null
|
|
150
|
-
}); /* where to save gzip header information */
|
|
151
|
-
/* sliding window */
|
|
152
|
-
Object.defineProperty(this, "wbits", {
|
|
153
|
-
enumerable: true,
|
|
154
|
-
configurable: true,
|
|
155
|
-
writable: true,
|
|
156
|
-
value: 0
|
|
157
|
-
}); /* log base 2 of requested window size */
|
|
158
|
-
Object.defineProperty(this, "wsize", {
|
|
159
|
-
enumerable: true,
|
|
160
|
-
configurable: true,
|
|
161
|
-
writable: true,
|
|
162
|
-
value: 0
|
|
163
|
-
}); /* window size or zero if not using window */
|
|
164
|
-
Object.defineProperty(this, "whave", {
|
|
165
|
-
enumerable: true,
|
|
166
|
-
configurable: true,
|
|
167
|
-
writable: true,
|
|
168
|
-
value: 0
|
|
169
|
-
}); /* valid bytes in the window */
|
|
170
|
-
Object.defineProperty(this, "wnext", {
|
|
171
|
-
enumerable: true,
|
|
172
|
-
configurable: true,
|
|
173
|
-
writable: true,
|
|
174
|
-
value: 0
|
|
175
|
-
}); /* window write index */
|
|
176
|
-
Object.defineProperty(this, "window", {
|
|
177
|
-
enumerable: true,
|
|
178
|
-
configurable: true,
|
|
179
|
-
writable: true,
|
|
180
|
-
value: null
|
|
181
|
-
}); /* allocated sliding window, if needed */
|
|
182
|
-
/* bit accumulator */
|
|
183
|
-
Object.defineProperty(this, "hold", {
|
|
184
|
-
enumerable: true,
|
|
185
|
-
configurable: true,
|
|
186
|
-
writable: true,
|
|
187
|
-
value: 0
|
|
188
|
-
}); /* input bit accumulator */
|
|
189
|
-
Object.defineProperty(this, "bits", {
|
|
190
|
-
enumerable: true,
|
|
191
|
-
configurable: true,
|
|
192
|
-
writable: true,
|
|
193
|
-
value: 0
|
|
194
|
-
}); /* number of bits in "in" */
|
|
195
|
-
/* for string and stored block copying */
|
|
196
|
-
Object.defineProperty(this, "length", {
|
|
197
|
-
enumerable: true,
|
|
198
|
-
configurable: true,
|
|
199
|
-
writable: true,
|
|
200
|
-
value: 0
|
|
201
|
-
}); /* literal or length of data to copy */
|
|
202
|
-
Object.defineProperty(this, "offset", {
|
|
203
|
-
enumerable: true,
|
|
204
|
-
configurable: true,
|
|
205
|
-
writable: true,
|
|
206
|
-
value: 0
|
|
207
|
-
}); /* distance back to copy string from */
|
|
208
|
-
/* for table and code decoding */
|
|
209
|
-
Object.defineProperty(this, "extra", {
|
|
210
|
-
enumerable: true,
|
|
211
|
-
configurable: true,
|
|
212
|
-
writable: true,
|
|
213
|
-
value: 0
|
|
214
|
-
}); /* extra bits needed */
|
|
215
|
-
/* fixed and dynamic code tables */
|
|
216
|
-
Object.defineProperty(this, "lencode", {
|
|
217
|
-
enumerable: true,
|
|
218
|
-
configurable: true,
|
|
219
|
-
writable: true,
|
|
220
|
-
value: null
|
|
221
|
-
}); /* starting table for length/literal codes */
|
|
222
|
-
Object.defineProperty(this, "distcode", {
|
|
223
|
-
enumerable: true,
|
|
224
|
-
configurable: true,
|
|
225
|
-
writable: true,
|
|
226
|
-
value: null
|
|
227
|
-
}); /* starting table for distance codes */
|
|
228
|
-
Object.defineProperty(this, "lenbits", {
|
|
229
|
-
enumerable: true,
|
|
230
|
-
configurable: true,
|
|
231
|
-
writable: true,
|
|
232
|
-
value: 0
|
|
233
|
-
}); /* index bits for lencode */
|
|
234
|
-
Object.defineProperty(this, "distbits", {
|
|
235
|
-
enumerable: true,
|
|
236
|
-
configurable: true,
|
|
237
|
-
writable: true,
|
|
238
|
-
value: 0
|
|
239
|
-
}); /* index bits for distcode */
|
|
240
|
-
/* dynamic table building */
|
|
241
|
-
Object.defineProperty(this, "ncode", {
|
|
242
|
-
enumerable: true,
|
|
243
|
-
configurable: true,
|
|
244
|
-
writable: true,
|
|
245
|
-
value: 0
|
|
246
|
-
}); /* number of code length code lengths */
|
|
247
|
-
Object.defineProperty(this, "nlen", {
|
|
248
|
-
enumerable: true,
|
|
249
|
-
configurable: true,
|
|
250
|
-
writable: true,
|
|
251
|
-
value: 0
|
|
252
|
-
}); /* number of length code lengths */
|
|
253
|
-
Object.defineProperty(this, "ndist", {
|
|
254
|
-
enumerable: true,
|
|
255
|
-
configurable: true,
|
|
256
|
-
writable: true,
|
|
257
|
-
value: 0
|
|
258
|
-
}); /* number of distance code lengths */
|
|
259
|
-
Object.defineProperty(this, "have", {
|
|
260
|
-
enumerable: true,
|
|
261
|
-
configurable: true,
|
|
262
|
-
writable: true,
|
|
263
|
-
value: 0
|
|
264
|
-
}); /* number of code lengths in lens[] */
|
|
265
|
-
Object.defineProperty(this, "next", {
|
|
266
|
-
enumerable: true,
|
|
267
|
-
configurable: true,
|
|
268
|
-
writable: true,
|
|
269
|
-
value: null
|
|
270
|
-
}); /* next available space in codes[] */
|
|
271
|
-
Object.defineProperty(this, "lens", {
|
|
272
|
-
enumerable: true,
|
|
273
|
-
configurable: true,
|
|
274
|
-
writable: true,
|
|
275
|
-
value: new Uint16Array(320)
|
|
276
|
-
}); /* temporary storage for code lengths */
|
|
277
|
-
Object.defineProperty(this, "work", {
|
|
278
|
-
enumerable: true,
|
|
279
|
-
configurable: true,
|
|
280
|
-
writable: true,
|
|
281
|
-
value: new Uint16Array(288)
|
|
282
|
-
}); /* work area for code table building */
|
|
283
|
-
/*
|
|
284
|
-
because we don't have pointers in js, we use lencode and distcode directly
|
|
285
|
-
as buffers so we don't need codes
|
|
286
|
-
*/
|
|
287
|
-
//codes = new Uint32Array(ENOUGH); /* space for code tables */
|
|
288
|
-
Object.defineProperty(this, "lendyn", {
|
|
289
|
-
enumerable: true,
|
|
290
|
-
configurable: true,
|
|
291
|
-
writable: true,
|
|
292
|
-
value: null
|
|
293
|
-
}); /* dynamic table for length/literal codes (JS specific) */
|
|
294
|
-
Object.defineProperty(this, "distdyn", {
|
|
295
|
-
enumerable: true,
|
|
296
|
-
configurable: true,
|
|
297
|
-
writable: true,
|
|
298
|
-
value: null
|
|
299
|
-
}); /* dynamic table for distance codes (JS specific) */
|
|
300
|
-
Object.defineProperty(this, "sane", {
|
|
301
|
-
enumerable: true,
|
|
302
|
-
configurable: true,
|
|
303
|
-
writable: true,
|
|
304
|
-
value: 0
|
|
305
|
-
}); /* if false, allow invalid distance too far */
|
|
306
|
-
Object.defineProperty(this, "back", {
|
|
307
|
-
enumerable: true,
|
|
308
|
-
configurable: true,
|
|
309
|
-
writable: true,
|
|
310
|
-
value: 0
|
|
311
|
-
}); /* bits back of last unprocessed length/lit */
|
|
312
|
-
Object.defineProperty(this, "was", {
|
|
313
|
-
enumerable: true,
|
|
314
|
-
configurable: true,
|
|
315
|
-
writable: true,
|
|
316
|
-
value: 0
|
|
317
|
-
}); /* initial length of match */
|
|
318
|
-
}
|
|
319
|
-
}
|
|
320
|
-
exports.InflateState = InflateState;
|
|
321
|
-
function inflateResetKeep(strm) {
|
|
322
|
-
let state;
|
|
323
|
-
if (!strm || !strm.state)
|
|
324
|
-
return Z_STREAM_ERROR;
|
|
325
|
-
state = strm.state;
|
|
326
|
-
strm.total_in = strm.total_out = state.total = 0;
|
|
327
|
-
strm.msg = ""; /*Z_NULL*/
|
|
328
|
-
if (state.wrap) {
|
|
329
|
-
/* to support ill-conceived Java test suite */
|
|
330
|
-
strm.adler = state.wrap & 1;
|
|
331
|
-
}
|
|
332
|
-
state.mode = HEAD;
|
|
333
|
-
state.last = 0;
|
|
334
|
-
state.havedict = 0;
|
|
335
|
-
state.dmax = 32768;
|
|
336
|
-
state.head = null /*Z_NULL*/;
|
|
337
|
-
state.hold = 0;
|
|
338
|
-
state.bits = 0;
|
|
339
|
-
//state.lencode = state.distcode = state.next = state.codes;
|
|
340
|
-
state.lencode = state.lendyn = new Uint32Array(ENOUGH_LENS);
|
|
341
|
-
state.distcode = state.distdyn = new Uint32Array(ENOUGH_DISTS);
|
|
342
|
-
state.sane = 1;
|
|
343
|
-
state.back = -1;
|
|
344
|
-
//Tracev((stderr, "inflate: reset\n"));
|
|
345
|
-
return Z_OK;
|
|
346
|
-
}
|
|
347
|
-
function inflateReset(strm) {
|
|
348
|
-
let state;
|
|
349
|
-
if (!strm || !strm.state)
|
|
350
|
-
return Z_STREAM_ERROR;
|
|
351
|
-
state = strm.state;
|
|
352
|
-
state.wsize = 0;
|
|
353
|
-
state.whave = 0;
|
|
354
|
-
state.wnext = 0;
|
|
355
|
-
return inflateResetKeep(strm);
|
|
356
|
-
}
|
|
357
|
-
function inflateReset2(strm, windowBits) {
|
|
358
|
-
let wrap;
|
|
359
|
-
let state;
|
|
360
|
-
/* get the state */
|
|
361
|
-
if (!strm || !strm.state)
|
|
362
|
-
return Z_STREAM_ERROR;
|
|
363
|
-
state = strm.state;
|
|
364
|
-
/* extract wrap request from windowBits parameter */
|
|
365
|
-
if (windowBits < 0) {
|
|
366
|
-
wrap = 0;
|
|
367
|
-
windowBits = -windowBits;
|
|
368
|
-
}
|
|
369
|
-
else {
|
|
370
|
-
wrap = (windowBits >> 4) + 1;
|
|
371
|
-
if (windowBits < 48) {
|
|
372
|
-
windowBits &= 15;
|
|
373
|
-
}
|
|
374
|
-
}
|
|
375
|
-
/* set number of window bits, free window if different */
|
|
376
|
-
if (windowBits && (windowBits < 8 || windowBits > 15)) {
|
|
377
|
-
return Z_STREAM_ERROR;
|
|
378
|
-
}
|
|
379
|
-
if (state.window !== null && state.wbits !== windowBits) {
|
|
380
|
-
state.window = null;
|
|
381
|
-
}
|
|
382
|
-
/* update state and reset the rest of it */
|
|
383
|
-
state.wrap = wrap;
|
|
384
|
-
state.wbits = windowBits;
|
|
385
|
-
return inflateReset(strm);
|
|
386
|
-
}
|
|
387
|
-
function inflateInit2(strm, windowBits) {
|
|
388
|
-
let ret;
|
|
389
|
-
let state;
|
|
390
|
-
if (!strm)
|
|
391
|
-
return Z_STREAM_ERROR;
|
|
392
|
-
//strm.msg = Z_NULL; /* in case we return an error */
|
|
393
|
-
state = new InflateState();
|
|
394
|
-
//if (state === Z_NULL) return Z_MEM_ERROR;
|
|
395
|
-
//Tracev((stderr, "inflate: allocated\n"));
|
|
396
|
-
strm.state = state;
|
|
397
|
-
state.window = null /*Z_NULL*/;
|
|
398
|
-
ret = inflateReset2(strm, windowBits);
|
|
399
|
-
if (ret !== Z_OK) {
|
|
400
|
-
strm.state = null /*Z_NULL*/;
|
|
401
|
-
}
|
|
402
|
-
return ret;
|
|
403
|
-
}
|
|
404
|
-
function inflateInit(strm) {
|
|
405
|
-
return inflateInit2(strm, DEF_WBITS);
|
|
406
|
-
}
|
|
407
|
-
/*
|
|
408
|
-
Return state with length and distance decoding tables and index sizes set to
|
|
409
|
-
fixed code decoding. Normally this returns fixed tables from inffixed.h.
|
|
410
|
-
If BUILDFIXED is defined, then instead this routine builds the tables the
|
|
411
|
-
first time it's called, and returns those tables the first time and
|
|
412
|
-
thereafter. This reduces the size of the code by about 2K bytes, in
|
|
413
|
-
exchange for a little execution time. However, BUILDFIXED should not be
|
|
414
|
-
used for threaded applications, since the rewriting of the tables and virgin
|
|
415
|
-
may not be thread-safe.
|
|
416
|
-
*/
|
|
417
|
-
let virgin = true;
|
|
418
|
-
let lenfix, distfix; // We have no pointers in JS, so keep tables separate
|
|
419
|
-
function fixedtables(state) {
|
|
420
|
-
/* build fixed huffman tables if first call (may not be thread safe) */
|
|
421
|
-
if (virgin) {
|
|
422
|
-
let sym;
|
|
423
|
-
lenfix = new Uint32Array(512);
|
|
424
|
-
distfix = new Uint32Array(32);
|
|
425
|
-
/* literal/length table */
|
|
426
|
-
sym = 0;
|
|
427
|
-
while (sym < 144)
|
|
428
|
-
state.lens[sym++] = 8;
|
|
429
|
-
while (sym < 256)
|
|
430
|
-
state.lens[sym++] = 9;
|
|
431
|
-
while (sym < 280)
|
|
432
|
-
state.lens[sym++] = 7;
|
|
433
|
-
while (sym < 288)
|
|
434
|
-
state.lens[sym++] = 8;
|
|
435
|
-
(0, inftrees_js_1.default)(LENS, state.lens, 0, 288, lenfix, 0, state.work, { bits: 9 });
|
|
436
|
-
/* distance table */
|
|
437
|
-
sym = 0;
|
|
438
|
-
while (sym < 32)
|
|
439
|
-
state.lens[sym++] = 5;
|
|
440
|
-
(0, inftrees_js_1.default)(DISTS, state.lens, 0, 32, distfix, 0, state.work, { bits: 5 });
|
|
441
|
-
/* do this just once */
|
|
442
|
-
virgin = false;
|
|
443
|
-
}
|
|
444
|
-
state.lencode = lenfix;
|
|
445
|
-
state.lenbits = 9;
|
|
446
|
-
state.distcode = distfix;
|
|
447
|
-
state.distbits = 5;
|
|
448
|
-
}
|
|
449
|
-
/*
|
|
450
|
-
Update the window with the last wsize (normally 32K) bytes written before
|
|
451
|
-
returning. If window does not exist yet, create it. This is only called
|
|
452
|
-
when a window is already in use, or when output has been written during this
|
|
453
|
-
inflate call, but the end of the deflate stream has not been reached yet.
|
|
454
|
-
It is also called to create a window for dictionary data when a dictionary
|
|
455
|
-
is loaded.
|
|
456
|
-
|
|
457
|
-
Providing output buffers larger than 32K to inflate() should provide a speed
|
|
458
|
-
advantage, since only the last 32K of output is copied to the sliding window
|
|
459
|
-
upon return from inflate(), and since all distances after the first 32K of
|
|
460
|
-
output will fall in the output data, making match copies simpler and faster.
|
|
461
|
-
The advantage may be dependent on the size of the processor's data caches.
|
|
462
|
-
*/
|
|
463
|
-
function updatewindow(strm, src, end, copy) {
|
|
464
|
-
let dist;
|
|
465
|
-
let state = strm.state;
|
|
466
|
-
/* if it hasn't been done already, allocate space for the window */
|
|
467
|
-
if (state.window === null) {
|
|
468
|
-
state.wsize = 1 << state.wbits;
|
|
469
|
-
state.wnext = 0;
|
|
470
|
-
state.whave = 0;
|
|
471
|
-
state.window = new Uint8Array(state.wsize);
|
|
472
|
-
}
|
|
473
|
-
/* copy state->wsize or less output bytes into the circular window */
|
|
474
|
-
if (copy >= state.wsize) {
|
|
475
|
-
state.window.set(src.subarray(end - state.wsize, end), 0);
|
|
476
|
-
state.wnext = 0;
|
|
477
|
-
state.whave = state.wsize;
|
|
478
|
-
}
|
|
479
|
-
else {
|
|
480
|
-
dist = state.wsize - state.wnext;
|
|
481
|
-
if (dist > copy) {
|
|
482
|
-
dist = copy;
|
|
483
|
-
}
|
|
484
|
-
//zmemcpy(state->window + state->wnext, end - copy, dist);
|
|
485
|
-
state.window.set(src.subarray(end - copy, end - copy + dist), state.wnext);
|
|
486
|
-
copy -= dist;
|
|
487
|
-
if (copy) {
|
|
488
|
-
//zmemcpy(state->window, end - copy, copy);
|
|
489
|
-
state.window.set(src.subarray(end - copy, end), 0);
|
|
490
|
-
state.wnext = copy;
|
|
491
|
-
state.whave = state.wsize;
|
|
492
|
-
}
|
|
493
|
-
else {
|
|
494
|
-
state.wnext += dist;
|
|
495
|
-
if (state.wnext === state.wsize)
|
|
496
|
-
state.wnext = 0;
|
|
497
|
-
if (state.whave < state.wsize)
|
|
498
|
-
state.whave += dist;
|
|
499
|
-
}
|
|
500
|
-
}
|
|
501
|
-
return 0;
|
|
502
|
-
}
|
|
503
|
-
function inflate(strm, flush) {
|
|
504
|
-
let state;
|
|
505
|
-
let input, output; // input/output buffers
|
|
506
|
-
let next; /* next input INDEX */
|
|
507
|
-
let put; /* next output INDEX */
|
|
508
|
-
let have, left; /* available input and output */
|
|
509
|
-
let hold; /* bit buffer */
|
|
510
|
-
let bits; /* bits in bit buffer */
|
|
511
|
-
let _in, _out; /* save starting available input and output */
|
|
512
|
-
let copy; /* number of stored or match bytes to copy */
|
|
513
|
-
let from; /* where to copy match bytes from */
|
|
514
|
-
let from_source;
|
|
515
|
-
let here = 0; /* current decoding table entry */
|
|
516
|
-
let here_bits, here_op, here_val; // paked "here" denormalized (JS specific)
|
|
517
|
-
//let last; /* parent table entry */
|
|
518
|
-
let last_bits, last_op, last_val; // paked "last" denormalized (JS specific)
|
|
519
|
-
let len; /* length to copy for repeats, bits to drop */
|
|
520
|
-
let ret; /* return code */
|
|
521
|
-
let hbuf = new Uint8Array(4); /* buffer for gzip header crc calculation */
|
|
522
|
-
let opts;
|
|
523
|
-
let n; // temporary let for NEED_BITS
|
|
524
|
-
let order = /* permutation of code lengths */ [16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15];
|
|
525
|
-
if (!strm || !strm.state || !strm.output ||
|
|
526
|
-
(!strm.input && strm.avail_in !== 0)) {
|
|
527
|
-
return Z_STREAM_ERROR;
|
|
528
|
-
}
|
|
529
|
-
state = strm.state;
|
|
530
|
-
if (state.mode === TYPE)
|
|
531
|
-
state.mode = TYPEDO; /* skip check */
|
|
532
|
-
//--- LOAD() ---
|
|
533
|
-
put = strm.next_out;
|
|
534
|
-
output = strm.output;
|
|
535
|
-
left = strm.avail_out;
|
|
536
|
-
next = strm.next_in;
|
|
537
|
-
input = strm.input;
|
|
538
|
-
have = strm.avail_in;
|
|
539
|
-
hold = state.hold;
|
|
540
|
-
bits = state.bits;
|
|
541
|
-
//---
|
|
542
|
-
_in = have;
|
|
543
|
-
_out = left;
|
|
544
|
-
ret = Z_OK;
|
|
545
|
-
inf_leave:
|
|
546
|
-
// goto emulation
|
|
547
|
-
for (;;) {
|
|
548
|
-
switch (state.mode) {
|
|
549
|
-
case HEAD:
|
|
550
|
-
if (state.wrap === 0) {
|
|
551
|
-
state.mode = TYPEDO;
|
|
552
|
-
break;
|
|
553
|
-
}
|
|
554
|
-
//=== NEEDBITS(16);
|
|
555
|
-
while (bits < 16) {
|
|
556
|
-
if (have === 0)
|
|
557
|
-
break inf_leave;
|
|
558
|
-
have--;
|
|
559
|
-
hold += input[next++] << bits;
|
|
560
|
-
bits += 8;
|
|
561
|
-
}
|
|
562
|
-
//===//
|
|
563
|
-
if ((state.wrap & 2) && hold === 0x8b1f) {
|
|
564
|
-
/* gzip header */
|
|
565
|
-
state.check = 0 /*crc32(0L, Z_NULL, 0)*/;
|
|
566
|
-
//=== CRC2(state.check, hold);
|
|
567
|
-
hbuf[0] = hold & 0xff;
|
|
568
|
-
hbuf[1] = (hold >>> 8) & 0xff;
|
|
569
|
-
state.check = (0, crc32_js_1.crc32)(state.check, hbuf, 2, 0);
|
|
570
|
-
//===//
|
|
571
|
-
//=== INITBITS();
|
|
572
|
-
hold = 0;
|
|
573
|
-
bits = 0;
|
|
574
|
-
//===//
|
|
575
|
-
state.mode = FLAGS;
|
|
576
|
-
break;
|
|
577
|
-
}
|
|
578
|
-
state.flags = 0; /* expect zlib header */
|
|
579
|
-
if (state.head) {
|
|
580
|
-
state.head.done = false;
|
|
581
|
-
}
|
|
582
|
-
if (!(state.wrap & 1) || /* check if zlib header allowed */
|
|
583
|
-
(((hold & 0xff) /*BITS(8)*/ << 8) + (hold >> 8)) % 31) {
|
|
584
|
-
strm.msg = "incorrect header check";
|
|
585
|
-
state.mode = BAD;
|
|
586
|
-
break;
|
|
587
|
-
}
|
|
588
|
-
if ((hold & 0x0f) /*BITS(4)*/ !== Z_DEFLATED) {
|
|
589
|
-
strm.msg = "unknown compression method";
|
|
590
|
-
state.mode = BAD;
|
|
591
|
-
break;
|
|
592
|
-
}
|
|
593
|
-
//--- DROPBITS(4) ---//
|
|
594
|
-
hold >>>= 4;
|
|
595
|
-
bits -= 4;
|
|
596
|
-
//---//
|
|
597
|
-
len = (hold & 0x0f) /*BITS(4)*/ + 8;
|
|
598
|
-
if (state.wbits === 0) {
|
|
599
|
-
state.wbits = len;
|
|
600
|
-
}
|
|
601
|
-
else if (len > state.wbits) {
|
|
602
|
-
strm.msg = "invalid window size";
|
|
603
|
-
state.mode = BAD;
|
|
604
|
-
break;
|
|
605
|
-
}
|
|
606
|
-
state.dmax = 1 << len;
|
|
607
|
-
//Tracev((stderr, "inflate: zlib header ok\n"));
|
|
608
|
-
strm.adler = state.check = 1 /*adler32(0L, Z_NULL, 0)*/;
|
|
609
|
-
state.mode = hold & 0x200 ? DICTID : TYPE;
|
|
610
|
-
//=== INITBITS();
|
|
611
|
-
hold = 0;
|
|
612
|
-
bits = 0;
|
|
613
|
-
//===//
|
|
614
|
-
break;
|
|
615
|
-
case FLAGS:
|
|
616
|
-
//=== NEEDBITS(16); */
|
|
617
|
-
while (bits < 16) {
|
|
618
|
-
if (have === 0)
|
|
619
|
-
break inf_leave;
|
|
620
|
-
have--;
|
|
621
|
-
hold += input[next++] << bits;
|
|
622
|
-
bits += 8;
|
|
623
|
-
}
|
|
624
|
-
//===//
|
|
625
|
-
state.flags = hold;
|
|
626
|
-
if ((state.flags & 0xff) !== Z_DEFLATED) {
|
|
627
|
-
strm.msg = "unknown compression method";
|
|
628
|
-
state.mode = BAD;
|
|
629
|
-
break;
|
|
630
|
-
}
|
|
631
|
-
if (state.flags & 0xe000) {
|
|
632
|
-
strm.msg = "unknown header flags set";
|
|
633
|
-
state.mode = BAD;
|
|
634
|
-
break;
|
|
635
|
-
}
|
|
636
|
-
if (state.head) {
|
|
637
|
-
state.head.text = (hold >> 8) & 1;
|
|
638
|
-
}
|
|
639
|
-
if (state.flags & 0x0200) {
|
|
640
|
-
//=== CRC2(state.check, hold);
|
|
641
|
-
hbuf[0] = hold & 0xff;
|
|
642
|
-
hbuf[1] = (hold >>> 8) & 0xff;
|
|
643
|
-
state.check = (0, crc32_js_1.crc32)(state.check, hbuf, 2, 0);
|
|
644
|
-
//===//
|
|
645
|
-
}
|
|
646
|
-
//=== INITBITS();
|
|
647
|
-
hold = 0;
|
|
648
|
-
bits = 0;
|
|
649
|
-
//===//
|
|
650
|
-
state.mode = TIME;
|
|
651
|
-
/* falls through */
|
|
652
|
-
case TIME:
|
|
653
|
-
//=== NEEDBITS(32); */
|
|
654
|
-
while (bits < 32) {
|
|
655
|
-
if (have === 0)
|
|
656
|
-
break inf_leave;
|
|
657
|
-
have--;
|
|
658
|
-
hold += input[next++] << bits;
|
|
659
|
-
bits += 8;
|
|
660
|
-
}
|
|
661
|
-
//===//
|
|
662
|
-
if (state.head) {
|
|
663
|
-
state.head.time = hold;
|
|
664
|
-
}
|
|
665
|
-
if (state.flags & 0x0200) {
|
|
666
|
-
//=== CRC4(state.check, hold)
|
|
667
|
-
hbuf[0] = hold & 0xff;
|
|
668
|
-
hbuf[1] = (hold >>> 8) & 0xff;
|
|
669
|
-
hbuf[2] = (hold >>> 16) & 0xff;
|
|
670
|
-
hbuf[3] = (hold >>> 24) & 0xff;
|
|
671
|
-
state.check = (0, crc32_js_1.crc32)(state.check, hbuf, 4, 0);
|
|
672
|
-
//===
|
|
673
|
-
}
|
|
674
|
-
//=== INITBITS();
|
|
675
|
-
hold = 0;
|
|
676
|
-
bits = 0;
|
|
677
|
-
//===//
|
|
678
|
-
state.mode = OS;
|
|
679
|
-
/* falls through */
|
|
680
|
-
case OS:
|
|
681
|
-
//=== NEEDBITS(16); */
|
|
682
|
-
while (bits < 16) {
|
|
683
|
-
if (have === 0)
|
|
684
|
-
break inf_leave;
|
|
685
|
-
have--;
|
|
686
|
-
hold += input[next++] << bits;
|
|
687
|
-
bits += 8;
|
|
688
|
-
}
|
|
689
|
-
//===//
|
|
690
|
-
if (state.head) {
|
|
691
|
-
state.head.xflags = hold & 0xff;
|
|
692
|
-
state.head.os = hold >> 8;
|
|
693
|
-
}
|
|
694
|
-
if (state.flags & 0x0200) {
|
|
695
|
-
//=== CRC2(state.check, hold);
|
|
696
|
-
hbuf[0] = hold & 0xff;
|
|
697
|
-
hbuf[1] = (hold >>> 8) & 0xff;
|
|
698
|
-
state.check = (0, crc32_js_1.crc32)(state.check, hbuf, 2, 0);
|
|
699
|
-
//===//
|
|
700
|
-
}
|
|
701
|
-
//=== INITBITS();
|
|
702
|
-
hold = 0;
|
|
703
|
-
bits = 0;
|
|
704
|
-
//===//
|
|
705
|
-
state.mode = EXLEN;
|
|
706
|
-
/* falls through */
|
|
707
|
-
case EXLEN:
|
|
708
|
-
if (state.flags & 0x0400) {
|
|
709
|
-
//=== NEEDBITS(16); */
|
|
710
|
-
while (bits < 16) {
|
|
711
|
-
if (have === 0)
|
|
712
|
-
break inf_leave;
|
|
713
|
-
have--;
|
|
714
|
-
hold += input[next++] << bits;
|
|
715
|
-
bits += 8;
|
|
716
|
-
}
|
|
717
|
-
//===//
|
|
718
|
-
state.length = hold;
|
|
719
|
-
if (state.head) {
|
|
720
|
-
state.head.extra_len = hold;
|
|
721
|
-
}
|
|
722
|
-
if (state.flags & 0x0200) {
|
|
723
|
-
//=== CRC2(state.check, hold);
|
|
724
|
-
hbuf[0] = hold & 0xff;
|
|
725
|
-
hbuf[1] = (hold >>> 8) & 0xff;
|
|
726
|
-
state.check = (0, crc32_js_1.crc32)(state.check, hbuf, 2, 0);
|
|
727
|
-
//===//
|
|
728
|
-
}
|
|
729
|
-
//=== INITBITS();
|
|
730
|
-
hold = 0;
|
|
731
|
-
bits = 0;
|
|
732
|
-
//===//
|
|
733
|
-
}
|
|
734
|
-
else if (state.head) {
|
|
735
|
-
state.head.extra = null /*Z_NULL*/;
|
|
736
|
-
}
|
|
737
|
-
state.mode = EXTRA;
|
|
738
|
-
/* falls through */
|
|
739
|
-
case EXTRA:
|
|
740
|
-
if (state.flags & 0x0400) {
|
|
741
|
-
copy = state.length;
|
|
742
|
-
if (copy > have)
|
|
743
|
-
copy = have;
|
|
744
|
-
if (copy) {
|
|
745
|
-
if (state.head) {
|
|
746
|
-
len = state.head.extra_len - state.length;
|
|
747
|
-
if (!state.head.extra) {
|
|
748
|
-
// Use untyped array for more convenient processing later
|
|
749
|
-
state.head.extra = new Array(state.head.extra_len);
|
|
750
|
-
}
|
|
751
|
-
// extra field is limited to 65536 bytes
|
|
752
|
-
// - no need for additional size check
|
|
753
|
-
/*len + copy > state.head.extra_max - len ? state.head.extra_max : copy,*/
|
|
754
|
-
state.head.extra.set(input.subarray(next, next + copy), len);
|
|
755
|
-
//zmemcpy(state.head.extra + len, next,
|
|
756
|
-
// len + copy > state.head.extra_max ?
|
|
757
|
-
// state.head.extra_max - len : copy);
|
|
758
|
-
}
|
|
759
|
-
if (state.flags & 0x0200) {
|
|
760
|
-
state.check = (0, crc32_js_1.crc32)(state.check, input, copy, next);
|
|
761
|
-
}
|
|
762
|
-
have -= copy;
|
|
763
|
-
next += copy;
|
|
764
|
-
state.length -= copy;
|
|
765
|
-
}
|
|
766
|
-
if (state.length)
|
|
767
|
-
break inf_leave;
|
|
768
|
-
}
|
|
769
|
-
state.length = 0;
|
|
770
|
-
state.mode = NAME;
|
|
771
|
-
/* falls through */
|
|
772
|
-
case NAME:
|
|
773
|
-
if (state.flags & 0x0800) {
|
|
774
|
-
if (have === 0)
|
|
775
|
-
break inf_leave;
|
|
776
|
-
copy = 0;
|
|
777
|
-
do {
|
|
778
|
-
// TODO: 2 or 1 bytes?
|
|
779
|
-
len = input[next + copy++];
|
|
780
|
-
/* use constant limit because in js we should not preallocate memory */
|
|
781
|
-
if (state.head && len &&
|
|
782
|
-
(state.length < 65536 /*state.head.name_max*/)) {
|
|
783
|
-
state.head.name += String.fromCharCode(len);
|
|
784
|
-
}
|
|
785
|
-
} while (len && copy < have);
|
|
786
|
-
if (state.flags & 0x0200) {
|
|
787
|
-
state.check = (0, crc32_js_1.crc32)(state.check, input, copy, next);
|
|
788
|
-
}
|
|
789
|
-
have -= copy;
|
|
790
|
-
next += copy;
|
|
791
|
-
if (len)
|
|
792
|
-
break inf_leave;
|
|
793
|
-
}
|
|
794
|
-
else if (state.head) {
|
|
795
|
-
state.head.name = null;
|
|
796
|
-
}
|
|
797
|
-
state.length = 0;
|
|
798
|
-
state.mode = COMMENT;
|
|
799
|
-
/* falls through */
|
|
800
|
-
case COMMENT:
|
|
801
|
-
if (state.flags & 0x1000) {
|
|
802
|
-
if (have === 0)
|
|
803
|
-
break inf_leave;
|
|
804
|
-
copy = 0;
|
|
805
|
-
do {
|
|
806
|
-
len = input[next + copy++];
|
|
807
|
-
/* use constant limit because in js we should not preallocate memory */
|
|
808
|
-
if (state.head && len &&
|
|
809
|
-
(state.length < 65536 /*state.head.comm_max*/)) {
|
|
810
|
-
state.head.comment += String.fromCharCode(len);
|
|
811
|
-
}
|
|
812
|
-
} while (len && copy < have);
|
|
813
|
-
if (state.flags & 0x0200) {
|
|
814
|
-
state.check = (0, crc32_js_1.crc32)(state.check, input, copy, next);
|
|
815
|
-
}
|
|
816
|
-
have -= copy;
|
|
817
|
-
next += copy;
|
|
818
|
-
if (len)
|
|
819
|
-
break inf_leave;
|
|
820
|
-
}
|
|
821
|
-
else if (state.head) {
|
|
822
|
-
state.head.comment = null;
|
|
823
|
-
}
|
|
824
|
-
state.mode = HCRC;
|
|
825
|
-
/* falls through */
|
|
826
|
-
case HCRC:
|
|
827
|
-
if (state.flags & 0x0200) {
|
|
828
|
-
//=== NEEDBITS(16); */
|
|
829
|
-
while (bits < 16) {
|
|
830
|
-
if (have === 0)
|
|
831
|
-
break inf_leave;
|
|
832
|
-
have--;
|
|
833
|
-
hold += input[next++] << bits;
|
|
834
|
-
bits += 8;
|
|
835
|
-
}
|
|
836
|
-
//===//
|
|
837
|
-
if (hold !== (state.check & 0xffff)) {
|
|
838
|
-
strm.msg = "header crc mismatch";
|
|
839
|
-
state.mode = BAD;
|
|
840
|
-
break;
|
|
841
|
-
}
|
|
842
|
-
//=== INITBITS();
|
|
843
|
-
hold = 0;
|
|
844
|
-
bits = 0;
|
|
845
|
-
//===//
|
|
846
|
-
}
|
|
847
|
-
if (state.head) {
|
|
848
|
-
state.head.hcrc = (state.flags >> 9) & 1;
|
|
849
|
-
state.head.done = true;
|
|
850
|
-
}
|
|
851
|
-
strm.adler = state.check = 0;
|
|
852
|
-
state.mode = TYPE;
|
|
853
|
-
break;
|
|
854
|
-
case DICTID:
|
|
855
|
-
//=== NEEDBITS(32); */
|
|
856
|
-
while (bits < 32) {
|
|
857
|
-
if (have === 0)
|
|
858
|
-
break inf_leave;
|
|
859
|
-
have--;
|
|
860
|
-
hold += input[next++] << bits;
|
|
861
|
-
bits += 8;
|
|
862
|
-
}
|
|
863
|
-
//===//
|
|
864
|
-
strm.adler = state.check = zswap32(hold);
|
|
865
|
-
//=== INITBITS();
|
|
866
|
-
hold = 0;
|
|
867
|
-
bits = 0;
|
|
868
|
-
//===//
|
|
869
|
-
state.mode = DICT;
|
|
870
|
-
/* falls through */
|
|
871
|
-
case DICT:
|
|
872
|
-
if (state.havedict === 0) {
|
|
873
|
-
//--- RESTORE() ---
|
|
874
|
-
strm.next_out = put;
|
|
875
|
-
strm.avail_out = left;
|
|
876
|
-
strm.next_in = next;
|
|
877
|
-
strm.avail_in = have;
|
|
878
|
-
state.hold = hold;
|
|
879
|
-
state.bits = bits;
|
|
880
|
-
//---
|
|
881
|
-
return Z_NEED_DICT;
|
|
882
|
-
}
|
|
883
|
-
strm.adler = state.check = 1 /*adler32(0L, Z_NULL, 0)*/;
|
|
884
|
-
state.mode = TYPE;
|
|
885
|
-
/* falls through */
|
|
886
|
-
case TYPE:
|
|
887
|
-
if (flush === Z_BLOCK || flush === Z_TREES)
|
|
888
|
-
break inf_leave;
|
|
889
|
-
/* falls through */
|
|
890
|
-
case TYPEDO:
|
|
891
|
-
if (state.last) {
|
|
892
|
-
//--- BYTEBITS() ---//
|
|
893
|
-
hold >>>= bits & 7;
|
|
894
|
-
bits -= bits & 7;
|
|
895
|
-
//---//
|
|
896
|
-
state.mode = CHECK;
|
|
897
|
-
break;
|
|
898
|
-
}
|
|
899
|
-
//=== NEEDBITS(3); */
|
|
900
|
-
while (bits < 3) {
|
|
901
|
-
if (have === 0)
|
|
902
|
-
break inf_leave;
|
|
903
|
-
have--;
|
|
904
|
-
hold += input[next++] << bits;
|
|
905
|
-
bits += 8;
|
|
906
|
-
}
|
|
907
|
-
//===//
|
|
908
|
-
state.last = hold & 0x01 /*BITS(1)*/;
|
|
909
|
-
//--- DROPBITS(1) ---//
|
|
910
|
-
hold >>>= 1;
|
|
911
|
-
bits -= 1;
|
|
912
|
-
//---//
|
|
913
|
-
switch ((hold & 0x03) /*BITS(2)*/) {
|
|
914
|
-
case 0: /* stored block */
|
|
915
|
-
//Tracev((stderr, "inflate: stored block%s\n",
|
|
916
|
-
// state.last ? " (last)" : ""));
|
|
917
|
-
state.mode = STORED;
|
|
918
|
-
break;
|
|
919
|
-
case 1: /* fixed block */
|
|
920
|
-
fixedtables(state);
|
|
921
|
-
//Tracev((stderr, "inflate: fixed codes block%s\n",
|
|
922
|
-
// state.last ? " (last)" : ""));
|
|
923
|
-
state.mode = LEN_; /* decode codes */
|
|
924
|
-
if (flush === Z_TREES) {
|
|
925
|
-
//--- DROPBITS(2) ---//
|
|
926
|
-
hold >>>= 2;
|
|
927
|
-
bits -= 2;
|
|
928
|
-
//---//
|
|
929
|
-
break inf_leave;
|
|
930
|
-
}
|
|
931
|
-
break;
|
|
932
|
-
case 2: /* dynamic block */
|
|
933
|
-
//Tracev((stderr, "inflate: dynamic codes block%s\n",
|
|
934
|
-
// state.last ? " (last)" : ""));
|
|
935
|
-
state.mode = TABLE;
|
|
936
|
-
break;
|
|
937
|
-
case 3:
|
|
938
|
-
strm.msg = "invalid block type";
|
|
939
|
-
state.mode = BAD;
|
|
940
|
-
}
|
|
941
|
-
//--- DROPBITS(2) ---//
|
|
942
|
-
hold >>>= 2;
|
|
943
|
-
bits -= 2;
|
|
944
|
-
//---//
|
|
945
|
-
break;
|
|
946
|
-
case STORED:
|
|
947
|
-
//--- BYTEBITS() ---// /* go to byte boundary */
|
|
948
|
-
hold >>>= bits & 7;
|
|
949
|
-
bits -= bits & 7;
|
|
950
|
-
//---//
|
|
951
|
-
//=== NEEDBITS(32); */
|
|
952
|
-
while (bits < 32) {
|
|
953
|
-
if (have === 0)
|
|
954
|
-
break inf_leave;
|
|
955
|
-
have--;
|
|
956
|
-
hold += input[next++] << bits;
|
|
957
|
-
bits += 8;
|
|
958
|
-
}
|
|
959
|
-
//===//
|
|
960
|
-
if ((hold & 0xffff) !== ((hold >>> 16) ^ 0xffff)) {
|
|
961
|
-
strm.msg = "invalid stored block lengths";
|
|
962
|
-
state.mode = BAD;
|
|
963
|
-
break;
|
|
964
|
-
}
|
|
965
|
-
state.length = hold & 0xffff;
|
|
966
|
-
//Tracev((stderr, "inflate: stored length %u\n",
|
|
967
|
-
// state.length));
|
|
968
|
-
//=== INITBITS();
|
|
969
|
-
hold = 0;
|
|
970
|
-
bits = 0;
|
|
971
|
-
//===//
|
|
972
|
-
state.mode = COPY_;
|
|
973
|
-
if (flush === Z_TREES)
|
|
974
|
-
break inf_leave;
|
|
975
|
-
/* falls through */
|
|
976
|
-
case COPY_:
|
|
977
|
-
state.mode = COPY;
|
|
978
|
-
/* falls through */
|
|
979
|
-
case COPY:
|
|
980
|
-
copy = state.length;
|
|
981
|
-
if (copy) {
|
|
982
|
-
if (copy > have)
|
|
983
|
-
copy = have;
|
|
984
|
-
if (copy > left)
|
|
985
|
-
copy = left;
|
|
986
|
-
if (copy === 0)
|
|
987
|
-
break inf_leave;
|
|
988
|
-
//--- zmemcpy(put, next, copy); ---
|
|
989
|
-
output.set(input.subarray(next, next + copy), put);
|
|
990
|
-
//---//
|
|
991
|
-
have -= copy;
|
|
992
|
-
next += copy;
|
|
993
|
-
left -= copy;
|
|
994
|
-
put += copy;
|
|
995
|
-
state.length -= copy;
|
|
996
|
-
break;
|
|
997
|
-
}
|
|
998
|
-
//Tracev((stderr, "inflate: stored end\n"));
|
|
999
|
-
state.mode = TYPE;
|
|
1000
|
-
break;
|
|
1001
|
-
case TABLE:
|
|
1002
|
-
//=== NEEDBITS(14); */
|
|
1003
|
-
while (bits < 14) {
|
|
1004
|
-
if (have === 0)
|
|
1005
|
-
break inf_leave;
|
|
1006
|
-
have--;
|
|
1007
|
-
hold += input[next++] << bits;
|
|
1008
|
-
bits += 8;
|
|
1009
|
-
}
|
|
1010
|
-
//===//
|
|
1011
|
-
state.nlen = (hold & 0x1f) /*BITS(5)*/ + 257;
|
|
1012
|
-
//--- DROPBITS(5) ---//
|
|
1013
|
-
hold >>>= 5;
|
|
1014
|
-
bits -= 5;
|
|
1015
|
-
//---//
|
|
1016
|
-
state.ndist = (hold & 0x1f) /*BITS(5)*/ + 1;
|
|
1017
|
-
//--- DROPBITS(5) ---//
|
|
1018
|
-
hold >>>= 5;
|
|
1019
|
-
bits -= 5;
|
|
1020
|
-
//---//
|
|
1021
|
-
state.ncode = (hold & 0x0f) /*BITS(4)*/ + 4;
|
|
1022
|
-
//--- DROPBITS(4) ---//
|
|
1023
|
-
hold >>>= 4;
|
|
1024
|
-
bits -= 4;
|
|
1025
|
-
//---//
|
|
1026
|
-
//#ifndef PKZIP_BUG_WORKAROUND
|
|
1027
|
-
if (state.nlen > 286 || state.ndist > 30) {
|
|
1028
|
-
strm.msg = "too many length or distance symbols";
|
|
1029
|
-
state.mode = BAD;
|
|
1030
|
-
break;
|
|
1031
|
-
}
|
|
1032
|
-
//#endif
|
|
1033
|
-
//Tracev((stderr, "inflate: table sizes ok\n"));
|
|
1034
|
-
state.have = 0;
|
|
1035
|
-
state.mode = LENLENS;
|
|
1036
|
-
/* falls through */
|
|
1037
|
-
case LENLENS:
|
|
1038
|
-
while (state.have < state.ncode) {
|
|
1039
|
-
//=== NEEDBITS(3);
|
|
1040
|
-
while (bits < 3) {
|
|
1041
|
-
if (have === 0)
|
|
1042
|
-
break inf_leave;
|
|
1043
|
-
have--;
|
|
1044
|
-
hold += input[next++] << bits;
|
|
1045
|
-
bits += 8;
|
|
1046
|
-
}
|
|
1047
|
-
//===//
|
|
1048
|
-
state.lens[order[state.have++]] = hold & 0x07; //BITS(3);
|
|
1049
|
-
//--- DROPBITS(3) ---//
|
|
1050
|
-
hold >>>= 3;
|
|
1051
|
-
bits -= 3;
|
|
1052
|
-
//---//
|
|
1053
|
-
}
|
|
1054
|
-
while (state.have < 19) {
|
|
1055
|
-
state.lens[order[state.have++]] = 0;
|
|
1056
|
-
}
|
|
1057
|
-
// We have separate tables & no pointers. 2 commented lines below not needed.
|
|
1058
|
-
//state.next = state.codes;
|
|
1059
|
-
//state.lencode = state.next;
|
|
1060
|
-
// Switch to use dynamic table
|
|
1061
|
-
state.lencode = state.lendyn;
|
|
1062
|
-
state.lenbits = 7;
|
|
1063
|
-
opts = { bits: state.lenbits };
|
|
1064
|
-
ret = (0, inftrees_js_1.default)(CODES, state.lens, 0, 19, state.lencode, 0, state.work, opts);
|
|
1065
|
-
state.lenbits = opts.bits;
|
|
1066
|
-
if (ret) {
|
|
1067
|
-
strm.msg = "invalid code lengths set";
|
|
1068
|
-
state.mode = BAD;
|
|
1069
|
-
break;
|
|
1070
|
-
}
|
|
1071
|
-
//Tracev((stderr, "inflate: code lengths ok\n"));
|
|
1072
|
-
state.have = 0;
|
|
1073
|
-
state.mode = CODELENS;
|
|
1074
|
-
/* falls through */
|
|
1075
|
-
case CODELENS:
|
|
1076
|
-
while (state.have < state.nlen + state.ndist) {
|
|
1077
|
-
for (;;) {
|
|
1078
|
-
here = state
|
|
1079
|
-
.lencode[hold & ((1 << state.lenbits) - 1)]; /*BITS(state.lenbits)*/
|
|
1080
|
-
here_bits = here >>> 24;
|
|
1081
|
-
here_op = (here >>> 16) & 0xff;
|
|
1082
|
-
here_val = here & 0xffff;
|
|
1083
|
-
if (here_bits <= bits)
|
|
1084
|
-
break;
|
|
1085
|
-
//--- PULLBYTE() ---//
|
|
1086
|
-
if (have === 0)
|
|
1087
|
-
break inf_leave;
|
|
1088
|
-
have--;
|
|
1089
|
-
hold += input[next++] << bits;
|
|
1090
|
-
bits += 8;
|
|
1091
|
-
//---//
|
|
1092
|
-
}
|
|
1093
|
-
if (here_val < 16) {
|
|
1094
|
-
//--- DROPBITS(here.bits) ---//
|
|
1095
|
-
hold >>>= here_bits;
|
|
1096
|
-
bits -= here_bits;
|
|
1097
|
-
//---//
|
|
1098
|
-
state.lens[state.have++] = here_val;
|
|
1099
|
-
}
|
|
1100
|
-
else {
|
|
1101
|
-
if (here_val === 16) {
|
|
1102
|
-
//=== NEEDBITS(here.bits + 2);
|
|
1103
|
-
n = here_bits + 2;
|
|
1104
|
-
while (bits < n) {
|
|
1105
|
-
if (have === 0)
|
|
1106
|
-
break inf_leave;
|
|
1107
|
-
have--;
|
|
1108
|
-
hold += input[next++] << bits;
|
|
1109
|
-
bits += 8;
|
|
1110
|
-
}
|
|
1111
|
-
//===//
|
|
1112
|
-
//--- DROPBITS(here.bits) ---//
|
|
1113
|
-
hold >>>= here_bits;
|
|
1114
|
-
bits -= here_bits;
|
|
1115
|
-
//---//
|
|
1116
|
-
if (state.have === 0) {
|
|
1117
|
-
strm.msg = "invalid bit length repeat";
|
|
1118
|
-
state.mode = BAD;
|
|
1119
|
-
break;
|
|
1120
|
-
}
|
|
1121
|
-
len = state.lens[state.have - 1];
|
|
1122
|
-
copy = 3 + (hold & 0x03); //BITS(2);
|
|
1123
|
-
//--- DROPBITS(2) ---//
|
|
1124
|
-
hold >>>= 2;
|
|
1125
|
-
bits -= 2;
|
|
1126
|
-
//---//
|
|
1127
|
-
}
|
|
1128
|
-
else if (here_val === 17) {
|
|
1129
|
-
//=== NEEDBITS(here.bits + 3);
|
|
1130
|
-
n = here_bits + 3;
|
|
1131
|
-
while (bits < n) {
|
|
1132
|
-
if (have === 0)
|
|
1133
|
-
break inf_leave;
|
|
1134
|
-
have--;
|
|
1135
|
-
hold += input[next++] << bits;
|
|
1136
|
-
bits += 8;
|
|
1137
|
-
}
|
|
1138
|
-
//===//
|
|
1139
|
-
//--- DROPBITS(here.bits) ---//
|
|
1140
|
-
hold >>>= here_bits;
|
|
1141
|
-
bits -= here_bits;
|
|
1142
|
-
//---//
|
|
1143
|
-
len = 0;
|
|
1144
|
-
copy = 3 + (hold & 0x07); //BITS(3);
|
|
1145
|
-
//--- DROPBITS(3) ---//
|
|
1146
|
-
hold >>>= 3;
|
|
1147
|
-
bits -= 3;
|
|
1148
|
-
//---//
|
|
1149
|
-
}
|
|
1150
|
-
else {
|
|
1151
|
-
//=== NEEDBITS(here.bits + 7);
|
|
1152
|
-
n = here_bits + 7;
|
|
1153
|
-
while (bits < n) {
|
|
1154
|
-
if (have === 0)
|
|
1155
|
-
break inf_leave;
|
|
1156
|
-
have--;
|
|
1157
|
-
hold += input[next++] << bits;
|
|
1158
|
-
bits += 8;
|
|
1159
|
-
}
|
|
1160
|
-
//===//
|
|
1161
|
-
//--- DROPBITS(here.bits) ---//
|
|
1162
|
-
hold >>>= here_bits;
|
|
1163
|
-
bits -= here_bits;
|
|
1164
|
-
//---//
|
|
1165
|
-
len = 0;
|
|
1166
|
-
copy = 11 + (hold & 0x7f); //BITS(7);
|
|
1167
|
-
//--- DROPBITS(7) ---//
|
|
1168
|
-
hold >>>= 7;
|
|
1169
|
-
bits -= 7;
|
|
1170
|
-
//---//
|
|
1171
|
-
}
|
|
1172
|
-
if (state.have + copy > state.nlen + state.ndist) {
|
|
1173
|
-
strm.msg = "invalid bit length repeat";
|
|
1174
|
-
state.mode = BAD;
|
|
1175
|
-
break;
|
|
1176
|
-
}
|
|
1177
|
-
while (copy--) {
|
|
1178
|
-
state.lens[state.have++] = len;
|
|
1179
|
-
}
|
|
1180
|
-
}
|
|
1181
|
-
}
|
|
1182
|
-
/* handle error breaks in while */
|
|
1183
|
-
if (state.mode === BAD)
|
|
1184
|
-
break;
|
|
1185
|
-
/* check for end-of-block code (better have one) */
|
|
1186
|
-
if (state.lens[256] === 0) {
|
|
1187
|
-
strm.msg = "invalid code -- missing end-of-block";
|
|
1188
|
-
state.mode = BAD;
|
|
1189
|
-
break;
|
|
1190
|
-
}
|
|
1191
|
-
/* build code tables -- note: do not change the lenbits or distbits
|
|
1192
|
-
values here (9 and 6) without reading the comments in inftrees.h
|
|
1193
|
-
concerning the ENOUGH constants, which depend on those values */
|
|
1194
|
-
state.lenbits = 9;
|
|
1195
|
-
opts = { bits: state.lenbits };
|
|
1196
|
-
ret = (0, inftrees_js_1.default)(LENS, state.lens, 0, state.nlen, state.lencode, 0, state.work, opts);
|
|
1197
|
-
// We have separate tables & no pointers. 2 commented lines below not needed.
|
|
1198
|
-
// state.next_index = opts.table_index;
|
|
1199
|
-
state.lenbits = opts.bits;
|
|
1200
|
-
// state.lencode = state.next;
|
|
1201
|
-
if (ret) {
|
|
1202
|
-
strm.msg = "invalid literal/lengths set";
|
|
1203
|
-
state.mode = BAD;
|
|
1204
|
-
break;
|
|
1205
|
-
}
|
|
1206
|
-
state.distbits = 6;
|
|
1207
|
-
//state.distcode.copy(state.codes);
|
|
1208
|
-
// Switch to use dynamic table
|
|
1209
|
-
state.distcode = state.distdyn;
|
|
1210
|
-
opts = { bits: state.distbits };
|
|
1211
|
-
ret = (0, inftrees_js_1.default)(DISTS, state.lens, state.nlen, state.ndist, state.distcode, 0, state.work, opts);
|
|
1212
|
-
// We have separate tables & no pointers. 2 commented lines below not needed.
|
|
1213
|
-
// state.next_index = opts.table_index;
|
|
1214
|
-
state.distbits = opts.bits;
|
|
1215
|
-
// state.distcode = state.next;
|
|
1216
|
-
if (ret) {
|
|
1217
|
-
strm.msg = "invalid distances set";
|
|
1218
|
-
state.mode = BAD;
|
|
1219
|
-
break;
|
|
1220
|
-
}
|
|
1221
|
-
//Tracev((stderr, 'inflate: codes ok\n'));
|
|
1222
|
-
state.mode = LEN_;
|
|
1223
|
-
if (flush === Z_TREES)
|
|
1224
|
-
break inf_leave;
|
|
1225
|
-
/* falls through */
|
|
1226
|
-
case LEN_:
|
|
1227
|
-
state.mode = LEN;
|
|
1228
|
-
/* falls through */
|
|
1229
|
-
case LEN:
|
|
1230
|
-
if (have >= 6 && left >= 258) {
|
|
1231
|
-
//--- RESTORE() ---
|
|
1232
|
-
strm.next_out = put;
|
|
1233
|
-
strm.avail_out = left;
|
|
1234
|
-
strm.next_in = next;
|
|
1235
|
-
strm.avail_in = have;
|
|
1236
|
-
state.hold = hold;
|
|
1237
|
-
state.bits = bits;
|
|
1238
|
-
//---
|
|
1239
|
-
(0, inffast_js_1.default)(strm, _out);
|
|
1240
|
-
//--- LOAD() ---
|
|
1241
|
-
put = strm.next_out;
|
|
1242
|
-
output = strm.output;
|
|
1243
|
-
left = strm.avail_out;
|
|
1244
|
-
next = strm.next_in;
|
|
1245
|
-
input = strm.input;
|
|
1246
|
-
have = strm.avail_in;
|
|
1247
|
-
hold = state.hold;
|
|
1248
|
-
bits = state.bits;
|
|
1249
|
-
//---
|
|
1250
|
-
if (state.mode === TYPE) {
|
|
1251
|
-
state.back = -1;
|
|
1252
|
-
}
|
|
1253
|
-
break;
|
|
1254
|
-
}
|
|
1255
|
-
state.back = 0;
|
|
1256
|
-
for (;;) {
|
|
1257
|
-
here = state
|
|
1258
|
-
.lencode[hold & ((1 << state.lenbits) - 1)]; /*BITS(state.lenbits)*/
|
|
1259
|
-
here_bits = here >>> 24;
|
|
1260
|
-
here_op = (here >>> 16) & 0xff;
|
|
1261
|
-
here_val = here & 0xffff;
|
|
1262
|
-
if (here_bits <= bits)
|
|
1263
|
-
break;
|
|
1264
|
-
//--- PULLBYTE() ---//
|
|
1265
|
-
if (have === 0)
|
|
1266
|
-
break inf_leave;
|
|
1267
|
-
have--;
|
|
1268
|
-
hold += input[next++] << bits;
|
|
1269
|
-
bits += 8;
|
|
1270
|
-
//---//
|
|
1271
|
-
}
|
|
1272
|
-
if (here_op && (here_op & 0xf0) === 0) {
|
|
1273
|
-
last_bits = here_bits;
|
|
1274
|
-
last_op = here_op;
|
|
1275
|
-
last_val = here_val;
|
|
1276
|
-
for (;;) {
|
|
1277
|
-
here = state.lencode[last_val +
|
|
1278
|
-
((hold &
|
|
1279
|
-
((1 << (last_bits + last_op)) -
|
|
1280
|
-
1)) /*BITS(last.bits + last.op)*/ >> last_bits)];
|
|
1281
|
-
here_bits = here >>> 24;
|
|
1282
|
-
here_op = (here >>> 16) & 0xff;
|
|
1283
|
-
here_val = here & 0xffff;
|
|
1284
|
-
if ((last_bits + here_bits) <= bits)
|
|
1285
|
-
break;
|
|
1286
|
-
//--- PULLBYTE() ---//
|
|
1287
|
-
if (have === 0)
|
|
1288
|
-
break inf_leave;
|
|
1289
|
-
have--;
|
|
1290
|
-
hold += input[next++] << bits;
|
|
1291
|
-
bits += 8;
|
|
1292
|
-
//---//
|
|
1293
|
-
}
|
|
1294
|
-
//--- DROPBITS(last.bits) ---//
|
|
1295
|
-
hold >>>= last_bits;
|
|
1296
|
-
bits -= last_bits;
|
|
1297
|
-
//---//
|
|
1298
|
-
state.back += last_bits;
|
|
1299
|
-
}
|
|
1300
|
-
//--- DROPBITS(here.bits) ---//
|
|
1301
|
-
hold >>>= here_bits;
|
|
1302
|
-
bits -= here_bits;
|
|
1303
|
-
//---//
|
|
1304
|
-
state.back += here_bits;
|
|
1305
|
-
state.length = here_val;
|
|
1306
|
-
if (here_op === 0) {
|
|
1307
|
-
//Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
|
|
1308
|
-
// "inflate: literal '%c'\n" :
|
|
1309
|
-
// "inflate: literal 0x%02x\n", here.val));
|
|
1310
|
-
state.mode = LIT;
|
|
1311
|
-
break;
|
|
1312
|
-
}
|
|
1313
|
-
if (here_op & 32) {
|
|
1314
|
-
//Tracevv((stderr, "inflate: end of block\n"));
|
|
1315
|
-
state.back = -1;
|
|
1316
|
-
state.mode = TYPE;
|
|
1317
|
-
break;
|
|
1318
|
-
}
|
|
1319
|
-
if (here_op & 64) {
|
|
1320
|
-
strm.msg = "invalid literal/length code";
|
|
1321
|
-
state.mode = BAD;
|
|
1322
|
-
break;
|
|
1323
|
-
}
|
|
1324
|
-
state.extra = here_op & 15;
|
|
1325
|
-
state.mode = LENEXT;
|
|
1326
|
-
/* falls through */
|
|
1327
|
-
case LENEXT:
|
|
1328
|
-
if (state.extra) {
|
|
1329
|
-
//=== NEEDBITS(state.extra);
|
|
1330
|
-
n = state.extra;
|
|
1331
|
-
while (bits < n) {
|
|
1332
|
-
if (have === 0)
|
|
1333
|
-
break inf_leave;
|
|
1334
|
-
have--;
|
|
1335
|
-
hold += input[next++] << bits;
|
|
1336
|
-
bits += 8;
|
|
1337
|
-
}
|
|
1338
|
-
//===//
|
|
1339
|
-
state.length += hold & ((1 << state.extra) - 1) /*BITS(state.extra)*/;
|
|
1340
|
-
//--- DROPBITS(state.extra) ---//
|
|
1341
|
-
hold >>>= state.extra;
|
|
1342
|
-
bits -= state.extra;
|
|
1343
|
-
//---//
|
|
1344
|
-
state.back += state.extra;
|
|
1345
|
-
}
|
|
1346
|
-
//Tracevv((stderr, "inflate: length %u\n", state.length));
|
|
1347
|
-
state.was = state.length;
|
|
1348
|
-
state.mode = DIST;
|
|
1349
|
-
/* falls through */
|
|
1350
|
-
case DIST:
|
|
1351
|
-
for (;;) {
|
|
1352
|
-
here = state
|
|
1353
|
-
.distcode[hold & ((1 << state.distbits) - 1)]; /*BITS(state.distbits)*/
|
|
1354
|
-
here_bits = here >>> 24;
|
|
1355
|
-
here_op = (here >>> 16) & 0xff;
|
|
1356
|
-
here_val = here & 0xffff;
|
|
1357
|
-
if (here_bits <= bits)
|
|
1358
|
-
break;
|
|
1359
|
-
//--- PULLBYTE() ---//
|
|
1360
|
-
if (have === 0)
|
|
1361
|
-
break inf_leave;
|
|
1362
|
-
have--;
|
|
1363
|
-
hold += input[next++] << bits;
|
|
1364
|
-
bits += 8;
|
|
1365
|
-
//---//
|
|
1366
|
-
}
|
|
1367
|
-
if ((here_op & 0xf0) === 0) {
|
|
1368
|
-
last_bits = here_bits;
|
|
1369
|
-
last_op = here_op;
|
|
1370
|
-
last_val = here_val;
|
|
1371
|
-
for (;;) {
|
|
1372
|
-
here = state.distcode[last_val +
|
|
1373
|
-
((hold &
|
|
1374
|
-
((1 << (last_bits + last_op)) -
|
|
1375
|
-
1)) /*BITS(last.bits + last.op)*/ >> last_bits)];
|
|
1376
|
-
here_bits = here >>> 24;
|
|
1377
|
-
here_op = (here >>> 16) & 0xff;
|
|
1378
|
-
here_val = here & 0xffff;
|
|
1379
|
-
if ((last_bits + here_bits) <= bits)
|
|
1380
|
-
break;
|
|
1381
|
-
//--- PULLBYTE() ---//
|
|
1382
|
-
if (have === 0)
|
|
1383
|
-
break inf_leave;
|
|
1384
|
-
have--;
|
|
1385
|
-
hold += input[next++] << bits;
|
|
1386
|
-
bits += 8;
|
|
1387
|
-
//---//
|
|
1388
|
-
}
|
|
1389
|
-
//--- DROPBITS(last.bits) ---//
|
|
1390
|
-
hold >>>= last_bits;
|
|
1391
|
-
bits -= last_bits;
|
|
1392
|
-
//---//
|
|
1393
|
-
state.back += last_bits;
|
|
1394
|
-
}
|
|
1395
|
-
//--- DROPBITS(here.bits) ---//
|
|
1396
|
-
hold >>>= here_bits;
|
|
1397
|
-
bits -= here_bits;
|
|
1398
|
-
//---//
|
|
1399
|
-
state.back += here_bits;
|
|
1400
|
-
if (here_op & 64) {
|
|
1401
|
-
strm.msg = "invalid distance code";
|
|
1402
|
-
state.mode = BAD;
|
|
1403
|
-
break;
|
|
1404
|
-
}
|
|
1405
|
-
state.offset = here_val;
|
|
1406
|
-
state.extra = here_op & 15;
|
|
1407
|
-
state.mode = DISTEXT;
|
|
1408
|
-
/* falls through */
|
|
1409
|
-
case DISTEXT:
|
|
1410
|
-
if (state.extra) {
|
|
1411
|
-
//=== NEEDBITS(state.extra);
|
|
1412
|
-
n = state.extra;
|
|
1413
|
-
while (bits < n) {
|
|
1414
|
-
if (have === 0)
|
|
1415
|
-
break inf_leave;
|
|
1416
|
-
have--;
|
|
1417
|
-
hold += input[next++] << bits;
|
|
1418
|
-
bits += 8;
|
|
1419
|
-
}
|
|
1420
|
-
//===//
|
|
1421
|
-
state.offset += hold & ((1 << state.extra) - 1) /*BITS(state.extra)*/;
|
|
1422
|
-
//--- DROPBITS(state.extra) ---//
|
|
1423
|
-
hold >>>= state.extra;
|
|
1424
|
-
bits -= state.extra;
|
|
1425
|
-
//---//
|
|
1426
|
-
state.back += state.extra;
|
|
1427
|
-
}
|
|
1428
|
-
//#ifdef INFLATE_STRICT
|
|
1429
|
-
if (state.offset > state.dmax) {
|
|
1430
|
-
strm.msg = "invalid distance too far back";
|
|
1431
|
-
state.mode = BAD;
|
|
1432
|
-
break;
|
|
1433
|
-
}
|
|
1434
|
-
//#endif
|
|
1435
|
-
//Tracevv((stderr, "inflate: distance %u\n", state.offset));
|
|
1436
|
-
state.mode = MATCH;
|
|
1437
|
-
/* falls through */
|
|
1438
|
-
case MATCH:
|
|
1439
|
-
if (left === 0)
|
|
1440
|
-
break inf_leave;
|
|
1441
|
-
copy = _out - left;
|
|
1442
|
-
if (state.offset > copy) {
|
|
1443
|
-
/* copy from window */
|
|
1444
|
-
copy = state.offset - copy;
|
|
1445
|
-
if (copy > state.whave) {
|
|
1446
|
-
if (state.sane) {
|
|
1447
|
-
strm.msg = "invalid distance too far back";
|
|
1448
|
-
state.mode = BAD;
|
|
1449
|
-
break;
|
|
1450
|
-
}
|
|
1451
|
-
// (!) This block is disabled in zlib defaults,
|
|
1452
|
-
// don't enable it for binary compatibility
|
|
1453
|
-
//#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
|
|
1454
|
-
// Trace((stderr, "inflate.c too far\n"));
|
|
1455
|
-
// copy -= state.whave;
|
|
1456
|
-
// if (copy > state.length) { copy = state.length; }
|
|
1457
|
-
// if (copy > left) { copy = left; }
|
|
1458
|
-
// left -= copy;
|
|
1459
|
-
// state.length -= copy;
|
|
1460
|
-
// do {
|
|
1461
|
-
// output[put++] = 0;
|
|
1462
|
-
// } while (--copy);
|
|
1463
|
-
// if (state.length === 0) { state.mode = LEN; }
|
|
1464
|
-
// break;
|
|
1465
|
-
//#endif
|
|
1466
|
-
}
|
|
1467
|
-
if (copy > state.wnext) {
|
|
1468
|
-
copy -= state.wnext;
|
|
1469
|
-
from = state.wsize - copy;
|
|
1470
|
-
}
|
|
1471
|
-
else {
|
|
1472
|
-
from = state.wnext - copy;
|
|
1473
|
-
}
|
|
1474
|
-
if (copy > state.length)
|
|
1475
|
-
copy = state.length;
|
|
1476
|
-
from_source = state.window;
|
|
1477
|
-
}
|
|
1478
|
-
else {
|
|
1479
|
-
/* copy from output */
|
|
1480
|
-
from_source = output;
|
|
1481
|
-
from = put - state.offset;
|
|
1482
|
-
copy = state.length;
|
|
1483
|
-
}
|
|
1484
|
-
if (copy > left)
|
|
1485
|
-
copy = left;
|
|
1486
|
-
left -= copy;
|
|
1487
|
-
state.length -= copy;
|
|
1488
|
-
do {
|
|
1489
|
-
output[put++] = from_source[from++];
|
|
1490
|
-
} while (--copy);
|
|
1491
|
-
if (state.length === 0)
|
|
1492
|
-
state.mode = LEN;
|
|
1493
|
-
break;
|
|
1494
|
-
case LIT:
|
|
1495
|
-
if (left === 0)
|
|
1496
|
-
break inf_leave;
|
|
1497
|
-
output[put++] = state.length;
|
|
1498
|
-
left--;
|
|
1499
|
-
state.mode = LEN;
|
|
1500
|
-
break;
|
|
1501
|
-
case CHECK:
|
|
1502
|
-
if (state.wrap) {
|
|
1503
|
-
//=== NEEDBITS(32);
|
|
1504
|
-
while (bits < 32) {
|
|
1505
|
-
if (have === 0)
|
|
1506
|
-
break inf_leave;
|
|
1507
|
-
have--;
|
|
1508
|
-
// Use '|' instead of '+' to make sure that result is signed
|
|
1509
|
-
hold |= input[next++] << bits;
|
|
1510
|
-
bits += 8;
|
|
1511
|
-
}
|
|
1512
|
-
//===//
|
|
1513
|
-
_out -= left;
|
|
1514
|
-
strm.total_out += _out;
|
|
1515
|
-
state.total += _out;
|
|
1516
|
-
if (_out) {
|
|
1517
|
-
strm.adler =
|
|
1518
|
-
state.check =
|
|
1519
|
-
/*UPDATE(state.check, put - _out, _out);*/
|
|
1520
|
-
state.flags
|
|
1521
|
-
? (0, crc32_js_1.crc32)(state.check, output, _out, put - _out)
|
|
1522
|
-
: (0, adler32_js_1.default)(state.check, output, _out, put - _out);
|
|
1523
|
-
}
|
|
1524
|
-
_out = left;
|
|
1525
|
-
// NB: crc32 stored as signed 32-bit int, zswap32 returns signed too
|
|
1526
|
-
if ((state.flags ? hold : zswap32(hold)) !== state.check) {
|
|
1527
|
-
strm.msg = "incorrect data check";
|
|
1528
|
-
state.mode = BAD;
|
|
1529
|
-
break;
|
|
1530
|
-
}
|
|
1531
|
-
//=== INITBITS();
|
|
1532
|
-
hold = 0;
|
|
1533
|
-
bits = 0;
|
|
1534
|
-
//===//
|
|
1535
|
-
//Tracev((stderr, "inflate: check matches trailer\n"));
|
|
1536
|
-
}
|
|
1537
|
-
state.mode = LENGTH;
|
|
1538
|
-
/* falls through */
|
|
1539
|
-
case LENGTH:
|
|
1540
|
-
if (state.wrap && state.flags) {
|
|
1541
|
-
//=== NEEDBITS(32);
|
|
1542
|
-
while (bits < 32) {
|
|
1543
|
-
if (have === 0)
|
|
1544
|
-
break inf_leave;
|
|
1545
|
-
have--;
|
|
1546
|
-
hold += input[next++] << bits;
|
|
1547
|
-
bits += 8;
|
|
1548
|
-
}
|
|
1549
|
-
//===//
|
|
1550
|
-
if (hold !== (state.total & 0xffffffff)) {
|
|
1551
|
-
strm.msg = "incorrect length check";
|
|
1552
|
-
state.mode = BAD;
|
|
1553
|
-
break;
|
|
1554
|
-
}
|
|
1555
|
-
//=== INITBITS();
|
|
1556
|
-
hold = 0;
|
|
1557
|
-
bits = 0;
|
|
1558
|
-
//===//
|
|
1559
|
-
//Tracev((stderr, "inflate: length matches trailer\n"));
|
|
1560
|
-
}
|
|
1561
|
-
state.mode = DONE;
|
|
1562
|
-
/* falls through */
|
|
1563
|
-
case DONE:
|
|
1564
|
-
ret = Z_STREAM_END;
|
|
1565
|
-
break inf_leave;
|
|
1566
|
-
case BAD:
|
|
1567
|
-
ret = Z_DATA_ERROR;
|
|
1568
|
-
break inf_leave;
|
|
1569
|
-
case MEM:
|
|
1570
|
-
return Z_MEM_ERROR;
|
|
1571
|
-
case SYNC:
|
|
1572
|
-
/* falls through */
|
|
1573
|
-
default:
|
|
1574
|
-
return Z_STREAM_ERROR;
|
|
1575
|
-
}
|
|
1576
|
-
}
|
|
1577
|
-
// inf_leave <- here is real place for "goto inf_leave", emulated via "break inf_leave"
|
|
1578
|
-
/*
|
|
1579
|
-
Return from inflate(), updating the total counts and the check value.
|
|
1580
|
-
If there was no progress during the inflate() call, return a buffer
|
|
1581
|
-
error. Call updatewindow() to create and/or update the window state.
|
|
1582
|
-
Note: a memory error from inflate() is non-recoverable.
|
|
1583
|
-
*/
|
|
1584
|
-
//--- RESTORE() ---
|
|
1585
|
-
strm.next_out = put;
|
|
1586
|
-
strm.avail_out = left;
|
|
1587
|
-
strm.next_in = next;
|
|
1588
|
-
strm.avail_in = have;
|
|
1589
|
-
state.hold = hold;
|
|
1590
|
-
state.bits = bits;
|
|
1591
|
-
//---
|
|
1592
|
-
if (state.wsize || (_out !== strm.avail_out && state.mode < BAD &&
|
|
1593
|
-
(state.mode < CHECK || flush !== Z_FINISH))) {
|
|
1594
|
-
if (updatewindow(strm, strm.output, strm.next_out, _out - strm.avail_out)) {
|
|
1595
|
-
state.mode = MEM;
|
|
1596
|
-
return Z_MEM_ERROR;
|
|
1597
|
-
}
|
|
1598
|
-
}
|
|
1599
|
-
_in -= strm.avail_in;
|
|
1600
|
-
_out -= strm.avail_out;
|
|
1601
|
-
strm.total_in += _in;
|
|
1602
|
-
strm.total_out += _out;
|
|
1603
|
-
state.total += _out;
|
|
1604
|
-
if (state.wrap && _out) {
|
|
1605
|
-
strm.adler =
|
|
1606
|
-
state
|
|
1607
|
-
.check = /*UPDATE(state.check, strm.next_out - _out, _out);*/
|
|
1608
|
-
state.flags
|
|
1609
|
-
? (0, crc32_js_1.crc32)(state.check, output, _out, strm.next_out - _out)
|
|
1610
|
-
: (0, adler32_js_1.default)(state.check, output, _out, strm.next_out - _out);
|
|
1611
|
-
}
|
|
1612
|
-
strm.data_type = state.bits + (state.last ? 64 : 0) +
|
|
1613
|
-
(state.mode === TYPE ? 128 : 0) +
|
|
1614
|
-
(state.mode === LEN_ || state.mode === COPY_ ? 256 : 0);
|
|
1615
|
-
if (((_in === 0 && _out === 0) || flush === Z_FINISH) && ret === Z_OK) {
|
|
1616
|
-
ret = Z_BUF_ERROR;
|
|
1617
|
-
}
|
|
1618
|
-
return ret;
|
|
1619
|
-
}
|
|
1620
|
-
function inflateEnd(strm) {
|
|
1621
|
-
if (!strm || !strm.state /*|| strm->zfree == (free_func)0*/) {
|
|
1622
|
-
return Z_STREAM_ERROR;
|
|
1623
|
-
}
|
|
1624
|
-
let state = strm.state;
|
|
1625
|
-
if (state.window) {
|
|
1626
|
-
state.window = null;
|
|
1627
|
-
}
|
|
1628
|
-
strm.state = null;
|
|
1629
|
-
return Z_OK;
|
|
1630
|
-
}
|
|
1631
|
-
function inflateGetHeader(strm, head) {
|
|
1632
|
-
let state;
|
|
1633
|
-
/* check state */
|
|
1634
|
-
if (!strm || !strm.state)
|
|
1635
|
-
return Z_STREAM_ERROR;
|
|
1636
|
-
state = strm.state;
|
|
1637
|
-
if ((state.wrap & 2) === 0)
|
|
1638
|
-
return Z_STREAM_ERROR;
|
|
1639
|
-
/* save header structure */
|
|
1640
|
-
state.head = head;
|
|
1641
|
-
head.done = false;
|
|
1642
|
-
return Z_OK;
|
|
1643
|
-
}
|
|
1644
|
-
function inflateSetDictionary(strm, dictionary) {
|
|
1645
|
-
let dictLength = dictionary.length;
|
|
1646
|
-
let state;
|
|
1647
|
-
let dictid;
|
|
1648
|
-
let ret;
|
|
1649
|
-
/* check state */
|
|
1650
|
-
if (!strm /* == Z_NULL */ || !strm.state /* == Z_NULL */) {
|
|
1651
|
-
return Z_STREAM_ERROR;
|
|
1652
|
-
}
|
|
1653
|
-
state = strm.state;
|
|
1654
|
-
if (state.wrap !== 0 && state.mode !== DICT) {
|
|
1655
|
-
return Z_STREAM_ERROR;
|
|
1656
|
-
}
|
|
1657
|
-
/* check for correct dictionary identifier */
|
|
1658
|
-
if (state.mode === DICT) {
|
|
1659
|
-
dictid = 1; /* adler32(0, null, 0)*/
|
|
1660
|
-
/* dictid = adler32(dictid, dictionary, dictLength); */
|
|
1661
|
-
dictid = (0, adler32_js_1.default)(dictid, dictionary, dictLength, 0);
|
|
1662
|
-
if (dictid !== state.check) {
|
|
1663
|
-
return Z_DATA_ERROR;
|
|
1664
|
-
}
|
|
1665
|
-
}
|
|
1666
|
-
/* copy dictionary to window using updatewindow(), which will amend the
|
|
1667
|
-
existing dictionary if appropriate */
|
|
1668
|
-
ret = updatewindow(strm, dictionary, dictLength, dictLength);
|
|
1669
|
-
if (ret) {
|
|
1670
|
-
state.mode = MEM;
|
|
1671
|
-
return Z_MEM_ERROR;
|
|
1672
|
-
}
|
|
1673
|
-
state.havedict = 1;
|
|
1674
|
-
// Tracev((stderr, "inflate: dictionary set\n"));
|
|
1675
|
-
return Z_OK;
|
|
1676
|
-
}
|