@nsshunt/stsrunnerframework 2.0.37 → 2.0.39
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 +6 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +6 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
- package/types/commonTypes.d.ts +5 -1
- package/types/commonTypes.d.ts.map +1 -1
- package/types/runnerInstance.d.ts.map +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3586,13 +3586,17 @@ var RunnerInstance = class {
|
|
|
3586
3586
|
childCount: 0,
|
|
3587
3587
|
rx: 0,
|
|
3588
3588
|
tx: 0,
|
|
3589
|
-
|
|
3589
|
+
perc: {},
|
|
3590
3590
|
duration5: 0,
|
|
3591
3591
|
duration10: 0,
|
|
3592
3592
|
duration20: 0,
|
|
3593
3593
|
duration30: 0,
|
|
3594
|
+
duration40: 0,
|
|
3594
3595
|
duration50: 0,
|
|
3596
|
+
duration60: 0,
|
|
3597
|
+
duration80: 0,
|
|
3595
3598
|
duration100: 0,
|
|
3599
|
+
duration120: 0,
|
|
3596
3600
|
duration150: 0,
|
|
3597
3601
|
duration250: 0,
|
|
3598
3602
|
duration500: 0,
|
|
@@ -10207,7 +10211,7 @@ var SocketIoClient = class extends import_tiny_emitter.TinyEmitter {
|
|
|
10207
10211
|
} else {
|
|
10208
10212
|
const errorMessage = "SocketIoClient:on(\"connect\"): Could not get socket object from socket.io, Address: [${socketDetail.address}]";
|
|
10209
10213
|
this.LogErrorMessage(errorMessage);
|
|
10210
|
-
this.SocketConnectError(new Error(errorMessage));
|
|
10214
|
+
this.SocketConnectError(/* @__PURE__ */ new Error(errorMessage));
|
|
10211
10215
|
}
|
|
10212
10216
|
});
|
|
10213
10217
|
this.#socket.on("disconnect", (reason) => {
|