@onyx-p/imlib-web 1.3.7 → 1.3.8
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/index.esm.js +1 -1
- package/index.umd.js +1 -0
- package/package.json +1 -1
- package/types/index.d.ts +1 -0
package/index.esm.js
CHANGED
@@ -28219,4 +28219,4 @@ const _logSendError = (conversation, errorCode) => {
|
|
28219
28219
|
}
|
28220
28220
|
};
|
28221
28221
|
|
28222
|
-
export { ConnectionStatus, ConversationType, ErrorCode, ErrorDesc, Events, FileMessage, GIFMessage, VoiceMessage as HQVoiceMessage, ImageMessage, LogLevel, MentionedType, MessageDirection, NotificationLevel, NotificationStatus, ReceivedStatus, SentStatus, TextMessage, VideoMessage, addEventListener, clearAllMessagesUnreadStatus, clearHistoryMessages, clearMessagesUnreadStatus, clearTextMessageDraft, connect, deleteMessages, disconnect, getAllConversationState, getAllUnreadMentionedCount, getBlockedConversationList, getConnectionStatus, getConversation, getConversationList, getConversationNotificationLevel, getConversationNotificationStatus, getHistoryMessages, getRemoteHistoryMessages, getServerTime, getTextMessageDraft, getTopConversationList, getTotalUnreadCount, getUnreadCount, getUnreadMentionedCount, init, logOut, mockLogin, onceEventListener, recallMessage, registerMessageType, removeConversation, removeEventListener, request, saveTextMessageDraft, sendMessage, sendTextMessage, setConversationNotificationStatus, setConversationToTop, setUserLogged };
|
28222
|
+
export { ConnectionStatus, ConversationType, ErrorCode, ErrorDesc, Events, FileMessage, GIFMessage, VoiceMessage as HQVoiceMessage, ImageMessage, LogLevel, MentionedType, MessageDirection, MessageTypes, NotificationLevel, NotificationStatus, ReceivedStatus, SentStatus, TextMessage, VideoMessage, addEventListener, clearAllMessagesUnreadStatus, clearHistoryMessages, clearMessagesUnreadStatus, clearTextMessageDraft, connect, deleteMessages, disconnect, getAllConversationState, getAllUnreadMentionedCount, getBlockedConversationList, getConnectionStatus, getConversation, getConversationList, getConversationNotificationLevel, getConversationNotificationStatus, getHistoryMessages, getRemoteHistoryMessages, getServerTime, getTextMessageDraft, getTopConversationList, getTotalUnreadCount, getUnreadCount, getUnreadMentionedCount, init, logOut, mockLogin, onceEventListener, recallMessage, registerMessageType, removeConversation, removeEventListener, request, saveTextMessageDraft, sendMessage, sendTextMessage, setConversationNotificationStatus, setConversationToTop, setUserLogged };
|
package/index.umd.js
CHANGED
@@ -28230,6 +28230,7 @@
|
|
28230
28230
|
exports.GIFMessage = GIFMessage;
|
28231
28231
|
exports.HQVoiceMessage = VoiceMessage;
|
28232
28232
|
exports.ImageMessage = ImageMessage;
|
28233
|
+
exports.MessageTypes = MessageTypes;
|
28233
28234
|
exports.TextMessage = TextMessage;
|
28234
28235
|
exports.VideoMessage = VideoMessage;
|
28235
28236
|
exports.addEventListener = addEventListener;
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
@@ -8,6 +8,7 @@ import { CommonReqResult, PBCodec } from './net/connection/webSocketServer';
|
|
8
8
|
import { BaseResp } from './net/pbs/rpc.base';
|
9
9
|
export { TextMessage, ImageMessage, HQVoiceMessage, GIFMessage, FileMessage, VideoMessage } from './model/messages';
|
10
10
|
export type { ITextMessageBody, IImageMessageBody, IGIFMessageBody, IFileMessageBody, IHQVoiceMessageBody, IRecallCommandMessageBody, IVideoMessageBody } from './model/messages';
|
11
|
+
export { MessageTypes } from './constants/messageTypes';
|
11
12
|
export type { IBaseMessageBody, IReceivedMessage, IReceivedConversation };
|
12
13
|
export * from './types';
|
13
14
|
export * from './model/statusTypes';
|