UNPKG

redai-automation-web-sdk

Version:

TypeScript SDK for RedAI Automation Web API - Zalo Personal automation, messaging, advanced sticker search, and bulk operations. 100% compatible with automation-web backend. v1.8.0: Added SessionProxyService for managing proxy assignments to sessions with

149 lines 2.88 kB
/** * Webhook Event Enums * 100% khớp với zalo-personal-sdk/src/models/Enum.ts */ /** * Thread Type enum - loại cuộc trò chuyện */ export declare enum ThreadType { USER = 0, GROUP = 1 } /** * Destination Type enum */ export declare enum DestType { USER = 3, PAGE = 5 } /** * Reminder Repeat Mode enum */ export declare enum ReminderRepeatMode { NONE = 0, DAILY = 1, WEEKLY = 2, MONTHLY = 3 } /** * Gender enum */ export declare enum Gender { MALE = 0, FEMALE = 1 } /** * Board Type enum */ export declare enum BoardType { NOTE = 1, PINNED_MESSAGE = 2, POLL = 3 } /** * Reaction Types enum - các loại phản ứng */ export declare enum Reactions { HEART = "/-heart", LIKE = "/-strong", HAHA = ":>", WOW = ":o", CRY = ":-((", ANGRY = ":-h", KISS = ":-*", TEARS_OF_JOY = ":')", SHIT = "/-shit", ROSE = "/-rose", BROKEN_HEART = "/-break", DISLIKE = "/-weak", LOVE = ";xx", CONFUSED = ";-/", WINK = ";-)", FADE = "/-fade", SUN = "/-li", BIRTHDAY = "/-bd", BOMB = "/-bome", OK = "/-ok", PEACE = "/-v", THANKS = "/-thanks", PUNCH = "/-punch", SHARE = "/-share", PRAY = "_()_", NO = "/-no", BAD = "/-bad", LOVE_YOU = "/-loveu", SAD = "--b", VERY_SAD = ":((", COOL = "x-)", NERD = "8-)", BIG_SMILE = ";-d", SUNGLASSES = "b-)", NEUTRAL = ":--|", SAD_FACE = "p-(", BYE = ":-bye", SLEEPY = "|-)", WIPE = ":wipe", DIG = ":-dig", ANGUISH = "&-(", HANDCLAP = ":handclap", ANGRY_FACE = ">-|", F_CHAIR = ":-f", L_CHAIR = ":-l", R_CHAIR = ":-r", SILENT = ";-x", SURPRISE = ":-o", EMBARRASSED = ";-s", AFRAID = ";-a", SAD2 = ":-<", BIG_LAUGH = ":))", RICH = "$-)", BEER = "/-beer", NONE = "" } /** * Friend Event Type enum - các loại sự kiện bạn bè */ export declare enum FriendEventType { ADD = 0, REMOVE = 1, REQUEST = 2, UNDO_REQUEST = 3, REJECT_REQUEST = 4, SEEN_FRIEND_REQUEST = 5, BLOCK = 6, UNBLOCK = 7, BLOCK_CALL = 8, UNBLOCK_CALL = 9, PIN_UNPIN = 10, PIN_CREATE = 11, UNKNOWN = 12 } /** * Group Event Type enum - các loại sự kiện nhóm */ export declare enum GroupEventType { JOIN_REQUEST = 0, JOIN = 1, LEAVE = 2, REMOVE_MEMBER = 3, BLOCK_MEMBER = 4, UPDATE_SETTING = 5, UPDATE = 6, NEW_LINK = 7, ADD_ADMIN = 8, REMOVE_ADMIN = 9, NEW_PIN_TOPIC = 10, UPDATE_PIN_TOPIC = 11, REORDER_PIN_TOPIC = 12, UPDATE_BOARD = 13, REMOVE_BOARD = 14, UPDATE_TOPIC = 15, UNPIN_TOPIC = 16, REMOVE_TOPIC = 17, ACCEPT_REMIND = 18, REJECT_REMIND = 19, REMIND_TOPIC = 20, UPDATE_AVATAR = 21, UNKNOWN = 22 } //# sourceMappingURL=enums.d.ts.map