| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- export const MessageReceiveOptType = {
- Normal: 0,
- NotReceive: 1,
- NotNotify: 2,
- };
- export const AddFriendPermission = {
- AddFriendAllowed: 0,
- AddFriendAllowedNoReview: 1,
- AddFriendDenied: 2,
- };
- export const AllowType = {
- Allowed: 0,
- NotAllowed: 1,
- };
- export const GroupType = {
- Group: 2,
- WorkingGroup: 2,
- };
- export const GroupJoinSource = {
- Invitation: 2,
- Search: 3,
- QrCode: 4,
- };
- export const GroupMemberRole = {
- Normal: 20,
- Admin: 60,
- Owner: 100,
- };
- export const GroupVerificationType = {
- ApplyNeedInviteNot: 0,
- AllNeed: 1,
- AllNot: 2,
- };
- export const MessageStatus = {
- Sending: 1,
- Succeed: 2,
- Failed: 3,
- };
- export const Platform = {
- iOS: 1,
- Android: 2,
- Windows: 3,
- MacOSX: 4,
- Web: 5,
- Linux: 7,
- AndroidPad: 8,
- iPad: 9,
- };
- export const LogLevel = {
- Verbose: 6,
- Debug: 5,
- Info: 4,
- Warn: 3,
- Error: 2,
- Fatal: 1,
- Panic: 0,
- };
- export const ApplicationHandleResult = {
- Unprocessed: 0,
- Agree: 1,
- Reject: -1,
- };
- export const MessageType = {
- TextMessage: 101,
- PictureMessage: 102,
- VoiceMessage: 103,
- VideoMessage: 104,
- FileMessage: 105,
- AtTextMessage: 106,
- MergeMessage: 107,
- CardMessage: 108,
- LocationMessage: 109,
- CustomMessage: 110,
- TypingMessage: 113,
- QuoteMessage: 114,
- FaceMessage: 115,
- MarkdownMessage: 118,
- StreamMessage: 143,
- FriendAdded: 1201,
- OANotification: 1400,
- GroupCreated: 1501,
- GroupInfoUpdated: 1502,
- MemberQuit: 1504,
- GroupOwnerTransferred: 1507,
- MemberKicked: 1508,
- MemberInvited: 1509,
- MemberEnter: 1510,
- GroupDismissed: 1511,
- GroupMemberMuted: 1512,
- GroupMemberCancelMuted: 1513,
- GroupMuted: 1514,
- GroupCancelMuted: 1515,
- GroupAnnouncementUpdated: 1519,
- GroupNameUpdated: 1520,
- BurnMessageChange: 1701,
- RevokeMessage: 2101,
- MsgPinned: 2400,
- };
- export const SessionType = {
- Single: 1,
- Group: 3,
- WorkingGroup: 3,
- Notification: 4,
- };
- export const GroupStatus = {
- Normal: 0,
- Banned: 1,
- Dismissed: 2,
- Muted: 3,
- };
- export const GroupAtType = {
- AtNormal: 0,
- AtMe: 1,
- AtAll: 2,
- AtAllAtMe: 3,
- AtGroupNotice: 4,
- };
- export const GroupMemberFilter = {
- All: 0,
- Owner: 1,
- Admin: 2,
- Normal: 3,
- AdminAndNormal: 4,
- AdminAndOwner: 5,
- };
- export const Relationship = {
- isBlack: 0,
- isFriend: 1,
- };
- export const LoginStatus = {
- Logout: 1,
- Logging: 2,
- Logged: 3,
- };
- export const OnlineState = {
- Online: 1,
- Offline: 0,
- };
- export const GroupMessageReaderFilter = {
- Read: 0,
- UnRead: 1,
- };
- export const ViewType = {
- History: 0,
- Search: 1,
- };
|