wiki search people tested pipeline

This commit is contained in:
Alvis
2026-03-05 11:22:34 +00:00
parent 09a93c661e
commit a30936f120
152 changed files with 47694 additions and 263 deletions

View File

@@ -0,0 +1,98 @@
import { DEFAULT_UPDATE_TYPES } from "../bot.js";
declare const ALL_UPDATE_TYPES: readonly ["message", "edited_message", "channel_post", "edited_channel_post", "business_connection", "business_message", "edited_business_message", "deleted_business_messages", "inline_query", "chosen_inline_result", "callback_query", "shipping_query", "pre_checkout_query", "purchased_paid_media", "poll", "poll_answer", "my_chat_member", "chat_join_request", "chat_boost", "removed_chat_boost", "chat_member", "message_reaction", "message_reaction_count"];
declare const ALL_CHAT_PERMISSIONS: {
readonly is_anonymous: true;
readonly can_manage_chat: true;
readonly can_delete_messages: true;
readonly can_manage_video_chats: true;
readonly can_restrict_members: true;
readonly can_promote_members: true;
readonly can_change_info: true;
readonly can_invite_users: true;
readonly can_post_stories: true;
readonly can_edit_stories: true;
readonly can_delete_stories: true;
readonly can_post_messages: true;
readonly can_edit_messages: true;
readonly can_pin_messages: true;
readonly can_manage_topics: true;
};
/**
* Types of the constants used in the Telegram Bot API. Currently holds all
* available update types as well as all chat permissions.
*/
export interface ApiConstants {
/**
* List of update types a bot receives by default. Useful if you want to
* receive all update types but `chat_member`, `message_reaction`, and
* `message_reaction_count`.
*
* ```ts
* // Built-in polling:
* bot.start({ allowed_updates: DEFAULT_UPDATE_TYPES });
* // grammY runner:
* run(bot, { runner: { fetch: { allowed_updates: DEFAULT_UPDATE_TYPES } } });
* // Webhooks:
* await bot.api.setWebhook(url, { allowed_updates: DEFAULT_UPDATE_TYPES });
* ```
*
* See the [Bot API reference](https://core.telegram.org/bots/api#update)
* for more information.
*/
DEFAULT_UPDATE_TYPES: typeof DEFAULT_UPDATE_TYPES[number];
/**
* List of all available update types. Useful if you want to receive all
* updates from the Bot API, rather than just those that are delivered by
* default.
*
* The main use case for this is when you want to receive `chat_member`,
* `message_reaction`, and `message_reaction_count` updates, as they need to
* be enabled first. Use it like so:
*
* ```ts
* // Built-in polling:
* bot.start({ allowed_updates: ALL_UPDATE_TYPES });
* // grammY runner:
* run(bot, { runner: { fetch: { allowed_updates: ALL_UPDATE_TYPES } } });
* // Webhooks:
* await bot.api.setWebhook(url, { allowed_updates: ALL_UPDATE_TYPES });
* ```
*
* See the [Bot API reference](https://core.telegram.org/bots/api#update)
* for more information.
*/
ALL_UPDATE_TYPES: typeof ALL_UPDATE_TYPES[number];
/**
* An object containing all available chat permissions. Useful if you want
* to lift restrictions from a user, as this action requires you to pass
* `true` for all permissions. Use it like so:
*
* ```ts
* // On `Bot`:
* await bot.api.restrictChatMember(chat_id, user_id, ALL_CHAT_PERMISSIONS);
* // On `Api`:
* await ctx.api.restrictChatMember(chat_id, user_id, ALL_CHAT_PERMISSIONS);
* // On `Context`:
* await ctx.restrictChatMember(user_id, ALL_CHAT_PERMISSIONS);
* await ctx.restrictAuthor(ALL_CHAT_PERMISSIONS);
* ```
*
* See the [Bot API reference](https://core.telegram.org/bots/api#update)
* for more information.
*/
ALL_CHAT_PERMISSIONS: keyof typeof ALL_CHAT_PERMISSIONS;
}
interface TypeOf {
DEFAULT_UPDATE_TYPES: typeof DEFAULT_UPDATE_TYPES;
ALL_UPDATE_TYPES: typeof ALL_UPDATE_TYPES;
ALL_CHAT_PERMISSIONS: typeof ALL_CHAT_PERMISSIONS;
}
type ValuesFor<T> = {
[K in keyof T]: K extends keyof TypeOf ? Readonly<TypeOf[K]> : never;
};
/**
* A container for constants used in the Telegram Bot API. Currently holds all
* available update types as well as all chat permissions.
*/
export declare const API_CONSTANTS: ValuesFor<ApiConstants>;
export {};