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