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.
Files changed (119) hide show
  1. package/dist/linkdoodWebSDK.js +3 -3
  2. package/lib/cache/BuddyCache.js +2 -2
  3. package/lib/cache/ChatCache.js +4 -4
  4. package/lib/cache/EnterpriseCache.js +2 -2
  5. package/lib/cache/GroupCache.js +5 -5
  6. package/lib/cache/GroupMemberCache.js +5 -5
  7. package/lib/cache/GroupMessageCache.js +5 -5
  8. package/lib/cache/HelpCache.js +1 -1
  9. package/lib/cache/MessageCache.js +4 -4
  10. package/lib/cache/MessageTimeStampCache.js +3 -3
  11. package/lib/cache/MyselfCache.js +3 -3
  12. package/lib/cache/SystemDictionaryCache.js +5 -5
  13. package/lib/cache/SystemMessageCache.js +2 -2
  14. package/lib/cache/TimeStampCache.js +1 -1
  15. package/lib/cache/db/IMDB.js +2 -2
  16. package/lib/cache/db/bean/Buddy.js +2 -2
  17. package/lib/cache/db/bean/Chat.js +2 -2
  18. package/lib/cache/db/bean/GroupMessage.js +1 -1
  19. package/lib/cache/db/bean/Message.js +2 -2
  20. package/lib/cache/db/bean/SystemDictionarie.js +2 -2
  21. package/lib/cache/db/bean/SystemMessage.js +2 -2
  22. package/lib/cache/db/bean/Timestamp.js +2 -2
  23. package/lib/config/thriftConfig.js +2 -2
  24. package/lib/constant/dictionaryConstant.js +2 -2
  25. package/lib/constant/storageConstant.js +2 -2
  26. package/lib/constant/uploadTypeConstant.js +1 -0
  27. package/lib/core/LinkdoodWebSDK.js +2 -2
  28. package/lib/core/action/ApplicationAction.js +2 -2
  29. package/lib/core/action/AuthAction.js +7 -7
  30. package/lib/core/action/BuddyAction.js +7 -7
  31. package/lib/core/action/ChatAction.js +2 -2
  32. package/lib/core/action/ConfigAction.js +2 -2
  33. package/lib/core/action/EnterpriseAction.js +2 -2
  34. package/lib/core/action/FeedBackAction.js +2 -2
  35. package/lib/core/action/FileAction.js +7 -4
  36. package/lib/core/action/GroupAction.js +5 -5
  37. package/lib/core/action/HelpAction.js +2 -2
  38. package/lib/core/action/MessageAction.js +8 -8
  39. package/lib/core/action/OrgAction.js +2 -2
  40. package/lib/core/action/SearchAction.js +2 -2
  41. package/lib/core/action/SubscribeAction.js +2 -2
  42. package/lib/core/action/SystemAction.js +2 -2
  43. package/lib/core/action/SystemMessageAction.js +2 -2
  44. package/lib/core/action/UserAction.js +4 -4
  45. package/lib/decorator/ErrorORCompletionDecorator.js +1 -1
  46. package/lib/error/JSDKError.js +1 -1
  47. package/lib/index.js +1 -1
  48. package/lib/model/loginModel.js +1 -1
  49. package/lib/model/thriftConnectionModel.js +1 -1
  50. package/lib/model/userModel.js +1 -1
  51. package/lib/notify/NotifyAnalysis.js +1 -1
  52. package/lib/notify/NotifyHeartBeat.js +3 -3
  53. package/lib/notify/emitter/notifyEmitter.js +1 -1
  54. package/lib/notify/send/NotifyFactory.js +1 -1
  55. package/lib/notify/send/children/noticeReply.js +2 -2
  56. package/lib/notify/send/children/notifyCreateFaceGroupSuccess.js +1 -1
  57. package/lib/notify/send/children/notifyError.js +2 -2
  58. package/lib/notify/send/children/notifyExitFaceAddBuddy.js +1 -1
  59. package/lib/notify/send/children/notifyExitFaceJoinGroup.js +1 -1
  60. package/lib/notify/send/children/notifyFaceAddBuddy.js +1 -1
  61. package/lib/notify/send/children/notifyFaceAddBuddyConfirm.js +1 -1
  62. package/lib/notify/send/children/notifyFaceJoinGroup.js +1 -1
  63. package/lib/notify/send/children/notifyGroupMemberInfoRefresh.js +1 -1
  64. package/lib/notify/send/children/notifyGroupMembersRefresh.js +2 -2
  65. package/lib/notify/send/children/notifyGroupRefresh.js +1 -1
  66. package/lib/notify/send/children/notifyMessageCursor.js +1 -1
  67. package/lib/notify/send/children/notifyMessageJson.js +1 -1
  68. package/lib/notify/send/children/notifyMessageStatusStatsInfo.js +1 -1
  69. package/lib/notify/send/children/notifyOperateBuddy.js +1 -1
  70. package/lib/notify/send/children/notifyOperateUser.js +1 -1
  71. package/lib/notify/send/children/notifyPresent.js +1 -1
  72. package/lib/notify/send/children/notifySendMessage.js +3 -3
  73. package/lib/notify/send/children/notifyTransferGroup.js +2 -2
  74. package/lib/notify/send/children/notifyTransferMessage.js +1 -1
  75. package/lib/offline/OfflineBuddy.js +1 -1
  76. package/lib/offline/OfflineEnterprise.js +1 -1
  77. package/lib/offline/OfflineGroup.js +3 -3
  78. package/lib/offline/OfflineHelp.js +1 -1
  79. package/lib/offline/OfflineMessage.js +2 -2
  80. package/lib/offline/OfflineMyself.js +1 -1
  81. package/lib/service/ApplicationService.js +4 -4
  82. package/lib/service/BuddyService.js +11 -11
  83. package/lib/service/ChatService.js +13 -13
  84. package/lib/service/CommonService.js +3 -3
  85. package/lib/service/EnterpriseService.js +7 -7
  86. package/lib/service/GroupMemberService.js +15 -15
  87. package/lib/service/GroupMessageService.js +5 -5
  88. package/lib/service/GroupService.js +9 -9
  89. package/lib/service/HelpService.js +3 -3
  90. package/lib/service/LoginService.js +4 -4
  91. package/lib/service/MessageService.js +12 -12
  92. package/lib/service/MessageTimeStampService.js +4 -4
  93. package/lib/service/MyselfService.js +3 -3
  94. package/lib/service/SubscribeService.js +2 -2
  95. package/lib/service/SystemDictionaryService.js +4 -4
  96. package/lib/service/SystemMessageService.js +2 -2
  97. package/lib/service/TimeStampService.js +3 -3
  98. package/lib/thrift/client/ThriftBase.js +1 -1
  99. package/lib/thrift/client/ThriftHoldClient.js +1 -1
  100. package/lib/thrift/client/ThriftNotifyClient.js +1 -1
  101. package/lib/thrift/client/ThriftServiceClient.js +1 -1
  102. package/lib/thrift/lib/ap/APHold.js +1 -1
  103. package/lib/thrift/lib/ap/APNotify.js +1 -1
  104. package/lib/thrift/lib/ap/APService.js +1 -1
  105. package/lib/thrift/lib/ap/ap_types.js +1 -1
  106. package/lib/thrift/lib/ap/aphead_types.js +1 -1
  107. package/lib/thrift/lib/ap/aphold_types.js +1 -1
  108. package/lib/thrift/lib/ap/apnotify_types.js +1 -1
  109. package/lib/thrift/lib/thrift.js +2 -2
  110. package/lib/thrift/thriftClient.js +2 -2
  111. package/lib/utils/Logger.js +1 -1
  112. package/lib/utils/browserUtil.js +2 -2
  113. package/lib/utils/commonUtil.js +9 -9
  114. package/lib/utils/filesUtil.js +26 -25
  115. package/lib/utils/groupJudgeUtil.js +3 -3
  116. package/lib/utils/md5Util.js +1 -1
  117. package/lib/utils/navi.js +1 -1
  118. package/lib/utils/request.js +2 -2
  119. 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.