telegram-bot-api-nodejs
Advanced tools
Comparing version
@@ -111,2 +111,3 @@ export type ChatType = "private" | "group" | "supergroup" | "channel"; | ||
my_chat_member?: ChatMemberUpdated; | ||
chat_join_request?: ChatJoinRequest; | ||
} | ||
@@ -160,19 +161,19 @@ export interface WebhookInfo { | ||
} | ||
interface ForumTopicClosed { | ||
export interface ForumTopicClosed { | ||
} | ||
interface ForumTopicReopened { | ||
export interface ForumTopicReopened { | ||
} | ||
interface GeneralForumTopicHidden { | ||
export interface GeneralForumTopicHidden { | ||
} | ||
interface GeneralForumTopicUnhidden { | ||
export interface GeneralForumTopicUnhidden { | ||
} | ||
interface VideoChatScheduled { | ||
export interface VideoChatScheduled { | ||
start_date: number; | ||
} | ||
interface VideoChatStarted { | ||
export interface VideoChatStarted { | ||
} | ||
interface VideoChatEnded { | ||
export interface VideoChatEnded { | ||
duration: number; | ||
} | ||
interface VideoChatParticipantsInvited { | ||
export interface VideoChatParticipantsInvited { | ||
users: User[]; | ||
@@ -583,3 +584,11 @@ } | ||
} | ||
interface ChatInviteLink { | ||
export interface ChatJoinRequest { | ||
chat: Chat; | ||
from: User; | ||
user_chat_id: number; | ||
date: number; | ||
bio?: string; | ||
invite_link?: ChatInviteLink; | ||
} | ||
export interface ChatInviteLink { | ||
invite_link: string; | ||
@@ -586,0 +595,0 @@ creator: User; |
@@ -247,5 +247,2 @@ /** | ||
poll: m.poll ? parsePoll(m.poll) : void 0, | ||
// new_chat_members?: User[]; | ||
// new_chat_title?: string; | ||
// new_chat_photo?: PhotoSize[]; | ||
// delete_chat_photo?: boolean; | ||
@@ -252,0 +249,0 @@ // group_chat_created?: boolean; |
{ | ||
"name": "telegram-bot-api-nodejs", | ||
"version": "1.0.22", | ||
"version": "1.0.23", | ||
"description": "Telegram Bot API client for nodejs", | ||
@@ -5,0 +5,0 @@ "type": "module", |
40045
0.39%1285
0.47%