slnodejs 6.2.42 → 6.2.43
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/browser-agent/dist/browser-agent-all.js +16 -3
- package/browser-agent/dist/browser-agent-all.min.js +2 -2
- package/package.json +1 -1
- package/tsOutputs/common/http/contracts.d.ts +1 -0
- package/tsOutputs/common/http/contracts.js.map +1 -1
- package/tsOutputs/common/state-tracker.js +14 -1
- package/tsOutputs/common/state-tracker.js.map +1 -1
- package/tsOutputs/messages/message-keys.generated.js +1 -1
|
@@ -1093,7 +1093,7 @@ var __awaiter = this && this.__awaiter || function (thisArg, _arguments, P, gene
|
|
|
1093
1093
|
value: true
|
|
1094
1094
|
});
|
|
1095
1095
|
exports.SL_AGENT_TYPE = exports.SL_AGENT_VERSION = void 0;
|
|
1096
|
-
exports.SL_AGENT_VERSION = '6.2.
|
|
1096
|
+
exports.SL_AGENT_VERSION = '6.2.43';
|
|
1097
1097
|
exports.SL_AGENT_TYPE = 'browser';
|
|
1098
1098
|
});
|
|
1099
1099
|
|
|
@@ -9661,6 +9661,14 @@ var __awaiter = this && this.__awaiter || function (thisArg, _arguments, P, gene
|
|
|
9661
9661
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9662
9662
|
});
|
|
9663
9663
|
};
|
|
9664
|
+
var __rest = this && this.__rest || function (s, e) {
|
|
9665
|
+
var t = {};
|
|
9666
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
|
9667
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
9668
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
|
9669
|
+
}
|
|
9670
|
+
return t;
|
|
9671
|
+
};
|
|
9664
9672
|
(function (factory) {
|
|
9665
9673
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
9666
9674
|
var v = factory(require, exports);
|
|
@@ -9918,13 +9926,18 @@ var __awaiter = this && this.__awaiter || function (thisArg, _arguments, P, gene
|
|
|
9918
9926
|
buildName: this.cfg.build.value,
|
|
9919
9927
|
labId: this.cfg.labId.value,
|
|
9920
9928
|
testStage: this.cfg.testStage.value,
|
|
9921
|
-
executionId: executionId
|
|
9929
|
+
executionId: executionId,
|
|
9930
|
+
startTime: (0, system_date_1.getSystemDateValueOfLocal)()
|
|
9922
9931
|
};
|
|
9923
9932
|
if (this.cfg.testGroupId.value) {
|
|
9924
9933
|
request.testGroupId = this.cfg.testGroupId.value;
|
|
9925
9934
|
}
|
|
9926
9935
|
yield this.backendProxy.startColoredExecution(request);
|
|
9927
|
-
|
|
9936
|
+
const {
|
|
9937
|
+
startTime: _startTime
|
|
9938
|
+
} = request,
|
|
9939
|
+
executionFields = __rest(request, ["startTime"]);
|
|
9940
|
+
this.currentExecution = Object.assign(Object.assign({}, executionFields), {
|
|
9928
9941
|
buildSessionId: this.cfg.buildSessionId.value,
|
|
9929
9942
|
status: StateTracker.EXECUTION_STATUS_CREATED
|
|
9930
9943
|
});
|