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