linkdood-web-sdk 1.0.8 → 1.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/linkdoodWebSDK.js +3 -3
- package/lib/cache/BuddyCache.js +2 -2
- package/lib/cache/ChatCache.js +4 -4
- package/lib/cache/EnterpriseCache.js +2 -2
- package/lib/cache/GroupCache.js +5 -5
- package/lib/cache/GroupMemberCache.js +5 -5
- package/lib/cache/GroupMessageCache.js +5 -5
- package/lib/cache/HelpCache.js +1 -1
- package/lib/cache/MessageCache.js +4 -4
- package/lib/cache/MessageTimeStampCache.js +3 -3
- package/lib/cache/MyselfCache.js +3 -3
- package/lib/cache/SystemDictionaryCache.js +5 -5
- package/lib/cache/SystemMessageCache.js +2 -2
- package/lib/cache/TimeStampCache.js +1 -1
- package/lib/cache/db/IMDB.js +2 -2
- package/lib/cache/db/bean/Buddy.js +2 -2
- package/lib/cache/db/bean/Chat.js +2 -2
- package/lib/cache/db/bean/GroupMessage.js +1 -1
- package/lib/cache/db/bean/Message.js +2 -2
- package/lib/cache/db/bean/SystemDictionarie.js +2 -2
- package/lib/cache/db/bean/SystemMessage.js +2 -2
- package/lib/cache/db/bean/Timestamp.js +2 -2
- package/lib/config/thriftConfig.js +2 -2
- package/lib/constant/dictionaryConstant.js +2 -2
- package/lib/constant/storageConstant.js +2 -2
- package/lib/constant/uploadTypeConstant.js +1 -0
- package/lib/core/LinkdoodWebSDK.js +2 -2
- package/lib/core/action/ApplicationAction.js +2 -2
- package/lib/core/action/AuthAction.js +7 -7
- package/lib/core/action/BuddyAction.js +7 -7
- package/lib/core/action/ChatAction.js +2 -2
- package/lib/core/action/ConfigAction.js +2 -2
- package/lib/core/action/EnterpriseAction.js +2 -2
- package/lib/core/action/FeedBackAction.js +2 -2
- package/lib/core/action/FileAction.js +7 -4
- package/lib/core/action/GroupAction.js +5 -5
- package/lib/core/action/HelpAction.js +2 -2
- package/lib/core/action/MessageAction.js +8 -8
- package/lib/core/action/OrgAction.js +2 -2
- package/lib/core/action/SearchAction.js +2 -2
- package/lib/core/action/SubscribeAction.js +2 -2
- package/lib/core/action/SystemAction.js +2 -2
- package/lib/core/action/SystemMessageAction.js +2 -2
- package/lib/core/action/UserAction.js +4 -4
- package/lib/decorator/ErrorORCompletionDecorator.js +1 -1
- package/lib/error/JSDKError.js +1 -1
- package/lib/index.js +1 -1
- package/lib/model/loginModel.js +1 -1
- package/lib/model/thriftConnectionModel.js +1 -1
- package/lib/model/userModel.js +1 -1
- package/lib/notify/NotifyAnalysis.js +1 -1
- package/lib/notify/NotifyHeartBeat.js +3 -3
- package/lib/notify/emitter/notifyEmitter.js +1 -1
- package/lib/notify/send/NotifyFactory.js +1 -1
- package/lib/notify/send/children/noticeReply.js +2 -2
- package/lib/notify/send/children/notifyCreateFaceGroupSuccess.js +1 -1
- package/lib/notify/send/children/notifyError.js +2 -2
- package/lib/notify/send/children/notifyExitFaceAddBuddy.js +1 -1
- package/lib/notify/send/children/notifyExitFaceJoinGroup.js +1 -1
- package/lib/notify/send/children/notifyFaceAddBuddy.js +1 -1
- package/lib/notify/send/children/notifyFaceAddBuddyConfirm.js +1 -1
- package/lib/notify/send/children/notifyFaceJoinGroup.js +1 -1
- package/lib/notify/send/children/notifyGroupMemberInfoRefresh.js +1 -1
- package/lib/notify/send/children/notifyGroupMembersRefresh.js +2 -2
- package/lib/notify/send/children/notifyGroupRefresh.js +1 -1
- package/lib/notify/send/children/notifyMessageCursor.js +1 -1
- package/lib/notify/send/children/notifyMessageJson.js +1 -1
- package/lib/notify/send/children/notifyMessageStatusStatsInfo.js +1 -1
- package/lib/notify/send/children/notifyOperateBuddy.js +1 -1
- package/lib/notify/send/children/notifyOperateUser.js +1 -1
- package/lib/notify/send/children/notifyPresent.js +1 -1
- package/lib/notify/send/children/notifySendMessage.js +3 -3
- package/lib/notify/send/children/notifyTransferGroup.js +2 -2
- package/lib/notify/send/children/notifyTransferMessage.js +1 -1
- package/lib/offline/OfflineBuddy.js +1 -1
- package/lib/offline/OfflineEnterprise.js +1 -1
- package/lib/offline/OfflineGroup.js +3 -3
- package/lib/offline/OfflineHelp.js +1 -1
- package/lib/offline/OfflineMessage.js +2 -2
- package/lib/offline/OfflineMyself.js +1 -1
- package/lib/service/ApplicationService.js +4 -4
- package/lib/service/BuddyService.js +11 -11
- package/lib/service/ChatService.js +13 -13
- package/lib/service/CommonService.js +3 -3
- package/lib/service/EnterpriseService.js +7 -7
- package/lib/service/GroupMemberService.js +15 -15
- package/lib/service/GroupMessageService.js +5 -5
- package/lib/service/GroupService.js +9 -9
- package/lib/service/HelpService.js +3 -3
- package/lib/service/LoginService.js +4 -4
- package/lib/service/MessageService.js +12 -12
- package/lib/service/MessageTimeStampService.js +4 -4
- package/lib/service/MyselfService.js +3 -3
- package/lib/service/SubscribeService.js +2 -2
- package/lib/service/SystemDictionaryService.js +4 -4
- package/lib/service/SystemMessageService.js +2 -2
- package/lib/service/TimeStampService.js +3 -3
- package/lib/thrift/client/ThriftBase.js +1 -1
- package/lib/thrift/client/ThriftHoldClient.js +1 -1
- package/lib/thrift/client/ThriftNotifyClient.js +1 -1
- package/lib/thrift/client/ThriftServiceClient.js +1 -1
- package/lib/thrift/lib/ap/APHold.js +1 -1
- package/lib/thrift/lib/ap/APNotify.js +1 -1
- package/lib/thrift/lib/ap/APService.js +1 -1
- package/lib/thrift/lib/ap/ap_types.js +1 -1
- package/lib/thrift/lib/ap/aphead_types.js +1 -1
- package/lib/thrift/lib/ap/aphold_types.js +1 -1
- package/lib/thrift/lib/ap/apnotify_types.js +1 -1
- package/lib/thrift/lib/thrift.js +2 -2
- package/lib/thrift/thriftClient.js +2 -2
- package/lib/utils/Logger.js +1 -1
- package/lib/utils/browserUtil.js +2 -2
- package/lib/utils/commonUtil.js +9 -9
- package/lib/utils/filesUtil.js +26 -25
- package/lib/utils/groupJudgeUtil.js +3 -3
- package/lib/utils/md5Util.js +1 -1
- package/lib/utils/navi.js +1 -1
- package/lib/utils/request.js +2 -2
- package/package.json +1 -1
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.