@rongcloud/imlib-next 5.26.1-c-rtc-alpha.2 → 5.26.1-c-rtc-alpha.3
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.cjs +1 -1
- package/index.cjs.js +1 -1
- package/index.d.ts +20 -6
- package/index.esm.js +1 -1
- package/index.mjs +1 -1
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -355,23 +355,36 @@ declare enum Events {
|
|
|
355
355
|
*/
|
|
356
356
|
TAG = "TAG",
|
|
357
357
|
/** [EN]
|
|
358
|
-
*
|
|
358
|
+
* User-level configuration synchronization completed
|
|
359
|
+
* @since 5.24.0
|
|
359
360
|
*/
|
|
360
361
|
/**
|
|
361
362
|
* 用户级配置同步完成
|
|
362
363
|
* @since 5.24.0
|
|
363
364
|
*/
|
|
364
365
|
USER_SETTINGS_SYNCED = "USER_SETTINGS_SYNCED",
|
|
366
|
+
/** [EN]
|
|
367
|
+
* User-level configuration change, including user automatic translation switch and translation language change.
|
|
368
|
+
* @since 5.24.0
|
|
369
|
+
*/
|
|
365
370
|
/**
|
|
366
371
|
* 用户级配置变更,包括用户自动翻译开关、翻译语言变更等
|
|
367
372
|
* @since 5.24.0
|
|
368
373
|
*/
|
|
369
374
|
USER_SETTINGS_CHANGED = "USER_SETTINGS_CHANGED",
|
|
375
|
+
/** [EN]
|
|
376
|
+
* Conversation status data synchronization completed
|
|
377
|
+
* @since 5.24.0
|
|
378
|
+
*/
|
|
370
379
|
/**
|
|
371
380
|
* 会话状态数据同步完成
|
|
372
381
|
* @since 5.24.0
|
|
373
382
|
*/
|
|
374
383
|
CONVERSATIONS_SETTINGS_SYNCED = "CONVERSATIONS_SETTINGS_SYNCED",
|
|
384
|
+
/** [EN]
|
|
385
|
+
* Tag change notification for conversations, applicable in multi-device scenarios. Upon receiving this notification, you need to fetch all tags for each conversation based on the locally rendered conversation list to update the UI rendering.
|
|
386
|
+
* @since 5.24.0
|
|
387
|
+
*/
|
|
375
388
|
/**
|
|
376
389
|
* 会话上的 Tag 变更通知,适用于多端场景,收到此通知时需根据本地已渲染的会话列表,逐个获取会话的所有标签,以更新 UI 渲染
|
|
377
390
|
*/
|
|
@@ -393,7 +406,8 @@ declare enum Events {
|
|
|
393
406
|
*/
|
|
394
407
|
MESSAGE_BLOCKED = "MESSAGE_BLOCKED",
|
|
395
408
|
/** [EN]
|
|
396
|
-
* The ultra group conversation list synchronization is complete, and you can now call ultra group-related APIs.\n
|
|
409
|
+
* The ultra group conversation list synchronization is complete, and you can now call ultra group-related APIs.\n
|
|
410
|
+
* @since 5.2.0
|
|
397
411
|
*/
|
|
398
412
|
/**
|
|
399
413
|
* 超级群会话列表同步完成,此时可以调用超级群相关接口。
|
|
@@ -401,15 +415,15 @@ declare enum Events {
|
|
|
401
415
|
* @since 5.2.0
|
|
402
416
|
*/
|
|
403
417
|
ULTRA_GROUP_ENABLE = "ULTRA_GROUP_ENABLE",
|
|
404
|
-
/** [EN]
|
|
405
|
-
* Ultra group typing status notification
|
|
406
|
-
* @since 5.2.0
|
|
407
|
-
*/
|
|
408
418
|
/**
|
|
409
419
|
* 单群聊会话列表同步完成,仅在会话列表支持超级群功能后有效。开关关闭的情况下,本地不会缓存单群聊会话列表。
|
|
410
420
|
* @since 5.20.0
|
|
411
421
|
*/
|
|
412
422
|
CONVERSATIONS_SYNCED = "CONVERSATIONS_SYNCED",
|
|
423
|
+
/** [EN]
|
|
424
|
+
* Ultra group typing status notification
|
|
425
|
+
* @since 5.2.0
|
|
426
|
+
*/
|
|
413
427
|
/**
|
|
414
428
|
* 超级群输入状态通知
|
|
415
429
|
* @since 5.2.0
|