jsgar 1.3.1 → 1.3.2

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/dist/gar.umd.js +1 -1
  2. package/package.json +1 -1
package/dist/gar.umd.js CHANGED
@@ -387,7 +387,7 @@
387
387
  registerDefaultHandlers() {
388
388
  this.registerIntroductionHandler((version, interval, user, _schema) =>
389
389
  this.log('INFO', `Connected to server: ${user}`));
390
- this.registerHeartbeatHandler((u_milliseconds) => this.log('DEBUG', `Heartbeat received ${u_milliseconds}}`));
390
+ this.registerHeartbeatHandler((u_milliseconds) => this.log('INFO', `Heartbeat received ${u_milliseconds}}`));
391
391
  this.registerLogoffHandler(() => this.log('INFO', 'Logoff received'));
392
392
  this.registerTopicIntroductionHandler((topicId, name) =>
393
393
  this.log('DEBUG', `New server topic: ${name} (Server ID: ${topicId})`));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jsgar",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "A Javascript client for the GAR protocol",
5
5
  "type": "module",
6
6
  "main": "dist/gar.umd.js",