node-vk-api-bot
Version:
A library that helps you to create chat-bot for group or user
50 lines (49 loc) • 2.82 kB
JavaScript
export var GroupUpdates;
(function (GroupUpdates) {
let UpdateTypes;
(function (UpdateTypes) {
UpdateTypes["message_new"] = "message_new";
UpdateTypes["message_reply"] = "message_reply";
UpdateTypes["message_edit"] = "message_edit";
UpdateTypes["message_allow"] = "message_allow";
UpdateTypes["message_deny"] = "message_deny";
UpdateTypes["message_typing_state"] = "message_typing_state";
UpdateTypes["message_event"] = "message_event";
UpdateTypes["photo_new"] = "photo_new";
UpdateTypes["photo_comment_new"] = "photo_comment_new";
UpdateTypes["photo_comment_edit"] = "photo_comment_edit";
UpdateTypes["photo_comment_restore"] = "photo_comment_restore";
UpdateTypes["audio_new"] = "audio_new";
UpdateTypes["video_new"] = "video_new";
UpdateTypes["video_comment_new"] = "video_comment_new";
UpdateTypes["video_comment_edit"] = "video_comment_edit";
UpdateTypes["video_comment_restore"] = "video_comment_restore";
UpdateTypes["video_comment_delete"] = "video_comment_delete";
UpdateTypes["wall_post_new"] = "wall_post_new";
UpdateTypes["wall_repost"] = "wall_repost";
UpdateTypes["wall_reply_new"] = "wall_reply_new";
UpdateTypes["wall_reply_edit"] = "wall_reply_edit";
UpdateTypes["wall_reply_restore"] = "wall_reply_restore";
UpdateTypes["wall_reply_delete"] = "wall_reply_delete";
UpdateTypes["like_add"] = "like_add";
UpdateTypes["like_remove"] = "like_remove";
UpdateTypes["board_post_new"] = "board_post_new";
UpdateTypes["board_post_edit"] = "board_post_edit";
UpdateTypes["board_post_restore"] = "board_post_restore";
UpdateTypes["board_post_delete"] = "board_post_delete";
UpdateTypes["market_comment_new"] = "market_comment_new";
UpdateTypes["market_comment_edit"] = "market_comment_edit";
UpdateTypes["market_comment_restore"] = "market_comment_restore";
UpdateTypes["market_comment_delete"] = "market_comment_delete";
UpdateTypes["market_order_new"] = "market_order_new";
UpdateTypes["market_order_edit"] = "market_order_edit";
UpdateTypes["group_leave"] = "group_leave";
UpdateTypes["group_join"] = "group_join";
UpdateTypes["user_block"] = "user_block";
UpdateTypes["user_unblock"] = "user_unblock";
UpdateTypes["poll_vote_new"] = "poll_vote_new";
UpdateTypes["group_officers_edit"] = "group_officers_edit";
UpdateTypes["group_change_settings"] = "group_change_settings";
UpdateTypes["group_change_photo"] = "group_change_photo";
})(UpdateTypes = GroupUpdates.UpdateTypes || (GroupUpdates.UpdateTypes = {}));
})(GroupUpdates || (GroupUpdates = {}));