2026-04-24 16:16:31 +08:00
|
|
|
// @xuqm/rn-sdk — convenience meta-package re-exporting all modules.
|
|
|
|
|
// For tree-shaking and smaller bundles, import from individual packages:
|
|
|
|
|
// @xuqm/rn-common | @xuqm/rn-im | @xuqm/rn-push | @xuqm/rn-update
|
2026-04-21 22:07:29 +08:00
|
|
|
|
2026-04-25 16:41:19 +08:00
|
|
|
export { XuqmSDK } from '../packages/common/src'
|
|
|
|
|
export type { XuqmInitOptions, DeviceInfo } from '../packages/common/src'
|
2026-04-28 16:55:12 +08:00
|
|
|
export { getDeviceId, getDeviceInfo, detectPushVendor, setUserId, getUserId } from '../packages/common/src'
|
2026-04-25 16:41:19 +08:00
|
|
|
export { ScaledImage } from '../packages/common/src'
|
2026-04-21 22:07:29 +08:00
|
|
|
|
2026-04-25 16:41:19 +08:00
|
|
|
export { ImSDK } from '../packages/im/src'
|
|
|
|
|
export { ImClient } from '../packages/im/src'
|
|
|
|
|
export { uploadFile } from '../packages/im/src'
|
2026-04-25 17:27:19 +08:00
|
|
|
export { listFriends, addFriend, removeFriend } from '../packages/im/src'
|
2026-04-24 16:16:31 +08:00
|
|
|
export type {
|
|
|
|
|
ImMessage, ImGroup, ChatType, MsgType, MsgStatus,
|
|
|
|
|
ImEventListener, SendMessageParams,
|
2026-04-25 16:41:19 +08:00
|
|
|
ConversationData,
|
2026-04-28 16:55:12 +08:00
|
|
|
HistoryQuery,
|
|
|
|
|
PageResult,
|
2026-04-28 10:27:23 +08:00
|
|
|
FriendRequest,
|
|
|
|
|
GroupJoinRequest,
|
|
|
|
|
BlacklistEntry,
|
2026-04-25 16:41:19 +08:00
|
|
|
MessageSearchParams,
|
|
|
|
|
UploadResult,
|
|
|
|
|
} from '../packages/im/src'
|
2026-04-21 22:07:29 +08:00
|
|
|
|
2026-04-25 16:41:19 +08:00
|
|
|
export { PushSDK } from '../packages/push/src'
|
|
|
|
|
export type { PushVendor } from '../packages/push/src'
|
2026-04-24 16:16:31 +08:00
|
|
|
|
2026-04-25 16:41:19 +08:00
|
|
|
export { UpdateSDK } from '../packages/update/src'
|
|
|
|
|
export type { PluginMeta, AppUpdateInfo, RnUpdateInfo, CachedRnBundle } from '../packages/update/src'
|