mezon-js 2.7.77 → 2.7.78

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/socket.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.7.77",
3
+ "version": "2.7.78",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },
package/socket.ts CHANGED
@@ -552,7 +552,7 @@ interface StatusUpdate {
552
552
  export interface Socket {
553
553
  /** Connection is Open */
554
554
  isOpen(): boolean;
555
-
555
+
556
556
  /** Connect to the server. */
557
557
  connect(session: Session, createStatus: boolean): Promise<Session>;
558
558