@nsshunt/stsrunnerframework 2.0.34 → 2.0.36
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 +16 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +16 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +9 -9
- package/types/commonTypes.d.ts +11 -0
- package/types/commonTypes.d.ts.map +1 -1
- package/types/runnerInstance.d.ts.map +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3586,7 +3586,18 @@ var RunnerInstance = class {
|
|
|
3586
3586
|
message: [],
|
|
3587
3587
|
childCount: 0,
|
|
3588
3588
|
rx: 0,
|
|
3589
|
-
tx: 0
|
|
3589
|
+
tx: 0,
|
|
3590
|
+
duration5: 0,
|
|
3591
|
+
duration10: 0,
|
|
3592
|
+
duration20: 0,
|
|
3593
|
+
duration30: 0,
|
|
3594
|
+
duration50: 0,
|
|
3595
|
+
duration100: 0,
|
|
3596
|
+
duration150: 0,
|
|
3597
|
+
duration250: 0,
|
|
3598
|
+
duration500: 0,
|
|
3599
|
+
duration1000: 0,
|
|
3600
|
+
duratione: 0
|
|
3590
3601
|
};
|
|
3591
3602
|
}
|
|
3592
3603
|
/**
|
|
@@ -6722,7 +6733,7 @@ var STSWorkerManager = class {
|
|
|
6722
6733
|
};
|
|
6723
6734
|
};
|
|
6724
6735
|
//#endregion
|
|
6725
|
-
//#region node_modules/@nsshunt/stssocketioutils/dist/tiny-emitter-
|
|
6736
|
+
//#region node_modules/@nsshunt/stssocketioutils/dist/tiny-emitter-Ci1ma0VV.js
|
|
6726
6737
|
var __commonJSMin = (cb, mod) => () => (mod || (cb((mod = { exports: {} }).exports, mod), cb = null), mod.exports);
|
|
6727
6738
|
var require_tiny_emitter = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
6728
6739
|
function E() {}
|
|
@@ -7472,8 +7483,8 @@ var BaseXHR = class extends Polling {
|
|
|
7472
7483
|
/**
|
|
7473
7484
|
* Sends data.
|
|
7474
7485
|
*
|
|
7475
|
-
* @param {String} data to send.
|
|
7476
|
-
* @param {Function} called upon flush.
|
|
7486
|
+
* @param {String} data - data to send.
|
|
7487
|
+
* @param {Function} fn - called upon flush.
|
|
7477
7488
|
* @private
|
|
7478
7489
|
*/
|
|
7479
7490
|
doWrite(data, fn) {
|
|
@@ -8204,7 +8215,7 @@ var SocketWithoutUpgrade = class SocketWithoutUpgrade extends Emitter {
|
|
|
8204
8215
|
/**
|
|
8205
8216
|
* Sends a packet.
|
|
8206
8217
|
*
|
|
8207
|
-
* @param {String} type
|
|
8218
|
+
* @param {String} type - packet type.
|
|
8208
8219
|
* @param {String} data.
|
|
8209
8220
|
* @param {Object} options.
|
|
8210
8221
|
* @param {Function} fn - callback function.
|