@taphubhq/sdk-core 0.25.1 → 0.25.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.
package/dist/index.cjs CHANGED
@@ -2353,9 +2353,10 @@ function createMqttProbe(monitor) {
2353
2353
  return (event) => {
2354
2354
  switch (event.kind) {
2355
2355
  case "connect":
2356
- case "reconnect":
2357
2356
  monitor.notifyMqttConnect(event.rttMs);
2358
2357
  return;
2358
+ case "reconnect":
2359
+ return;
2359
2360
  case "disconnect":
2360
2361
  monitor.notifyMqttDisconnect();
2361
2362
  return;
package/dist/index.js CHANGED
@@ -2287,9 +2287,10 @@ function createMqttProbe(monitor) {
2287
2287
  return (event) => {
2288
2288
  switch (event.kind) {
2289
2289
  case "connect":
2290
- case "reconnect":
2291
2290
  monitor.notifyMqttConnect(event.rttMs);
2292
2291
  return;
2292
+ case "reconnect":
2293
+ return;
2293
2294
  case "disconnect":
2294
2295
  monitor.notifyMqttDisconnect();
2295
2296
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taphubhq/sdk-core",
3
- "version": "0.25.1",
3
+ "version": "0.25.2",
4
4
  "description": "Core SDK for building on the TabHub platform",
5
5
  "license": "MIT",
6
6
  "main": "./dist/index.cjs",