@kubb/studio 5.3.0 → 5.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.
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/protocol.cjs +3 -3
- package/dist/protocol.cjs.map +1 -1
- package/dist/protocol.d.ts +4 -4
- package/dist/protocol.js +3 -3
- package/dist/protocol.js.map +1 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -651,7 +651,7 @@ async function createAgent({ studioUrl, token, name, machineToken }) {
|
|
|
651
651
|
}
|
|
652
652
|
//#endregion
|
|
653
653
|
//#region package.json
|
|
654
|
-
var version = "5.3.
|
|
654
|
+
var version = "5.3.2";
|
|
655
655
|
//#endregion
|
|
656
656
|
//#region src/hooks.ts
|
|
657
657
|
/**
|
|
@@ -2158,7 +2158,7 @@ var StudioSession = class {
|
|
|
2158
2158
|
#onMessage = async (message) => {
|
|
2159
2159
|
try {
|
|
2160
2160
|
const data = JSON.parse(message.data);
|
|
2161
|
-
if (require_protocol.
|
|
2161
|
+
if (require_protocol.isStudioPongMessage(data)) {
|
|
2162
2162
|
this.#lastPongAt = Date.now();
|
|
2163
2163
|
return;
|
|
2164
2164
|
}
|