123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- export const AddFriendQrCodePrefix = "io.openim.app/addFriend/";
- export const AddGroupQrCodePrefix = "io.openim.app/joinGroup/";
- export const ChatingFooterActionTypes = {
- Album: "Album",
- Camera: "Camera",
- takePhoto: "takePhoto",
- pickCamera: "pickCamera",
- Call: "Call",
- VideoCall: "VideoCall",
- File: "File",
- Card: "Card",
- Location: "Location",
- Order: "Order",
- Follow: "Follow",
- StoreOrder: "StoreOrder"
- };
- export const MessageMenuTypes = {
- Copy: "Copy",
- Del: "Del",
- Forward: "Forward",
- Reply: "Reply",
- Revoke: "Revoke",
- Multiple: "Multiple",
- };
- export const ContactMenuTypes = {
- NewFriend: "NewFriend",
- NewGroup: "NewGroup",
- MyFriend: "MyFriend",
- MyGroup: "MyGroup",
- Moments: "Moments",
- Lable: "Lable",
- };
- export const GroupMemberListTypes = {
- Preview: "Preview",
- Transfer: "Transfer",
- Kickout: "Kickout",
- SetAdmin: "SetAdmin",
- Mute: 'Mute',
- ChooseAt: "ChooseAt",
- CallInvite: "CallInvite",
- };
- export const ContactChooseTypes = {
- Invite: "Invite",
- ForWard: "ForWard",
- BatchForWard: "BatchForWard",
- MergeForWard: "MergeForWard",
- Card: "Card",
- ShareCard: "ShareCard",
- GetList: "GetList",
- GetListWithGroup: "GetListWithGroup",
- InviteMeeting: "InviteMeeting",
- SendImage: 'SendImage'
- };
- export const UpdateMessageTypes = {
- Overall: "Overall",
- KeyWords: "KeyWords",
- };
- export const SmsUserFor = {
- Register: 1,
- Reset: 2,
- Login: 3,
- };
- export const CommonIsAllow = {
- Allow: 1,
- NotAllow: 2,
- };
- export const GlobalSearchTypes = {
- Comprehensive: 0,
- Contacts: 1,
- Groups: 2,
- ChatLogs: 3,
- Documents: 4,
- };
- export const CustomMessageStatus = {
- Success: "success",
- Cancel: "cancel",
- Canceled: "canceled",
- Refuse: "refuse",
- Refused: "refused",
- Timeout: "timeout",
- AccessByOther: "accessByOther",
- RejectedByOther: "rejectedByOther",
- };
|