@rongcloud/engine 5.42.0 → 5.44.0-c-export-msgs-alpha.1

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.d.ts CHANGED
@@ -3560,6 +3560,26 @@ declare const MessageType: {
3560
3560
  * 流式消息
3561
3561
  */
3562
3562
  readonly STREAM_MESSAGE: "RC:StreamMsg";
3563
+ /**
3564
+ * 命令消息,不存储不计数
3565
+ * @since 5.44.0
3566
+ */
3567
+ readonly COMMAND: "RC:CmdMsg";
3568
+ /**
3569
+ * 命令通知消息,存储不计数
3570
+ * @since 5.44.0
3571
+ */
3572
+ readonly COMMAND_NOTIFICATION: "RC:CmdNtf";
3573
+ /**
3574
+ * 通知消息,存储不计数
3575
+ * @since 5.44.0
3576
+ */
3577
+ readonly INFORMATION_NOTIFICATION: "RC:InfoNtf";
3578
+ /**
3579
+ * 群通知消息,存储不计数
3580
+ * @since 5.44.0
3581
+ */
3582
+ readonly GROUP_NOTIFICATION: "RC:GrpNtf";
3563
3583
  };
3564
3584
  declare type MessageType = typeof MessageType[keyof typeof MessageType];
3565
3585