@mtkruto/node 0.1.151 → 0.1.153
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/esm/0_deps.d.ts +4 -4
- package/esm/0_deps.js +5 -5
- package/esm/3_types.d.ts +11 -0
- package/esm/3_types.js +11 -0
- package/esm/4_constants.d.ts +1 -1
- package/esm/4_constants.js +1 -1
- package/esm/client/0_params.d.ts +20 -5
- package/esm/client/0_types.d.ts +3 -2
- package/esm/client/1_account_manager.d.ts +11 -0
- package/esm/client/1_account_manager.js +76 -0
- package/esm/client/1_update_manager.js +65 -29
- package/esm/client/2_message_manager.d.ts +43 -3
- package/esm/client/2_message_manager.js +130 -40
- package/esm/client/3_story_manager.d.ts +28 -0
- package/esm/client/3_story_manager.js +152 -0
- package/esm/client/4_client.d.ts +194 -60
- package/esm/client/4_client.js +245 -59
- package/{script/deps/deno.land/std@0.214.0 → esm/deps/deno.land/std@0.216.0}/fmt/colors.d.ts +3 -0
- package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/fmt/colors.js +3 -0
- package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/glob_to_regexp.d.ts +1 -0
- package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/join_globs.d.ts +1 -0
- package/{script/deps/deno.land/std@0.214.0 → esm/deps/deno.land/std@0.216.0}/path/mod.d.ts +0 -9
- package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/mod.js +0 -10
- package/{script/deps/deno.land/std@0.214.0 → esm/deps/deno.land/std@0.216.0}/path/normalize_glob.d.ts +1 -0
- package/{script/deps/deno.land/std@0.214.0 → esm/deps/deno.land/std@0.216.0}/path/posix/join_globs.d.ts +1 -0
- package/{script/deps/deno.land/std@0.214.0 → esm/deps/deno.land/std@0.216.0}/path/posix/mod.d.ts +0 -9
- package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/mod.js +0 -9
- package/{script/deps/deno.land/std@0.214.0 → esm/deps/deno.land/std@0.216.0}/path/posix/normalize_glob.d.ts +1 -0
- package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/join_globs.d.ts +1 -0
- package/esm/deps/deno.land/{std@0.214.0/path/posix → std@0.216.0/path/windows}/mod.d.ts +0 -9
- package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/mod.js +0 -9
- package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/normalize_glob.d.ts +1 -0
- package/esm/tl/3_utilities.d.ts +7 -1
- package/esm/tl/3_utilities.js +3 -3
- package/esm/types/0_id.d.ts +2 -2
- package/esm/types/0_link_preview.d.ts +15 -0
- package/esm/types/0_link_preview.js +9 -0
- package/esm/types/0_message_search_filter.d.ts +2 -0
- package/esm/types/0_message_search_filter.js +36 -0
- package/esm/types/0_story_reference.d.ts +5 -0
- package/esm/types/0_story_reference.js +1 -0
- package/esm/types/0_venue.d.ts +1 -1
- package/esm/types/1__getters.d.ts +2 -2
- package/esm/types/1_input_message_content.d.ts +6 -1
- package/esm/types/1_input_story_content.d.ts +15 -0
- package/esm/types/1_input_story_content.js +1 -0
- package/esm/types/1_story_interactive_area.d.ts +41 -0
- package/esm/types/1_story_interactive_area.js +98 -0
- package/esm/types/1_story_privacy.d.ts +22 -0
- package/esm/types/1_story_privacy.js +57 -0
- package/esm/types/1_story_reaction.d.ts +12 -0
- package/esm/types/1_story_reaction.js +7 -0
- package/esm/types/2_inactive_chat.d.ts +7 -0
- package/esm/types/2_inactive_chat.js +13 -0
- package/esm/types/2_message_interactions.d.ts +1 -1
- package/esm/types/2_story_content.d.ts +18 -0
- package/esm/types/2_story_content.js +35 -0
- package/esm/types/2_story_interactions.d.ts +10 -0
- package/esm/types/2_story_interactions.js +8 -0
- package/esm/types/3_story.d.ts +24 -0
- package/esm/types/3_story.js +37 -0
- package/esm/types/4_inline_query_result.js +25 -6
- package/esm/types/4_message.d.ts +74 -2
- package/esm/types/4_message.js +15 -6
- package/esm/types/6_update.d.ts +20 -2
- package/package.json +1 -1
- package/script/0_deps.d.ts +4 -4
- package/script/0_deps.js +5 -5
- package/script/3_types.d.ts +11 -0
- package/script/3_types.js +11 -0
- package/script/4_constants.d.ts +1 -1
- package/script/4_constants.js +1 -1
- package/script/client/0_params.d.ts +20 -5
- package/script/client/0_types.d.ts +3 -2
- package/script/client/1_account_manager.d.ts +11 -0
- package/script/client/1_account_manager.js +80 -0
- package/script/client/1_update_manager.js +65 -29
- package/script/client/2_message_manager.d.ts +43 -3
- package/script/client/2_message_manager.js +130 -40
- package/script/client/3_story_manager.d.ts +28 -0
- package/script/client/3_story_manager.js +156 -0
- package/script/client/4_client.d.ts +194 -60
- package/script/client/4_client.js +245 -59
- package/{esm/deps/deno.land/std@0.214.0 → script/deps/deno.land/std@0.216.0}/fmt/colors.d.ts +3 -0
- package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/fmt/colors.js +3 -0
- package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/glob_to_regexp.d.ts +1 -0
- package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/join_globs.d.ts +1 -0
- package/{esm/deps/deno.land/std@0.214.0 → script/deps/deno.land/std@0.216.0}/path/mod.d.ts +0 -9
- package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/mod.js +1 -11
- package/{esm/deps/deno.land/std@0.214.0 → script/deps/deno.land/std@0.216.0}/path/normalize_glob.d.ts +1 -0
- package/{esm/deps/deno.land/std@0.214.0 → script/deps/deno.land/std@0.216.0}/path/posix/join_globs.d.ts +1 -0
- package/script/deps/deno.land/{std@0.214.0/path/windows → std@0.216.0/path/posix}/mod.d.ts +0 -9
- package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/mod.js +0 -10
- package/{esm/deps/deno.land/std@0.214.0 → script/deps/deno.land/std@0.216.0}/path/posix/normalize_glob.d.ts +1 -0
- package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/join_globs.d.ts +1 -0
- package/{esm/deps/deno.land/std@0.214.0 → script/deps/deno.land/std@0.216.0}/path/windows/mod.d.ts +0 -9
- package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/mod.js +0 -10
- package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/normalize_glob.d.ts +1 -0
- package/script/tl/3_utilities.d.ts +7 -1
- package/script/tl/3_utilities.js +3 -3
- package/script/types/0_id.d.ts +2 -2
- package/script/types/0_link_preview.d.ts +15 -0
- package/script/types/0_link_preview.js +13 -0
- package/script/types/0_message_search_filter.d.ts +2 -0
- package/script/types/0_message_search_filter.js +40 -0
- package/script/types/0_story_reference.d.ts +5 -0
- package/script/types/0_story_reference.js +2 -0
- package/script/types/0_venue.d.ts +1 -1
- package/script/types/1__getters.d.ts +2 -2
- package/script/types/1_input_message_content.d.ts +6 -1
- package/script/types/1_input_story_content.d.ts +15 -0
- package/script/types/1_input_story_content.js +2 -0
- package/script/types/1_story_interactive_area.d.ts +41 -0
- package/script/types/1_story_interactive_area.js +103 -0
- package/script/types/1_story_privacy.d.ts +22 -0
- package/script/types/1_story_privacy.js +62 -0
- package/script/types/1_story_reaction.d.ts +12 -0
- package/script/types/1_story_reaction.js +11 -0
- package/script/types/2_inactive_chat.d.ts +7 -0
- package/script/types/2_inactive_chat.js +17 -0
- package/script/types/2_message_interactions.d.ts +1 -1
- package/script/types/2_story_content.d.ts +18 -0
- package/script/types/2_story_content.js +39 -0
- package/script/types/2_story_interactions.d.ts +10 -0
- package/script/types/2_story_interactions.js +12 -0
- package/script/types/3_story.d.ts +24 -0
- package/script/types/3_story.js +41 -0
- package/script/types/4_inline_query_result.js +25 -6
- package/script/types/4_message.d.ts +74 -2
- package/script/types/4_message.js +15 -6
- package/script/types/6_update.d.ts +20 -2
- package/esm/deps/deno.land/std@0.214.0/path/posix/separator.d.ts +0 -8
- package/esm/deps/deno.land/std@0.214.0/path/posix/separator.js +0 -10
- package/esm/deps/deno.land/std@0.214.0/path/separator.d.ts +0 -8
- package/esm/deps/deno.land/std@0.214.0/path/separator.js +0 -11
- package/esm/deps/deno.land/std@0.214.0/path/windows/separator.d.ts +0 -8
- package/esm/deps/deno.land/std@0.214.0/path/windows/separator.js +0 -10
- package/script/deps/deno.land/std@0.214.0/path/posix/separator.d.ts +0 -8
- package/script/deps/deno.land/std@0.214.0/path/posix/separator.js +0 -13
- package/script/deps/deno.land/std@0.214.0/path/separator.d.ts +0 -8
- package/script/deps/deno.land/std@0.214.0/path/separator.js +0 -14
- package/script/deps/deno.land/std@0.214.0/path/windows/separator.d.ts +0 -8
- package/script/deps/deno.land/std@0.214.0/path/windows/separator.js +0 -13
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/_constants.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/_constants.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/_diff.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/_diff.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/_format.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/_format.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_almost_equals.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_almost_equals.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_array_includes.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_array_includes.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_equals.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_equals.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_exists.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_exists.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_false.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_false.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_greater.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_greater.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_greater_or_equal.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_greater_or_equal.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_instance_of.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_instance_of.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_is_error.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_is_error.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_less.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_less.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_less_or_equal.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_less_or_equal.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_match.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_match.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_not_equals.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_not_equals.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_not_instance_of.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_not_instance_of.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_not_match.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_not_match.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_not_strict_equals.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_not_strict_equals.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_object_match.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_object_match.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_rejects.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_rejects.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_strict_equals.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_strict_equals.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_string_includes.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_string_includes.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_throws.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_throws.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assertion_error.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assertion_error.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/equal.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/equal.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/fail.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/fail.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/mod.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/mod.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/unimplemented.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/unimplemented.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/unreachable.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/unreachable.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/encoding/_util.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/encoding/_util.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/encoding/base64.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/encoding/base64.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/_db.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/_db.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/_util.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/_util.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/content_type.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/content_type.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/extension.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/extension.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/extensions_by_type.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/extensions_by_type.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/format_media_type.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/format_media_type.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/get_charset.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/get_charset.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/parse_media_type.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/parse_media_type.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/type_by_extension.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/type_by_extension.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/vendor/mime-db.v1.52.0.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/vendor/mime-db.v1.52.0.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/assert_path.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/assert_path.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/basename.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/basename.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/common.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/common.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/constants.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/constants.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/dirname.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/dirname.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/format.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/format.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/from_file_url.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/from_file_url.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/glob_to_reg_exp.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/glob_to_reg_exp.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/normalize.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/normalize.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/normalize_string.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/normalize_string.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/relative.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/relative.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/strip_trailing_separators.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/strip_trailing_separators.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/to_file_url.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/to_file_url.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_interface.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_interface.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_os.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_os.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/basename.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/basename.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/common.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/common.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/constants.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/constants.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/dirname.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/dirname.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/extname.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/extname.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/format.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/format.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/from_file_url.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/from_file_url.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/glob_to_regexp.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/is_absolute.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/is_absolute.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/is_glob.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/is_glob.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/join.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/join.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/join_globs.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/normalize.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/normalize.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/normalize_glob.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/parse.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/parse.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/_util.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/_util.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/basename.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/basename.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/common.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/common.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/constants.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/constants.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/dirname.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/dirname.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/extname.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/extname.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/format.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/format.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/from_file_url.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/from_file_url.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/glob_to_regexp.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/glob_to_regexp.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/is_absolute.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/is_absolute.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/is_glob.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/is_glob.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/join.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/join.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/join_globs.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/normalize.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/normalize.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/normalize_glob.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/parse.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/parse.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/relative.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/relative.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/resolve.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/resolve.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/to_file_url.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/to_file_url.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/to_namespaced_path.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/to_namespaced_path.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/relative.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/relative.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/resolve.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/resolve.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/to_file_url.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/to_file_url.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/to_namespaced_path.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/to_namespaced_path.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/_util.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/_util.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/basename.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/basename.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/common.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/common.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/constants.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/constants.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/dirname.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/dirname.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/extname.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/extname.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/format.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/format.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/from_file_url.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/from_file_url.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/glob_to_regexp.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/glob_to_regexp.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/is_absolute.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/is_absolute.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/is_glob.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/is_glob.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/join.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/join.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/join_globs.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/normalize.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/normalize.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/normalize_glob.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/parse.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/parse.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/relative.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/relative.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/resolve.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/resolve.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/to_file_url.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/to_file_url.js +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/to_namespaced_path.d.ts +0 -0
- /package/esm/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/to_namespaced_path.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/_constants.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/_constants.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/_diff.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/_diff.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/_format.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/_format.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_almost_equals.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_almost_equals.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_array_includes.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_array_includes.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_equals.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_equals.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_exists.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_exists.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_false.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_false.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_greater.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_greater.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_greater_or_equal.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_greater_or_equal.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_instance_of.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_instance_of.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_is_error.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_is_error.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_less.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_less.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_less_or_equal.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_less_or_equal.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_match.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_match.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_not_equals.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_not_equals.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_not_instance_of.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_not_instance_of.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_not_match.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_not_match.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_not_strict_equals.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_not_strict_equals.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_object_match.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_object_match.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_rejects.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_rejects.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_strict_equals.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_strict_equals.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_string_includes.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_string_includes.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_throws.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assert_throws.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assertion_error.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/assertion_error.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/equal.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/equal.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/fail.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/fail.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/mod.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/mod.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/unimplemented.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/unimplemented.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/unreachable.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/assert/unreachable.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/encoding/_util.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/encoding/_util.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/encoding/base64.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/encoding/base64.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/_db.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/_db.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/_util.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/_util.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/content_type.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/content_type.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/extension.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/extension.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/extensions_by_type.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/extensions_by_type.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/format_media_type.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/format_media_type.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/get_charset.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/get_charset.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/parse_media_type.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/parse_media_type.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/type_by_extension.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/type_by_extension.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/vendor/mime-db.v1.52.0.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/media_types/vendor/mime-db.v1.52.0.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/assert_path.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/assert_path.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/basename.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/basename.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/common.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/common.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/constants.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/constants.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/dirname.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/dirname.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/format.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/format.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/from_file_url.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/from_file_url.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/glob_to_reg_exp.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/glob_to_reg_exp.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/normalize.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/normalize.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/normalize_string.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/normalize_string.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/relative.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/relative.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/strip_trailing_separators.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/strip_trailing_separators.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/to_file_url.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_common/to_file_url.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_interface.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_interface.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_os.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/_os.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/basename.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/basename.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/common.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/common.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/constants.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/constants.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/dirname.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/dirname.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/extname.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/extname.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/format.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/format.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/from_file_url.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/from_file_url.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/glob_to_regexp.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/is_absolute.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/is_absolute.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/is_glob.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/is_glob.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/join.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/join.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/join_globs.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/normalize.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/normalize.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/normalize_glob.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/parse.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/parse.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/_util.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/_util.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/basename.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/basename.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/common.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/common.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/constants.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/constants.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/dirname.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/dirname.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/extname.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/extname.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/format.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/format.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/from_file_url.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/from_file_url.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/glob_to_regexp.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/glob_to_regexp.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/is_absolute.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/is_absolute.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/is_glob.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/is_glob.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/join.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/join.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/join_globs.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/normalize.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/normalize.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/normalize_glob.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/parse.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/parse.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/relative.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/relative.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/resolve.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/resolve.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/to_file_url.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/to_file_url.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/to_namespaced_path.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/posix/to_namespaced_path.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/relative.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/relative.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/resolve.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/resolve.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/to_file_url.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/to_file_url.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/to_namespaced_path.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/to_namespaced_path.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/_util.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/_util.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/basename.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/basename.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/common.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/common.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/constants.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/constants.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/dirname.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/dirname.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/extname.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/extname.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/format.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/format.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/from_file_url.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/from_file_url.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/glob_to_regexp.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/glob_to_regexp.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/is_absolute.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/is_absolute.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/is_glob.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/is_glob.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/join.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/join.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/join_globs.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/normalize.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/normalize.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/normalize_glob.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/parse.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/parse.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/relative.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/relative.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/resolve.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/resolve.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/to_file_url.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/to_file_url.js +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/to_namespaced_path.d.ts +0 -0
- /package/script/deps/deno.land/{std@0.214.0 → std@0.216.0}/path/windows/to_namespaced_path.js +0 -0
package/esm/client/4_client.d.ts
CHANGED
|
@@ -2,11 +2,12 @@ import { MaybePromise } from "../1_utilities.js";
|
|
|
2
2
|
import { functions, types } from "../2_tl.js";
|
|
3
3
|
import { Storage } from "../3_storage.js";
|
|
4
4
|
import { DC } from "../3_transport.js";
|
|
5
|
-
import {
|
|
5
|
+
import { InactiveChat } from "../3_types.js";
|
|
6
|
+
import { BotCommand, Chat, ChatAction, ChatMember, ChatP, Document, FileSource, ID, InlineQueryResult, InputStoryContent, Message, MessageAnimation, MessageAudio, MessageContact, MessageDice, MessageDocument, MessageLocation, MessagePhoto, MessagePoll, MessageText, MessageVenue, MessageVideo, MessageVideoNote, MessageVoice, NetworkStatistics, ParseMode, Reaction, Story, Update, UpdateIntersection, User } from "../3_types.js";
|
|
6
7
|
import { Migrate } from "../4_errors.js";
|
|
7
8
|
import { ClientAbstract } from "./0_client_abstract.js";
|
|
8
9
|
import { FilterQuery, WithFilter } from "./0_filters.js";
|
|
9
|
-
import { AddReactionParams, AnswerCallbackQueryParams, AnswerInlineQueryParams, AuthorizeUserParams, BanChatMemberParams, DeleteMessageParams, DeleteMessagesParams, DownloadParams, EditMessageParams, EditMessageReplyMarkupParams, ForwardMessagesParams, GetChatsParams, GetHistoryParams, GetMyCommandsParams, PinMessageParams, ReplyParams, SendAnimationParams, SendAudioParams, SendContactParams, SendDiceParams, SendDocumentParams, SendLocationParams, SendMessageParams, SendPhotoParams, SendPollParams, SendVenueParams, SendVideoNoteParams, SendVideoParams, SendVoiceParams, SetChatMemberRightsParams, SetChatPhotoParams, SetMyCommandsParams, SetReactionsParams, UploadParams } from "./0_params.js";
|
|
10
|
+
import { AddReactionParams, AnswerCallbackQueryParams, AnswerInlineQueryParams, AuthorizeUserParams, BanChatMemberParams, CreateStoryParams, DeleteMessageParams, DeleteMessagesParams, DownloadParams, EditMessageParams, EditMessageReplyMarkupParams, ForwardMessagesParams, GetChatsParams, GetHistoryParams, GetMyCommandsParams, PinMessageParams, ReplyParams, SearchMessagesParams, SendAnimationParams, SendAudioParams, SendContactParams, SendDiceParams, SendDocumentParams, SendLocationParams, SendMessageParams, SendPhotoParams, SendPollParams, SendVenueParams, SendVideoNoteParams, SendVideoParams, SendVoiceParams, SetChatMemberRightsParams, SetChatPhotoParams, SetMyCommandsParams, SetReactionsParams, UploadParams } from "./0_params.js";
|
|
10
11
|
import { Api } from "./0_types.js";
|
|
11
12
|
import { Composer, Middleware } from "./1_composer.js";
|
|
12
13
|
import { ClientPlainParams } from "./2_client_plain.js";
|
|
@@ -241,7 +242,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
241
242
|
* Alias for `invoke` with its second parameter being `true`.
|
|
242
243
|
*/
|
|
243
244
|
send<T extends (functions.Function<unknown> | types.Type) = functions.Function<unknown>>(function_: T): Promise<void>;
|
|
244
|
-
getInputPeer(id: ID): Promise<import("../tl/2_types.js").InputPeerChat_ | import("../tl/2_types.js").InputPeerUser_ | import("../tl/2_types.js").InputPeerChannel_>;
|
|
245
|
+
getInputPeer(id: ID): Promise<import("../tl/2_types.js").InputPeerSelf_ | import("../tl/2_types.js").InputPeerChat_ | import("../tl/2_types.js").InputPeerUser_ | import("../tl/2_types.js").InputPeerChannel_>;
|
|
245
246
|
getInputChannel(id: ID): Promise<import("../tl/2_types.js").InputChannel_>;
|
|
246
247
|
getInputUser(id: ID): Promise<import("../tl/2_types.js").InputUser_>;
|
|
247
248
|
private [getEntity];
|
|
@@ -260,7 +261,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
260
261
|
/**
|
|
261
262
|
* Send a text message.
|
|
262
263
|
*
|
|
263
|
-
* @method
|
|
264
|
+
* @method ms
|
|
264
265
|
* @param chatId The chat to send the message to.
|
|
265
266
|
* @param text The message's text.
|
|
266
267
|
* @returns The sent text message.
|
|
@@ -269,7 +270,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
269
270
|
/**
|
|
270
271
|
* Edit a message's text.
|
|
271
272
|
*
|
|
272
|
-
* @method
|
|
273
|
+
* @method ms
|
|
273
274
|
* @param chatId The identifier of the chat that contains the messages.
|
|
274
275
|
* @param messageId The message's identifier.
|
|
275
276
|
* @param text The new text of the message.
|
|
@@ -279,7 +280,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
279
280
|
/**
|
|
280
281
|
* Edit an inline message's text.
|
|
281
282
|
*
|
|
282
|
-
* @method
|
|
283
|
+
* @method ms
|
|
283
284
|
* @param inlineMessageId The inline message's identifier.
|
|
284
285
|
* @param text The new text of the message.
|
|
285
286
|
*/
|
|
@@ -287,7 +288,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
287
288
|
/**
|
|
288
289
|
* Edit a message's reply markup.
|
|
289
290
|
*
|
|
290
|
-
* @method
|
|
291
|
+
* @method ms
|
|
291
292
|
* @param chatId The identifier of the chat that contains the messages.
|
|
292
293
|
* @param messageId The message's identifier.
|
|
293
294
|
* @returns The edited message.
|
|
@@ -296,14 +297,14 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
296
297
|
/**
|
|
297
298
|
* Edit an inline message's reply markup.
|
|
298
299
|
*
|
|
299
|
-
* @method
|
|
300
|
+
* @method ms
|
|
300
301
|
* @param inlineMessageId The inline message's identifier.
|
|
301
302
|
*/
|
|
302
303
|
editInlineMessageReplyMarkup(inlineMessageId: string, params?: EditMessageReplyMarkupParams): Promise<void>;
|
|
303
304
|
/**
|
|
304
305
|
* Retrieve multiple messages.
|
|
305
306
|
*
|
|
306
|
-
* @method
|
|
307
|
+
* @method ms
|
|
307
308
|
* @param chatId The identifier of the chat to retrieve the messages from.
|
|
308
309
|
* @param messageIds The identifiers of the messages to retrieve.
|
|
309
310
|
* @example ```ts
|
|
@@ -315,7 +316,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
315
316
|
/**
|
|
316
317
|
* Retrieve a single message.
|
|
317
318
|
*
|
|
318
|
-
* @method
|
|
319
|
+
* @method ms
|
|
319
320
|
* @param chatId The identifier of the chat to retrieve the message from.
|
|
320
321
|
* @param messageId The identifier of the message to retrieve.
|
|
321
322
|
* @example ```ts
|
|
@@ -327,7 +328,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
327
328
|
/**
|
|
328
329
|
* Download a file.
|
|
329
330
|
*
|
|
330
|
-
* @method
|
|
331
|
+
* @method fs
|
|
331
332
|
* @param fileId The identifier of the file to download.
|
|
332
333
|
* @example ```ts
|
|
333
334
|
* for await (const chunk of client.download(fileId, { chunkSize: 256 * 1024 })) {
|
|
@@ -340,7 +341,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
340
341
|
/**
|
|
341
342
|
* Forward multiple messages.
|
|
342
343
|
*
|
|
343
|
-
* @method
|
|
344
|
+
* @method ms
|
|
344
345
|
* @param from The identifier of the chat to forward the messages from.
|
|
345
346
|
* @param to The identifier of the chat to forward the messages to.
|
|
346
347
|
* @param messageIds The identifiers of the messages to forward.
|
|
@@ -350,7 +351,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
350
351
|
/**
|
|
351
352
|
* Forward a single message.
|
|
352
353
|
*
|
|
353
|
-
* @method
|
|
354
|
+
* @method ms
|
|
354
355
|
* @param from The identifier of the chat to forward the message from.
|
|
355
356
|
* @param to The identifier of the chat to forward the message to.
|
|
356
357
|
* @param messageId The identifier of the message to forward.
|
|
@@ -360,20 +361,20 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
360
361
|
/**
|
|
361
362
|
* Get information on the currently authorized user.
|
|
362
363
|
*
|
|
363
|
-
* @method
|
|
364
|
+
* @method ac
|
|
364
365
|
*/
|
|
365
366
|
getMe(): Promise<User>;
|
|
366
367
|
/**
|
|
367
368
|
* Answer a callback query. Bot-only.
|
|
368
369
|
*
|
|
369
|
-
* @method
|
|
370
|
+
* @method cq
|
|
370
371
|
* @param id ID of the callback query to answer.
|
|
371
372
|
*/
|
|
372
373
|
answerCallbackQuery(id: string, params?: AnswerCallbackQueryParams): Promise<void>;
|
|
373
374
|
/**
|
|
374
375
|
* Send a poll.
|
|
375
376
|
*
|
|
376
|
-
* @method
|
|
377
|
+
* @method ms
|
|
377
378
|
* @param chatId The chat to send the poll to.
|
|
378
379
|
* @param question The poll's question.
|
|
379
380
|
* @param options The poll's options.
|
|
@@ -383,7 +384,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
383
384
|
/**
|
|
384
385
|
* Send a chat action.
|
|
385
386
|
*
|
|
386
|
-
* @method
|
|
387
|
+
* @method ms
|
|
387
388
|
* @param chatId The chat to send the chat action to.
|
|
388
389
|
* @param action The chat action.
|
|
389
390
|
* @param messageThreadId The thread to send the chat action to.
|
|
@@ -394,25 +395,27 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
394
395
|
/**
|
|
395
396
|
* Upload a file.
|
|
396
397
|
*
|
|
397
|
-
* @method
|
|
398
|
+
* @method fs
|
|
398
399
|
* @param contents The contents of the file.
|
|
399
400
|
*/
|
|
400
401
|
upload(contents: Uint8Array, params?: UploadParams): Promise<import("../tl/2_types.js").InputFile_ | import("../tl/2_types.js").InputFileBig_>;
|
|
401
402
|
/**
|
|
402
403
|
* Set the bot's commands in the given scope and/or language. Bot-only.
|
|
403
404
|
*
|
|
404
|
-
* @method
|
|
405
|
+
* @method bs
|
|
405
406
|
* @param commands The commands to set.
|
|
406
407
|
*/
|
|
407
408
|
setMyCommands(commands: BotCommand[], params?: SetMyCommandsParams): Promise<void>;
|
|
408
409
|
/**
|
|
409
410
|
* Get the bot's commands in the given scope and/or language. Bot-only.
|
|
411
|
+
*
|
|
412
|
+
* @method bs
|
|
410
413
|
*/
|
|
411
414
|
getMyCommands(params?: GetMyCommandsParams): Promise<BotCommand[]>;
|
|
412
415
|
/**
|
|
413
416
|
* Answer an inline query. Bot-only.
|
|
414
417
|
*
|
|
415
|
-
* @method
|
|
418
|
+
* @method iq
|
|
416
419
|
* @param id The ID of the inline query to answer.
|
|
417
420
|
* @param results The results to answer with.
|
|
418
421
|
*/
|
|
@@ -420,7 +423,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
420
423
|
/**
|
|
421
424
|
* Set the bot's description in the given language. Bot-only.
|
|
422
425
|
*
|
|
423
|
-
* @method
|
|
426
|
+
* @method bs
|
|
424
427
|
*/
|
|
425
428
|
setMyDescription(params?: {
|
|
426
429
|
description?: string;
|
|
@@ -429,7 +432,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
429
432
|
/**
|
|
430
433
|
* Set the bot's name in the given language. Bot-only.
|
|
431
434
|
*
|
|
432
|
-
* @method
|
|
435
|
+
* @method bs
|
|
433
436
|
*/
|
|
434
437
|
setMyName(params?: {
|
|
435
438
|
name?: string;
|
|
@@ -438,7 +441,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
438
441
|
/**
|
|
439
442
|
* Set the bot's short description in the given language. Bot-only.
|
|
440
443
|
*
|
|
441
|
-
* @method
|
|
444
|
+
* @method bs
|
|
442
445
|
*/
|
|
443
446
|
setMyShortDescription(params?: {
|
|
444
447
|
shortDescription?: string;
|
|
@@ -447,7 +450,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
447
450
|
/**
|
|
448
451
|
* Get the bot's description in the given language. Bot-only.
|
|
449
452
|
*
|
|
450
|
-
* @method
|
|
453
|
+
* @method bs
|
|
451
454
|
*/
|
|
452
455
|
getMyDescription(params?: {
|
|
453
456
|
languageCode?: string;
|
|
@@ -455,7 +458,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
455
458
|
/**
|
|
456
459
|
* Set the bot's name in the given language. Bot-only.
|
|
457
460
|
*
|
|
458
|
-
* @method
|
|
461
|
+
* @method bs
|
|
459
462
|
*/
|
|
460
463
|
getMyName(params?: {
|
|
461
464
|
languageCode?: string;
|
|
@@ -463,7 +466,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
463
466
|
/**
|
|
464
467
|
* Get the bot's short description in the given language. Bot-only.
|
|
465
468
|
*
|
|
466
|
-
* @method
|
|
469
|
+
* @method bs
|
|
467
470
|
*/
|
|
468
471
|
getMyShortDescription(params?: {
|
|
469
472
|
languageCode?: string;
|
|
@@ -471,15 +474,15 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
471
474
|
/**
|
|
472
475
|
* Delete multiple messages.
|
|
473
476
|
*
|
|
474
|
-
* @method
|
|
477
|
+
* @method ms
|
|
475
478
|
* @param chatId The identifier of the chat that contains the messages.
|
|
476
|
-
* @param messageIds The
|
|
479
|
+
* @param messageIds The identifiers of the messages to delete.
|
|
477
480
|
*/
|
|
478
481
|
deleteMessages(chatId: ID, messageIds: number[], params?: DeleteMessagesParams): Promise<void>;
|
|
479
482
|
/**
|
|
480
483
|
* Delete a single message.
|
|
481
484
|
*
|
|
482
|
-
* @method
|
|
485
|
+
* @method ms
|
|
483
486
|
* @param chatId The identifier of the chat that contains the message.
|
|
484
487
|
* @param messageId The identifier of the message to delete.
|
|
485
488
|
*/
|
|
@@ -487,7 +490,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
487
490
|
/**
|
|
488
491
|
* Send a photo.
|
|
489
492
|
*
|
|
490
|
-
* @method
|
|
493
|
+
* @method ms
|
|
491
494
|
* @param chatId The chat to send the photo to.
|
|
492
495
|
* @param photo The photo to send.
|
|
493
496
|
*/
|
|
@@ -495,7 +498,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
495
498
|
/**
|
|
496
499
|
* Send a document.
|
|
497
500
|
*
|
|
498
|
-
* @method
|
|
501
|
+
* @method ms
|
|
499
502
|
* @param chatId The chat to send the document to.
|
|
500
503
|
* @param document The document to send.
|
|
501
504
|
*/
|
|
@@ -503,7 +506,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
503
506
|
/**
|
|
504
507
|
* Send a video.
|
|
505
508
|
*
|
|
506
|
-
* @method
|
|
509
|
+
* @method ms
|
|
507
510
|
* @param chatId The chat to send the video to.
|
|
508
511
|
* @param video The video to send.
|
|
509
512
|
*/
|
|
@@ -511,7 +514,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
511
514
|
/**
|
|
512
515
|
* Send an animation.
|
|
513
516
|
*
|
|
514
|
-
* @method
|
|
517
|
+
* @method ms
|
|
515
518
|
* @param chatId The chat to send the animation to.
|
|
516
519
|
* @param animation The animation to send.
|
|
517
520
|
*/
|
|
@@ -519,7 +522,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
519
522
|
/**
|
|
520
523
|
* Send a voice message.
|
|
521
524
|
*
|
|
522
|
-
* @method
|
|
525
|
+
* @method ms
|
|
523
526
|
* @param chatId The chat to send the voice message to.
|
|
524
527
|
* @param voice The voice to send.
|
|
525
528
|
*/
|
|
@@ -527,7 +530,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
527
530
|
/**
|
|
528
531
|
* Send an audio file.
|
|
529
532
|
*
|
|
530
|
-
* @method
|
|
533
|
+
* @method ms
|
|
531
534
|
* @param chatId The chat to send the audio file to.
|
|
532
535
|
* @param audio The audio to send.
|
|
533
536
|
*/
|
|
@@ -535,7 +538,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
535
538
|
/**
|
|
536
539
|
* Send a video note.
|
|
537
540
|
*
|
|
538
|
-
* @method
|
|
541
|
+
* @method ms
|
|
539
542
|
* @param chatId The chat to send the video note to.
|
|
540
543
|
* @param videoNote The video note to send.
|
|
541
544
|
*/
|
|
@@ -543,7 +546,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
543
546
|
/**
|
|
544
547
|
* Send a location.
|
|
545
548
|
*
|
|
546
|
-
* @method
|
|
549
|
+
* @method ms
|
|
547
550
|
* @param chatId The chat to send the location to.
|
|
548
551
|
* @param latitude The location's latitude.
|
|
549
552
|
* @param longitude The location's longitude.
|
|
@@ -552,7 +555,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
552
555
|
/**
|
|
553
556
|
* Send a contact.
|
|
554
557
|
*
|
|
555
|
-
* @method
|
|
558
|
+
* @method ms
|
|
556
559
|
* @param chatId The chat to send the contact to.
|
|
557
560
|
* @param firstName The contact's first name.
|
|
558
561
|
* @param number The contact's phone number.
|
|
@@ -561,14 +564,14 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
561
564
|
/**
|
|
562
565
|
* Send a dice.
|
|
563
566
|
*
|
|
564
|
-
* @method
|
|
567
|
+
* @method ms
|
|
565
568
|
* @param chatId The chat to send the dice to.
|
|
566
569
|
*/
|
|
567
570
|
sendDice(chatId: ID, params?: SendDiceParams): Promise<MessageDice>;
|
|
568
571
|
/**
|
|
569
572
|
* Send a venue.
|
|
570
573
|
*
|
|
571
|
-
* @method
|
|
574
|
+
* @method ms
|
|
572
575
|
* @param chatId The chat to send the venue to.
|
|
573
576
|
* @param latitude The latitude of the venue.
|
|
574
577
|
* @param longitude The longitude of the venue.
|
|
@@ -579,39 +582,39 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
579
582
|
/**
|
|
580
583
|
* Get network statistics. This might not always be available.
|
|
581
584
|
*
|
|
582
|
-
* @method
|
|
585
|
+
* @method mc
|
|
583
586
|
*/
|
|
584
587
|
getNetworkStatistics(): Promise<NetworkStatistics>;
|
|
585
588
|
/**
|
|
586
589
|
* Get chats from a chat list. User-only.
|
|
587
590
|
*
|
|
588
|
-
* @method
|
|
591
|
+
* @method ch
|
|
589
592
|
*/
|
|
590
593
|
getChats(params?: GetChatsParams): Promise<Chat[]>;
|
|
591
594
|
/**
|
|
592
595
|
* Get a chat.
|
|
593
596
|
*
|
|
594
|
-
* @method
|
|
597
|
+
* @method ch
|
|
595
598
|
*/
|
|
596
599
|
getChat(chatId: ID): Promise<Chat>;
|
|
597
600
|
/**
|
|
598
601
|
* Get chat history. User-only.
|
|
599
602
|
*
|
|
600
|
-
* @method
|
|
603
|
+
* @method ch
|
|
601
604
|
* @param chatId The identifier of the chat to get its history.
|
|
602
605
|
*/
|
|
603
606
|
getHistory(chatId: ID, params?: GetHistoryParams): Promise<Message[]>;
|
|
604
607
|
/**
|
|
605
608
|
* Get custom emoji documents for download.
|
|
606
609
|
*
|
|
607
|
-
* @method
|
|
610
|
+
* @method fs
|
|
608
611
|
* @param id Identifier of one or more of custom emojis.
|
|
609
612
|
*/
|
|
610
613
|
getCustomEmojiDocuments(id: string | string[]): Promise<Document[]>;
|
|
611
614
|
/**
|
|
612
615
|
* Set a chat's available reactions.
|
|
613
616
|
*
|
|
614
|
-
* @method
|
|
617
|
+
* @method ch
|
|
615
618
|
* @param chatId The identifier of the chat.
|
|
616
619
|
* @param availableReactions The new available reactions.
|
|
617
620
|
*/
|
|
@@ -619,7 +622,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
619
622
|
/**
|
|
620
623
|
* Change reactions made to a message.
|
|
621
624
|
*
|
|
622
|
-
* @method
|
|
625
|
+
* @method re
|
|
623
626
|
* @param chatId The identifier of the chat which the message belongs to.
|
|
624
627
|
* @param messageId The identifier of the message to add the reaction to.
|
|
625
628
|
* @param reactions The new reactions.
|
|
@@ -628,7 +631,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
628
631
|
/**
|
|
629
632
|
* Make a reaction to a message.
|
|
630
633
|
*
|
|
631
|
-
* @method
|
|
634
|
+
* @method re
|
|
632
635
|
* @param chatId The identifier of the chat which the message belongs to.
|
|
633
636
|
* @param messageId The identifier of the message to add the reaction to.
|
|
634
637
|
* @param reaction The reaction to add.
|
|
@@ -637,7 +640,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
637
640
|
/**
|
|
638
641
|
* Undo a reaction made to a message.
|
|
639
642
|
*
|
|
640
|
-
* @method
|
|
643
|
+
* @method re
|
|
641
644
|
* @param chatId The identifier of the chat which the message belongs to.
|
|
642
645
|
* @param messageId The identifier of the message which the reaction was made to.
|
|
643
646
|
* @param reaction The reaction to remove.
|
|
@@ -646,7 +649,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
646
649
|
/**
|
|
647
650
|
* Set a chat's photo.
|
|
648
651
|
*
|
|
649
|
-
* @method
|
|
652
|
+
* @method ch
|
|
650
653
|
* @param chatId The identifier of the chat.
|
|
651
654
|
* @param photo A photo to set as the chat's photo.
|
|
652
655
|
*/
|
|
@@ -654,14 +657,14 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
654
657
|
/**
|
|
655
658
|
* Delete a chat's photo.
|
|
656
659
|
*
|
|
657
|
-
* @method
|
|
660
|
+
* @method ch
|
|
658
661
|
* @param chatId The identifier of the chat.
|
|
659
662
|
*/
|
|
660
663
|
deleteChatPhoto(chatId: number): Promise<void>;
|
|
661
664
|
/**
|
|
662
665
|
* Delete all messages sent by a specific member of a chat.
|
|
663
666
|
*
|
|
664
|
-
* @method
|
|
667
|
+
* @method ms
|
|
665
668
|
* @param chatId The identifier of the chat. Must be a supergroup.
|
|
666
669
|
* @param memberId The identifier of the member.
|
|
667
670
|
*/
|
|
@@ -669,7 +672,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
669
672
|
/**
|
|
670
673
|
* Pin a message in a chat.
|
|
671
674
|
*
|
|
672
|
-
* @method
|
|
675
|
+
* @method ms
|
|
673
676
|
* @param chatId The identifier of the chat that contains the message.
|
|
674
677
|
* @param messageId The message's identifier.
|
|
675
678
|
*/
|
|
@@ -677,7 +680,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
677
680
|
/**
|
|
678
681
|
* Unpin a pinned message.
|
|
679
682
|
*
|
|
680
|
-
* @method
|
|
683
|
+
* @method ms
|
|
681
684
|
* @param chatId The identifier of the chat that contains the message.
|
|
682
685
|
* @param messageId The message's identifier.
|
|
683
686
|
*/
|
|
@@ -685,14 +688,14 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
685
688
|
/**
|
|
686
689
|
* Unpin all pinned messages.
|
|
687
690
|
*
|
|
688
|
-
* @method
|
|
691
|
+
* @method ms
|
|
689
692
|
* @param chatId The identifier of the chat.
|
|
690
693
|
*/
|
|
691
694
|
unpinMessages(chatId: ID): Promise<void>;
|
|
692
695
|
/**
|
|
693
696
|
* Ban a member from a chat.
|
|
694
697
|
*
|
|
695
|
-
* @method
|
|
698
|
+
* @method ch
|
|
696
699
|
* @param chatId The identifier of the chat.
|
|
697
700
|
* @param memberId The identifier of the member.
|
|
698
701
|
*/
|
|
@@ -700,7 +703,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
700
703
|
/**
|
|
701
704
|
* Unban a member from a chat.
|
|
702
705
|
*
|
|
703
|
-
* @method
|
|
706
|
+
* @method ch
|
|
704
707
|
* @param chatId The identifier of the chat. Must be a supergroup.
|
|
705
708
|
* @param memberId The identifier of the member.
|
|
706
709
|
*/
|
|
@@ -708,7 +711,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
708
711
|
/**
|
|
709
712
|
* Kick a member from a chat. Same as a banChatMember call followed by unbanChatMember.
|
|
710
713
|
*
|
|
711
|
-
* @method
|
|
714
|
+
* @method ch
|
|
712
715
|
* @param chatId The identifier of the chat. Must be a supergroup.
|
|
713
716
|
* @param memberId The identifier of the member.
|
|
714
717
|
*/
|
|
@@ -716,7 +719,7 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
716
719
|
/**
|
|
717
720
|
* Set the rights of a chat member.
|
|
718
721
|
*
|
|
719
|
-
* @method
|
|
722
|
+
* @method ch
|
|
720
723
|
* @param chatId The identifier of the chat. Must be a supergroup.
|
|
721
724
|
* @param memberId The identifier of a member.
|
|
722
725
|
*/
|
|
@@ -724,9 +727,140 @@ export declare class Client<C extends Context = Context> extends ClientAbstract
|
|
|
724
727
|
/**
|
|
725
728
|
* Get the administrators of a chat.
|
|
726
729
|
*
|
|
727
|
-
* @method
|
|
730
|
+
* @method ch
|
|
728
731
|
* @param chatId The identifier of the chat.
|
|
729
732
|
*/
|
|
730
733
|
getChatAdministrators(chatId: ID): Promise<ChatMember[]>;
|
|
734
|
+
/**
|
|
735
|
+
* Create a story. User-only.
|
|
736
|
+
*
|
|
737
|
+
* @method st
|
|
738
|
+
* @param content The content of the story.
|
|
739
|
+
* @returns The created story.
|
|
740
|
+
*/
|
|
741
|
+
createStory(chatId: ID, content: InputStoryContent, params?: CreateStoryParams): Promise<Story>;
|
|
742
|
+
/**
|
|
743
|
+
* Retrieve multiple stories. User-only.
|
|
744
|
+
*
|
|
745
|
+
* @method st
|
|
746
|
+
* @param chatId The identifier of the chat to retrieve the stories from.
|
|
747
|
+
* @param storyIds The identifiers of the stories to retrieve.
|
|
748
|
+
*/
|
|
749
|
+
getStories(chatId: ID, storyIds: number[]): Promise<Story[]>;
|
|
750
|
+
/**
|
|
751
|
+
* Retrieve a single story. User-only.
|
|
752
|
+
*
|
|
753
|
+
* @method st
|
|
754
|
+
* @param chatId The identifier of the chat to retrieve the story from.
|
|
755
|
+
* @param storyId The identifier of the story to retrieve.
|
|
756
|
+
*/
|
|
757
|
+
getStory(chatId: ID, storyId: number): Promise<Story | null>;
|
|
758
|
+
/**
|
|
759
|
+
* Delete multiple stories. User-only.
|
|
760
|
+
*
|
|
761
|
+
* @method st
|
|
762
|
+
* @param chatId The identifier of the chat to delete the stories from.
|
|
763
|
+
* @param storyIds The identifiers of the stories to delete.
|
|
764
|
+
*/
|
|
765
|
+
deleteStories(chatId: ID, storyIds: number[]): Promise<void>;
|
|
766
|
+
/**
|
|
767
|
+
* Delete a single story. User-only.
|
|
768
|
+
*
|
|
769
|
+
* @method st
|
|
770
|
+
* @param chatId The identifier of the chat to delete the story from.
|
|
771
|
+
* @param storyId The identifier of the story to delete.
|
|
772
|
+
*/
|
|
773
|
+
deleteStory(chatId: ID, storyId: number): Promise<void>;
|
|
774
|
+
/**
|
|
775
|
+
* Add multiple stories to highlights. User-only.
|
|
776
|
+
*
|
|
777
|
+
* @method st
|
|
778
|
+
* @param chatId The identifier of the chat that has the stories.
|
|
779
|
+
* @param storyIds The identifiers of the stories to add to highlights.
|
|
780
|
+
*/
|
|
781
|
+
addStoriesToHighlights(chatId: ID, storyIds: number[]): Promise<void>;
|
|
782
|
+
/**
|
|
783
|
+
* Add a single story to highlights. User-only.
|
|
784
|
+
*
|
|
785
|
+
* @method st
|
|
786
|
+
* @param chatId The identifier of the chat that has the story.
|
|
787
|
+
* @param storyId The identifier of the story to add to highlights.
|
|
788
|
+
*/
|
|
789
|
+
addStoryToHighlights(chatId: ID, storyId: number): Promise<void>;
|
|
790
|
+
/**
|
|
791
|
+
* Remove multiple stories from highlights. User-only.
|
|
792
|
+
*
|
|
793
|
+
* @method st
|
|
794
|
+
* @param chatId The identifier of the chat that has the stories.
|
|
795
|
+
* @param storyIds The identifiers of the stories to remove from highlights.
|
|
796
|
+
*/
|
|
797
|
+
removeStoriesFromHighlights(chatId: ID, storyIds: number[]): Promise<void>;
|
|
798
|
+
/**
|
|
799
|
+
* Remove a single story from highlights. User-only.
|
|
800
|
+
*
|
|
801
|
+
* @method st
|
|
802
|
+
* @param chatId The identifier of the chat that has the story.
|
|
803
|
+
* @param storyId The identifier of the story to remove from highlights.
|
|
804
|
+
*/
|
|
805
|
+
removeStoryFromHighlights(chatId: ID, storyId: number): Promise<void>;
|
|
806
|
+
/**
|
|
807
|
+
* Enable join requests in a chat. User-only.
|
|
808
|
+
*
|
|
809
|
+
* @method ch
|
|
810
|
+
* @param chatId The identifier of the chat. Must be a channel or a supergroup.
|
|
811
|
+
*/
|
|
812
|
+
enableJoinRequests(chatId: ID): Promise<void>;
|
|
813
|
+
/**
|
|
814
|
+
* Disable join requests in a chat. User-only.
|
|
815
|
+
*
|
|
816
|
+
* @method ch
|
|
817
|
+
* @param chatId The identifier of the chat. Must be a channel or a supergroup.
|
|
818
|
+
*/
|
|
819
|
+
disableJoinRequests(chatId: ID): Promise<void>;
|
|
820
|
+
/**
|
|
821
|
+
* Show a username in the current account, a bot account, sa upergroup, or a channel's profile. User-only.
|
|
822
|
+
*
|
|
823
|
+
* @method ac
|
|
824
|
+
* @param id `"me"`, a bot ID, a supergroup ID, or a channel ID.
|
|
825
|
+
* @param username The username to show.
|
|
826
|
+
*/
|
|
827
|
+
showUsername(id: ID, username: string): Promise<void>;
|
|
828
|
+
/**
|
|
829
|
+
* Hide a username from the current account, a bot account, a supergroup, or a channel's profile. User-only.
|
|
830
|
+
*
|
|
831
|
+
* @method ac
|
|
832
|
+
* @param id `"me"`, a bot ID, a supergroup ID, or a channel ID.
|
|
833
|
+
* @param username The username to hide.
|
|
834
|
+
*/
|
|
835
|
+
hideUsername(id: ID, username: string): Promise<void>;
|
|
836
|
+
/**
|
|
837
|
+
* Reorder the usernames of the current account, a bot account, a supergroup, or a channel's profile. User-only.
|
|
838
|
+
*
|
|
839
|
+
* @method ac
|
|
840
|
+
* @param id `"me"`, a bot ID, a supergroup ID, or a channel ID.
|
|
841
|
+
* @param order The new order to use.
|
|
842
|
+
*/
|
|
843
|
+
reorderUsernames(id: ID, order: string[]): Promise<boolean>;
|
|
844
|
+
/**
|
|
845
|
+
* Hide all usernames from the a supergroup or a channel's profile. User-only.
|
|
846
|
+
*
|
|
847
|
+
* @method ac
|
|
848
|
+
* @param id A supergroup ID or a channel ID.
|
|
849
|
+
*/
|
|
850
|
+
hideUsernames(id: ID): Promise<boolean>;
|
|
851
|
+
/**
|
|
852
|
+
* Get inactive chats. User-only.
|
|
853
|
+
*
|
|
854
|
+
* @method ch
|
|
855
|
+
*/
|
|
856
|
+
getInactiveChats(): Promise<InactiveChat[]>;
|
|
857
|
+
/**
|
|
858
|
+
* Search the messages of a chat.
|
|
859
|
+
*
|
|
860
|
+
* @method ms
|
|
861
|
+
* @param chatId The identifier of the chat to search the messages in.
|
|
862
|
+
* @param query The message search query.
|
|
863
|
+
*/
|
|
864
|
+
searchMessages(chatId: ID, query: string, params?: SearchMessagesParams): Promise<Message[]>;
|
|
731
865
|
}
|
|
732
866
|
export {};
|