@mtkruto/node 0.0.958 → 0.0.961
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/client/0_utilities.d.ts +3 -0
- package/esm/client/0_utilities.js +20 -0
- package/esm/client/3_client.d.ts +1 -1
- package/esm/client/3_client.js +56 -14
- package/esm/constants.d.ts +1 -1
- package/esm/constants.js +1 -1
- package/esm/storage/0_storage.d.ts +6 -0
- package/esm/storage/0_storage.js +33 -6
- package/esm/types/0_audio.d.ts +9 -0
- package/esm/types/0_chat_administrator_rights.d.ts +4 -4
- package/esm/types/0_contact.d.ts +6 -0
- package/esm/types/0_dice.d.ts +3 -0
- package/esm/types/0_force_reply.d.ts +1 -1
- package/esm/types/0_keyboard_button_poll_type.d.ts +1 -1
- package/esm/types/0_location.d.ts +7 -0
- package/esm/types/0_login_url.d.ts +3 -3
- package/esm/types/0_mask_position.d.ts +5 -0
- package/esm/types/0_message_entity.d.ts +4 -4
- package/esm/types/0_reply_keyboard_remove.d.ts +1 -1
- package/esm/types/0_thumbnail.d.ts +2 -1
- package/esm/types/0_venue.d.ts +6 -0
- package/esm/types/0_voice.d.ts +6 -0
- package/esm/types/1_animation.d.ts +10 -0
- package/esm/types/1_chat.d.ts +18 -18
- package/esm/types/1_document.d.ts +7 -0
- package/esm/types/1_inline_keyboard_button.d.ts +7 -7
- package/esm/types/1_keyboard_button.d.ts +14 -14
- package/esm/types/1_photo.d.ts +2 -1
- package/esm/types/1_sticker.d.ts +16 -0
- package/esm/types/1_user.d.ts +7 -7
- package/esm/types/1_video.d.ts +10 -0
- package/esm/types/1_video_note.d.ts +8 -0
- package/esm/types/2_game.d.ts +7 -0
- package/esm/types/2_reply_keyboard_markup.d.ts +5 -5
- package/esm/types/3_message.d.ts +57 -25
- package/esm/types/3_message.js +0 -1
- package/package.json +1 -1
- package/script/client/0_utilities.d.ts +3 -0
- package/script/client/0_utilities.js +48 -0
- package/script/client/3_client.d.ts +1 -1
- package/script/client/3_client.js +56 -14
- package/script/constants.d.ts +1 -1
- package/script/constants.js +1 -1
- package/script/storage/0_storage.d.ts +6 -0
- package/script/storage/0_storage.js +33 -6
- package/script/types/0_audio.d.ts +9 -0
- package/script/types/0_chat_administrator_rights.d.ts +4 -4
- package/script/types/0_contact.d.ts +6 -0
- package/script/types/0_dice.d.ts +3 -0
- package/script/types/0_force_reply.d.ts +1 -1
- package/script/types/0_keyboard_button_poll_type.d.ts +1 -1
- package/script/types/0_location.d.ts +7 -0
- package/script/types/0_login_url.d.ts +3 -3
- package/script/types/0_mask_position.d.ts +5 -0
- package/script/types/0_message_entity.d.ts +4 -4
- package/script/types/0_reply_keyboard_remove.d.ts +1 -1
- package/script/types/0_thumbnail.d.ts +2 -1
- package/script/types/0_venue.d.ts +6 -0
- package/script/types/0_voice.d.ts +6 -0
- package/script/types/1_animation.d.ts +10 -0
- package/script/types/1_chat.d.ts +18 -18
- package/script/types/1_document.d.ts +7 -0
- package/script/types/1_inline_keyboard_button.d.ts +7 -7
- package/script/types/1_keyboard_button.d.ts +14 -14
- package/script/types/1_photo.d.ts +2 -1
- package/script/types/1_sticker.d.ts +16 -0
- package/script/types/1_user.d.ts +7 -7
- package/script/types/1_video.d.ts +10 -0
- package/script/types/1_video_note.d.ts +8 -0
- package/script/types/2_game.d.ts +7 -0
- package/script/types/2_reply_keyboard_markup.d.ts +5 -5
- package/script/types/3_message.d.ts +57 -25
- package/script/types/3_message.js +0 -1
|
@@ -8,34 +8,34 @@ export declare namespace InlineKeyboardButton {
|
|
|
8
8
|
text: string;
|
|
9
9
|
}
|
|
10
10
|
interface URL extends Base {
|
|
11
|
-
/**
|
|
11
|
+
/** HTTP or tg:// URL to be opened when the button is pressed. Links `tg://user?id=<user_id>` can be used to mention a user by their ID without using a username, if this is allowed by their privacy settings. */
|
|
12
12
|
url: string;
|
|
13
13
|
}
|
|
14
14
|
interface Callback extends Base {
|
|
15
|
-
/**
|
|
15
|
+
/** Data to be sent in a callback query to the bot when button is pressed, 1-64 bytes */
|
|
16
16
|
callbackData: string;
|
|
17
17
|
}
|
|
18
18
|
interface WebApp extends Base {
|
|
19
|
-
/**
|
|
19
|
+
/** Description of the [Web App](https://core.telegram.org/bots/webapps) that will be launched when the user presses the button. The Web App will be able to send an arbitrary message on behalf of the user using the method answerWebAppQuery. Available only in private chats between a user and the bot. */
|
|
20
20
|
webApp: WebAppInfo;
|
|
21
21
|
}
|
|
22
22
|
interface Login extends Base {
|
|
23
|
-
/**
|
|
23
|
+
/** An HTTPS URL used to automatically authorize the user. Can be used as a replacement for the [Telegram Login Widget](https://core.telegram.org/widgets/login). */
|
|
24
24
|
loginUrl: LoginUrl;
|
|
25
25
|
}
|
|
26
26
|
interface SwitchInline extends Base {
|
|
27
|
-
/**
|
|
27
|
+
/** If set, pressing the button will prompt the user to select one of their chats, open that chat and insert the bot's username and the specified inline query in the input field. May be empty, in which case just the bot's username will be inserted. */
|
|
28
28
|
switchInlineQuery: string;
|
|
29
29
|
}
|
|
30
30
|
interface SwitchInlineCurrent extends Base {
|
|
31
|
-
/**
|
|
31
|
+
/** If set, pressing the button will insert the bot's username and the specified inline query in the current chat's input field. May be empty, in which case only the bot's username will be inserted. */
|
|
32
32
|
switchInlineQueryCurrentChat: string;
|
|
33
33
|
}
|
|
34
34
|
interface Game extends Base {
|
|
35
35
|
callbackGame: Record<never, never>;
|
|
36
36
|
}
|
|
37
37
|
interface Pay extends Base {
|
|
38
|
-
/**
|
|
38
|
+
/** Specify True, to send a [Pay button](https://core.telegram.org/bots/api#payments). */
|
|
39
39
|
pay: boolean;
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -9,52 +9,52 @@ export declare namespace KeyboardButton {
|
|
|
9
9
|
}
|
|
10
10
|
/** This object defines the criteria used to request a suitable user. The identifier of the selected user will be shared with the bot when the corresponding button is pressed. [More about requesting users](https://core.telegram.org/bots/features#chat-and-user-selection) */
|
|
11
11
|
interface RequestUser extends Text {
|
|
12
|
-
/**
|
|
12
|
+
/** If specified, pressing the button will open a list of suitable users. Tapping on any user will send their identifier to the bot in a “user_shared” service message. Available in private chats only. */
|
|
13
13
|
requestUser: {
|
|
14
14
|
/** Signed 32-bit identifier of the request, which will be received back in the [UserShared](https://core.telegram.org/bots/api#usershared) object. Must be unique within the message */
|
|
15
15
|
requestId: number;
|
|
16
|
-
/**
|
|
16
|
+
/** Pass True to request a bot, pass False to request a regular user. If not specified, no additional restrictions are applied. */
|
|
17
17
|
userIsBot?: boolean;
|
|
18
|
-
/**
|
|
18
|
+
/** Pass True to request a premium user, pass False to request a non-premium user. If not specified, no additional restrictions are applied. */
|
|
19
19
|
userIsPremium?: boolean;
|
|
20
20
|
};
|
|
21
21
|
}
|
|
22
22
|
/** This object defines the criteria used to request a suitable chat. The identifier of the selected chat will be shared with the bot when the corresponding button is pressed. [More about requesting chats](https://core.telegram.org/bots/features#chat-and-user-selection) */
|
|
23
23
|
interface RequestChat extends Text {
|
|
24
|
-
/**
|
|
24
|
+
/** If specified, pressing the button will open a list of suitable chats. Tapping on a chat will send its identifier to the bot in a “chat_shared” service message. Available in private chats only. */
|
|
25
25
|
requestChat: {
|
|
26
26
|
/** Signed 32-bit identifier of the request, which will be received back in the [ChatShared](https://core.telegram.org/bots/api#chatshared) object. Must be unique within the message */
|
|
27
27
|
requestId: number;
|
|
28
28
|
/** Pass True to request a channel chat, pass False to request a group or a supergroup chat. */
|
|
29
29
|
chatIsChannel: boolean;
|
|
30
|
-
/**
|
|
30
|
+
/** Pass True to request a forum supergroup, pass False to request a non-forum chat. If not specified, no additional restrictions are applied. */
|
|
31
31
|
chatIsForum?: boolean;
|
|
32
|
-
/**
|
|
32
|
+
/** Pass True to request a supergroup or a channel with a username, pass False to request a chat without a username. If not specified, no additional restrictions are applied. */
|
|
33
33
|
chatHasUsername?: boolean;
|
|
34
|
-
/**
|
|
34
|
+
/** Pass True to request a chat owned by the user. Otherwise, no additional restrictions are applied. */
|
|
35
35
|
chatIsCreated?: boolean;
|
|
36
|
-
/**
|
|
36
|
+
/** A JSON-serialized object listing the required administrator rights of the user in the chat. The rights must be a superset of _bot_administrator_rights_. If not specified, no additional restrictions are applied. */
|
|
37
37
|
userAdministratorRights?: ChatAdministratorRights;
|
|
38
|
-
/**
|
|
38
|
+
/** A JSON-serialized object listing the required administrator rights of the bot in the chat. The rights must be a subset of _user_administrator_rights_. If not specified, no additional restrictions are applied. */
|
|
39
39
|
botAdministratorRights?: ChatAdministratorRights;
|
|
40
|
-
/**
|
|
40
|
+
/** Pass True to request a chat with the bot as a member. Otherwise, no additional restrictions are applied. */
|
|
41
41
|
botIsMember?: boolean;
|
|
42
42
|
};
|
|
43
43
|
}
|
|
44
44
|
interface RequestContact extends Text {
|
|
45
|
-
/**
|
|
45
|
+
/** If True, the user's phone number will be sent as a contact when the button is pressed. Available in private chats only. */
|
|
46
46
|
requestContact: true;
|
|
47
47
|
}
|
|
48
48
|
interface RequestLocation extends Text {
|
|
49
|
-
/**
|
|
49
|
+
/** If True, the user's current location will be sent when the button is pressed. Available in private chats only. */
|
|
50
50
|
requestLocation: true;
|
|
51
51
|
}
|
|
52
52
|
interface RequestPoll extends Text {
|
|
53
|
-
/**
|
|
53
|
+
/** If specified, the user will be asked to create a poll and send it to the bot when the button is pressed. Available in private chats only. */
|
|
54
54
|
requestPoll: KeyboardButtonPollType;
|
|
55
55
|
}
|
|
56
56
|
interface WebApp extends Text {
|
|
57
|
-
/**
|
|
57
|
+
/** If specified, the described [Web App](https://core.telegram.org/bots/webapps) will be launched when the button is pressed. The Web App will be able to send a “web_app_data” service message. Available in private chats only. */
|
|
58
58
|
webApp: WebAppInfo;
|
|
59
59
|
}
|
|
60
60
|
}
|
package/esm/types/1_photo.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as types from "../tl/2_types.js";
|
|
2
2
|
import { Thumbnail } from "./0_thumbnail.js";
|
|
3
|
+
/** This object represents a photo. */
|
|
3
4
|
export interface Photo {
|
|
4
5
|
/** Identifier for this file, which can be used to download or reuse the file */
|
|
5
6
|
fileId: string;
|
|
@@ -9,7 +10,7 @@ export interface Photo {
|
|
|
9
10
|
width: number;
|
|
10
11
|
/** Photo height */
|
|
11
12
|
height: number;
|
|
12
|
-
/**
|
|
13
|
+
/** File size in bytes */
|
|
13
14
|
fileSize: number;
|
|
14
15
|
thumbnails: Thumbnail[];
|
|
15
16
|
}
|
package/esm/types/1_sticker.d.ts
CHANGED
|
@@ -2,21 +2,37 @@ import * as types from "../tl/2_types.js";
|
|
|
2
2
|
import { MaybePromise } from "../utilities/0_types.js";
|
|
3
3
|
import { Thumbnail } from "./0_thumbnail.js";
|
|
4
4
|
import { MaskPosition } from "./0_mask_position.js";
|
|
5
|
+
/** This object represents a sticker. */
|
|
5
6
|
export interface Sticker {
|
|
7
|
+
/** Identifier for this file, which can be used to download or reuse the file */
|
|
6
8
|
fileId: string;
|
|
9
|
+
/** Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. */
|
|
7
10
|
fileUniqueId: string;
|
|
11
|
+
/** Type of the sticker, currently one of "regular", "mask", "custom_emoji". The type of the sticker is independent from its format, which is determined by the fields is_animated and is_video. */
|
|
8
12
|
type: "regular" | "mask" | "custom_emoji";
|
|
13
|
+
/** Sticker width */
|
|
9
14
|
width: number;
|
|
15
|
+
/** Sticker height */
|
|
10
16
|
height: number;
|
|
17
|
+
/** True, if the sticker is [animated](https://telegram.org/blog/animated-stickers) */
|
|
11
18
|
isAnimated: boolean;
|
|
19
|
+
/** True, if the sticker is a [video sticker](https://telegram.org/blog/video-stickers-better-reactions) */
|
|
12
20
|
isVideo: boolean;
|
|
21
|
+
/** Sticker thumbnail in the .WEBP or .JPG format */
|
|
13
22
|
thumbnails: Thumbnail[];
|
|
23
|
+
/** Emoji associated with the sticker */
|
|
14
24
|
emoji?: string;
|
|
25
|
+
/** Name of the sticker set to which the sticker belongs */
|
|
15
26
|
setName?: string;
|
|
27
|
+
/** For premium regular stickers, premium animation for the sticker */
|
|
16
28
|
premiumAnimation?: File;
|
|
29
|
+
/** For mask stickers, the position where the mask should be placed */
|
|
17
30
|
maskPosition?: MaskPosition;
|
|
31
|
+
/** For custom emoji stickers, unique identifier of the custom emoji */
|
|
18
32
|
customEmojiId?: string;
|
|
33
|
+
/** True, if the sticker must be repainted to a text color in messages, the color of the Telegram Premium badge in emoji status, white color on chat photos, or another appropriate color in other places */
|
|
19
34
|
needsRepainting?: boolean;
|
|
35
|
+
/** File size in bytes */
|
|
20
36
|
fileSize?: number;
|
|
21
37
|
}
|
|
22
38
|
export type StickerSetNameGetter = (inputStickerSet: types.InputStickerSetID) => MaybePromise<string>;
|
package/esm/types/1_user.d.ts
CHANGED
|
@@ -9,27 +9,27 @@ export interface User {
|
|
|
9
9
|
isBot: boolean;
|
|
10
10
|
/** User's or bot's first name */
|
|
11
11
|
firstName: string;
|
|
12
|
-
/**
|
|
12
|
+
/** User's or bot's last name */
|
|
13
13
|
lastName?: string;
|
|
14
|
-
/**
|
|
14
|
+
/** User's or bot's username */
|
|
15
15
|
username?: string;
|
|
16
|
-
/**
|
|
16
|
+
/** Additional usernames */
|
|
17
17
|
also?: string[];
|
|
18
|
-
/**
|
|
18
|
+
/** Chat photo */
|
|
19
19
|
photo?: ChatPhoto.User;
|
|
20
|
-
/**
|
|
20
|
+
/** [IETF language tag](https://en.wikipedia.org/wiki/IETF_language_tag) of the user's language */
|
|
21
21
|
languageCode?: string;
|
|
22
22
|
/** True, if the user is a scam user */
|
|
23
23
|
isScam: boolean;
|
|
24
24
|
/** True, if this user was reported by many users as a fake or scam user: be careful when interacting with them. */
|
|
25
25
|
isFake: boolean;
|
|
26
|
-
/**
|
|
26
|
+
/** True, if this user is a Telegram Premium user */
|
|
27
27
|
isPremium: boolean;
|
|
28
28
|
/** True, if the user is verified */
|
|
29
29
|
isVerified: boolean;
|
|
30
30
|
/** True, if the user is an official support user */
|
|
31
31
|
isSupport: boolean;
|
|
32
|
-
/**
|
|
32
|
+
/** True, if this user added the bot to the attachment menu */
|
|
33
33
|
addedToAttachmentMenu: boolean;
|
|
34
34
|
}
|
|
35
35
|
export declare function constructUser(user_: types.User): User;
|
package/esm/types/1_video.d.ts
CHANGED
|
@@ -1,14 +1,24 @@
|
|
|
1
1
|
import * as types from "../tl/2_types.js";
|
|
2
2
|
import { Thumbnail } from "./0_thumbnail.js";
|
|
3
|
+
/** This object represents a video file. */
|
|
3
4
|
export interface Video {
|
|
5
|
+
/** Identifier for this file, which can be used to download or reuse the file */
|
|
4
6
|
fileId: string;
|
|
7
|
+
/** Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. */
|
|
5
8
|
fileUniqueId: string;
|
|
9
|
+
/** Video width as defined by sender */
|
|
6
10
|
width: number;
|
|
11
|
+
/** Video height as defined by sender */
|
|
7
12
|
height: number;
|
|
13
|
+
/** Duration of the video in seconds as defined by sender */
|
|
8
14
|
duration: number;
|
|
15
|
+
/** Video thumbnail */
|
|
9
16
|
thumbnails: Thumbnail[];
|
|
17
|
+
/** Original filename as defined by sender */
|
|
10
18
|
fileName?: string;
|
|
19
|
+
/** MIME type of the file as defined by sender */
|
|
11
20
|
mimeType: string;
|
|
21
|
+
/** File size in bytes. It can be bigger than 2^31 and some programming languages may have difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a signed 64-bit integer or double-precision float type are safe for storing this value. */
|
|
12
22
|
fileSize: number;
|
|
13
23
|
}
|
|
14
24
|
export declare function constructVideo(document: types.Document, videoAttribute: types.DocumentAttributeVideo, fileName: string | undefined, fileId: string, fileUniqueId: string): Video;
|
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
import * as types from "../tl/2_types.js";
|
|
2
2
|
import { Thumbnail } from "./0_thumbnail.js";
|
|
3
|
+
/** This object represents a video message (available in Telegram apps as of v.4.0). */
|
|
3
4
|
export interface VideoNote {
|
|
5
|
+
/** Identifier for this file, which can be used to download or reuse the file */
|
|
4
6
|
fileId: string;
|
|
7
|
+
/** Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. */
|
|
5
8
|
fileUniqueId: string;
|
|
9
|
+
/** Video width and height (diameter of the video message) as defined by sender */
|
|
6
10
|
length: number;
|
|
11
|
+
/** Duration of the video in seconds as defined by sender */
|
|
7
12
|
duration: number;
|
|
13
|
+
/** Video thumbnail */
|
|
8
14
|
thumbnails: Thumbnail[];
|
|
15
|
+
/** Original filename as defined by sender */
|
|
9
16
|
fileName?: string;
|
|
17
|
+
/** File size in bytes */
|
|
10
18
|
fileSize: number;
|
|
11
19
|
}
|
|
12
20
|
export declare function constructVideoNote(document: types.Document, videoAttribute: types.DocumentAttributeVideo, fileId: string, fileUniqueId: string): VideoNote;
|
package/esm/types/2_game.d.ts
CHANGED
|
@@ -2,12 +2,19 @@ import * as types from "../tl/2_types.js";
|
|
|
2
2
|
import { MessageEntity } from "./0_message_entity.js";
|
|
3
3
|
import { Animation } from "./1_animation.js";
|
|
4
4
|
import { Photo } from "./1_photo.js";
|
|
5
|
+
/** This object represents a game. Use BotFather to create and edit games, their short names will act as unique identifiers. */
|
|
5
6
|
export interface Game {
|
|
7
|
+
/** Title of the game */
|
|
6
8
|
title: string;
|
|
9
|
+
/** Description of the game */
|
|
7
10
|
description: string;
|
|
11
|
+
/** Photo that will be displayed in the game message in chats. */
|
|
8
12
|
photo: Photo;
|
|
13
|
+
/** Brief description of the game or high scores included in the game message. Can be automatically edited to include current high scores for the game when the bot calls [setGameScore](https://corefork.telegram.org/bots/api#setgamescore), or manually edited using [editMessageText](https://corefork.telegram.org/bots/api#editmessagetext). 0-4096 characters. */
|
|
9
14
|
text?: string;
|
|
15
|
+
/** Special entities that appear in text, such as usernames, URLs, bot commands, etc. */
|
|
10
16
|
textEntities?: MessageEntity[];
|
|
17
|
+
/** Animation that will be displayed in the game message in chats. Upload via [BotFather](https://t.me/botfather) */
|
|
11
18
|
animation?: Animation;
|
|
12
19
|
}
|
|
13
20
|
export declare function constructGame(media_: types.MessageMediaGame): Game;
|
|
@@ -4,15 +4,15 @@ import { KeyboardButton } from "./1_keyboard_button.js";
|
|
|
4
4
|
export interface ReplyKeyboardMarkup {
|
|
5
5
|
/** Array of button rows, each represented by an Array of `KeyboardButton` objects */
|
|
6
6
|
keyboard: KeyboardButton[][];
|
|
7
|
-
/**
|
|
7
|
+
/** Requests clients to always show the keyboard when the regular keyboard is hidden. Defaults to false, in which case the custom keyboard can be hidden and opened with a keyboard icon. */
|
|
8
8
|
isPersistent?: boolean;
|
|
9
|
-
/**
|
|
9
|
+
/** Requests clients to resize the keyboard vertically for optimal fit (e.g., make the keyboard smaller if there are just two rows of buttons). Defaults to false, in which case the custom keyboard is always of the same height as the app's standard keyboard. */
|
|
10
10
|
resizeKeyboard?: boolean;
|
|
11
|
-
/**
|
|
11
|
+
/** Requests clients to hide the keyboard as soon as it's been used. The keyboard will still be available, but clients will automatically display the usual letter-keyboard in the chat - the user can press a special button in the input field to see the custom keyboard again. Defaults to false. */
|
|
12
12
|
oneTimeKeyboard?: boolean;
|
|
13
|
-
/**
|
|
13
|
+
/** The placeholder to be shown in the input field when the keyboard is active; 1-64 characters */
|
|
14
14
|
inputFieldPlaceholder?: string;
|
|
15
|
-
/**
|
|
15
|
+
/** Use this parameter if you want to show the keyboard to specific users only. Targets: 1) users that are @mentioned in the text of the `Message` object; 2) if the bot's message is a reply (has reply_to_message_id), sender of the original message. */
|
|
16
16
|
selective?: boolean;
|
|
17
17
|
}
|
|
18
18
|
export declare function constructReplyKeyboardMarkup(keyboard_: types.ReplyKeyboardMarkup): ReplyKeyboardMarkup;
|
package/esm/types/3_message.d.ts
CHANGED
|
@@ -24,105 +24,137 @@ import { Location } from "./0_location.js";
|
|
|
24
24
|
export interface Message {
|
|
25
25
|
/** Unique message identifier inside this chat */
|
|
26
26
|
id: number;
|
|
27
|
-
/**
|
|
27
|
+
/** Unique identifier of a message thread to which the message belongs; for supergroups only */
|
|
28
28
|
threadId?: number;
|
|
29
|
-
/**
|
|
29
|
+
/** Sender of the message; empty for messages sent to channels. For backward compatibility, the field contains a fake sender user in non-channel chats, if the message was sent on behalf of a chat. */
|
|
30
30
|
from?: User;
|
|
31
|
-
/**
|
|
31
|
+
/** Sender of the message, sent on behalf of a chat. For example, the channel itself for channel posts, the supergroup itself for messages from anonymous group administrators, the linked channel for messages automatically forwarded to the discussion group. For backward compatibility, the field from contains a fake sender user in non-channel chats, if the message was sent on behalf of a chat. */
|
|
32
32
|
senderChat?: Chat;
|
|
33
33
|
/** Date the message was sent in Unix time */
|
|
34
34
|
date?: Date;
|
|
35
35
|
/** Conversation the message belongs to */
|
|
36
36
|
chat: Chat;
|
|
37
|
-
/**
|
|
37
|
+
/** For forwarded messages, sender of the original message */
|
|
38
38
|
forwardFrom?: User;
|
|
39
|
-
/**
|
|
39
|
+
/** For messages forwarded from channels or from anonymous administrators, information about the original sender chat */
|
|
40
40
|
forwardFromChat?: Chat;
|
|
41
|
-
/**
|
|
41
|
+
/** For messages forwarded from channels, identifier of the original message in the channel */
|
|
42
42
|
forwardId?: number;
|
|
43
|
-
/**
|
|
43
|
+
/** For forwarded messages that were originally sent in channels or by an anonymous chat administrator, signature of the message sender if present */
|
|
44
44
|
forwardSignature?: string;
|
|
45
|
-
/**
|
|
45
|
+
/** Sender's name for messages forwarded from users who disallow adding a link to their account in forwarded messages */
|
|
46
46
|
forwardSenderName?: string;
|
|
47
|
-
/**
|
|
47
|
+
/** For forwarded messages, date the original message was sent in Unix time */
|
|
48
48
|
forwardDate?: Date;
|
|
49
|
-
/**
|
|
49
|
+
/** True, if the message is sent to a forum topic */
|
|
50
50
|
isTopicMessage: boolean;
|
|
51
|
-
/**
|
|
51
|
+
/** True, if the message is a channel post that was automatically forwarded to the connected discussion group */
|
|
52
52
|
isAutomaticForward?: boolean;
|
|
53
|
-
/**
|
|
53
|
+
/** For replies, the original message. Note that the Message object in this field will not contain further reply_to_message fields even if it itself is a reply. */
|
|
54
54
|
replyToMessage?: Omit<Message, "replyToMessage">;
|
|
55
|
-
/**
|
|
55
|
+
/** Bot through which the message was sent */
|
|
56
56
|
viaBot?: User;
|
|
57
|
-
/**
|
|
57
|
+
/** Date the message was last edited in Unix time */
|
|
58
58
|
editDate?: Date;
|
|
59
|
-
/**
|
|
59
|
+
/** True, if the message can't be forwarded */
|
|
60
60
|
hasProtectedContent?: boolean;
|
|
61
|
-
/**
|
|
61
|
+
/** The unique identifier of a media message group this message belongs to */
|
|
62
62
|
mediaGroupId?: string;
|
|
63
|
-
/**
|
|
63
|
+
/** Signature of the post author for messages in channels, or the custom title of an anonymous group administrator */
|
|
64
64
|
authorSignature?: string;
|
|
65
|
-
/**
|
|
65
|
+
/** For text messages, the actual UTF-8 text of the message */
|
|
66
66
|
text?: string;
|
|
67
|
-
/**
|
|
67
|
+
/** For text messages, special entities like usernames, URLs, bot commands, etc. that appear in the text */
|
|
68
68
|
entities?: MessageEntity[];
|
|
69
|
-
/**
|
|
69
|
+
/** Caption for the animation, audio, document, photo, video or voice */
|
|
70
70
|
caption?: string;
|
|
71
|
-
/**
|
|
71
|
+
/** For messages with a caption, special entities like usernames, URLs, bot commands, etc. that appear in the caption */
|
|
72
72
|
captionEntities?: MessageEntity[];
|
|
73
|
-
/**
|
|
73
|
+
/** True, if the message media is covered by a spoiler animation */
|
|
74
74
|
hasMediaSpoiler?: boolean;
|
|
75
|
-
/**
|
|
75
|
+
/** View count for channel posts */
|
|
76
76
|
views?: number;
|
|
77
|
-
/**
|
|
77
|
+
/** Inline keyboard attached to the message. `login_url` buttons are represented as ordinary `url` buttons. */
|
|
78
78
|
replyMarkup?: InlineKeyboardMarkup | ReplyKeyboardMarkup | ReplyKeyboardRemove | ForceReply;
|
|
79
|
-
/**
|
|
79
|
+
/** Message is a photo, available sizes of the photo */
|
|
80
80
|
photo?: Photo;
|
|
81
|
+
/** Message is a general file, information about the file */
|
|
81
82
|
document?: Document;
|
|
83
|
+
/** Message is a video, information about the video */
|
|
82
84
|
video?: Video;
|
|
85
|
+
/** Message is a sticker, information about the sticker */
|
|
83
86
|
sticker?: Sticker;
|
|
87
|
+
/** Message is an animation, information about the animation. For backward compatibility, when this field is set, the document field will also be set */
|
|
84
88
|
animation?: Animation;
|
|
89
|
+
/** Message is a voice message, information about the file */
|
|
85
90
|
voice?: Voice;
|
|
91
|
+
/** Message is an audio file, information about the file */
|
|
86
92
|
audio?: Audio;
|
|
93
|
+
/** Message is a dice with random value */
|
|
87
94
|
dice?: Dice;
|
|
95
|
+
/** Message is a [video note](https://telegram.org/blog/video-messages-and-telescope), information about the video message */
|
|
88
96
|
videoNote?: VideoNote;
|
|
97
|
+
/** Message is a shared contact, information about the contact */
|
|
89
98
|
contact?: Contact;
|
|
99
|
+
/** Message is a game, information about the game. */
|
|
90
100
|
game?: Game;
|
|
101
|
+
/** Message is a venue, information about the venue. For backward compatibility, when this field is set, the location field will also be set */
|
|
91
102
|
venue?: Venue;
|
|
103
|
+
/** Message is a shared location, information about the location */
|
|
92
104
|
location?: Location;
|
|
105
|
+
/** New members that were added to the group or supergroup and information about them (the bot itself may be one of these members) */
|
|
93
106
|
newChatMembers?: User[];
|
|
107
|
+
/** A member was removed from the group, information about them (this member may be the bot itself) */
|
|
94
108
|
leftChatMember?: User;
|
|
109
|
+
/** A chat title was changed to this value */
|
|
95
110
|
newChatTitle?: string;
|
|
111
|
+
/** A chat photo was change to this value */
|
|
96
112
|
newChatPhoto?: Photo;
|
|
113
|
+
/** Service message: the chat photo was deleted */
|
|
97
114
|
deletedChatPhoto?: true;
|
|
115
|
+
/** Service message: the group has been created */
|
|
98
116
|
groupCreated?: true;
|
|
117
|
+
/** Service message: the supergroup has been created. This field can't be received in a message coming through updates, because bot can't be a member of a supergroup when it is created. It can only be found in reply_to_message if someone replies to a very first message in a directly created supergroup. */
|
|
99
118
|
supergroupCreated?: true;
|
|
119
|
+
/** Service message: the channel has been created. This field can't be received in a message coming through updates, because bot can't be a member of a channel when it is created. It can only be found in reply_to_message if someone replies to a very first message in a channel. */
|
|
100
120
|
channelCreated?: true;
|
|
121
|
+
/** The group has been migrated to a supergroup with the specified identifier. This number may have more than 32 significant bits and some programming languages may have difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a signed 64-bit integer or double-precision float type are safe for storing this identifier. */
|
|
101
122
|
chatMigratedTo?: number;
|
|
123
|
+
/** The supergroup has been migrated from a group with the specified identifier. This number may have more than 32 significant bits and some programming languages may have difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a signed 64-bit integer or double-precision float type are safe for storing this identifier. */
|
|
102
124
|
chatMigratedFrom?: number;
|
|
125
|
+
/** Specified message was pinned. Note that the Message object in this field will not contain further reply_to_message fields even if it is itself a reply. */
|
|
103
126
|
pinnedMessage?: Message;
|
|
127
|
+
/** Service message: a user was shared with the bot */
|
|
104
128
|
userShared?: {
|
|
105
129
|
requestId: number;
|
|
106
130
|
userId: number;
|
|
107
131
|
};
|
|
132
|
+
/** Service message: the user allowed the bot added to the attachment menu to write messages */
|
|
108
133
|
writeAccessAllowed?: {
|
|
109
134
|
webAppName?: string;
|
|
110
135
|
};
|
|
136
|
+
/** Service message: forum topic created */
|
|
111
137
|
forumTopicCreated?: {
|
|
112
138
|
name: string;
|
|
113
139
|
iconColor: string;
|
|
114
140
|
iconCutsomEmojiId?: string;
|
|
115
141
|
};
|
|
142
|
+
/** Service message: forum topic edited */
|
|
116
143
|
forumTopicEdited?: {
|
|
117
144
|
name?: string;
|
|
118
145
|
iconCutsomEmojiId?: string;
|
|
119
146
|
};
|
|
147
|
+
/** Service message: forum topic closed */
|
|
120
148
|
forumTopicClosed?: Record<never, never>;
|
|
149
|
+
/** Service message: forum topic reopened */
|
|
121
150
|
forumTopicReopened?: Record<never, never>;
|
|
151
|
+
/** Service message: video chat scheduled */
|
|
122
152
|
videoChatScheduled?: {
|
|
123
153
|
startDate: Date;
|
|
124
154
|
};
|
|
155
|
+
/** Service message: video chat started */
|
|
125
156
|
videoChatStarted?: Record<never, never>;
|
|
157
|
+
/** Service message: video chat ended */
|
|
126
158
|
videoChatEnded?: {
|
|
127
159
|
duration: number;
|
|
128
160
|
};
|
package/esm/types/3_message.js
CHANGED
package/package.json
CHANGED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.peerToChatId = exports.getChannelChatId = void 0;
|
|
27
|
+
const constants_js_1 = require("../constants.js");
|
|
28
|
+
const types = __importStar(require("../tl/2_types.js"));
|
|
29
|
+
const _0_control_js_1 = require("../utilities/0_control.js");
|
|
30
|
+
function getChannelChatId(channelId) {
|
|
31
|
+
return constants_js_1.ZERO_CHANNEL_ID + -Number(channelId);
|
|
32
|
+
}
|
|
33
|
+
exports.getChannelChatId = getChannelChatId;
|
|
34
|
+
function peerToChatId(peer) {
|
|
35
|
+
if (peer instanceof types.PeerUser || peer instanceof types.InputPeerUser) {
|
|
36
|
+
return Number(peer.userId);
|
|
37
|
+
}
|
|
38
|
+
else if (peer instanceof types.PeerChat || peer instanceof types.InputPeerChat) {
|
|
39
|
+
return -Number(peer.chatId);
|
|
40
|
+
}
|
|
41
|
+
else if (peer instanceof types.PeerChannel || peer instanceof types.InputPeerChannel) {
|
|
42
|
+
return getChannelChatId(peer.channelId);
|
|
43
|
+
}
|
|
44
|
+
else {
|
|
45
|
+
(0, _0_control_js_1.UNREACHABLE)();
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
exports.peerToChatId = peerToChatId;
|
|
@@ -172,7 +172,7 @@ export declare class Client extends ClientAbstract {
|
|
|
172
172
|
sendAs?: number | string;
|
|
173
173
|
replyMarkup?: InlineKeyboardMarkup | ReplyKeyboardMarkup | ReplyKeyboardRemove | ForceReply;
|
|
174
174
|
}): Promise<Message>;
|
|
175
|
-
getMessages(
|
|
175
|
+
getMessages(chatId_: number | string, messageIds: number[]): Promise<Omit<Message, "replyToMessage">[]>;
|
|
176
176
|
getMessage(chatId: number | string, messageId: number): Promise<Omit<Message, "replyToMessage"> | null>;
|
|
177
177
|
private downloadInner;
|
|
178
178
|
download(fileId_: string): Promise<AsyncGenerator<Uint8Array, void, unknown>>;
|