mezon-js-protobuf 1.5.11 → 1.5.13

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.
@@ -830,7 +830,9 @@ export interface NotificationSetting {
830
830
  }
831
831
  /** Notification channel */
832
832
  export interface NotifiReactMessageEvent {
833
+ /** channel id */
833
834
  channel_id: string;
835
+ /** notification message */
834
836
  notifi_react_message: NotifiReactMessage | undefined;
835
837
  }
836
838
  /** Notification channel */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js-protobuf",
3
- "version": "1.5.11",
3
+ "version": "1.5.13",
4
4
  "description": "Websocket adapter adding protocol buffer support to the Mezon Javascript client.",
5
5
  "main": "dist/mezon-js-protobuf.cjs.js",
6
6
  "module": "dist/mezon-js-protobuf.esm.mjs",
package/rtapi/realtime.ts CHANGED
@@ -1077,7 +1077,9 @@ export interface NotificationSetting {
1077
1077
 
1078
1078
  /** Notification channel */
1079
1079
  export interface NotifiReactMessageEvent {
1080
+ /** channel id */
1080
1081
  channel_id: string;
1082
+ /** notification message */
1081
1083
  notifi_react_message: NotifiReactMessage | undefined;
1082
1084
  }
1083
1085