slnodejs 6.1.319 → 6.1.327
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 +100 -38
- package/browser-agent/dist/browser-agent-all.min.js +3 -3
- package/browser-agent/package.json +1 -1
- package/package.json +1 -1
- package/tsOutputs/common/footprints-process-v6/hits-collector.js +1 -0
- package/tsOutputs/common/footprints-process-v6/hits-collector.js.map +1 -1
- package/tsOutputs/common/footprints-process-v6/index.js +1 -0
- package/tsOutputs/common/footprints-process-v6/index.js.map +1 -1
- package/tsOutputs/test-listener/footprints-process/ts-node-hits-collector.js +46 -30
- package/tsOutputs/test-listener/footprints-process/ts-node-hits-collector.js.map +1 -1
|
@@ -33823,7 +33823,7 @@ module.exports={
|
|
|
33823
33823
|
"_resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz",
|
|
33824
33824
|
"_shasum": "da37cebd31e79a1367e941b592ed1fbebd58abbb",
|
|
33825
33825
|
"_spec": "elliptic@^6.5.3",
|
|
33826
|
-
"_where": "/var/lib/jenkins/workspace/.OnPremise.Agent.JavaScript_main
|
|
33826
|
+
"_where": "/var/lib/jenkins/workspace/.OnPremise.Agent.JavaScript_main/browser-agent/node_modules/browserify-sign",
|
|
33827
33827
|
"author": {
|
|
33828
33828
|
"name": "Fedor Indutny",
|
|
33829
33829
|
"email": "fedor@indutny.com"
|
|
@@ -53910,7 +53910,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
53910
53910
|
"use strict";
|
|
53911
53911
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53912
53912
|
exports.SL_AGENT_TYPE = exports.SL_AGENT_VERSION = void 0;
|
|
53913
|
-
exports.SL_AGENT_VERSION = '6.1.
|
|
53913
|
+
exports.SL_AGENT_VERSION = '6.1.327';
|
|
53914
53914
|
exports.SL_AGENT_TYPE = 'browser';
|
|
53915
53915
|
});
|
|
53916
53916
|
|
|
@@ -54260,19 +54260,33 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54260
54260
|
})(function (require, exports) {
|
|
54261
54261
|
"use strict";
|
|
54262
54262
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54263
|
-
exports.EVENTS = exports.SL_TEST_NAME = exports.SL_SESSION_ID = exports.SL_CONTEXT_KEY = exports.SL_BAGGAGE_HEADER = void 0;
|
|
54263
|
+
exports.relativePathRegex = exports.EVENTS = exports.EVENT_TYPES = exports.CONTEXT = exports.SL_EVENTS_BRIDGE = exports.SL_TEST_NAME = exports.SL_SESSION_ID = exports.SL_CONTEXT_KEY = exports.SL_BAGGAGE_HEADER = void 0;
|
|
54264
54264
|
exports.SL_BAGGAGE_HEADER = 'baggage';
|
|
54265
54265
|
exports.SL_CONTEXT_KEY = 'sl-context';
|
|
54266
54266
|
exports.SL_SESSION_ID = 'x-sl-test-session-id';
|
|
54267
54267
|
exports.SL_TEST_NAME = 'x-sl-test-name';
|
|
54268
|
+
exports.SL_EVENTS_BRIDGE = 'sl-events-bridge';
|
|
54269
|
+
exports.CONTEXT = 'context';
|
|
54270
|
+
exports.EVENT_TYPES = {
|
|
54271
|
+
SET: 'set',
|
|
54272
|
+
ACK: 'ack',
|
|
54273
|
+
DELETE: 'delete',
|
|
54274
|
+
READY: 'ready',
|
|
54275
|
+
REQUEST: 'request',
|
|
54276
|
+
RESPONSE: 'response',
|
|
54277
|
+
};
|
|
54268
54278
|
exports.EVENTS = {
|
|
54269
|
-
SET_BAGGAGE:
|
|
54270
|
-
|
|
54271
|
-
|
|
54272
|
-
|
|
54273
|
-
|
|
54274
|
-
|
|
54279
|
+
SET_BAGGAGE: `${exports.EVENT_TYPES.SET}:${exports.SL_BAGGAGE_HEADER}`,
|
|
54280
|
+
SET_CONTEXT: `${exports.EVENT_TYPES.SET}:${exports.CONTEXT}`,
|
|
54281
|
+
ACK_BAGGAGE: `${exports.EVENT_TYPES.ACK}:${exports.SL_BAGGAGE_HEADER}`,
|
|
54282
|
+
ACK_CONTEXT: `${exports.EVENT_TYPES.ACK}:${exports.CONTEXT}`,
|
|
54283
|
+
DELETE_BAGGAGE: `${exports.EVENT_TYPES.DELETE}:${exports.SL_BAGGAGE_HEADER}`,
|
|
54284
|
+
DELETE_CONTEXT: `${exports.EVENT_TYPES.DELETE}:${exports.CONTEXT}`,
|
|
54285
|
+
READY_EVENTS_BRIDGE: `${exports.EVENT_TYPES.READY}:${exports.SL_EVENTS_BRIDGE}`,
|
|
54286
|
+
REQUEST_AGENT_CONTEXT: `${exports.EVENT_TYPES.REQUEST}:${exports.SL_CONTEXT_KEY}`,
|
|
54287
|
+
RESPONSE_AGENT_CONTEXT: `${exports.EVENT_TYPES.RESPONSE}:${exports.SL_CONTEXT_KEY}`,
|
|
54275
54288
|
};
|
|
54289
|
+
exports.relativePathRegex = new RegExp('^(?!www\\.|(?:http|ftp)s?://|[A-Za-z]:\\\\|//).*');
|
|
54276
54290
|
});
|
|
54277
54291
|
|
|
54278
54292
|
},{}],424:[function(require,module,exports){
|
|
@@ -54282,7 +54296,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54282
54296
|
if (v !== undefined) module.exports = v;
|
|
54283
54297
|
}
|
|
54284
54298
|
else if (typeof define === "function" && define.amd) {
|
|
54285
|
-
define(["require", "exports", "./const", "@opentelemetry/api", "
|
|
54299
|
+
define(["require", "exports", "./const", "@opentelemetry/api", "../../../common/agent-events/cockpit-notifier"], factory);
|
|
54286
54300
|
}
|
|
54287
54301
|
})(function (require, exports) {
|
|
54288
54302
|
"use strict";
|
|
@@ -54290,7 +54304,6 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54290
54304
|
exports.registerEvents = void 0;
|
|
54291
54305
|
const SlConst = require("./const");
|
|
54292
54306
|
const api = require("@opentelemetry/api");
|
|
54293
|
-
const const_1 = require("./const");
|
|
54294
54307
|
const cockpit_notifier_1 = require("../../../common/agent-events/cockpit-notifier");
|
|
54295
54308
|
const registerEvents = (logger, withOpenTelemetry) => {
|
|
54296
54309
|
try {
|
|
@@ -54301,19 +54314,20 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54301
54314
|
};
|
|
54302
54315
|
if (withOpenTelemetry) {
|
|
54303
54316
|
SlContext = api.ROOT_CONTEXT.setValue(api.createContextKey(SlConst.SL_CONTEXT_KEY), true);
|
|
54304
|
-
window.$Sealights.eventsBridge.getBaggage = () => SlContext.getValue(api.createContextKey(SlConst.SL_BAGGAGE_HEADER));
|
|
54317
|
+
window.$Sealights.eventsBridge.getBaggage = () => (SlContext.getValue(api.createContextKey(SlConst.SL_BAGGAGE_HEADER)));
|
|
54318
|
+
window.$Sealights.eventsBridge.getContext = () => (SlContext.getValue(api.createContextKey(SlConst.CONTEXT)));
|
|
54305
54319
|
window.$Sealights.eventsBridge.otel = true;
|
|
54306
54320
|
}
|
|
54307
54321
|
addEventListener(SlConst.EVENTS.SET_BAGGAGE, ({ detail }) => {
|
|
54308
54322
|
var _a, _b;
|
|
54309
|
-
const sessionId = detail === null || detail === void 0 ? void 0 : detail[
|
|
54310
|
-
const testName = detail === null || detail === void 0 ? void 0 : detail[
|
|
54323
|
+
const sessionId = detail === null || detail === void 0 ? void 0 : detail[SlConst.SL_SESSION_ID];
|
|
54324
|
+
const testName = detail === null || detail === void 0 ? void 0 : detail[SlConst.SL_TEST_NAME];
|
|
54311
54325
|
if (!(sessionId === null || sessionId === void 0 ? void 0 : sessionId.length) || !(testName === null || testName === void 0 ? void 0 : testName.length))
|
|
54312
54326
|
return;
|
|
54313
54327
|
if (withOpenTelemetry) {
|
|
54314
54328
|
SlContext = SlContext.setValue(api.createContextKey(SlConst.SL_BAGGAGE_HEADER), {
|
|
54315
|
-
[
|
|
54316
|
-
[
|
|
54329
|
+
[SlConst.SL_SESSION_ID]: sessionId,
|
|
54330
|
+
[SlConst.SL_TEST_NAME]: encodeURI(testName),
|
|
54317
54331
|
});
|
|
54318
54332
|
}
|
|
54319
54333
|
(_b = (_a = window.$SealightsAgent) === null || _a === void 0 ? void 0 : _a.setCurrentTestIdentifier) === null || _b === void 0 ? void 0 : _b.call(_a, `${sessionId}/${testName}`);
|
|
@@ -54321,6 +54335,19 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54321
54335
|
detail,
|
|
54322
54336
|
}));
|
|
54323
54337
|
});
|
|
54338
|
+
addEventListener(SlConst.EVENTS.SET_CONTEXT, ({ detail }) => {
|
|
54339
|
+
var _a;
|
|
54340
|
+
dispatchEvent(new CustomEvent(SlConst.EVENTS.SET_BAGGAGE, {
|
|
54341
|
+
detail: Object.assign({}, ((_a = detail[SlConst.SL_BAGGAGE_HEADER]) !== null && _a !== void 0 ? _a : {})),
|
|
54342
|
+
}));
|
|
54343
|
+
delete detail[SlConst.SL_BAGGAGE_HEADER];
|
|
54344
|
+
if (withOpenTelemetry) {
|
|
54345
|
+
SlContext = SlContext.setValue(api.createContextKey(SlConst.CONTEXT), detail);
|
|
54346
|
+
}
|
|
54347
|
+
dispatchEvent(new CustomEvent(SlConst.EVENTS.ACK_CONTEXT, {
|
|
54348
|
+
detail,
|
|
54349
|
+
}));
|
|
54350
|
+
});
|
|
54324
54351
|
addEventListener(SlConst.EVENTS.REQUEST_AGENT_CONTEXT, () => {
|
|
54325
54352
|
dispatchEvent(new CustomEvent(SlConst.EVENTS.RESPONSE_AGENT_CONTEXT, {
|
|
54326
54353
|
detail: { components: window.$Sealights.components || {} },
|
|
@@ -54331,6 +54358,12 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54331
54358
|
SlContext = SlContext.deleteValue(api.createContextKey(SlConst.SL_BAGGAGE_HEADER));
|
|
54332
54359
|
(_b = (_a = window.$SealightsAgent) === null || _a === void 0 ? void 0 : _a.setCurrentTestIdentifier) === null || _b === void 0 ? void 0 : _b.call(_a, null);
|
|
54333
54360
|
});
|
|
54361
|
+
addEventListener(SlConst.EVENTS.DELETE_CONTEXT, () => {
|
|
54362
|
+
var _a, _b;
|
|
54363
|
+
SlContext = SlContext.deleteValue(api.createContextKey(SlConst.SL_BAGGAGE_HEADER));
|
|
54364
|
+
SlContext = SlContext.deleteValue(api.createContextKey(SlConst.CONTEXT));
|
|
54365
|
+
(_b = (_a = window.$SealightsAgent) === null || _a === void 0 ? void 0 : _a.setCurrentTestIdentifier) === null || _b === void 0 ? void 0 : _b.call(_a, null);
|
|
54366
|
+
});
|
|
54334
54367
|
window.$Sealights.eventsBridge.loaded = true;
|
|
54335
54368
|
logger.info(`Events Bridge integration loaded. All events registered successfully. OpenTelemetry status: ${withOpenTelemetry}`);
|
|
54336
54369
|
}
|
|
@@ -54350,7 +54383,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54350
54383
|
if (v !== undefined) module.exports = v;
|
|
54351
54384
|
}
|
|
54352
54385
|
else if (typeof define === "function" && define.amd) {
|
|
54353
|
-
define(["require", "exports", "@opentelemetry/instrumentation-fetch", "../utils"], factory);
|
|
54386
|
+
define(["require", "exports", "@opentelemetry/instrumentation-fetch", "../utils", "../const"], factory);
|
|
54354
54387
|
}
|
|
54355
54388
|
})(function (require, exports) {
|
|
54356
54389
|
"use strict";
|
|
@@ -54358,6 +54391,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54358
54391
|
exports.CustomFetchInstrumentation = exports.handleAddHeaders = void 0;
|
|
54359
54392
|
const instrumentation_fetch_1 = require("@opentelemetry/instrumentation-fetch");
|
|
54360
54393
|
const utils_1 = require("../utils");
|
|
54394
|
+
const const_1 = require("../const");
|
|
54361
54395
|
const setPropagationHeaders = (options, contextPropagationHeaders) => {
|
|
54362
54396
|
for (const [key, value] of Object.entries(contextPropagationHeaders)) {
|
|
54363
54397
|
if (value) {
|
|
@@ -54367,11 +54401,12 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54367
54401
|
};
|
|
54368
54402
|
function handleAddHeaders(options, spanUrl) {
|
|
54369
54403
|
const origin = window.location.origin;
|
|
54370
|
-
const
|
|
54371
|
-
|
|
54404
|
+
const startsWithOrigin = spanUrl === null || spanUrl === void 0 ? void 0 : spanUrl.startsWith(origin);
|
|
54405
|
+
const isRelativeUrl = const_1.relativePathRegex.test(spanUrl);
|
|
54406
|
+
if (!startsWithOrigin && !isRelativeUrl) {
|
|
54372
54407
|
return;
|
|
54373
54408
|
}
|
|
54374
|
-
const contextPropagationHeaders = (0, utils_1.constructBaggageHeader)();
|
|
54409
|
+
const contextPropagationHeaders = Object.assign(Object.assign({}, (0, utils_1.constructBaggageHeader)()), (0, utils_1.constructContextHeaders)());
|
|
54375
54410
|
if (options instanceof Request && contextPropagationHeaders) {
|
|
54376
54411
|
setPropagationHeaders(options, contextPropagationHeaders);
|
|
54377
54412
|
}
|
|
@@ -54384,8 +54419,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54384
54419
|
}
|
|
54385
54420
|
}
|
|
54386
54421
|
else {
|
|
54387
|
-
|
|
54388
|
-
options.headers = Object.assign({}, headers, options.headers || {});
|
|
54422
|
+
options.headers = Object.assign({}, contextPropagationHeaders, options.headers || {});
|
|
54389
54423
|
}
|
|
54390
54424
|
}
|
|
54391
54425
|
exports.handleAddHeaders = handleAddHeaders;
|
|
@@ -54398,14 +54432,14 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54398
54432
|
exports.CustomFetchInstrumentation = CustomFetchInstrumentation;
|
|
54399
54433
|
});
|
|
54400
54434
|
|
|
54401
|
-
},{"../utils":429,"@opentelemetry/instrumentation-fetch":89}],426:[function(require,module,exports){
|
|
54435
|
+
},{"../const":423,"../utils":429,"@opentelemetry/instrumentation-fetch":89}],426:[function(require,module,exports){
|
|
54402
54436
|
(function (factory) {
|
|
54403
54437
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
54404
54438
|
var v = factory(require, exports);
|
|
54405
54439
|
if (v !== undefined) module.exports = v;
|
|
54406
54440
|
}
|
|
54407
54441
|
else if (typeof define === "function" && define.amd) {
|
|
54408
|
-
define(["require", "exports", "@opentelemetry/instrumentation-xml-http-request", "../utils"], factory);
|
|
54442
|
+
define(["require", "exports", "@opentelemetry/instrumentation-xml-http-request", "../utils", "../const"], factory);
|
|
54409
54443
|
}
|
|
54410
54444
|
})(function (require, exports) {
|
|
54411
54445
|
"use strict";
|
|
@@ -54413,16 +54447,18 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54413
54447
|
exports.CustomXMLHttpRequestInstrumentation = exports.handleAddHeaders = void 0;
|
|
54414
54448
|
const instrumentation_xml_http_request_1 = require("@opentelemetry/instrumentation-xml-http-request");
|
|
54415
54449
|
const utils_1 = require("../utils");
|
|
54450
|
+
const const_1 = require("../const");
|
|
54416
54451
|
function handleAddHeaders(xhr, spanUrl) {
|
|
54417
|
-
var _a;
|
|
54418
54452
|
const origin = window.location.origin;
|
|
54419
|
-
const
|
|
54420
|
-
|
|
54453
|
+
const startsWithOrigin = spanUrl === null || spanUrl === void 0 ? void 0 : spanUrl.startsWith(origin);
|
|
54454
|
+
const isRelativeUrl = const_1.relativePathRegex.test(spanUrl);
|
|
54455
|
+
if (!startsWithOrigin && !isRelativeUrl) {
|
|
54421
54456
|
return;
|
|
54422
54457
|
}
|
|
54423
|
-
const headers = (0, utils_1.constructBaggageHeader)();
|
|
54424
|
-
|
|
54425
|
-
xhr.setRequestHeader(
|
|
54458
|
+
const headers = Object.assign(Object.assign({}, (0, utils_1.constructBaggageHeader)()), (0, utils_1.constructContextHeaders)());
|
|
54459
|
+
Object.keys(headers).forEach((headerKey) => {
|
|
54460
|
+
xhr.setRequestHeader(headerKey, headers[headerKey]);
|
|
54461
|
+
});
|
|
54426
54462
|
}
|
|
54427
54463
|
exports.handleAddHeaders = handleAddHeaders;
|
|
54428
54464
|
class CustomXMLHttpRequestInstrumentation extends instrumentation_xml_http_request_1.XMLHttpRequestInstrumentation {
|
|
@@ -54434,7 +54470,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54434
54470
|
exports.CustomXMLHttpRequestInstrumentation = CustomXMLHttpRequestInstrumentation;
|
|
54435
54471
|
});
|
|
54436
54472
|
|
|
54437
|
-
},{"../utils":429,"@opentelemetry/instrumentation-xml-http-request":93}],427:[function(require,module,exports){
|
|
54473
|
+
},{"../const":423,"../utils":429,"@opentelemetry/instrumentation-xml-http-request":93}],427:[function(require,module,exports){
|
|
54438
54474
|
(function (factory) {
|
|
54439
54475
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
54440
54476
|
var v = factory(require, exports);
|
|
@@ -54513,23 +54549,47 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54513
54549
|
})(function (require, exports) {
|
|
54514
54550
|
"use strict";
|
|
54515
54551
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54516
|
-
exports.constructBaggageHeader = void 0;
|
|
54552
|
+
exports.constructContextHeaders = exports.constructBaggageHeader = exports.mapHeaderValuesToString = void 0;
|
|
54553
|
+
const mapHeaderValuesToString = (headerValues) => {
|
|
54554
|
+
return Object.keys(headerValues !== null && headerValues !== void 0 ? headerValues : {})
|
|
54555
|
+
.map((key) => {
|
|
54556
|
+
return `${key}=${headerValues[key]}`;
|
|
54557
|
+
})
|
|
54558
|
+
.join();
|
|
54559
|
+
};
|
|
54560
|
+
exports.mapHeaderValuesToString = mapHeaderValuesToString;
|
|
54517
54561
|
const constructBaggageHeader = () => {
|
|
54518
54562
|
var _a, _b;
|
|
54519
54563
|
const { getBaggage } = ((_a = window.$Sealights) === null || _a === void 0 ? void 0 : _a.eventsBridge) || {};
|
|
54520
54564
|
const baggage = (_b = getBaggage === null || getBaggage === void 0 ? void 0 : getBaggage()) !== null && _b !== void 0 ? _b : {};
|
|
54521
|
-
if (!Object.keys(baggage
|
|
54565
|
+
if (!Object.keys(baggage).length) {
|
|
54522
54566
|
return {};
|
|
54523
54567
|
}
|
|
54524
54568
|
return {
|
|
54525
|
-
baggage:
|
|
54526
|
-
.map((key) => {
|
|
54527
|
-
return `${key}=${baggage[key]}`;
|
|
54528
|
-
})
|
|
54529
|
-
.join(),
|
|
54569
|
+
baggage: (0, exports.mapHeaderValuesToString)(baggage),
|
|
54530
54570
|
};
|
|
54531
54571
|
};
|
|
54532
54572
|
exports.constructBaggageHeader = constructBaggageHeader;
|
|
54573
|
+
const constructContextHeaders = () => {
|
|
54574
|
+
var _a, _b;
|
|
54575
|
+
const { getContext } = ((_a = window.$Sealights) === null || _a === void 0 ? void 0 : _a.eventsBridge) || {};
|
|
54576
|
+
const contextHeaders = (_b = getContext === null || getContext === void 0 ? void 0 : getContext()) !== null && _b !== void 0 ? _b : {};
|
|
54577
|
+
if (!Object.keys(contextHeaders).length) {
|
|
54578
|
+
return {};
|
|
54579
|
+
}
|
|
54580
|
+
const headers = {};
|
|
54581
|
+
Object.entries(contextHeaders).forEach((entry) => {
|
|
54582
|
+
const [key, value] = entry;
|
|
54583
|
+
if (typeof value === 'string') {
|
|
54584
|
+
headers[key] = value;
|
|
54585
|
+
}
|
|
54586
|
+
else {
|
|
54587
|
+
headers[key] = (0, exports.mapHeaderValuesToString)(value);
|
|
54588
|
+
}
|
|
54589
|
+
});
|
|
54590
|
+
return headers;
|
|
54591
|
+
};
|
|
54592
|
+
exports.constructContextHeaders = constructContextHeaders;
|
|
54533
54593
|
});
|
|
54534
54594
|
|
|
54535
54595
|
},{}],430:[function(require,module,exports){
|
|
@@ -59421,6 +59481,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59421
59481
|
if (this.errors.length > 0) {
|
|
59422
59482
|
const data = JSON.stringify(this.errors);
|
|
59423
59483
|
cockpit_notifier_1.CockpitNotifier.sendGenericMessage(`Errors during hit collection: ${data}`);
|
|
59484
|
+
this.errors = [];
|
|
59424
59485
|
}
|
|
59425
59486
|
}
|
|
59426
59487
|
}
|
|
@@ -59672,6 +59733,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59672
59733
|
}
|
|
59673
59734
|
submitQueuedFootprints(execution) {
|
|
59674
59735
|
return __awaiter(this, void 0, void 0, function* () {
|
|
59736
|
+
this.hitsCollector.sendErrors();
|
|
59675
59737
|
if (!this.shouldSubmitFootprints()) {
|
|
59676
59738
|
return;
|
|
59677
59739
|
}
|