@momo2555/koppeliajs 0.0.134 → 0.0.135

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.
@@ -185,7 +185,6 @@ export class Console {
185
185
  }
186
186
  /* Handle device event */
187
187
  else if (type == MessageType.DEVICE_EVENT) {
188
- console.log("receive device event ! handlers : " + this._deviceEventHandlers);
189
188
  this._execDeviceEventHandlers(request.header.device, request.header.from_addr, request.event);
190
189
  }
191
190
  /* Handle device data */
@@ -228,6 +227,6 @@ export class Console {
228
227
  this._deviceDataHandlers = [];
229
228
  this._dataExchangeHandlers = [];
230
229
  this._anyRequestHandlers = [];
231
- console.log("destroy events event handlers : " + this._deviceEventHandlers);
230
+ console.log("destroy events event handlers");
232
231
  }
233
232
  }
@@ -1,5 +1,5 @@
1
1
  import { Message } from "./message.js";
2
- const DEFAULT_WS_TIMEOUT = 4000;
2
+ const DEFAULT_WS_TIMEOUT = 20000;
3
3
  export class KoppeliaWebsocket {
4
4
  socket = undefined;
5
5
  onGoingRequests;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momo2555/koppeliajs",
3
- "version": "0.0.134",
3
+ "version": "0.0.135",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run package",