slnodejs 6.1.373 → 6.1.388
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 +393 -293
- package/browser-agent/dist/browser-agent-all.min.js +3 -3
- package/browser-agent/package.json +1 -1
- package/package.json +2 -2
- package/tsOutputs/build-scanner/build-diff-process.js +2 -1
- package/tsOutputs/build-scanner/build-diff-process.js.map +1 -1
- package/tsOutputs/build-scanner/cia.js +1 -0
- package/tsOutputs/build-scanner/cia.js.map +1 -1
- package/tsOutputs/build-scanner/default-values-resolver.js +3 -0
- package/tsOutputs/build-scanner/default-values-resolver.js.map +1 -1
- package/tsOutputs/build-scanner/instrumentation/browser-instrumenter.js +2 -1
- package/tsOutputs/build-scanner/instrumentation/browser-instrumenter.js.map +1 -1
- package/tsOutputs/cli-parse/cli.js +3 -1
- package/tsOutputs/cli-parse/cli.js.map +1 -1
- package/tsOutputs/cli-parse/contracts.d.ts +3 -1
- package/tsOutputs/cli-parse/contracts.js.map +1 -1
- package/tsOutputs/cli-parse/executors/build-args-dto.js +2 -0
- package/tsOutputs/cli-parse/executors/build-args-dto.js.map +1 -1
- package/tsOutputs/common/constants/sl-env-vars.d.ts +2 -0
- package/tsOutputs/common/constants/sl-env-vars.js +4 -0
- package/tsOutputs/common/constants/sl-env-vars.js.map +1 -1
- package/tsOutputs/common/contracts.d.ts +6 -0
- package/tsOutputs/common/contracts.js +6 -0
- package/tsOutputs/common/contracts.js.map +1 -1
- package/tsOutputs/common/footprints-process-v6/browser-footprints-buffer.js +31 -0
- package/tsOutputs/common/footprints-process-v6/browser-footprints-buffer.js.map +1 -0
- package/tsOutputs/common/footprints-process-v6/collector-footprints-buffer.js +4 -4
- package/tsOutputs/common/footprints-process-v6/collector-footprints-buffer.js.map +1 -1
- package/tsOutputs/common/footprints-process-v6/contracts.d.ts +2 -0
- package/tsOutputs/common/footprints-process-v6/contracts.js.map +1 -1
- package/tsOutputs/common/footprints-process-v6/index.d.ts +1 -1
- package/tsOutputs/common/footprints-process-v6/index.js +20 -17
- package/tsOutputs/common/footprints-process-v6/index.js.map +1 -1
- package/tsOutputs/common/no-op-state-tracker.js +2 -2
- package/tsOutputs/common/no-op-state-tracker.js.map +1 -1
- package/tsOutputs/common/scm/git.js +6 -2
- package/tsOutputs/common/scm/git.js.map +1 -1
- package/tsOutputs/common/state-tracker.d.ts +7 -1
- package/tsOutputs/common/state-tracker.js +20 -2
- package/tsOutputs/common/state-tracker.js.map +1 -1
- package/tsOutputs/common/utils/env-var-parsing.d.ts +1 -1
- package/tsOutputs/common/utils/env-var-parsing.js +6 -6
- package/tsOutputs/common/utils/env-var-parsing.js.map +1 -1
|
@@ -33850,7 +33850,7 @@ module.exports={
|
|
|
33850
33850
|
"_resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz",
|
|
33851
33851
|
"_shasum": "da37cebd31e79a1367e941b592ed1fbebd58abbb",
|
|
33852
33852
|
"_spec": "elliptic@^6.5.3",
|
|
33853
|
-
"_where": "/var/lib/jenkins/workspace/.OnPremise.Agent.JavaScript_main/browser-agent/node_modules/browserify-sign",
|
|
33853
|
+
"_where": "/var/lib/jenkins/workspace/.OnPremise.Agent.JavaScript_main@6/browser-agent/node_modules/browserify-sign",
|
|
33854
33854
|
"author": {
|
|
33855
33855
|
"name": "Fedor Indutny",
|
|
33856
33856
|
"email": "fedor@indutny.com"
|
|
@@ -53026,21 +53026,24 @@ function extend() {
|
|
|
53026
53026
|
if (v !== undefined) module.exports = v;
|
|
53027
53027
|
}
|
|
53028
53028
|
else if (typeof define === "function" && define.amd) {
|
|
53029
|
-
define(["require", "exports", "./lib/feature-detection", "./lib/config", "./lib/browser-agent", "./lib/configuration-override"], factory);
|
|
53029
|
+
define(["require", "exports", "./lib/feature-detection", "./lib/config", "./lib/browser-agent", "./lib/configuration-override", "./lib/events-bridge", "./lib/logger/log-factory"], factory);
|
|
53030
53030
|
}
|
|
53031
53031
|
})(function (require, exports) {
|
|
53032
53032
|
"use strict";
|
|
53033
|
+
var _a;
|
|
53033
53034
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53034
53035
|
const feature_detection_1 = require("./lib/feature-detection");
|
|
53035
53036
|
const config_1 = require("./lib/config");
|
|
53036
53037
|
const browser_agent_1 = require("./lib/browser-agent");
|
|
53037
53038
|
const configuration_override_1 = require("./lib/configuration-override");
|
|
53039
|
+
const events_bridge_1 = require("./lib/events-bridge");
|
|
53040
|
+
const log_factory_1 = require("./lib/logger/log-factory");
|
|
53038
53041
|
const SEALIGHTS_WINDOW_OBJECT = '$Sealights';
|
|
53039
53042
|
const COMPONENTS = 'components';
|
|
53040
53043
|
let featureDetection = null;
|
|
53041
53044
|
try {
|
|
53042
53045
|
featureDetection = new feature_detection_1.FeatureDetection(window);
|
|
53043
|
-
if (window && window[SEALIGHTS_WINDOW_OBJECT]) {
|
|
53046
|
+
if ((window === null || window === void 0 ? void 0 : window[SEALIGHTS_WINDOW_OBJECT]) && !((_a = window === null || window === void 0 ? void 0 : window[SEALIGHTS_WINDOW_OBJECT]) === null || _a === void 0 ? void 0 : _a.ctxPropagationOnly)) {
|
|
53044
53047
|
window[SEALIGHTS_WINDOW_OBJECT].configuration = configuration_override_1.ConfigurationOverride.create(window[SEALIGHTS_WINDOW_OBJECT].configuration);
|
|
53045
53048
|
const browserAgent = new browser_agent_1.BrowserAgent(window, featureDetection);
|
|
53046
53049
|
window['$SealightsAgent'] = browserAgent;
|
|
@@ -53054,6 +53057,17 @@ function extend() {
|
|
|
53054
53057
|
browserAgent.createInstance(window[SEALIGHTS_WINDOW_OBJECT]);
|
|
53055
53058
|
}
|
|
53056
53059
|
}
|
|
53060
|
+
else if (window) {
|
|
53061
|
+
window[SEALIGHTS_WINDOW_OBJECT] = {
|
|
53062
|
+
configuration: undefined,
|
|
53063
|
+
enableContextPropagation: function () {
|
|
53064
|
+
const logger = log_factory_1.LogFactory.createLogger('SL-Agent');
|
|
53065
|
+
logger.info('Enabaling context propagation only');
|
|
53066
|
+
(0, events_bridge_1.registerEventsBridge)(logger, true, false);
|
|
53067
|
+
},
|
|
53068
|
+
ctxPropagationOnly: true,
|
|
53069
|
+
};
|
|
53070
|
+
}
|
|
53057
53071
|
}
|
|
53058
53072
|
catch (e) {
|
|
53059
53073
|
if (featureDetection && featureDetection.hasConsoleLogAPI()) {
|
|
@@ -53062,14 +53076,14 @@ function extend() {
|
|
|
53062
53076
|
}
|
|
53063
53077
|
});
|
|
53064
53078
|
|
|
53065
|
-
},{"./lib/browser-agent":408,"./lib/config":414,"./lib/configuration-override":416,"./lib/feature-detection":431}],404:[function(require,module,exports){
|
|
53079
|
+
},{"./lib/browser-agent":408,"./lib/config":414,"./lib/configuration-override":416,"./lib/events-bridge":428,"./lib/feature-detection":431,"./lib/logger/log-factory":437}],404:[function(require,module,exports){
|
|
53066
53080
|
(function (factory) {
|
|
53067
53081
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
53068
53082
|
var v = factory(require, exports);
|
|
53069
53083
|
if (v !== undefined) module.exports = v;
|
|
53070
53084
|
}
|
|
53071
53085
|
else if (typeof define === "function" && define.amd) {
|
|
53072
|
-
define(["require", "exports", "./state-tracker", "../../common/state-tracker-fpv6", "../../common/no-op-state-tracker", "./test-state-helper", "./entities/environment-data", "./services/http/http-client", "./services/json/json-client", "./istanbul-to-footprints-convertor", "./istanbul-to-footprints-convertor-v3", "./services/light-backend-proxy", "./footprints-queue-sender", "./watchdog", "./code-coverage-manager", "./browser-agent-instance", "./queues/footprints-items-queue", "./configuration-manager", "./logger/log-factory", "./basic-uuid-generator", "./window-timers-wrapper", "./color-cookie-handler", "./queues/queue", "./delegate", "./services/json/json-client-adapter", "./browser-events-process", "./browser-hits-converter", "./browser-agent-instance-fpv6", "./browser-hits-collector", "./sl-mapping-loader", "./services/json/noop-json-client", "../../common/agent-instance-data", "../../common/agent-events/agent-events-conracts", "../../common/agent-events/cockpit-notifier", "../../common/http/backend-proxy", "../../common/config-process/config-loader", "../../common/footprints-process-v6/relative-path-resolver", "../../common/footprints-process-v6/
|
|
53086
|
+
define(["require", "exports", "./state-tracker", "../../common/state-tracker-fpv6", "../../common/no-op-state-tracker", "./test-state-helper", "./entities/environment-data", "./services/http/http-client", "./services/json/json-client", "./istanbul-to-footprints-convertor", "./istanbul-to-footprints-convertor-v3", "./services/light-backend-proxy", "./footprints-queue-sender", "./watchdog", "./code-coverage-manager", "./browser-agent-instance", "./queues/footprints-items-queue", "./configuration-manager", "./logger/log-factory", "./basic-uuid-generator", "./window-timers-wrapper", "./color-cookie-handler", "./queues/queue", "./delegate", "./services/json/json-client-adapter", "./browser-events-process", "./browser-hits-converter", "./browser-agent-instance-fpv6", "./browser-hits-collector", "./sl-mapping-loader", "./services/json/noop-json-client", "../../common/agent-instance-data", "../../common/agent-events/agent-events-conracts", "../../common/agent-events/cockpit-notifier", "../../common/http/backend-proxy", "../../common/config-process/config-loader", "../../common/footprints-process-v6/relative-path-resolver", "../../common/footprints-process-v6/collector-footprints-buffer", "../../common/footprints-process-v6/index", "../../common/footprints-process-v6/collector-footprints-process", "../../common/config-process", "../../common/config-process/no-op-config-process", "../../common/system-date", "../../common/footprints-process-v6/browser-footprints-buffer"], factory);
|
|
53073
53087
|
}
|
|
53074
53088
|
})(function (require, exports) {
|
|
53075
53089
|
"use strict";
|
|
@@ -53110,13 +53124,13 @@ function extend() {
|
|
|
53110
53124
|
const backend_proxy_1 = require("../../common/http/backend-proxy");
|
|
53111
53125
|
const config_loader_1 = require("../../common/config-process/config-loader");
|
|
53112
53126
|
const relative_path_resolver_1 = require("../../common/footprints-process-v6/relative-path-resolver");
|
|
53113
|
-
const footprints_buffer_1 = require("../../common/footprints-process-v6/footprints-buffer");
|
|
53114
53127
|
const collector_footprints_buffer_1 = require("../../common/footprints-process-v6/collector-footprints-buffer");
|
|
53115
53128
|
const index_1 = require("../../common/footprints-process-v6/index");
|
|
53116
53129
|
const collector_footprints_process_1 = require("../../common/footprints-process-v6/collector-footprints-process");
|
|
53117
53130
|
const config_process_1 = require("../../common/config-process");
|
|
53118
53131
|
const no_op_config_process_1 = require("../../common/config-process/no-op-config-process");
|
|
53119
53132
|
const system_date_1 = require("../../common/system-date");
|
|
53133
|
+
const browser_footprints_buffer_1 = require("../../common/footprints-process-v6/browser-footprints-buffer");
|
|
53120
53134
|
const FOOTPRINTS_SENDER_WATCHDOG = 'FootPrintsSenderWatchdog';
|
|
53121
53135
|
const FOOTPRINTS_FLUSH_WATCHDOG = 'FootprintsFlushWatchdog';
|
|
53122
53136
|
const ACTIVE_EXECUTION_WATCHDOG = 'ActiveExecutionWatchdog';
|
|
@@ -53203,7 +53217,7 @@ function extend() {
|
|
|
53203
53217
|
}
|
|
53204
53218
|
static createSlMappingLoader(window, backendProxy, configuration) {
|
|
53205
53219
|
const logger = AgentFactory.createLogger('slMappingLoader', configuration, window);
|
|
53206
|
-
return new sl_mapping_loader_1.SlMappingLoader(backendProxy, window, logger);
|
|
53220
|
+
return new sl_mapping_loader_1.SlMappingLoader(backendProxy, window, logger, configuration);
|
|
53207
53221
|
}
|
|
53208
53222
|
static createJsonClient(window, featureDetection, configuration, agentInstanceData) {
|
|
53209
53223
|
const httpClient = AgentFactory.createHttpClient(window, featureDetection, configuration);
|
|
@@ -53314,7 +53328,7 @@ function extend() {
|
|
|
53314
53328
|
const relativePathResolver = new relative_path_resolver_1.RelativePathResolver();
|
|
53315
53329
|
const hitsCollector = new browser_hits_collector_1.BrowserHitsCollector(configuration.buildSessionId, this.createLogger('browserHitsCollector', configuration, window));
|
|
53316
53330
|
const hitsConverter = new browser_hits_converter_1.BrowserHitsConverter(relativePathResolver, window, agentConfig.buildSessionId.value, this.createLogger('HitsConverter', configuration, window));
|
|
53317
|
-
const footprintsBuffer = new
|
|
53331
|
+
const footprintsBuffer = new browser_footprints_buffer_1.BrowserFootprintsBuffer(agentInstanceData, agentConfig);
|
|
53318
53332
|
return new index_1.FootprintsProcess(agentConfig, sendToServerWatchdog, keepaliveWatchdog, this.createLogger('footprintsProcess', configuration, window), hitsCollector, hitsConverter, footprintsBuffer, backendProxy, stateTracker);
|
|
53319
53333
|
}
|
|
53320
53334
|
static createCollectorFootprintsProcess(window, configuration, agentInstanceData, agentConfig, backendProxy, stateTracker) {
|
|
@@ -53323,7 +53337,7 @@ function extend() {
|
|
|
53323
53337
|
const relativePathResolver = new relative_path_resolver_1.RelativePathResolver();
|
|
53324
53338
|
const hitsCollector = new browser_hits_collector_1.BrowserHitsCollector(configuration.buildSessionId, this.createLogger('browserHitsCollector', configuration, window));
|
|
53325
53339
|
const hitsConverter = new browser_hits_converter_1.BrowserHitsConverter(relativePathResolver, window, agentConfig.buildSessionId.value, this.createLogger('HitsConverter', configuration, window));
|
|
53326
|
-
const footprintsBuffer = new collector_footprints_buffer_1.CollectorFootprintsBuffer(agentInstanceData, agentConfig);
|
|
53340
|
+
const footprintsBuffer = new collector_footprints_buffer_1.CollectorFootprintsBuffer(agentInstanceData, agentConfig, configuration.footprintsMapping);
|
|
53327
53341
|
return new collector_footprints_process_1.CollectorFootprintsProcess(agentConfig, sendToServerWatchdog, keepaliveWatchdog, this.createLogger('footprintsProcess', configuration, window), hitsCollector, hitsConverter, footprintsBuffer, backendProxy, stateTracker);
|
|
53328
53342
|
}
|
|
53329
53343
|
static createConfigProcess(window, configuration, agentInstanceData, agentConfig, backendProxy) {
|
|
@@ -53346,7 +53360,7 @@ function extend() {
|
|
|
53346
53360
|
exports.AgentFactory = AgentFactory;
|
|
53347
53361
|
});
|
|
53348
53362
|
|
|
53349
|
-
},{"../../common/agent-events/agent-events-conracts":455,"../../common/agent-events/cockpit-notifier":462,"../../common/agent-instance-data":468,"../../common/config-process":472,"../../common/config-process/config-loader":469,"../../common/config-process/no-op-config-process":473,"../../common/footprints-process-v6/
|
|
53363
|
+
},{"../../common/agent-events/agent-events-conracts":455,"../../common/agent-events/cockpit-notifier":462,"../../common/agent-instance-data":468,"../../common/config-process":472,"../../common/config-process/config-loader":469,"../../common/config-process/no-op-config-process":473,"../../common/footprints-process-v6/browser-footprints-buffer":487,"../../common/footprints-process-v6/collector-footprints-buffer":489,"../../common/footprints-process-v6/collector-footprints-process":490,"../../common/footprints-process-v6/index":494,"../../common/footprints-process-v6/relative-path-resolver":496,"../../common/http/backend-proxy":498,"../../common/no-op-state-tracker":504,"../../common/state-tracker-fpv6":506,"../../common/system-date":508,"./basic-uuid-generator":405,"./browser-agent-instance":407,"./browser-agent-instance-fpv6":406,"./browser-events-process":409,"./browser-hits-collector":410,"./browser-hits-converter":411,"./code-coverage-manager":412,"./color-cookie-handler":413,"./configuration-manager":415,"./delegate":418,"./entities/environment-data":421,"./footprints-queue-sender":432,"./istanbul-to-footprints-convertor":434,"./istanbul-to-footprints-convertor-v3":433,"./logger/log-factory":437,"./queues/footprints-items-queue":439,"./queues/queue":440,"./services/http/http-client":441,"./services/json/json-client":445,"./services/json/json-client-adapter":444,"./services/json/noop-json-client":446,"./services/light-backend-proxy":447,"./sl-mapping-loader":448,"./state-tracker":449,"./test-state-helper":450,"./watchdog":452,"./window-timers-wrapper":453}],405:[function(require,module,exports){
|
|
53350
53364
|
(function (factory) {
|
|
53351
53365
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
53352
53366
|
var v = factory(require, exports);
|
|
@@ -53719,7 +53733,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
53719
53733
|
exports.BrowserEventsProcess = BrowserEventsProcess;
|
|
53720
53734
|
});
|
|
53721
53735
|
|
|
53722
|
-
},{"../../common/events-process":
|
|
53736
|
+
},{"../../common/events-process":485}],410:[function(require,module,exports){
|
|
53723
53737
|
(function (factory) {
|
|
53724
53738
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
53725
53739
|
var v = factory(require, exports);
|
|
@@ -53750,7 +53764,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
53750
53764
|
exports.BrowserHitsCollector = BrowserHitsCollector;
|
|
53751
53765
|
});
|
|
53752
53766
|
|
|
53753
|
-
},{"../../common/footprints-process-v6/hits-collector":
|
|
53767
|
+
},{"../../common/footprints-process-v6/hits-collector":492}],411:[function(require,module,exports){
|
|
53754
53768
|
(function (factory) {
|
|
53755
53769
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
53756
53770
|
var v = factory(require, exports);
|
|
@@ -53776,7 +53790,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
53776
53790
|
exports.BrowserHitsConverter = BrowserHitsConverter;
|
|
53777
53791
|
});
|
|
53778
53792
|
|
|
53779
|
-
},{"../../common/footprints-process-v6/base-browser-hits-converter":
|
|
53793
|
+
},{"../../common/footprints-process-v6/base-browser-hits-converter":486}],412:[function(require,module,exports){
|
|
53780
53794
|
(function (factory) {
|
|
53781
53795
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
53782
53796
|
var v = factory(require, exports);
|
|
@@ -53939,7 +53953,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
53939
53953
|
"use strict";
|
|
53940
53954
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53941
53955
|
exports.SL_AGENT_TYPE = exports.SL_AGENT_VERSION = void 0;
|
|
53942
|
-
exports.SL_AGENT_VERSION = '6.1.
|
|
53956
|
+
exports.SL_AGENT_VERSION = '6.1.388';
|
|
53943
53957
|
exports.SL_AGENT_TYPE = 'browser';
|
|
53944
53958
|
});
|
|
53945
53959
|
|
|
@@ -54346,7 +54360,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54346
54360
|
CONTEXT_EVENTS_KEYS["COUNT"] = "count";
|
|
54347
54361
|
})(CONTEXT_EVENTS_KEYS = exports.CONTEXT_EVENTS_KEYS || (exports.CONTEXT_EVENTS_KEYS = {}));
|
|
54348
54362
|
class ContextMessageManager {
|
|
54349
|
-
constructor() {
|
|
54363
|
+
constructor(sendCockpitEvents) {
|
|
54364
|
+
this.sendCockpitEvents = sendCockpitEvents;
|
|
54350
54365
|
this.receivedSetContextEvents = {
|
|
54351
54366
|
[CONTEXT_EVENTS_KEYS.TOTAL]: 0,
|
|
54352
54367
|
[CONTEXT_EVENTS_KEYS.PERSIST]: 0,
|
|
@@ -54359,13 +54374,15 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54359
54374
|
[CONTEXT_EVENTS_KEYS.LAST_SUBMISSION]: undefined,
|
|
54360
54375
|
};
|
|
54361
54376
|
}
|
|
54362
|
-
static getInstance() {
|
|
54363
|
-
return this._instance || (this._instance = new this());
|
|
54377
|
+
static getInstance(sendCockpitEvents = true) {
|
|
54378
|
+
return this._instance || (this._instance = new this(sendCockpitEvents));
|
|
54364
54379
|
}
|
|
54365
54380
|
startContextManager() {
|
|
54366
|
-
|
|
54367
|
-
|
|
54368
|
-
|
|
54381
|
+
if (this.sendCockpitEvents) {
|
|
54382
|
+
setInterval(() => {
|
|
54383
|
+
this.sendAllEvents();
|
|
54384
|
+
}, ContextMessageManager.DEFAULT_SEND_INTERVAL);
|
|
54385
|
+
}
|
|
54369
54386
|
}
|
|
54370
54387
|
incrementContextEventValue(eventKey, incrementBy) {
|
|
54371
54388
|
if (incrementBy < 0)
|
|
@@ -54396,7 +54413,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54396
54413
|
ContextMessageManager.DEFAULT_SEND_INTERVAL = 60 * 1000;
|
|
54397
54414
|
});
|
|
54398
54415
|
|
|
54399
|
-
},{"../../../common/agent-events/agent-events-conracts":455,"../../../common/agent-events/cockpit-notifier":462,"../../../common/system-date":
|
|
54416
|
+
},{"../../../common/agent-events/agent-events-conracts":455,"../../../common/agent-events/cockpit-notifier":462,"../../../common/system-date":508}],425:[function(require,module,exports){
|
|
54400
54417
|
(function (factory) {
|
|
54401
54418
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
54402
54419
|
var v = factory(require, exports);
|
|
@@ -54414,11 +54431,11 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54414
54431
|
const cockpit_notifier_1 = require("../../../common/agent-events/cockpit-notifier");
|
|
54415
54432
|
const context_message_manager_1 = require("./context-message-manager");
|
|
54416
54433
|
const utils_1 = require("./utils");
|
|
54417
|
-
|
|
54434
|
+
let SlContext;
|
|
54435
|
+
const registerEvents = (logger, withOpenTelemetry, sendCockpitEvents = false) => {
|
|
54418
54436
|
try {
|
|
54419
|
-
const contextMessageManager = context_message_manager_1.ContextMessageManager.getInstance();
|
|
54437
|
+
const contextMessageManager = context_message_manager_1.ContextMessageManager.getInstance(sendCockpitEvents);
|
|
54420
54438
|
contextMessageManager.startContextManager();
|
|
54421
|
-
let SlContext;
|
|
54422
54439
|
window.$Sealights.eventsBridge = {
|
|
54423
54440
|
loaded: false,
|
|
54424
54441
|
otel: false,
|
|
@@ -54429,15 +54446,15 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54429
54446
|
window.$Sealights.eventsBridge.getContext = () => (SlContext.getValue(api.createContextKey(SlConst.CONTEXT)));
|
|
54430
54447
|
window.$Sealights.eventsBridge.otel = true;
|
|
54431
54448
|
}
|
|
54432
|
-
addEventListener(SlConst.EVENTS.SET_BAGGAGE, ({ detail }) => setBaggageHandler(detail, contextMessageManager, withOpenTelemetry
|
|
54433
|
-
addEventListener(SlConst.EVENTS.SET_CONTEXT, ({ detail }) => setContextHandler(detail, contextMessageManager, withOpenTelemetry
|
|
54449
|
+
addEventListener(SlConst.EVENTS.SET_BAGGAGE, ({ detail }) => setBaggageHandler(detail, contextMessageManager, withOpenTelemetry));
|
|
54450
|
+
addEventListener(SlConst.EVENTS.SET_CONTEXT, ({ detail }) => setContextHandler(detail, contextMessageManager, withOpenTelemetry));
|
|
54434
54451
|
addEventListener(SlConst.EVENTS.REQUEST_AGENT_CONTEXT, () => {
|
|
54435
54452
|
dispatchEvent(new CustomEvent(SlConst.EVENTS.RESPONSE_AGENT_CONTEXT, {
|
|
54436
54453
|
detail: { components: window.$Sealights.components || {} },
|
|
54437
54454
|
}));
|
|
54438
54455
|
});
|
|
54439
|
-
addEventListener(SlConst.EVENTS.DELETE_BAGGAGE, () => deleteBaggageHandler(
|
|
54440
|
-
addEventListener(SlConst.EVENTS.DELETE_CONTEXT, () => deleteContextHandler(
|
|
54456
|
+
addEventListener(SlConst.EVENTS.DELETE_BAGGAGE, () => deleteBaggageHandler(contextMessageManager));
|
|
54457
|
+
addEventListener(SlConst.EVENTS.DELETE_CONTEXT, () => deleteContextHandler(contextMessageManager));
|
|
54441
54458
|
window.$Sealights.eventsBridge.loaded = true;
|
|
54442
54459
|
logger.info(`Events Bridge integration loaded. All events registered successfully. OpenTelemetry status: ${withOpenTelemetry}`);
|
|
54443
54460
|
checkExistingContext(logger);
|
|
@@ -54461,7 +54478,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54461
54478
|
}
|
|
54462
54479
|
}
|
|
54463
54480
|
exports.checkExistingContext = checkExistingContext;
|
|
54464
|
-
function setBaggageHandler(detail, contextMessageManager, withOpenTelemetry
|
|
54481
|
+
function setBaggageHandler(detail, contextMessageManager, withOpenTelemetry) {
|
|
54465
54482
|
var _a, _b;
|
|
54466
54483
|
if (!detail)
|
|
54467
54484
|
return;
|
|
@@ -54486,7 +54503,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54486
54503
|
(0, utils_1.sendAckEvent)(detail);
|
|
54487
54504
|
}
|
|
54488
54505
|
exports.setBaggageHandler = setBaggageHandler;
|
|
54489
|
-
function setContextHandler(detail, contextMessageManager, withOpenTelemetry
|
|
54506
|
+
function setContextHandler(detail, contextMessageManager, withOpenTelemetry) {
|
|
54490
54507
|
var _a;
|
|
54491
54508
|
if (!detail)
|
|
54492
54509
|
return;
|
|
@@ -54510,7 +54527,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54510
54527
|
(0, utils_1.sendAckEvent)(detail);
|
|
54511
54528
|
}
|
|
54512
54529
|
exports.setContextHandler = setContextHandler;
|
|
54513
|
-
function deleteContextHandler(
|
|
54530
|
+
function deleteContextHandler(contextMessageManager) {
|
|
54514
54531
|
var _a, _b;
|
|
54515
54532
|
SlContext = SlContext.deleteValue(api.createContextKey(SlConst.SL_BAGGAGE_HEADER));
|
|
54516
54533
|
SlContext = SlContext.deleteValue(api.createContextKey(SlConst.CONTEXT));
|
|
@@ -54518,7 +54535,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54518
54535
|
contextMessageManager.incrementContextDeleteValue(1);
|
|
54519
54536
|
}
|
|
54520
54537
|
exports.deleteContextHandler = deleteContextHandler;
|
|
54521
|
-
function deleteBaggageHandler(
|
|
54538
|
+
function deleteBaggageHandler(contextMessageManager) {
|
|
54522
54539
|
var _a, _b;
|
|
54523
54540
|
SlContext = SlContext.deleteValue(api.createContextKey(SlConst.SL_BAGGAGE_HEADER));
|
|
54524
54541
|
(_b = (_a = window.$SealightsAgent) === null || _a === void 0 ? void 0 : _a.setCurrentTestIdentifier) === null || _b === void 0 ? void 0 : _b.call(_a, null);
|
|
@@ -54637,12 +54654,12 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54637
54654
|
const otel_1 = require("./otel");
|
|
54638
54655
|
const events_1 = require("./events");
|
|
54639
54656
|
const const_1 = require("./const");
|
|
54640
|
-
const registerEventsBridge = (logger, enableOpenTelemetry) => {
|
|
54657
|
+
const registerEventsBridge = (logger, enableOpenTelemetry, sendCockpitEvents = true) => {
|
|
54641
54658
|
var _a, _b, _c, _d;
|
|
54642
54659
|
const eventsBridgeRegistered = (_b = (_a = window.$Sealights) === null || _a === void 0 ? void 0 : _a.eventsBridge) === null || _b === void 0 ? void 0 : _b.loaded;
|
|
54643
54660
|
const otelRegistered = (_d = (_c = window.$Sealights) === null || _c === void 0 ? void 0 : _c.eventsBridge) === null || _d === void 0 ? void 0 : _d.otel;
|
|
54644
54661
|
if (!eventsBridgeRegistered) {
|
|
54645
|
-
(0, events_1.registerEvents)(logger, enableOpenTelemetry);
|
|
54662
|
+
(0, events_1.registerEvents)(logger, enableOpenTelemetry, sendCockpitEvents);
|
|
54646
54663
|
}
|
|
54647
54664
|
if (enableOpenTelemetry && !otelRegistered) {
|
|
54648
54665
|
(0, otel_1.registerOpenTelemetry)(logger);
|
|
@@ -55000,7 +55017,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
55000
55017
|
exports.FootprintsQueueSender = FootprintsQueueSender;
|
|
55001
55018
|
});
|
|
55002
55019
|
|
|
55003
|
-
},{"../../common/system-date":
|
|
55020
|
+
},{"../../common/system-date":508,"./entities/footprints-item-data":422}],433:[function(require,module,exports){
|
|
55004
55021
|
(function (factory) {
|
|
55005
55022
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
55006
55023
|
var v = factory(require, exports);
|
|
@@ -55255,7 +55272,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
55255
55272
|
exports.IstanbulToFootprintsConvertorV3 = IstanbulToFootprintsConvertorV3;
|
|
55256
55273
|
});
|
|
55257
55274
|
|
|
55258
|
-
},{"../../common/footprints-process-v6/location-formatter":
|
|
55275
|
+
},{"../../common/footprints-process-v6/location-formatter":495,"../../common/footprints-process/collection-interval":497,"../../common/system-date":508,"./logger/log-factory":437}],434:[function(require,module,exports){
|
|
55259
55276
|
(function (factory) {
|
|
55260
55277
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
55261
55278
|
var v = factory(require, exports);
|
|
@@ -55436,7 +55453,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
55436
55453
|
exports.KarmaHandler = KarmaHandler;
|
|
55437
55454
|
});
|
|
55438
55455
|
|
|
55439
|
-
},{"../../common/events-process/events-contracts":
|
|
55456
|
+
},{"../../common/events-process/events-contracts":483,"../../common/events-process/events-creator":484,"../../common/utils/validation-utils":512,"./browser-agent-instance":407}],436:[function(require,module,exports){
|
|
55440
55457
|
(function (factory) {
|
|
55441
55458
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
55442
55459
|
var v = factory(require, exports);
|
|
@@ -55627,7 +55644,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
55627
55644
|
exports.ConsoleLogger = ConsoleLogger;
|
|
55628
55645
|
});
|
|
55629
55646
|
|
|
55630
|
-
},{"../../../common/system-date":
|
|
55647
|
+
},{"../../../common/system-date":508,"../configuration-override":416}],437:[function(require,module,exports){
|
|
55631
55648
|
(function (factory) {
|
|
55632
55649
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
55633
55650
|
var v = factory(require, exports);
|
|
@@ -55795,7 +55812,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
55795
55812
|
exports.FootprintsItemsQueue = FootprintsItemsQueue;
|
|
55796
55813
|
});
|
|
55797
55814
|
|
|
55798
|
-
},{"../../../common/system-date":
|
|
55815
|
+
},{"../../../common/system-date":508,"../delegate":418,"../entities/footprints-item-data":422}],440:[function(require,module,exports){
|
|
55799
55816
|
(function (factory) {
|
|
55800
55817
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
55801
55818
|
var v = factory(require, exports);
|
|
@@ -55862,7 +55879,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
55862
55879
|
Queue.DEFAULT_MAX_ITEMS_IN_QUEUE = 1000;
|
|
55863
55880
|
});
|
|
55864
55881
|
|
|
55865
|
-
},{"../../../common/utils/validation-utils":
|
|
55882
|
+
},{"../../../common/utils/validation-utils":512}],441:[function(require,module,exports){
|
|
55866
55883
|
(function (factory) {
|
|
55867
55884
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
55868
55885
|
var v = factory(require, exports);
|
|
@@ -56023,7 +56040,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
56023
56040
|
exports.JsonClientAdapter = JsonClientAdapter;
|
|
56024
56041
|
});
|
|
56025
56042
|
|
|
56026
|
-
},{"../../../../common/utils/validation-utils":
|
|
56043
|
+
},{"../../../../common/utils/validation-utils":512}],445:[function(require,module,exports){
|
|
56027
56044
|
(function (factory) {
|
|
56028
56045
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
56029
56046
|
var v = factory(require, exports);
|
|
@@ -56134,7 +56151,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
56134
56151
|
exports.JsonClient = JsonClient;
|
|
56135
56152
|
});
|
|
56136
56153
|
|
|
56137
|
-
},{"../../../../common/http/contracts":
|
|
56154
|
+
},{"../../../../common/http/contracts":499,"../http/http-request":442}],446:[function(require,module,exports){
|
|
56138
56155
|
(function (factory) {
|
|
56139
56156
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
56140
56157
|
var v = factory(require, exports);
|
|
@@ -56218,30 +56235,32 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
56218
56235
|
if (v !== undefined) module.exports = v;
|
|
56219
56236
|
}
|
|
56220
56237
|
else if (typeof define === "function" && define.amd) {
|
|
56221
|
-
define(["require", "exports", "../../common/agent-events/cockpit-notifier"], factory);
|
|
56238
|
+
define(["require", "exports", "../../common/agent-events/cockpit-notifier", "../../common/contracts"], factory);
|
|
56222
56239
|
}
|
|
56223
56240
|
})(function (require, exports) {
|
|
56224
56241
|
"use strict";
|
|
56225
56242
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56226
56243
|
exports.SlMappingLoader = void 0;
|
|
56227
56244
|
const cockpit_notifier_1 = require("../../common/agent-events/cockpit-notifier");
|
|
56245
|
+
const contracts_1 = require("../../common/contracts");
|
|
56228
56246
|
class SlMappingLoader {
|
|
56229
|
-
constructor(backendProxy, window, logger) {
|
|
56247
|
+
constructor(backendProxy, window, logger, configuration) {
|
|
56230
56248
|
this.backendProxy = backendProxy;
|
|
56231
56249
|
this.window = window;
|
|
56232
56250
|
this.logger = logger;
|
|
56251
|
+
this.configuration = configuration;
|
|
56233
56252
|
}
|
|
56234
56253
|
loadSlMapping(buildSessionId) {
|
|
56235
56254
|
return __awaiter(this, void 0, void 0, function* () {
|
|
56236
56255
|
this.window.slMappings = this.window.slMappings || {};
|
|
56237
56256
|
if (!this.window.slMappings[buildSessionId]) {
|
|
56238
56257
|
try {
|
|
56239
|
-
|
|
56240
|
-
|
|
56241
|
-
|
|
56242
|
-
|
|
56243
|
-
|
|
56244
|
-
|
|
56258
|
+
if (this.configuration.footprintsMapping === contracts_1.FootprintsMapping.SERVER) {
|
|
56259
|
+
this.loadEmptySlMapping(buildSessionId);
|
|
56260
|
+
}
|
|
56261
|
+
else {
|
|
56262
|
+
yield this.loadSlMappingFromBackend(buildSessionId);
|
|
56263
|
+
}
|
|
56245
56264
|
}
|
|
56246
56265
|
catch (err) {
|
|
56247
56266
|
const errMsg = `Error while trying to load slMapping from server '${err}'`;
|
|
@@ -56252,11 +56271,24 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
56252
56271
|
}
|
|
56253
56272
|
});
|
|
56254
56273
|
}
|
|
56274
|
+
loadSlMappingFromBackend(buildSessionId) {
|
|
56275
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
56276
|
+
let flatted = {};
|
|
56277
|
+
const slMappingArr = yield this.backendProxy.getSlMappingFromServer(buildSessionId);
|
|
56278
|
+
slMappingArr.forEach(mapping => {
|
|
56279
|
+
flatted = Object.assign(Object.assign({}, flatted), mapping);
|
|
56280
|
+
});
|
|
56281
|
+
this.window.slMappings[buildSessionId] = flatted;
|
|
56282
|
+
});
|
|
56283
|
+
}
|
|
56284
|
+
loadEmptySlMapping(buildSessionId) {
|
|
56285
|
+
this.window.slMappings[buildSessionId] = {};
|
|
56286
|
+
}
|
|
56255
56287
|
}
|
|
56256
56288
|
exports.SlMappingLoader = SlMappingLoader;
|
|
56257
56289
|
});
|
|
56258
56290
|
|
|
56259
|
-
},{"../../common/agent-events/cockpit-notifier":462}],449:[function(require,module,exports){
|
|
56291
|
+
},{"../../common/agent-events/cockpit-notifier":462,"../../common/contracts":476}],449:[function(require,module,exports){
|
|
56260
56292
|
(function (factory) {
|
|
56261
56293
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
56262
56294
|
var v = factory(require, exports);
|
|
@@ -56923,7 +56955,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
56923
56955
|
})(StartRequestStatus || (StartRequestStatus = {}));
|
|
56924
56956
|
});
|
|
56925
56957
|
|
|
56926
|
-
},{"../http/backend-proxy":
|
|
56958
|
+
},{"../http/backend-proxy":498,"../system-date":508,"../utils/validation-utils":512,"../watchdog":513,"./agent-events-conracts":455,"./agent-instance-info-builder":458,"./agent-start-info-builder":459,"./browser-info-builder":460,"./ci-info-builder":461,"./machine-info-builder":464,"./nodejs-env-info-builder":466}],457:[function(require,module,exports){
|
|
56927
56959
|
(function (factory) {
|
|
56928
56960
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
56929
56961
|
var v = factory(require, exports);
|
|
@@ -56956,7 +56988,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
56956
56988
|
AgentEventsGuard.EVENT_CODE_TO_LAST_CALL = new Map();
|
|
56957
56989
|
});
|
|
56958
56990
|
|
|
56959
|
-
},{"../system-date":
|
|
56991
|
+
},{"../system-date":508,"./cockpit-notifier":462}],458:[function(require,module,exports){
|
|
56960
56992
|
(function (process){(function (){
|
|
56961
56993
|
(function (factory) {
|
|
56962
56994
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
@@ -57240,7 +57272,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57240
57272
|
exports.BrowserInfoBuilder = BrowserInfoBuilder;
|
|
57241
57273
|
});
|
|
57242
57274
|
|
|
57243
|
-
},{"../system-date":
|
|
57275
|
+
},{"../system-date":508}],461:[function(require,module,exports){
|
|
57244
57276
|
(function (process){(function (){
|
|
57245
57277
|
(function (factory) {
|
|
57246
57278
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
@@ -57448,7 +57480,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57448
57480
|
});
|
|
57449
57481
|
|
|
57450
57482
|
}).call(this)}).call(this,require('_process'))
|
|
57451
|
-
},{"../footprints-process-v6/buffer-size-helper":
|
|
57483
|
+
},{"../footprints-process-v6/buffer-size-helper":488,"../system-date":508,"_process":335,"os":310}],465:[function(require,module,exports){
|
|
57452
57484
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
57453
57485
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
57454
57486
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -57665,7 +57697,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57665
57697
|
});
|
|
57666
57698
|
|
|
57667
57699
|
}).call(this)}).call(this,"/tsOutputs/common")
|
|
57668
|
-
},{"./agent-events/agent-events-conracts":455,"./agent-events/agent-instance-info-builder":458,"./utils/files-utils":
|
|
57700
|
+
},{"./agent-events/agent-events-conracts":455,"./agent-events/agent-instance-info-builder":458,"./utils/files-utils":510,"fs":225,"uuid":682}],469:[function(require,module,exports){
|
|
57669
57701
|
(function (process){(function (){
|
|
57670
57702
|
(function (factory) {
|
|
57671
57703
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
@@ -57758,7 +57790,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57758
57790
|
});
|
|
57759
57791
|
|
|
57760
57792
|
}).call(this)}).call(this,require('_process'))
|
|
57761
|
-
},{"../../cli-parse/contracts":454,"../constants/sl-env-vars":475,"./config":471,"./config-system":470,"_process":335,"fs":225,"jwt-decode":
|
|
57793
|
+
},{"../../cli-parse/contracts":454,"../constants/sl-env-vars":475,"./config":471,"./config-system":470,"_process":335,"fs":225,"jwt-decode":616}],470:[function(require,module,exports){
|
|
57762
57794
|
(function (process){(function (){
|
|
57763
57795
|
(function (factory) {
|
|
57764
57796
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
@@ -58226,7 +58258,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
58226
58258
|
exports.ConfigProcess = ConfigProcess;
|
|
58227
58259
|
});
|
|
58228
58260
|
|
|
58229
|
-
},{"./config-system":470,"events":266,"jwt-decode":
|
|
58261
|
+
},{"./config-system":470,"events":266,"jwt-decode":616,"object-assign":309}],473:[function(require,module,exports){
|
|
58230
58262
|
(function (factory) {
|
|
58231
58263
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
58232
58264
|
var v = factory(require, exports);
|
|
@@ -58394,6 +58426,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
58394
58426
|
static getFileExtensions() {
|
|
58395
58427
|
return process.env[SlEnvVars.CIA.FILE_EXTENSIONS];
|
|
58396
58428
|
}
|
|
58429
|
+
static getSendCommitTitles() {
|
|
58430
|
+
return env_var_parsing_1.EnvVarParsing.parseBoolean(SlEnvVars.CIA.SEND_COMMIT_TITLES, true);
|
|
58431
|
+
}
|
|
58397
58432
|
static getScmPrefix() {
|
|
58398
58433
|
return process.env[SlEnvVars.CIA.SCM_PREFIX];
|
|
58399
58434
|
}
|
|
@@ -58427,12 +58462,33 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
58427
58462
|
_a.REDUCE_INSTRUMENTED_FILE_SIZE = 'SL_reduceInstrumentedFileSize',
|
|
58428
58463
|
_a.MINIFY_INSTRUMENTED_OUTPUT = 'SL_minifyInstrumentedOutput',
|
|
58429
58464
|
_a.IN_PROCESS_INSTRUMENTATION = 'SL_inProcessInstrumentation',
|
|
58465
|
+
_a.SEND_COMMIT_TITLES = 'SL_sendCommitTitles',
|
|
58430
58466
|
_a.MAX_BUFFER = 'SL_maxBuffer',
|
|
58431
58467
|
_a);
|
|
58432
58468
|
});
|
|
58433
58469
|
|
|
58434
58470
|
}).call(this)}).call(this,require('_process'))
|
|
58435
|
-
},{"../footprints-process-v6/buffer-size-helper":
|
|
58471
|
+
},{"../footprints-process-v6/buffer-size-helper":488,"../utils/env-var-parsing":509,"_process":335}],476:[function(require,module,exports){
|
|
58472
|
+
(function (factory) {
|
|
58473
|
+
if (typeof module === "object" && typeof module.exports === "object") {
|
|
58474
|
+
var v = factory(require, exports);
|
|
58475
|
+
if (v !== undefined) module.exports = v;
|
|
58476
|
+
}
|
|
58477
|
+
else if (typeof define === "function" && define.amd) {
|
|
58478
|
+
define(["require", "exports"], factory);
|
|
58479
|
+
}
|
|
58480
|
+
})(function (require, exports) {
|
|
58481
|
+
"use strict";
|
|
58482
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58483
|
+
exports.FootprintsMapping = void 0;
|
|
58484
|
+
var FootprintsMapping;
|
|
58485
|
+
(function (FootprintsMapping) {
|
|
58486
|
+
FootprintsMapping["SERVER"] = "server";
|
|
58487
|
+
FootprintsMapping["AGENT"] = "agent";
|
|
58488
|
+
})(FootprintsMapping = exports.FootprintsMapping || (exports.FootprintsMapping = {}));
|
|
58489
|
+
});
|
|
58490
|
+
|
|
58491
|
+
},{}],477:[function(require,module,exports){
|
|
58436
58492
|
(function (factory) {
|
|
58437
58493
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
58438
58494
|
var v = factory(require, exports);
|
|
@@ -58452,7 +58508,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
58452
58508
|
})(ElementType = exports.ElementType || (exports.ElementType = {}));
|
|
58453
58509
|
});
|
|
58454
58510
|
|
|
58455
|
-
},{}],
|
|
58511
|
+
},{}],478:[function(require,module,exports){
|
|
58456
58512
|
(function (factory) {
|
|
58457
58513
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
58458
58514
|
var v = factory(require, exports);
|
|
@@ -58585,7 +58641,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
58585
58641
|
exports.FileElement = FileElement;
|
|
58586
58642
|
});
|
|
58587
58643
|
|
|
58588
|
-
},{"../utils/validation-utils":
|
|
58644
|
+
},{"../utils/validation-utils":512}],479:[function(require,module,exports){
|
|
58589
58645
|
(function (factory) {
|
|
58590
58646
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
58591
58647
|
var v = factory(require, exports);
|
|
@@ -58655,7 +58711,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
58655
58711
|
exports.IstanbulUniqueIdConverter = IstanbulUniqueIdConverter;
|
|
58656
58712
|
});
|
|
58657
58713
|
|
|
58658
|
-
},{"./contracts":
|
|
58714
|
+
},{"./contracts":477,"./unique-id-converter":482}],480:[function(require,module,exports){
|
|
58659
58715
|
(function (factory) {
|
|
58660
58716
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
58661
58717
|
var v = factory(require, exports);
|
|
@@ -58712,7 +58768,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
58712
58768
|
}
|
|
58713
58769
|
});
|
|
58714
58770
|
|
|
58715
|
-
},{"../system-date":
|
|
58771
|
+
},{"../system-date":508,"../utils/files-utils":510,"./istanbul-unique-id-converter":479,"path":327}],481:[function(require,module,exports){
|
|
58716
58772
|
(function (factory) {
|
|
58717
58773
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
58718
58774
|
var v = factory(require, exports);
|
|
@@ -58896,7 +58952,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
58896
58952
|
exports.OriginalModuleLoader = OriginalModuleLoader;
|
|
58897
58953
|
});
|
|
58898
58954
|
|
|
58899
|
-
},{"../source-maps-utils":
|
|
58955
|
+
},{"../source-maps-utils":505,"../utils/files-utils":510,"../utils/validation-utils":512}],482:[function(require,module,exports){
|
|
58900
58956
|
(function (factory) {
|
|
58901
58957
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
58902
58958
|
var v = factory(require, exports);
|
|
@@ -59108,7 +59164,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59108
59164
|
exports.UniqueIdConverter = UniqueIdConverter;
|
|
59109
59165
|
});
|
|
59110
59166
|
|
|
59111
|
-
},{"./contracts":
|
|
59167
|
+
},{"./contracts":477,"./file-element":478}],483:[function(require,module,exports){
|
|
59112
59168
|
(function (factory) {
|
|
59113
59169
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
59114
59170
|
var v = factory(require, exports);
|
|
@@ -59140,7 +59196,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59140
59196
|
})(TestSelectionStatus = exports.TestSelectionStatus || (exports.TestSelectionStatus = {}));
|
|
59141
59197
|
});
|
|
59142
59198
|
|
|
59143
|
-
},{}],
|
|
59199
|
+
},{}],484:[function(require,module,exports){
|
|
59144
59200
|
(function (factory) {
|
|
59145
59201
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
59146
59202
|
var v = factory(require, exports);
|
|
@@ -59180,7 +59236,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59180
59236
|
exports.EventsCreator = EventsCreator;
|
|
59181
59237
|
});
|
|
59182
59238
|
|
|
59183
|
-
},{"../system-date":
|
|
59239
|
+
},{"../system-date":508,"./events-contracts":483}],485:[function(require,module,exports){
|
|
59184
59240
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
59185
59241
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
59186
59242
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -59368,7 +59424,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59368
59424
|
EventsProcess.ITEMS_TO_DEQUE = 1000;
|
|
59369
59425
|
});
|
|
59370
59426
|
|
|
59371
|
-
},{"../system-date":
|
|
59427
|
+
},{"../system-date":508,"../utils/validation-utils":512}],486:[function(require,module,exports){
|
|
59372
59428
|
(function (factory) {
|
|
59373
59429
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
59374
59430
|
var v = factory(require, exports);
|
|
@@ -59424,7 +59480,31 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59424
59480
|
exports.BaseBrowserHitsConverter = BaseBrowserHitsConverter;
|
|
59425
59481
|
});
|
|
59426
59482
|
|
|
59427
|
-
},{"../../common/footprints-process-v6/hits-converter":
|
|
59483
|
+
},{"../../common/footprints-process-v6/hits-converter":493,"../utils/files-utils":510,"./location-formatter":495}],487:[function(require,module,exports){
|
|
59484
|
+
(function (factory) {
|
|
59485
|
+
if (typeof module === "object" && typeof module.exports === "object") {
|
|
59486
|
+
var v = factory(require, exports);
|
|
59487
|
+
if (v !== undefined) module.exports = v;
|
|
59488
|
+
}
|
|
59489
|
+
else if (typeof define === "function" && define.amd) {
|
|
59490
|
+
define(["require", "exports", "./footprints-buffer", "../contracts"], factory);
|
|
59491
|
+
}
|
|
59492
|
+
})(function (require, exports) {
|
|
59493
|
+
"use strict";
|
|
59494
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59495
|
+
exports.BrowserFootprintsBuffer = void 0;
|
|
59496
|
+
const footprints_buffer_1 = require("./footprints-buffer");
|
|
59497
|
+
const contracts_1 = require("../contracts");
|
|
59498
|
+
class BrowserFootprintsBuffer extends footprints_buffer_1.FootprintsBuffer {
|
|
59499
|
+
constructor(agentInstanceData, agentConfig, footprintsMapping) {
|
|
59500
|
+
super(agentInstanceData, agentConfig);
|
|
59501
|
+
this.meta.footprintsMapping = footprintsMapping === contracts_1.FootprintsMapping.SERVER ? footprintsMapping : contracts_1.FootprintsMapping.AGENT;
|
|
59502
|
+
}
|
|
59503
|
+
}
|
|
59504
|
+
exports.BrowserFootprintsBuffer = BrowserFootprintsBuffer;
|
|
59505
|
+
});
|
|
59506
|
+
|
|
59507
|
+
},{"../contracts":476,"./footprints-buffer":491}],488:[function(require,module,exports){
|
|
59428
59508
|
(function (factory) {
|
|
59429
59509
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
59430
59510
|
var v = factory(require, exports);
|
|
@@ -59470,24 +59550,24 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59470
59550
|
BufferSizeHelper.BYTES_IN_GB = 1024 * 1024 * 1024;
|
|
59471
59551
|
});
|
|
59472
59552
|
|
|
59473
|
-
},{}],
|
|
59553
|
+
},{}],489:[function(require,module,exports){
|
|
59474
59554
|
(function (factory) {
|
|
59475
59555
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
59476
59556
|
var v = factory(require, exports);
|
|
59477
59557
|
if (v !== undefined) module.exports = v;
|
|
59478
59558
|
}
|
|
59479
59559
|
else if (typeof define === "function" && define.amd) {
|
|
59480
|
-
define(["require", "exports", "../agent-events/agent-events-conracts", "./footprints-buffer"], factory);
|
|
59560
|
+
define(["require", "exports", "../agent-events/agent-events-conracts", "./browser-footprints-buffer"], factory);
|
|
59481
59561
|
}
|
|
59482
59562
|
})(function (require, exports) {
|
|
59483
59563
|
"use strict";
|
|
59484
59564
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59485
59565
|
exports.CollectorFootprintsBuffer = void 0;
|
|
59486
59566
|
const agent_events_conracts_1 = require("../agent-events/agent-events-conracts");
|
|
59487
|
-
const
|
|
59488
|
-
class CollectorFootprintsBuffer extends
|
|
59489
|
-
constructor(agentInstanceData, agentConfig) {
|
|
59490
|
-
super(agentInstanceData, agentConfig);
|
|
59567
|
+
const browser_footprints_buffer_1 = require("./browser-footprints-buffer");
|
|
59568
|
+
class CollectorFootprintsBuffer extends browser_footprints_buffer_1.BrowserFootprintsBuffer {
|
|
59569
|
+
constructor(agentInstanceData, agentConfig, footprintsMapping) {
|
|
59570
|
+
super(agentInstanceData, agentConfig, footprintsMapping);
|
|
59491
59571
|
this.meta.agentConfig = {
|
|
59492
59572
|
agentId: this.agentInstanceData.agentId,
|
|
59493
59573
|
appName: this.agentConfig.appName.value,
|
|
@@ -59503,7 +59583,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59503
59583
|
exports.CollectorFootprintsBuffer = CollectorFootprintsBuffer;
|
|
59504
59584
|
});
|
|
59505
59585
|
|
|
59506
|
-
},{"../agent-events/agent-events-conracts":455,"./footprints-buffer":
|
|
59586
|
+
},{"../agent-events/agent-events-conracts":455,"./browser-footprints-buffer":487}],490:[function(require,module,exports){
|
|
59507
59587
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
59508
59588
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
59509
59589
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -59573,7 +59653,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59573
59653
|
exports.CollectorFootprintsProcess = CollectorFootprintsProcess;
|
|
59574
59654
|
});
|
|
59575
59655
|
|
|
59576
|
-
},{".":
|
|
59656
|
+
},{".":494,"../no-op-state-tracker":504}],491:[function(require,module,exports){
|
|
59577
59657
|
(function (factory) {
|
|
59578
59658
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
59579
59659
|
var v = factory(require, exports);
|
|
@@ -59694,7 +59774,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59694
59774
|
FootprintsBuffer.BUFFER_FULL = 'bufferFull';
|
|
59695
59775
|
});
|
|
59696
59776
|
|
|
59697
|
-
},{"../agent-events/agent-events-conracts":455,"../agent-events/cockpit-notifier":462,"./buffer-size-helper":
|
|
59777
|
+
},{"../agent-events/agent-events-conracts":455,"../agent-events/cockpit-notifier":462,"./buffer-size-helper":488,"events":266}],492:[function(require,module,exports){
|
|
59698
59778
|
(function (global){(function (){
|
|
59699
59779
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
59700
59780
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -59882,7 +59962,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59882
59962
|
});
|
|
59883
59963
|
|
|
59884
59964
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
59885
|
-
},{"../agent-events/cockpit-notifier":462,"../constants/sl-env-vars":475,"../coverage-elements/original-module-loader":
|
|
59965
|
+
},{"../agent-events/cockpit-notifier":462,"../constants/sl-env-vars":475,"../coverage-elements/original-module-loader":481}],493:[function(require,module,exports){
|
|
59886
59966
|
(function (factory) {
|
|
59887
59967
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
59888
59968
|
var v = factory(require, exports);
|
|
@@ -60032,7 +60112,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
60032
60112
|
HitsConverter.BRANCH_ID_DEL = '|';
|
|
60033
60113
|
});
|
|
60034
60114
|
|
|
60035
|
-
},{"../agent-events/cockpit-notifier":462,"../constants/sl-env-vars":475,"../coverage-elements/new-id-resolver":
|
|
60115
|
+
},{"../agent-events/cockpit-notifier":462,"../constants/sl-env-vars":475,"../coverage-elements/new-id-resolver":480,"../coverage-elements/original-module-loader":481,"./hits-collector":492}],494:[function(require,module,exports){
|
|
60036
60116
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
60037
60117
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
60038
60118
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -60204,8 +60284,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
60204
60284
|
this.logger.info('Test identifier changed, previous identifier wasn\'t set, meaning that we didn\'t have active test. Skip enqueuing footprints process.');
|
|
60205
60285
|
}
|
|
60206
60286
|
else {
|
|
60207
|
-
|
|
60208
|
-
|
|
60287
|
+
const { shouldCollectHits, message } = this.stateTracker.getCollectHitsState();
|
|
60288
|
+
if (!shouldCollectHits) {
|
|
60289
|
+
this.logger.info(`Test identifier changed. ${message}`);
|
|
60209
60290
|
return;
|
|
60210
60291
|
}
|
|
60211
60292
|
this.logger.debug('Test identifier changed, start enqueuing footprints process.');
|
|
@@ -60251,24 +60332,26 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
60251
60332
|
flushCurrentFootprints(isFinalFootprints = false) {
|
|
60252
60333
|
return __awaiter(this, void 0, void 0, function* () {
|
|
60253
60334
|
const currentTestIdentifier = this.stateTracker.getCurrentTestIdentifier();
|
|
60335
|
+
const { shouldCollectHits, message, reason } = this.stateTracker.getCollectHitsState();
|
|
60336
|
+
if (!shouldCollectHits) {
|
|
60337
|
+
this.logger.info(`Enqueue footprints interval - ${message}`);
|
|
60338
|
+
this.checkShouldUpdateCoverageSnapshot(reason);
|
|
60339
|
+
return;
|
|
60340
|
+
}
|
|
60254
60341
|
if (currentTestIdentifier) {
|
|
60255
60342
|
const testIdentifierParts = state_tracker_1.StateTracker.splitTestIdToExecutionAndTestName(currentTestIdentifier);
|
|
60256
60343
|
this.logger.debug('Enqueue footprints interval - start enqueuing process. currentTestIdentifier: \'%s\'', currentTestIdentifier);
|
|
60257
60344
|
yield this.enqueueCurrentFootprints(this.stateTracker.currentExecution, testIdentifierParts.testName, isFinalFootprints);
|
|
60258
60345
|
}
|
|
60259
|
-
else
|
|
60346
|
+
else {
|
|
60260
60347
|
this.logger.debug('Enqueue footprints interval - start enqueuing process. anonymous footprints');
|
|
60261
60348
|
yield this.enqueueCurrentFootprints(this.stateTracker.currentExecution, null, isFinalFootprints);
|
|
60262
60349
|
}
|
|
60263
|
-
else {
|
|
60264
|
-
this.logger.info('Enqueue footprints interval - no active execution. skip enqueuing process.');
|
|
60265
|
-
this.handleNoExecutionFound();
|
|
60266
|
-
}
|
|
60267
60350
|
});
|
|
60268
60351
|
}
|
|
60269
|
-
|
|
60352
|
+
checkShouldUpdateCoverageSnapshot(reason) {
|
|
60270
60353
|
if (this.stateTracker.openExecutionFoundOnce) {
|
|
60271
|
-
this.logger.debug(
|
|
60354
|
+
this.logger.debug(`Did not collect hits - reason: ${reason} and not in initFootprints mode, updating coverage snapshot`);
|
|
60272
60355
|
this.hitsCollector.dropHits();
|
|
60273
60356
|
}
|
|
60274
60357
|
}
|
|
@@ -60323,7 +60406,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
60323
60406
|
FootprintsProcess.ALARM_FIRED = 'alarm';
|
|
60324
60407
|
});
|
|
60325
60408
|
|
|
60326
|
-
},{"../agent-events/agent-events-conracts":455,"../agent-events/agent-events-guard":457,"../agent-events/cockpit-notifier":462,"../constants/sl-env-vars":475,"../footprints-process/collection-interval":
|
|
60409
|
+
},{"../agent-events/agent-events-conracts":455,"../agent-events/agent-events-guard":457,"../agent-events/cockpit-notifier":462,"../constants/sl-env-vars":475,"../footprints-process/collection-interval":497,"../state-tracker":507,"./footprints-buffer":491}],495:[function(require,module,exports){
|
|
60327
60410
|
(function (factory) {
|
|
60328
60411
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
60329
60412
|
var v = factory(require, exports);
|
|
@@ -60357,7 +60440,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
60357
60440
|
}
|
|
60358
60441
|
});
|
|
60359
60442
|
|
|
60360
|
-
},{}],
|
|
60443
|
+
},{}],496:[function(require,module,exports){
|
|
60361
60444
|
(function (process){(function (){
|
|
60362
60445
|
(function (factory) {
|
|
60363
60446
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
@@ -60398,7 +60481,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
60398
60481
|
});
|
|
60399
60482
|
|
|
60400
60483
|
}).call(this)}).call(this,require('_process'))
|
|
60401
|
-
},{"_process":335}],
|
|
60484
|
+
},{"_process":335}],497:[function(require,module,exports){
|
|
60402
60485
|
(function (factory) {
|
|
60403
60486
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
60404
60487
|
var v = factory(require, exports);
|
|
@@ -60436,7 +60519,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
60436
60519
|
exports.CollectionInterval = CollectionInterval;
|
|
60437
60520
|
});
|
|
60438
60521
|
|
|
60439
|
-
},{"../system-date":
|
|
60522
|
+
},{"../system-date":508}],498:[function(require,module,exports){
|
|
60440
60523
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
60441
60524
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
60442
60525
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -60783,7 +60866,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
60783
60866
|
BackendProxy.DEFAULT_HTTP_ATTEMPT_INTERVAL = 5 * 1000;
|
|
60784
60867
|
});
|
|
60785
60868
|
|
|
60786
|
-
},{"../constants/constants":474,"../constants/sl-env-vars":475,"../utils/timer-utils":
|
|
60869
|
+
},{"../constants/constants":474,"../constants/sl-env-vars":475,"../utils/timer-utils":511,"../utils/validation-utils":512,"./contracts":499,"./entities-mapper":500,"./http-client":501,"./sl-routes":503}],499:[function(require,module,exports){
|
|
60787
60870
|
(function (factory) {
|
|
60788
60871
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
60789
60872
|
var v = factory(require, exports);
|
|
@@ -60889,7 +60972,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
60889
60972
|
})(SealightsHaderValues = exports.SealightsHaderValues || (exports.SealightsHaderValues = {}));
|
|
60890
60973
|
});
|
|
60891
60974
|
|
|
60892
|
-
},{"../system-date":
|
|
60975
|
+
},{"../system-date":508}],500:[function(require,module,exports){
|
|
60893
60976
|
(function (factory) {
|
|
60894
60977
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
60895
60978
|
var v = factory(require, exports);
|
|
@@ -60915,7 +60998,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
60915
60998
|
exports.EntitiesMapper = EntitiesMapper;
|
|
60916
60999
|
});
|
|
60917
61000
|
|
|
60918
|
-
},{"./contracts":
|
|
61001
|
+
},{"./contracts":499}],501:[function(require,module,exports){
|
|
60919
61002
|
(function (process,Buffer){(function (){
|
|
60920
61003
|
(function (factory) {
|
|
60921
61004
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
@@ -61122,7 +61205,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61122
61205
|
});
|
|
61123
61206
|
|
|
61124
61207
|
}).call(this)}).call(this,require('_process'),require("buffer").Buffer)
|
|
61125
|
-
},{"../constants/sl-env-vars":475,"../utils/validation-utils":
|
|
61208
|
+
},{"../constants/sl-env-vars":475,"../utils/validation-utils":512,"./contracts":499,"./http-verb":502,"_process":335,"buffer":227,"request":629,"zlib":224}],502:[function(require,module,exports){
|
|
61126
61209
|
(function (factory) {
|
|
61127
61210
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
61128
61211
|
var v = factory(require, exports);
|
|
@@ -61144,7 +61227,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61144
61227
|
})(HttpVerb = exports.HttpVerb || (exports.HttpVerb = {}));
|
|
61145
61228
|
});
|
|
61146
61229
|
|
|
61147
|
-
},{}],
|
|
61230
|
+
},{}],503:[function(require,module,exports){
|
|
61148
61231
|
(function (factory) {
|
|
61149
61232
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
61150
61233
|
var v = factory(require, exports);
|
|
@@ -61375,7 +61458,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61375
61458
|
SLRoutes.ACTIVE = 'active';
|
|
61376
61459
|
});
|
|
61377
61460
|
|
|
61378
|
-
},{"../constants/constants":474,"../utils/validation-utils":
|
|
61461
|
+
},{"../constants/constants":474,"../utils/validation-utils":512}],504:[function(require,module,exports){
|
|
61379
61462
|
(function (factory) {
|
|
61380
61463
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
61381
61464
|
var v = factory(require, exports);
|
|
@@ -61395,8 +61478,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61395
61478
|
}
|
|
61396
61479
|
start() { }
|
|
61397
61480
|
stop() { }
|
|
61398
|
-
|
|
61399
|
-
return true;
|
|
61481
|
+
getCollectHitsState() {
|
|
61482
|
+
return { shouldCollectHits: true };
|
|
61400
61483
|
}
|
|
61401
61484
|
startCheckingTestStatusAtServer() { }
|
|
61402
61485
|
checkTestStatusAtServer(async = true) { }
|
|
@@ -61407,7 +61490,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61407
61490
|
exports.NoopStateTracker = NoopStateTracker;
|
|
61408
61491
|
});
|
|
61409
61492
|
|
|
61410
|
-
},{"./state-tracker-fpv6":
|
|
61493
|
+
},{"./state-tracker-fpv6":506}],505:[function(require,module,exports){
|
|
61411
61494
|
(function (factory) {
|
|
61412
61495
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
61413
61496
|
var v = factory(require, exports);
|
|
@@ -61454,7 +61537,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61454
61537
|
exports.SourceMapsUtils = SourceMapsUtils;
|
|
61455
61538
|
});
|
|
61456
61539
|
|
|
61457
|
-
},{"fs":225,"source-map":385}],
|
|
61540
|
+
},{"fs":225,"source-map":385}],506:[function(require,module,exports){
|
|
61458
61541
|
(function (factory) {
|
|
61459
61542
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
61460
61543
|
var v = factory(require, exports);
|
|
@@ -61487,7 +61570,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61487
61570
|
exports.StateTrackerFpv6 = StateTrackerFpv6;
|
|
61488
61571
|
});
|
|
61489
61572
|
|
|
61490
|
-
},{"./state-tracker":
|
|
61573
|
+
},{"./state-tracker":507}],507:[function(require,module,exports){
|
|
61491
61574
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
61492
61575
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
61493
61576
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -61594,8 +61677,25 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61594
61677
|
hasMappingAtServer() {
|
|
61595
61678
|
return this._currentExecution != null;
|
|
61596
61679
|
}
|
|
61597
|
-
|
|
61598
|
-
|
|
61680
|
+
getCollectHitsState() {
|
|
61681
|
+
var _a;
|
|
61682
|
+
const NO_EXECUTION_HITS_DATA = {
|
|
61683
|
+
shouldCollectHits: false,
|
|
61684
|
+
reason: StateTracker.NO_ACTIVE_EXECUTION,
|
|
61685
|
+
message: 'State tracker has no active execution, agent will not collect hits.',
|
|
61686
|
+
};
|
|
61687
|
+
const PENDING_EXECUTION_DELETE_DATA = {
|
|
61688
|
+
shouldCollectHits: false,
|
|
61689
|
+
reason: StateTracker.EXECUTION_STATUS_PENDING_DELETE,
|
|
61690
|
+
message: 'State tracker active execution is currently pending for delete, agent will not collect hits.',
|
|
61691
|
+
};
|
|
61692
|
+
if (!this.hasMappingAtServer()) {
|
|
61693
|
+
return NO_EXECUTION_HITS_DATA;
|
|
61694
|
+
}
|
|
61695
|
+
else if (((_a = this.currentExecution) === null || _a === void 0 ? void 0 : _a.executionId) === this.pendingDeleteExecId) {
|
|
61696
|
+
return PENDING_EXECUTION_DELETE_DATA;
|
|
61697
|
+
}
|
|
61698
|
+
return { shouldCollectHits: true };
|
|
61599
61699
|
}
|
|
61600
61700
|
get currentExecution() {
|
|
61601
61701
|
return this._currentExecution;
|
|
@@ -61744,9 +61844,10 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61744
61844
|
StateTracker.TEST_STAGE_CHANGED = 'testStageChanged';
|
|
61745
61845
|
StateTracker.EXECUTION_STATUS_CREATED = 'created';
|
|
61746
61846
|
StateTracker.EXECUTION_STATUS_PENDING_DELETE = 'pendingDelete';
|
|
61847
|
+
StateTracker.NO_ACTIVE_EXECUTION = 'noActiveExecution';
|
|
61747
61848
|
});
|
|
61748
61849
|
|
|
61749
|
-
},{"./agent-events/agent-events-conracts":455,"./agent-events/cockpit-notifier":462,"./constants/sl-env-vars":475,"./utils/validation-utils":
|
|
61850
|
+
},{"./agent-events/agent-events-conracts":455,"./agent-events/cockpit-notifier":462,"./constants/sl-env-vars":475,"./utils/validation-utils":512,"events":266}],508:[function(require,module,exports){
|
|
61750
61851
|
(function (factory) {
|
|
61751
61852
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
61752
61853
|
var v = factory(require, exports);
|
|
@@ -61772,7 +61873,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61772
61873
|
exports.getSystemDateValueOf = getSystemDateValueOf;
|
|
61773
61874
|
});
|
|
61774
61875
|
|
|
61775
|
-
},{}],
|
|
61876
|
+
},{}],509:[function(require,module,exports){
|
|
61776
61877
|
(function (process){(function (){
|
|
61777
61878
|
(function (factory) {
|
|
61778
61879
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
@@ -61800,19 +61901,18 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61800
61901
|
}
|
|
61801
61902
|
return valueFromEnv;
|
|
61802
61903
|
}
|
|
61803
|
-
static parseBoolean(key) {
|
|
61804
|
-
|
|
61805
|
-
|
|
61806
|
-
|
|
61807
|
-
|
|
61808
|
-
return valueFromEnv == 'true';
|
|
61904
|
+
static parseBoolean(key, defaultValue = false) {
|
|
61905
|
+
var _a;
|
|
61906
|
+
const normalizedEnvVar = (_a = process.env[key]) === null || _a === void 0 ? void 0 : _a.toLowerCase();
|
|
61907
|
+
const isValidValue = normalizedEnvVar === 'true' || normalizedEnvVar === 'false';
|
|
61908
|
+
return isValidValue ? normalizedEnvVar === 'true' : defaultValue;
|
|
61809
61909
|
}
|
|
61810
61910
|
}
|
|
61811
61911
|
exports.EnvVarParsing = EnvVarParsing;
|
|
61812
61912
|
});
|
|
61813
61913
|
|
|
61814
61914
|
}).call(this)}).call(this,require('_process'))
|
|
61815
|
-
},{"_process":335}],
|
|
61915
|
+
},{"_process":335}],510:[function(require,module,exports){
|
|
61816
61916
|
(function (factory) {
|
|
61817
61917
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
61818
61918
|
var v = factory(require, exports);
|
|
@@ -61866,7 +61966,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61866
61966
|
exports.FilesUtils = FilesUtils;
|
|
61867
61967
|
});
|
|
61868
61968
|
|
|
61869
|
-
},{"fs":225,"path":327}],
|
|
61969
|
+
},{"fs":225,"path":327}],511:[function(require,module,exports){
|
|
61870
61970
|
(function (factory) {
|
|
61871
61971
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
61872
61972
|
var v = factory(require, exports);
|
|
@@ -61887,7 +61987,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61887
61987
|
exports.TimerUtils = TimerUtils;
|
|
61888
61988
|
});
|
|
61889
61989
|
|
|
61890
|
-
},{}],
|
|
61990
|
+
},{}],512:[function(require,module,exports){
|
|
61891
61991
|
(function (factory) {
|
|
61892
61992
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
61893
61993
|
var v = factory(require, exports);
|
|
@@ -61914,7 +62014,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61914
62014
|
exports.ValidationUtils = ValidationUtils;
|
|
61915
62015
|
});
|
|
61916
62016
|
|
|
61917
|
-
},{"../constants/constants":474}],
|
|
62017
|
+
},{"../constants/constants":474}],513:[function(require,module,exports){
|
|
61918
62018
|
(function (factory) {
|
|
61919
62019
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
61920
62020
|
var v = factory(require, exports);
|
|
@@ -62021,7 +62121,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
62021
62121
|
exports.Watchdog = Watchdog;
|
|
62022
62122
|
});
|
|
62023
62123
|
|
|
62024
|
-
},{"events":266}],
|
|
62124
|
+
},{"events":266}],514:[function(require,module,exports){
|
|
62025
62125
|
'use strict';
|
|
62026
62126
|
|
|
62027
62127
|
var compileSchema = require('./compile')
|
|
@@ -62529,7 +62629,7 @@ function setLogger(self) {
|
|
|
62529
62629
|
|
|
62530
62630
|
function noop() {}
|
|
62531
62631
|
|
|
62532
|
-
},{"./cache":
|
|
62632
|
+
},{"./cache":515,"./compile":519,"./compile/async":516,"./compile/error_classes":517,"./compile/formats":518,"./compile/resolve":520,"./compile/rules":521,"./compile/schema_obj":522,"./compile/util":524,"./data":525,"./keyword":553,"./refs/data.json":554,"./refs/json-schema-draft-07.json":556,"fast-json-stable-stringify":578}],515:[function(require,module,exports){
|
|
62533
62633
|
'use strict';
|
|
62534
62634
|
|
|
62535
62635
|
|
|
@@ -62557,7 +62657,7 @@ Cache.prototype.clear = function Cache_clear() {
|
|
|
62557
62657
|
this._cache = {};
|
|
62558
62658
|
};
|
|
62559
62659
|
|
|
62560
|
-
},{}],
|
|
62660
|
+
},{}],516:[function(require,module,exports){
|
|
62561
62661
|
'use strict';
|
|
62562
62662
|
|
|
62563
62663
|
var MissingRefError = require('./error_classes').MissingRef;
|
|
@@ -62649,7 +62749,7 @@ function compileAsync(schema, meta, callback) {
|
|
|
62649
62749
|
}
|
|
62650
62750
|
}
|
|
62651
62751
|
|
|
62652
|
-
},{"./error_classes":
|
|
62752
|
+
},{"./error_classes":517}],517:[function(require,module,exports){
|
|
62653
62753
|
'use strict';
|
|
62654
62754
|
|
|
62655
62755
|
var resolve = require('./resolve');
|
|
@@ -62685,7 +62785,7 @@ function errorSubclass(Subclass) {
|
|
|
62685
62785
|
return Subclass;
|
|
62686
62786
|
}
|
|
62687
62787
|
|
|
62688
|
-
},{"./resolve":
|
|
62788
|
+
},{"./resolve":520}],518:[function(require,module,exports){
|
|
62689
62789
|
'use strict';
|
|
62690
62790
|
|
|
62691
62791
|
var util = require('./util');
|
|
@@ -62829,7 +62929,7 @@ function regex(str) {
|
|
|
62829
62929
|
}
|
|
62830
62930
|
}
|
|
62831
62931
|
|
|
62832
|
-
},{"./util":
|
|
62932
|
+
},{"./util":524}],519:[function(require,module,exports){
|
|
62833
62933
|
'use strict';
|
|
62834
62934
|
|
|
62835
62935
|
var resolve = require('./resolve')
|
|
@@ -63218,7 +63318,7 @@ function vars(arr, statement) {
|
|
|
63218
63318
|
return code;
|
|
63219
63319
|
}
|
|
63220
63320
|
|
|
63221
|
-
},{"../dotjs/validate":
|
|
63321
|
+
},{"../dotjs/validate":552,"./error_classes":517,"./resolve":520,"./util":524,"fast-deep-equal":577,"fast-json-stable-stringify":578}],520:[function(require,module,exports){
|
|
63222
63322
|
'use strict';
|
|
63223
63323
|
|
|
63224
63324
|
var URI = require('uri-js')
|
|
@@ -63490,7 +63590,7 @@ function resolveIds(schema) {
|
|
|
63490
63590
|
return localRefs;
|
|
63491
63591
|
}
|
|
63492
63592
|
|
|
63493
|
-
},{"./schema_obj":
|
|
63593
|
+
},{"./schema_obj":522,"./util":524,"fast-deep-equal":577,"json-schema-traverse":610,"uri-js":681}],521:[function(require,module,exports){
|
|
63494
63594
|
'use strict';
|
|
63495
63595
|
|
|
63496
63596
|
var ruleModules = require('../dotjs')
|
|
@@ -63558,7 +63658,7 @@ module.exports = function rules() {
|
|
|
63558
63658
|
return RULES;
|
|
63559
63659
|
};
|
|
63560
63660
|
|
|
63561
|
-
},{"../dotjs":
|
|
63661
|
+
},{"../dotjs":541,"./util":524}],522:[function(require,module,exports){
|
|
63562
63662
|
'use strict';
|
|
63563
63663
|
|
|
63564
63664
|
var util = require('./util');
|
|
@@ -63569,7 +63669,7 @@ function SchemaObject(obj) {
|
|
|
63569
63669
|
util.copy(obj, this);
|
|
63570
63670
|
}
|
|
63571
63671
|
|
|
63572
|
-
},{"./util":
|
|
63672
|
+
},{"./util":524}],523:[function(require,module,exports){
|
|
63573
63673
|
'use strict';
|
|
63574
63674
|
|
|
63575
63675
|
// https://mathiasbynens.be/notes/javascript-encoding
|
|
@@ -63591,7 +63691,7 @@ module.exports = function ucs2length(str) {
|
|
|
63591
63691
|
return length;
|
|
63592
63692
|
};
|
|
63593
63693
|
|
|
63594
|
-
},{}],
|
|
63694
|
+
},{}],524:[function(require,module,exports){
|
|
63595
63695
|
'use strict';
|
|
63596
63696
|
|
|
63597
63697
|
|
|
@@ -63832,7 +63932,7 @@ function unescapeJsonPointer(str) {
|
|
|
63832
63932
|
return str.replace(/~1/g, '/').replace(/~0/g, '~');
|
|
63833
63933
|
}
|
|
63834
63934
|
|
|
63835
|
-
},{"./ucs2length":
|
|
63935
|
+
},{"./ucs2length":523,"fast-deep-equal":577}],525:[function(require,module,exports){
|
|
63836
63936
|
'use strict';
|
|
63837
63937
|
|
|
63838
63938
|
var KEYWORDS = [
|
|
@@ -63883,7 +63983,7 @@ module.exports = function (metaSchema, keywordsJsonPointers) {
|
|
|
63883
63983
|
return metaSchema;
|
|
63884
63984
|
};
|
|
63885
63985
|
|
|
63886
|
-
},{}],
|
|
63986
|
+
},{}],526:[function(require,module,exports){
|
|
63887
63987
|
'use strict';
|
|
63888
63988
|
|
|
63889
63989
|
var metaSchema = require('./refs/json-schema-draft-07.json');
|
|
@@ -63922,7 +64022,7 @@ module.exports = {
|
|
|
63922
64022
|
}
|
|
63923
64023
|
};
|
|
63924
64024
|
|
|
63925
|
-
},{"./refs/json-schema-draft-07.json":
|
|
64025
|
+
},{"./refs/json-schema-draft-07.json":556}],527:[function(require,module,exports){
|
|
63926
64026
|
'use strict';
|
|
63927
64027
|
module.exports = function generate__limit(it, $keyword, $ruleType) {
|
|
63928
64028
|
var out = ' ';
|
|
@@ -64087,7 +64187,7 @@ module.exports = function generate__limit(it, $keyword, $ruleType) {
|
|
|
64087
64187
|
return out;
|
|
64088
64188
|
}
|
|
64089
64189
|
|
|
64090
|
-
},{}],
|
|
64190
|
+
},{}],528:[function(require,module,exports){
|
|
64091
64191
|
'use strict';
|
|
64092
64192
|
module.exports = function generate__limitItems(it, $keyword, $ruleType) {
|
|
64093
64193
|
var out = ' ';
|
|
@@ -64169,7 +64269,7 @@ module.exports = function generate__limitItems(it, $keyword, $ruleType) {
|
|
|
64169
64269
|
return out;
|
|
64170
64270
|
}
|
|
64171
64271
|
|
|
64172
|
-
},{}],
|
|
64272
|
+
},{}],529:[function(require,module,exports){
|
|
64173
64273
|
'use strict';
|
|
64174
64274
|
module.exports = function generate__limitLength(it, $keyword, $ruleType) {
|
|
64175
64275
|
var out = ' ';
|
|
@@ -64256,7 +64356,7 @@ module.exports = function generate__limitLength(it, $keyword, $ruleType) {
|
|
|
64256
64356
|
return out;
|
|
64257
64357
|
}
|
|
64258
64358
|
|
|
64259
|
-
},{}],
|
|
64359
|
+
},{}],530:[function(require,module,exports){
|
|
64260
64360
|
'use strict';
|
|
64261
64361
|
module.exports = function generate__limitProperties(it, $keyword, $ruleType) {
|
|
64262
64362
|
var out = ' ';
|
|
@@ -64338,7 +64438,7 @@ module.exports = function generate__limitProperties(it, $keyword, $ruleType) {
|
|
|
64338
64438
|
return out;
|
|
64339
64439
|
}
|
|
64340
64440
|
|
|
64341
|
-
},{}],
|
|
64441
|
+
},{}],531:[function(require,module,exports){
|
|
64342
64442
|
'use strict';
|
|
64343
64443
|
module.exports = function generate_allOf(it, $keyword, $ruleType) {
|
|
64344
64444
|
var out = ' ';
|
|
@@ -64382,7 +64482,7 @@ module.exports = function generate_allOf(it, $keyword, $ruleType) {
|
|
|
64382
64482
|
return out;
|
|
64383
64483
|
}
|
|
64384
64484
|
|
|
64385
|
-
},{}],
|
|
64485
|
+
},{}],532:[function(require,module,exports){
|
|
64386
64486
|
'use strict';
|
|
64387
64487
|
module.exports = function generate_anyOf(it, $keyword, $ruleType) {
|
|
64388
64488
|
var out = ' ';
|
|
@@ -64457,7 +64557,7 @@ module.exports = function generate_anyOf(it, $keyword, $ruleType) {
|
|
|
64457
64557
|
return out;
|
|
64458
64558
|
}
|
|
64459
64559
|
|
|
64460
|
-
},{}],
|
|
64560
|
+
},{}],533:[function(require,module,exports){
|
|
64461
64561
|
'use strict';
|
|
64462
64562
|
module.exports = function generate_comment(it, $keyword, $ruleType) {
|
|
64463
64563
|
var out = ' ';
|
|
@@ -64473,7 +64573,7 @@ module.exports = function generate_comment(it, $keyword, $ruleType) {
|
|
|
64473
64573
|
return out;
|
|
64474
64574
|
}
|
|
64475
64575
|
|
|
64476
|
-
},{}],
|
|
64576
|
+
},{}],534:[function(require,module,exports){
|
|
64477
64577
|
'use strict';
|
|
64478
64578
|
module.exports = function generate_const(it, $keyword, $ruleType) {
|
|
64479
64579
|
var out = ' ';
|
|
@@ -64531,7 +64631,7 @@ module.exports = function generate_const(it, $keyword, $ruleType) {
|
|
|
64531
64631
|
return out;
|
|
64532
64632
|
}
|
|
64533
64633
|
|
|
64534
|
-
},{}],
|
|
64634
|
+
},{}],535:[function(require,module,exports){
|
|
64535
64635
|
'use strict';
|
|
64536
64636
|
module.exports = function generate_contains(it, $keyword, $ruleType) {
|
|
64537
64637
|
var out = ' ';
|
|
@@ -64614,7 +64714,7 @@ module.exports = function generate_contains(it, $keyword, $ruleType) {
|
|
|
64614
64714
|
return out;
|
|
64615
64715
|
}
|
|
64616
64716
|
|
|
64617
|
-
},{}],
|
|
64717
|
+
},{}],536:[function(require,module,exports){
|
|
64618
64718
|
'use strict';
|
|
64619
64719
|
module.exports = function generate_custom(it, $keyword, $ruleType) {
|
|
64620
64720
|
var out = ' ';
|
|
@@ -64844,7 +64944,7 @@ module.exports = function generate_custom(it, $keyword, $ruleType) {
|
|
|
64844
64944
|
return out;
|
|
64845
64945
|
}
|
|
64846
64946
|
|
|
64847
|
-
},{}],
|
|
64947
|
+
},{}],537:[function(require,module,exports){
|
|
64848
64948
|
'use strict';
|
|
64849
64949
|
module.exports = function generate_dependencies(it, $keyword, $ruleType) {
|
|
64850
64950
|
var out = ' ';
|
|
@@ -65014,7 +65114,7 @@ module.exports = function generate_dependencies(it, $keyword, $ruleType) {
|
|
|
65014
65114
|
return out;
|
|
65015
65115
|
}
|
|
65016
65116
|
|
|
65017
|
-
},{}],
|
|
65117
|
+
},{}],538:[function(require,module,exports){
|
|
65018
65118
|
'use strict';
|
|
65019
65119
|
module.exports = function generate_enum(it, $keyword, $ruleType) {
|
|
65020
65120
|
var out = ' ';
|
|
@@ -65082,7 +65182,7 @@ module.exports = function generate_enum(it, $keyword, $ruleType) {
|
|
|
65082
65182
|
return out;
|
|
65083
65183
|
}
|
|
65084
65184
|
|
|
65085
|
-
},{}],
|
|
65185
|
+
},{}],539:[function(require,module,exports){
|
|
65086
65186
|
'use strict';
|
|
65087
65187
|
module.exports = function generate_format(it, $keyword, $ruleType) {
|
|
65088
65188
|
var out = ' ';
|
|
@@ -65234,7 +65334,7 @@ module.exports = function generate_format(it, $keyword, $ruleType) {
|
|
|
65234
65334
|
return out;
|
|
65235
65335
|
}
|
|
65236
65336
|
|
|
65237
|
-
},{}],
|
|
65337
|
+
},{}],540:[function(require,module,exports){
|
|
65238
65338
|
'use strict';
|
|
65239
65339
|
module.exports = function generate_if(it, $keyword, $ruleType) {
|
|
65240
65340
|
var out = ' ';
|
|
@@ -65339,7 +65439,7 @@ module.exports = function generate_if(it, $keyword, $ruleType) {
|
|
|
65339
65439
|
return out;
|
|
65340
65440
|
}
|
|
65341
65441
|
|
|
65342
|
-
},{}],
|
|
65442
|
+
},{}],541:[function(require,module,exports){
|
|
65343
65443
|
'use strict';
|
|
65344
65444
|
|
|
65345
65445
|
//all requires must be explicit because browserify won't work with dynamic requires
|
|
@@ -65374,7 +65474,7 @@ module.exports = {
|
|
|
65374
65474
|
validate: require('./validate')
|
|
65375
65475
|
};
|
|
65376
65476
|
|
|
65377
|
-
},{"./_limit":
|
|
65477
|
+
},{"./_limit":527,"./_limitItems":528,"./_limitLength":529,"./_limitProperties":530,"./allOf":531,"./anyOf":532,"./comment":533,"./const":534,"./contains":535,"./dependencies":537,"./enum":538,"./format":539,"./if":540,"./items":542,"./multipleOf":543,"./not":544,"./oneOf":545,"./pattern":546,"./properties":547,"./propertyNames":548,"./ref":549,"./required":550,"./uniqueItems":551,"./validate":552}],542:[function(require,module,exports){
|
|
65378
65478
|
'use strict';
|
|
65379
65479
|
module.exports = function generate_items(it, $keyword, $ruleType) {
|
|
65380
65480
|
var out = ' ';
|
|
@@ -65516,7 +65616,7 @@ module.exports = function generate_items(it, $keyword, $ruleType) {
|
|
|
65516
65616
|
return out;
|
|
65517
65617
|
}
|
|
65518
65618
|
|
|
65519
|
-
},{}],
|
|
65619
|
+
},{}],543:[function(require,module,exports){
|
|
65520
65620
|
'use strict';
|
|
65521
65621
|
module.exports = function generate_multipleOf(it, $keyword, $ruleType) {
|
|
65522
65622
|
var out = ' ';
|
|
@@ -65598,7 +65698,7 @@ module.exports = function generate_multipleOf(it, $keyword, $ruleType) {
|
|
|
65598
65698
|
return out;
|
|
65599
65699
|
}
|
|
65600
65700
|
|
|
65601
|
-
},{}],
|
|
65701
|
+
},{}],544:[function(require,module,exports){
|
|
65602
65702
|
'use strict';
|
|
65603
65703
|
module.exports = function generate_not(it, $keyword, $ruleType) {
|
|
65604
65704
|
var out = ' ';
|
|
@@ -65684,7 +65784,7 @@ module.exports = function generate_not(it, $keyword, $ruleType) {
|
|
|
65684
65784
|
return out;
|
|
65685
65785
|
}
|
|
65686
65786
|
|
|
65687
|
-
},{}],
|
|
65787
|
+
},{}],545:[function(require,module,exports){
|
|
65688
65788
|
'use strict';
|
|
65689
65789
|
module.exports = function generate_oneOf(it, $keyword, $ruleType) {
|
|
65690
65790
|
var out = ' ';
|
|
@@ -65759,7 +65859,7 @@ module.exports = function generate_oneOf(it, $keyword, $ruleType) {
|
|
|
65759
65859
|
return out;
|
|
65760
65860
|
}
|
|
65761
65861
|
|
|
65762
|
-
},{}],
|
|
65862
|
+
},{}],546:[function(require,module,exports){
|
|
65763
65863
|
'use strict';
|
|
65764
65864
|
module.exports = function generate_pattern(it, $keyword, $ruleType) {
|
|
65765
65865
|
var out = ' ';
|
|
@@ -65836,7 +65936,7 @@ module.exports = function generate_pattern(it, $keyword, $ruleType) {
|
|
|
65836
65936
|
return out;
|
|
65837
65937
|
}
|
|
65838
65938
|
|
|
65839
|
-
},{}],
|
|
65939
|
+
},{}],547:[function(require,module,exports){
|
|
65840
65940
|
'use strict';
|
|
65841
65941
|
module.exports = function generate_properties(it, $keyword, $ruleType) {
|
|
65842
65942
|
var out = ' ';
|
|
@@ -66173,7 +66273,7 @@ module.exports = function generate_properties(it, $keyword, $ruleType) {
|
|
|
66173
66273
|
return out;
|
|
66174
66274
|
}
|
|
66175
66275
|
|
|
66176
|
-
},{}],
|
|
66276
|
+
},{}],548:[function(require,module,exports){
|
|
66177
66277
|
'use strict';
|
|
66178
66278
|
module.exports = function generate_propertyNames(it, $keyword, $ruleType) {
|
|
66179
66279
|
var out = ' ';
|
|
@@ -66256,7 +66356,7 @@ module.exports = function generate_propertyNames(it, $keyword, $ruleType) {
|
|
|
66256
66356
|
return out;
|
|
66257
66357
|
}
|
|
66258
66358
|
|
|
66259
|
-
},{}],
|
|
66359
|
+
},{}],549:[function(require,module,exports){
|
|
66260
66360
|
'use strict';
|
|
66261
66361
|
module.exports = function generate_ref(it, $keyword, $ruleType) {
|
|
66262
66362
|
var out = ' ';
|
|
@@ -66382,7 +66482,7 @@ module.exports = function generate_ref(it, $keyword, $ruleType) {
|
|
|
66382
66482
|
return out;
|
|
66383
66483
|
}
|
|
66384
66484
|
|
|
66385
|
-
},{}],
|
|
66485
|
+
},{}],550:[function(require,module,exports){
|
|
66386
66486
|
'use strict';
|
|
66387
66487
|
module.exports = function generate_required(it, $keyword, $ruleType) {
|
|
66388
66488
|
var out = ' ';
|
|
@@ -66654,7 +66754,7 @@ module.exports = function generate_required(it, $keyword, $ruleType) {
|
|
|
66654
66754
|
return out;
|
|
66655
66755
|
}
|
|
66656
66756
|
|
|
66657
|
-
},{}],
|
|
66757
|
+
},{}],551:[function(require,module,exports){
|
|
66658
66758
|
'use strict';
|
|
66659
66759
|
module.exports = function generate_uniqueItems(it, $keyword, $ruleType) {
|
|
66660
66760
|
var out = ' ';
|
|
@@ -66742,7 +66842,7 @@ module.exports = function generate_uniqueItems(it, $keyword, $ruleType) {
|
|
|
66742
66842
|
return out;
|
|
66743
66843
|
}
|
|
66744
66844
|
|
|
66745
|
-
},{}],
|
|
66845
|
+
},{}],552:[function(require,module,exports){
|
|
66746
66846
|
'use strict';
|
|
66747
66847
|
module.exports = function generate_validate(it, $keyword, $ruleType) {
|
|
66748
66848
|
var out = '';
|
|
@@ -67226,7 +67326,7 @@ module.exports = function generate_validate(it, $keyword, $ruleType) {
|
|
|
67226
67326
|
return out;
|
|
67227
67327
|
}
|
|
67228
67328
|
|
|
67229
|
-
},{}],
|
|
67329
|
+
},{}],553:[function(require,module,exports){
|
|
67230
67330
|
'use strict';
|
|
67231
67331
|
|
|
67232
67332
|
var IDENTIFIER = /^[a-z_$][a-z0-9_$-]*$/i;
|
|
@@ -67374,7 +67474,7 @@ function validateKeyword(definition, throwError) {
|
|
|
67374
67474
|
return false;
|
|
67375
67475
|
}
|
|
67376
67476
|
|
|
67377
|
-
},{"./definition_schema":
|
|
67477
|
+
},{"./definition_schema":526,"./dotjs/custom":536}],554:[function(require,module,exports){
|
|
67378
67478
|
module.exports={
|
|
67379
67479
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
67380
67480
|
"$id": "https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#",
|
|
@@ -67393,7 +67493,7 @@ module.exports={
|
|
|
67393
67493
|
"additionalProperties": false
|
|
67394
67494
|
}
|
|
67395
67495
|
|
|
67396
|
-
},{}],
|
|
67496
|
+
},{}],555:[function(require,module,exports){
|
|
67397
67497
|
module.exports={
|
|
67398
67498
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
67399
67499
|
"$id": "http://json-schema.org/draft-06/schema#",
|
|
@@ -67549,7 +67649,7 @@ module.exports={
|
|
|
67549
67649
|
"default": {}
|
|
67550
67650
|
}
|
|
67551
67651
|
|
|
67552
|
-
},{}],
|
|
67652
|
+
},{}],556:[function(require,module,exports){
|
|
67553
67653
|
module.exports={
|
|
67554
67654
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
67555
67655
|
"$id": "http://json-schema.org/draft-07/schema#",
|
|
@@ -67719,7 +67819,7 @@ module.exports={
|
|
|
67719
67819
|
"default": true
|
|
67720
67820
|
}
|
|
67721
67821
|
|
|
67722
|
-
},{}],
|
|
67822
|
+
},{}],557:[function(require,module,exports){
|
|
67723
67823
|
// Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
|
|
67724
67824
|
|
|
67725
67825
|
|
|
@@ -67734,7 +67834,7 @@ module.exports = {
|
|
|
67734
67834
|
|
|
67735
67835
|
};
|
|
67736
67836
|
|
|
67737
|
-
},{}],
|
|
67837
|
+
},{}],558:[function(require,module,exports){
|
|
67738
67838
|
// Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
|
|
67739
67839
|
|
|
67740
67840
|
var errors = require('./errors');
|
|
@@ -67763,7 +67863,7 @@ for (var e in errors) {
|
|
|
67763
67863
|
module.exports[e] = errors[e];
|
|
67764
67864
|
}
|
|
67765
67865
|
|
|
67766
|
-
},{"./errors":
|
|
67866
|
+
},{"./errors":557,"./reader":559,"./types":560,"./writer":561}],559:[function(require,module,exports){
|
|
67767
67867
|
// Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
|
|
67768
67868
|
|
|
67769
67869
|
var assert = require('assert');
|
|
@@ -68027,7 +68127,7 @@ Reader.prototype._readTag = function (tag) {
|
|
|
68027
68127
|
|
|
68028
68128
|
module.exports = Reader;
|
|
68029
68129
|
|
|
68030
|
-
},{"./errors":
|
|
68130
|
+
},{"./errors":557,"./types":560,"assert":172,"safer-buffer":646}],560:[function(require,module,exports){
|
|
68031
68131
|
// Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
|
|
68032
68132
|
|
|
68033
68133
|
|
|
@@ -68065,7 +68165,7 @@ module.exports = {
|
|
|
68065
68165
|
Context: 128
|
|
68066
68166
|
};
|
|
68067
68167
|
|
|
68068
|
-
},{}],
|
|
68168
|
+
},{}],561:[function(require,module,exports){
|
|
68069
68169
|
// Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
|
|
68070
68170
|
|
|
68071
68171
|
var assert = require('assert');
|
|
@@ -68384,7 +68484,7 @@ Writer.prototype._ensure = function (len) {
|
|
|
68384
68484
|
|
|
68385
68485
|
module.exports = Writer;
|
|
68386
68486
|
|
|
68387
|
-
},{"./errors":
|
|
68487
|
+
},{"./errors":557,"./types":560,"assert":172,"safer-buffer":646}],562:[function(require,module,exports){
|
|
68388
68488
|
// Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
|
|
68389
68489
|
|
|
68390
68490
|
// If you have no idea what ASN.1 or BER is, see this:
|
|
@@ -68406,7 +68506,7 @@ module.exports = {
|
|
|
68406
68506
|
|
|
68407
68507
|
};
|
|
68408
68508
|
|
|
68409
|
-
},{"./ber/index":
|
|
68509
|
+
},{"./ber/index":558}],563:[function(require,module,exports){
|
|
68410
68510
|
(function (Buffer,process){(function (){
|
|
68411
68511
|
// Copyright (c) 2012, Mark Cavage. All rights reserved.
|
|
68412
68512
|
// Copyright 2015 Joyent, Inc.
|
|
@@ -68621,7 +68721,7 @@ function _setExports(ndebug) {
|
|
|
68621
68721
|
module.exports = _setExports(process.env.NODE_NDEBUG);
|
|
68622
68722
|
|
|
68623
68723
|
}).call(this)}).call(this,{"isBuffer":require("../../browser-agent/node_modules/is-buffer/index.js")},require('_process'))
|
|
68624
|
-
},{"../../browser-agent/node_modules/is-buffer/index.js":302,"_process":335,"assert":172,"stream":386,"util":400}],
|
|
68724
|
+
},{"../../browser-agent/node_modules/is-buffer/index.js":302,"_process":335,"assert":172,"stream":386,"util":400}],564:[function(require,module,exports){
|
|
68625
68725
|
|
|
68626
68726
|
/*!
|
|
68627
68727
|
* Copyright 2010 LearnBoost <dev@learnboost.com>
|
|
@@ -68835,7 +68935,7 @@ function canonicalizeResource (resource) {
|
|
|
68835
68935
|
}
|
|
68836
68936
|
module.exports.canonicalizeResource = canonicalizeResource
|
|
68837
68937
|
|
|
68838
|
-
},{"crypto":237,"url":395}],
|
|
68938
|
+
},{"crypto":237,"url":395}],565:[function(require,module,exports){
|
|
68839
68939
|
(function (process,Buffer){(function (){
|
|
68840
68940
|
var aws4 = exports,
|
|
68841
68941
|
url = require('url'),
|
|
@@ -69220,7 +69320,7 @@ aws4.sign = function(request, credentials) {
|
|
|
69220
69320
|
}
|
|
69221
69321
|
|
|
69222
69322
|
}).call(this)}).call(this,require('_process'),require("buffer").Buffer)
|
|
69223
|
-
},{"./lru":
|
|
69323
|
+
},{"./lru":566,"_process":335,"buffer":227,"crypto":237,"querystring":346,"url":395}],566:[function(require,module,exports){
|
|
69224
69324
|
module.exports = function(size) {
|
|
69225
69325
|
return new LruCache(size)
|
|
69226
69326
|
}
|
|
@@ -69318,7 +69418,7 @@ function DoublyLinkedNode(key, val) {
|
|
|
69318
69418
|
this.next = null
|
|
69319
69419
|
}
|
|
69320
69420
|
|
|
69321
|
-
},{}],
|
|
69421
|
+
},{}],567:[function(require,module,exports){
|
|
69322
69422
|
'use strict';
|
|
69323
69423
|
|
|
69324
69424
|
var crypto_hash_sha512 = require('tweetnacl').lowlevel.crypto_hash;
|
|
@@ -69876,7 +69976,7 @@ module.exports = {
|
|
|
69876
69976
|
pbkdf: bcrypt_pbkdf
|
|
69877
69977
|
};
|
|
69878
69978
|
|
|
69879
|
-
},{"tweetnacl":
|
|
69979
|
+
},{"tweetnacl":680}],568:[function(require,module,exports){
|
|
69880
69980
|
function Caseless (dict) {
|
|
69881
69981
|
this.dict = dict || {}
|
|
69882
69982
|
}
|
|
@@ -69945,7 +70045,7 @@ module.exports.httpify = function (resp, headers) {
|
|
|
69945
70045
|
return c
|
|
69946
70046
|
}
|
|
69947
70047
|
|
|
69948
|
-
},{}],
|
|
70048
|
+
},{}],569:[function(require,module,exports){
|
|
69949
70049
|
(function (Buffer){(function (){
|
|
69950
70050
|
var util = require('util');
|
|
69951
70051
|
var Stream = require('stream').Stream;
|
|
@@ -70157,7 +70257,7 @@ CombinedStream.prototype._emitError = function(err) {
|
|
|
70157
70257
|
};
|
|
70158
70258
|
|
|
70159
70259
|
}).call(this)}).call(this,{"isBuffer":require("../../../browser-agent/node_modules/is-buffer/index.js")})
|
|
70160
|
-
},{"../../../browser-agent/node_modules/is-buffer/index.js":302,"delayed-stream":
|
|
70260
|
+
},{"../../../browser-agent/node_modules/is-buffer/index.js":302,"delayed-stream":571,"stream":386,"util":400}],570:[function(require,module,exports){
|
|
70161
70261
|
(function (Buffer){(function (){
|
|
70162
70262
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
70163
70263
|
//
|
|
@@ -70268,7 +70368,7 @@ function objectToString(o) {
|
|
|
70268
70368
|
}
|
|
70269
70369
|
|
|
70270
70370
|
}).call(this)}).call(this,{"isBuffer":require("../../../browser-agent/node_modules/is-buffer/index.js")})
|
|
70271
|
-
},{"../../../browser-agent/node_modules/is-buffer/index.js":302}],
|
|
70371
|
+
},{"../../../browser-agent/node_modules/is-buffer/index.js":302}],571:[function(require,module,exports){
|
|
70272
70372
|
var Stream = require('stream').Stream;
|
|
70273
70373
|
var util = require('util');
|
|
70274
70374
|
|
|
@@ -70377,7 +70477,7 @@ DelayedStream.prototype._checkIfMaxDataSizeExceeded = function() {
|
|
|
70377
70477
|
this.emit('error', new Error(message));
|
|
70378
70478
|
};
|
|
70379
70479
|
|
|
70380
|
-
},{"stream":386,"util":400}],
|
|
70480
|
+
},{"stream":386,"util":400}],572:[function(require,module,exports){
|
|
70381
70481
|
var crypto = require("crypto");
|
|
70382
70482
|
var BigInteger = require("jsbn").BigInteger;
|
|
70383
70483
|
var ECPointFp = require("./lib/ec.js").ECPointFp;
|
|
@@ -70437,7 +70537,7 @@ exports.ECKey = function(curve, key, isPublic)
|
|
|
70437
70537
|
}
|
|
70438
70538
|
|
|
70439
70539
|
|
|
70440
|
-
},{"./lib/ec.js":
|
|
70540
|
+
},{"./lib/ec.js":573,"./lib/sec.js":574,"crypto":237,"jsbn":609,"safer-buffer":646}],573:[function(require,module,exports){
|
|
70441
70541
|
// Basic Javascript Elliptic Curve implementation
|
|
70442
70542
|
// Ported loosely from BouncyCastle's Java EC code
|
|
70443
70543
|
// Only Fp curves implemented for now
|
|
@@ -71000,7 +71100,7 @@ var exports = {
|
|
|
71000
71100
|
|
|
71001
71101
|
module.exports = exports
|
|
71002
71102
|
|
|
71003
|
-
},{"jsbn":
|
|
71103
|
+
},{"jsbn":609}],574:[function(require,module,exports){
|
|
71004
71104
|
// Named EC curves
|
|
71005
71105
|
|
|
71006
71106
|
// Requires ec.js, jsbn.js, and jsbn2.js
|
|
@@ -71172,7 +71272,7 @@ module.exports = {
|
|
|
71172
71272
|
"secp256r1":secp256r1
|
|
71173
71273
|
}
|
|
71174
71274
|
|
|
71175
|
-
},{"./ec.js":
|
|
71275
|
+
},{"./ec.js":573,"jsbn":609}],575:[function(require,module,exports){
|
|
71176
71276
|
'use strict';
|
|
71177
71277
|
|
|
71178
71278
|
var hasOwn = Object.prototype.hasOwnProperty;
|
|
@@ -71291,7 +71391,7 @@ module.exports = function extend() {
|
|
|
71291
71391
|
return target;
|
|
71292
71392
|
};
|
|
71293
71393
|
|
|
71294
|
-
},{}],
|
|
71394
|
+
},{}],576:[function(require,module,exports){
|
|
71295
71395
|
(function (process){(function (){
|
|
71296
71396
|
/*
|
|
71297
71397
|
* extsprintf.js: extended POSIX-style sprintf
|
|
@@ -71478,7 +71578,7 @@ function dumpException(ex)
|
|
|
71478
71578
|
}
|
|
71479
71579
|
|
|
71480
71580
|
}).call(this)}).call(this,require('_process'))
|
|
71481
|
-
},{"_process":335,"assert":172,"util":400}],
|
|
71581
|
+
},{"_process":335,"assert":172,"util":400}],577:[function(require,module,exports){
|
|
71482
71582
|
'use strict';
|
|
71483
71583
|
|
|
71484
71584
|
// do not edit .js files directly - edit src/index.jst
|
|
@@ -71526,7 +71626,7 @@ module.exports = function equal(a, b) {
|
|
|
71526
71626
|
return a!==a && b!==b;
|
|
71527
71627
|
};
|
|
71528
71628
|
|
|
71529
|
-
},{}],
|
|
71629
|
+
},{}],578:[function(require,module,exports){
|
|
71530
71630
|
'use strict';
|
|
71531
71631
|
|
|
71532
71632
|
module.exports = function (data, opts) {
|
|
@@ -71587,7 +71687,7 @@ module.exports = function (data, opts) {
|
|
|
71587
71687
|
})(data);
|
|
71588
71688
|
};
|
|
71589
71689
|
|
|
71590
|
-
},{}],
|
|
71690
|
+
},{}],579:[function(require,module,exports){
|
|
71591
71691
|
module.exports = ForeverAgent
|
|
71592
71692
|
ForeverAgent.SSL = ForeverAgentSSL
|
|
71593
71693
|
|
|
@@ -71727,11 +71827,11 @@ function createConnectionSSL (port, host, options) {
|
|
|
71727
71827
|
return tls.connect(options);
|
|
71728
71828
|
}
|
|
71729
71829
|
|
|
71730
|
-
},{"http":387,"https":298,"net":225,"tls":225,"util":400}],
|
|
71830
|
+
},{"http":387,"https":298,"net":225,"tls":225,"util":400}],580:[function(require,module,exports){
|
|
71731
71831
|
/* eslint-env browser */
|
|
71732
71832
|
module.exports = typeof self == 'object' ? self.FormData : window.FormData;
|
|
71733
71833
|
|
|
71734
|
-
},{}],
|
|
71834
|
+
},{}],581:[function(require,module,exports){
|
|
71735
71835
|
module.exports={
|
|
71736
71836
|
"$id": "afterRequest.json#",
|
|
71737
71837
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71763,7 +71863,7 @@ module.exports={
|
|
|
71763
71863
|
}
|
|
71764
71864
|
}
|
|
71765
71865
|
|
|
71766
|
-
},{}],
|
|
71866
|
+
},{}],582:[function(require,module,exports){
|
|
71767
71867
|
module.exports={
|
|
71768
71868
|
"$id": "beforeRequest.json#",
|
|
71769
71869
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71795,7 +71895,7 @@ module.exports={
|
|
|
71795
71895
|
}
|
|
71796
71896
|
}
|
|
71797
71897
|
|
|
71798
|
-
},{}],
|
|
71898
|
+
},{}],583:[function(require,module,exports){
|
|
71799
71899
|
module.exports={
|
|
71800
71900
|
"$id": "browser.json#",
|
|
71801
71901
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71817,7 +71917,7 @@ module.exports={
|
|
|
71817
71917
|
}
|
|
71818
71918
|
}
|
|
71819
71919
|
|
|
71820
|
-
},{}],
|
|
71920
|
+
},{}],584:[function(require,module,exports){
|
|
71821
71921
|
module.exports={
|
|
71822
71922
|
"$id": "cache.json#",
|
|
71823
71923
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71840,7 +71940,7 @@ module.exports={
|
|
|
71840
71940
|
}
|
|
71841
71941
|
}
|
|
71842
71942
|
|
|
71843
|
-
},{}],
|
|
71943
|
+
},{}],585:[function(require,module,exports){
|
|
71844
71944
|
module.exports={
|
|
71845
71945
|
"$id": "content.json#",
|
|
71846
71946
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71871,7 +71971,7 @@ module.exports={
|
|
|
71871
71971
|
}
|
|
71872
71972
|
}
|
|
71873
71973
|
|
|
71874
|
-
},{}],
|
|
71974
|
+
},{}],586:[function(require,module,exports){
|
|
71875
71975
|
module.exports={
|
|
71876
71976
|
"$id": "cookie.json#",
|
|
71877
71977
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71909,7 +72009,7 @@ module.exports={
|
|
|
71909
72009
|
}
|
|
71910
72010
|
}
|
|
71911
72011
|
|
|
71912
|
-
},{}],
|
|
72012
|
+
},{}],587:[function(require,module,exports){
|
|
71913
72013
|
module.exports={
|
|
71914
72014
|
"$id": "creator.json#",
|
|
71915
72015
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71931,7 +72031,7 @@ module.exports={
|
|
|
71931
72031
|
}
|
|
71932
72032
|
}
|
|
71933
72033
|
|
|
71934
|
-
},{}],
|
|
72034
|
+
},{}],588:[function(require,module,exports){
|
|
71935
72035
|
module.exports={
|
|
71936
72036
|
"$id": "entry.json#",
|
|
71937
72037
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71986,7 +72086,7 @@ module.exports={
|
|
|
71986
72086
|
}
|
|
71987
72087
|
}
|
|
71988
72088
|
|
|
71989
|
-
},{}],
|
|
72089
|
+
},{}],589:[function(require,module,exports){
|
|
71990
72090
|
module.exports={
|
|
71991
72091
|
"$id": "har.json#",
|
|
71992
72092
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -72001,7 +72101,7 @@ module.exports={
|
|
|
72001
72101
|
}
|
|
72002
72102
|
}
|
|
72003
72103
|
|
|
72004
|
-
},{}],
|
|
72104
|
+
},{}],590:[function(require,module,exports){
|
|
72005
72105
|
module.exports={
|
|
72006
72106
|
"$id": "header.json#",
|
|
72007
72107
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -72023,7 +72123,7 @@ module.exports={
|
|
|
72023
72123
|
}
|
|
72024
72124
|
}
|
|
72025
72125
|
|
|
72026
|
-
},{}],
|
|
72126
|
+
},{}],591:[function(require,module,exports){
|
|
72027
72127
|
'use strict'
|
|
72028
72128
|
|
|
72029
72129
|
module.exports = {
|
|
@@ -72047,7 +72147,7 @@ module.exports = {
|
|
|
72047
72147
|
timings: require('./timings.json')
|
|
72048
72148
|
}
|
|
72049
72149
|
|
|
72050
|
-
},{"./afterRequest.json":
|
|
72150
|
+
},{"./afterRequest.json":581,"./beforeRequest.json":582,"./browser.json":583,"./cache.json":584,"./content.json":585,"./cookie.json":586,"./creator.json":587,"./entry.json":588,"./har.json":589,"./header.json":590,"./log.json":592,"./page.json":593,"./pageTimings.json":594,"./postData.json":595,"./query.json":596,"./request.json":597,"./response.json":598,"./timings.json":599}],592:[function(require,module,exports){
|
|
72051
72151
|
module.exports={
|
|
72052
72152
|
"$id": "log.json#",
|
|
72053
72153
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -72085,7 +72185,7 @@ module.exports={
|
|
|
72085
72185
|
}
|
|
72086
72186
|
}
|
|
72087
72187
|
|
|
72088
|
-
},{}],
|
|
72188
|
+
},{}],593:[function(require,module,exports){
|
|
72089
72189
|
module.exports={
|
|
72090
72190
|
"$id": "page.json#",
|
|
72091
72191
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -72119,7 +72219,7 @@ module.exports={
|
|
|
72119
72219
|
}
|
|
72120
72220
|
}
|
|
72121
72221
|
|
|
72122
|
-
},{}],
|
|
72222
|
+
},{}],594:[function(require,module,exports){
|
|
72123
72223
|
module.exports={
|
|
72124
72224
|
"$id": "pageTimings.json#",
|
|
72125
72225
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -72139,7 +72239,7 @@ module.exports={
|
|
|
72139
72239
|
}
|
|
72140
72240
|
}
|
|
72141
72241
|
|
|
72142
|
-
},{}],
|
|
72242
|
+
},{}],595:[function(require,module,exports){
|
|
72143
72243
|
module.exports={
|
|
72144
72244
|
"$id": "postData.json#",
|
|
72145
72245
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -72184,7 +72284,7 @@ module.exports={
|
|
|
72184
72284
|
}
|
|
72185
72285
|
}
|
|
72186
72286
|
|
|
72187
|
-
},{}],
|
|
72287
|
+
},{}],596:[function(require,module,exports){
|
|
72188
72288
|
module.exports={
|
|
72189
72289
|
"$id": "query.json#",
|
|
72190
72290
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -72206,7 +72306,7 @@ module.exports={
|
|
|
72206
72306
|
}
|
|
72207
72307
|
}
|
|
72208
72308
|
|
|
72209
|
-
},{}],
|
|
72309
|
+
},{}],597:[function(require,module,exports){
|
|
72210
72310
|
module.exports={
|
|
72211
72311
|
"$id": "request.json#",
|
|
72212
72312
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -72265,7 +72365,7 @@ module.exports={
|
|
|
72265
72365
|
}
|
|
72266
72366
|
}
|
|
72267
72367
|
|
|
72268
|
-
},{}],
|
|
72368
|
+
},{}],598:[function(require,module,exports){
|
|
72269
72369
|
module.exports={
|
|
72270
72370
|
"$id": "response.json#",
|
|
72271
72371
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -72321,7 +72421,7 @@ module.exports={
|
|
|
72321
72421
|
}
|
|
72322
72422
|
}
|
|
72323
72423
|
|
|
72324
|
-
},{}],
|
|
72424
|
+
},{}],599:[function(require,module,exports){
|
|
72325
72425
|
module.exports={
|
|
72326
72426
|
"$id": "timings.json#",
|
|
72327
72427
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -72365,7 +72465,7 @@ module.exports={
|
|
|
72365
72465
|
}
|
|
72366
72466
|
}
|
|
72367
72467
|
|
|
72368
|
-
},{}],
|
|
72468
|
+
},{}],600:[function(require,module,exports){
|
|
72369
72469
|
function HARError (errors) {
|
|
72370
72470
|
var message = 'validation failed'
|
|
72371
72471
|
|
|
@@ -72384,7 +72484,7 @@ HARError.prototype = Error.prototype
|
|
|
72384
72484
|
|
|
72385
72485
|
module.exports = HARError
|
|
72386
72486
|
|
|
72387
|
-
},{}],
|
|
72487
|
+
},{}],601:[function(require,module,exports){
|
|
72388
72488
|
var Ajv = require('ajv')
|
|
72389
72489
|
var HARError = require('./error')
|
|
72390
72490
|
var schemas = require('har-schema')
|
|
@@ -72488,7 +72588,7 @@ exports.timings = function (data) {
|
|
|
72488
72588
|
return validate('timings', data)
|
|
72489
72589
|
}
|
|
72490
72590
|
|
|
72491
|
-
},{"./error":
|
|
72591
|
+
},{"./error":600,"ajv":514,"ajv/lib/refs/json-schema-draft-06.json":555,"har-schema":591}],602:[function(require,module,exports){
|
|
72492
72592
|
// Copyright 2015 Joyent, Inc.
|
|
72493
72593
|
|
|
72494
72594
|
var parser = require('./parser');
|
|
@@ -72519,7 +72619,7 @@ module.exports = {
|
|
|
72519
72619
|
verifyHMAC: verify.verifyHMAC
|
|
72520
72620
|
};
|
|
72521
72621
|
|
|
72522
|
-
},{"./parser":
|
|
72622
|
+
},{"./parser":603,"./signer":604,"./utils":605,"./verify":606}],603:[function(require,module,exports){
|
|
72523
72623
|
// Copyright 2012 Joyent, Inc. All rights reserved.
|
|
72524
72624
|
|
|
72525
72625
|
var assert = require('assert-plus');
|
|
@@ -72836,7 +72936,7 @@ module.exports = {
|
|
|
72836
72936
|
|
|
72837
72937
|
};
|
|
72838
72938
|
|
|
72839
|
-
},{"./utils":
|
|
72939
|
+
},{"./utils":605,"assert-plus":563,"util":400}],604:[function(require,module,exports){
|
|
72840
72940
|
(function (Buffer){(function (){
|
|
72841
72941
|
// Copyright 2012 Joyent, Inc. All rights reserved.
|
|
72842
72942
|
|
|
@@ -73241,7 +73341,7 @@ module.exports = {
|
|
|
73241
73341
|
};
|
|
73242
73342
|
|
|
73243
73343
|
}).call(this)}).call(this,{"isBuffer":require("../../../browser-agent/node_modules/is-buffer/index.js")})
|
|
73244
|
-
},{"../../../browser-agent/node_modules/is-buffer/index.js":302,"./utils":
|
|
73344
|
+
},{"../../../browser-agent/node_modules/is-buffer/index.js":302,"./utils":605,"assert-plus":563,"crypto":237,"http":387,"jsprim":613,"sshpk":666,"util":400}],605:[function(require,module,exports){
|
|
73245
73345
|
// Copyright 2012 Joyent, Inc. All rights reserved.
|
|
73246
73346
|
|
|
73247
73347
|
var assert = require('assert-plus');
|
|
@@ -73355,7 +73455,7 @@ module.exports = {
|
|
|
73355
73455
|
}
|
|
73356
73456
|
};
|
|
73357
73457
|
|
|
73358
|
-
},{"assert-plus":
|
|
73458
|
+
},{"assert-plus":563,"sshpk":666,"util":400}],606:[function(require,module,exports){
|
|
73359
73459
|
(function (Buffer){(function (){
|
|
73360
73460
|
// Copyright 2015 Joyent, Inc.
|
|
73361
73461
|
|
|
@@ -73447,7 +73547,7 @@ module.exports = {
|
|
|
73447
73547
|
};
|
|
73448
73548
|
|
|
73449
73549
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
73450
|
-
},{"./utils":
|
|
73550
|
+
},{"./utils":605,"assert-plus":563,"buffer":227,"crypto":237,"sshpk":666}],607:[function(require,module,exports){
|
|
73451
73551
|
module.exports = isTypedArray
|
|
73452
73552
|
isTypedArray.strict = isStrictTypedArray
|
|
73453
73553
|
isTypedArray.loose = isLooseTypedArray
|
|
@@ -73490,7 +73590,7 @@ function isLooseTypedArray(arr) {
|
|
|
73490
73590
|
return names[toString.call(arr)]
|
|
73491
73591
|
}
|
|
73492
73592
|
|
|
73493
|
-
},{}],
|
|
73593
|
+
},{}],608:[function(require,module,exports){
|
|
73494
73594
|
var stream = require('stream')
|
|
73495
73595
|
|
|
73496
73596
|
|
|
@@ -73519,7 +73619,7 @@ module.exports.isReadable = isReadable
|
|
|
73519
73619
|
module.exports.isWritable = isWritable
|
|
73520
73620
|
module.exports.isDuplex = isDuplex
|
|
73521
73621
|
|
|
73522
|
-
},{"stream":386}],
|
|
73622
|
+
},{"stream":386}],609:[function(require,module,exports){
|
|
73523
73623
|
(function(){
|
|
73524
73624
|
|
|
73525
73625
|
// Copyright (c) 2005 Tom Wu
|
|
@@ -74878,7 +74978,7 @@ module.exports.isDuplex = isDuplex
|
|
|
74878
74978
|
|
|
74879
74979
|
}).call(this);
|
|
74880
74980
|
|
|
74881
|
-
},{}],
|
|
74981
|
+
},{}],610:[function(require,module,exports){
|
|
74882
74982
|
'use strict';
|
|
74883
74983
|
|
|
74884
74984
|
var traverse = module.exports = function (schema, opts, cb) {
|
|
@@ -74969,7 +75069,7 @@ function escapeJsonPtr(str) {
|
|
|
74969
75069
|
return str.replace(/~/g, '~0').replace(/\//g, '~1');
|
|
74970
75070
|
}
|
|
74971
75071
|
|
|
74972
|
-
},{}],
|
|
75072
|
+
},{}],611:[function(require,module,exports){
|
|
74973
75073
|
/**
|
|
74974
75074
|
* JSONSchema Validator - Validates JavaScript objects using JSON Schemas
|
|
74975
75075
|
* (http://www.json.com/json-schema-proposal/)
|
|
@@ -75242,7 +75342,7 @@ exports.mustBeValid = function(result){
|
|
|
75242
75342
|
return exports;
|
|
75243
75343
|
}));
|
|
75244
75344
|
|
|
75245
|
-
},{}],
|
|
75345
|
+
},{}],612:[function(require,module,exports){
|
|
75246
75346
|
exports = module.exports = stringify
|
|
75247
75347
|
exports.getSerialize = serializer
|
|
75248
75348
|
|
|
@@ -75271,7 +75371,7 @@ function serializer(replacer, cycleReplacer) {
|
|
|
75271
75371
|
}
|
|
75272
75372
|
}
|
|
75273
75373
|
|
|
75274
|
-
},{}],
|
|
75374
|
+
},{}],613:[function(require,module,exports){
|
|
75275
75375
|
/*
|
|
75276
75376
|
* lib/jsprim.js: utilities for primitive JavaScript types
|
|
75277
75377
|
*/
|
|
@@ -76008,7 +76108,7 @@ function mergeObjects(provided, overrides, defaults)
|
|
|
76008
76108
|
return (rv);
|
|
76009
76109
|
}
|
|
76010
76110
|
|
|
76011
|
-
},{"assert-plus":
|
|
76111
|
+
},{"assert-plus":563,"extsprintf":576,"json-schema":611,"util":400,"verror":687}],614:[function(require,module,exports){
|
|
76012
76112
|
/**
|
|
76013
76113
|
* The code was extracted from:
|
|
76014
76114
|
* https://github.com/davidchambers/Base64.js
|
|
@@ -76048,7 +76148,7 @@ function polyfill (input) {
|
|
|
76048
76148
|
|
|
76049
76149
|
module.exports = typeof window !== 'undefined' && window.atob && window.atob.bind(window) || polyfill;
|
|
76050
76150
|
|
|
76051
|
-
},{}],
|
|
76151
|
+
},{}],615:[function(require,module,exports){
|
|
76052
76152
|
var atob = require('./atob');
|
|
76053
76153
|
|
|
76054
76154
|
function b64DecodeUnicode(str) {
|
|
@@ -76083,7 +76183,7 @@ module.exports = function(str) {
|
|
|
76083
76183
|
}
|
|
76084
76184
|
};
|
|
76085
76185
|
|
|
76086
|
-
},{"./atob":
|
|
76186
|
+
},{"./atob":614}],616:[function(require,module,exports){
|
|
76087
76187
|
'use strict';
|
|
76088
76188
|
|
|
76089
76189
|
var base64_url_decode = require('./base64_url_decode');
|
|
@@ -76111,7 +76211,7 @@ module.exports = function (token,options) {
|
|
|
76111
76211
|
|
|
76112
76212
|
module.exports.InvalidTokenError = InvalidTokenError;
|
|
76113
76213
|
|
|
76114
|
-
},{"./base64_url_decode":
|
|
76214
|
+
},{"./base64_url_decode":615}],617:[function(require,module,exports){
|
|
76115
76215
|
module.exports={
|
|
76116
76216
|
"application/1d-interleaved-parityfec": {
|
|
76117
76217
|
"source": "iana"
|
|
@@ -84632,7 +84732,7 @@ module.exports={
|
|
|
84632
84732
|
}
|
|
84633
84733
|
}
|
|
84634
84734
|
|
|
84635
|
-
},{}],
|
|
84735
|
+
},{}],618:[function(require,module,exports){
|
|
84636
84736
|
/*!
|
|
84637
84737
|
* mime-db
|
|
84638
84738
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -84646,7 +84746,7 @@ module.exports={
|
|
|
84646
84746
|
|
|
84647
84747
|
module.exports = require('./db.json')
|
|
84648
84748
|
|
|
84649
|
-
},{"./db.json":
|
|
84749
|
+
},{"./db.json":617}],619:[function(require,module,exports){
|
|
84650
84750
|
/*!
|
|
84651
84751
|
* mime-types
|
|
84652
84752
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -84836,7 +84936,7 @@ function populateMaps (extensions, types) {
|
|
|
84836
84936
|
})
|
|
84837
84937
|
}
|
|
84838
84938
|
|
|
84839
|
-
},{"mime-db":
|
|
84939
|
+
},{"mime-db":618,"path":327}],620:[function(require,module,exports){
|
|
84840
84940
|
var crypto = require('crypto')
|
|
84841
84941
|
|
|
84842
84942
|
function sha (key, body, algorithm) {
|
|
@@ -84983,7 +85083,7 @@ exports.plaintext = plaintext
|
|
|
84983
85083
|
exports.sign = sign
|
|
84984
85084
|
exports.rfc3986 = rfc3986
|
|
84985
85085
|
exports.generateBase = generateBase
|
|
84986
|
-
},{"crypto":237}],
|
|
85086
|
+
},{"crypto":237}],621:[function(require,module,exports){
|
|
84987
85087
|
(function (process){(function (){
|
|
84988
85088
|
// Generated by CoffeeScript 1.12.2
|
|
84989
85089
|
(function() {
|
|
@@ -85023,7 +85123,7 @@ exports.generateBase = generateBase
|
|
|
85023
85123
|
|
|
85024
85124
|
|
|
85025
85125
|
}).call(this)}).call(this,require('_process'))
|
|
85026
|
-
},{"_process":335}],
|
|
85126
|
+
},{"_process":335}],622:[function(require,module,exports){
|
|
85027
85127
|
module.exports=[
|
|
85028
85128
|
"ac",
|
|
85029
85129
|
"com.ac",
|
|
@@ -94400,7 +94500,7 @@ module.exports=[
|
|
|
94400
94500
|
"virtualserver.io",
|
|
94401
94501
|
"enterprisecloud.nu"
|
|
94402
94502
|
]
|
|
94403
|
-
},{}],
|
|
94503
|
+
},{}],623:[function(require,module,exports){
|
|
94404
94504
|
/*eslint no-var:0, prefer-arrow-callback: 0, object-shorthand: 0 */
|
|
94405
94505
|
'use strict';
|
|
94406
94506
|
|
|
@@ -94671,7 +94771,7 @@ exports.isValid = function (domain) {
|
|
|
94671
94771
|
return Boolean(parsed.domain && parsed.listed);
|
|
94672
94772
|
};
|
|
94673
94773
|
|
|
94674
|
-
},{"./data/rules.json":
|
|
94774
|
+
},{"./data/rules.json":622,"punycode":343}],624:[function(require,module,exports){
|
|
94675
94775
|
'use strict';
|
|
94676
94776
|
|
|
94677
94777
|
var replace = String.prototype.replace;
|
|
@@ -94691,7 +94791,7 @@ module.exports = {
|
|
|
94691
94791
|
RFC3986: 'RFC3986'
|
|
94692
94792
|
};
|
|
94693
94793
|
|
|
94694
|
-
},{}],
|
|
94794
|
+
},{}],625:[function(require,module,exports){
|
|
94695
94795
|
'use strict';
|
|
94696
94796
|
|
|
94697
94797
|
var stringify = require('./stringify');
|
|
@@ -94704,7 +94804,7 @@ module.exports = {
|
|
|
94704
94804
|
stringify: stringify
|
|
94705
94805
|
};
|
|
94706
94806
|
|
|
94707
|
-
},{"./formats":
|
|
94807
|
+
},{"./formats":624,"./parse":626,"./stringify":627}],626:[function(require,module,exports){
|
|
94708
94808
|
'use strict';
|
|
94709
94809
|
|
|
94710
94810
|
var utils = require('./utils');
|
|
@@ -94881,7 +94981,7 @@ module.exports = function (str, opts) {
|
|
|
94881
94981
|
return utils.compact(obj);
|
|
94882
94982
|
};
|
|
94883
94983
|
|
|
94884
|
-
},{"./utils":
|
|
94984
|
+
},{"./utils":628}],627:[function(require,module,exports){
|
|
94885
94985
|
'use strict';
|
|
94886
94986
|
|
|
94887
94987
|
var utils = require('./utils');
|
|
@@ -95100,7 +95200,7 @@ module.exports = function (object, opts) {
|
|
|
95100
95200
|
return joined.length > 0 ? prefix + joined : '';
|
|
95101
95201
|
};
|
|
95102
95202
|
|
|
95103
|
-
},{"./formats":
|
|
95203
|
+
},{"./formats":624,"./utils":628}],628:[function(require,module,exports){
|
|
95104
95204
|
'use strict';
|
|
95105
95205
|
|
|
95106
95206
|
var has = Object.prototype.hasOwnProperty;
|
|
@@ -95317,7 +95417,7 @@ module.exports = {
|
|
|
95317
95417
|
merge: merge
|
|
95318
95418
|
};
|
|
95319
95419
|
|
|
95320
|
-
},{}],
|
|
95420
|
+
},{}],629:[function(require,module,exports){
|
|
95321
95421
|
// Copyright 2010-2012 Mikeal Rogers
|
|
95322
95422
|
//
|
|
95323
95423
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -95474,7 +95574,7 @@ Object.defineProperty(request, 'debug', {
|
|
|
95474
95574
|
}
|
|
95475
95575
|
})
|
|
95476
95576
|
|
|
95477
|
-
},{"./lib/cookies":
|
|
95577
|
+
},{"./lib/cookies":631,"./lib/helpers":635,"./request":644,"extend":575}],630:[function(require,module,exports){
|
|
95478
95578
|
'use strict'
|
|
95479
95579
|
|
|
95480
95580
|
var caseless = require('caseless')
|
|
@@ -95643,7 +95743,7 @@ Auth.prototype.onResponse = function (response) {
|
|
|
95643
95743
|
|
|
95644
95744
|
exports.Auth = Auth
|
|
95645
95745
|
|
|
95646
|
-
},{"./helpers":
|
|
95746
|
+
},{"./helpers":635,"caseless":568,"uuid/v4":643}],631:[function(require,module,exports){
|
|
95647
95747
|
'use strict'
|
|
95648
95748
|
|
|
95649
95749
|
var tough = require('tough-cookie')
|
|
@@ -95683,7 +95783,7 @@ exports.jar = function (store) {
|
|
|
95683
95783
|
return new RequestJar(store)
|
|
95684
95784
|
}
|
|
95685
95785
|
|
|
95686
|
-
},{"tough-cookie":
|
|
95786
|
+
},{"tough-cookie":672}],632:[function(require,module,exports){
|
|
95687
95787
|
(function (process){(function (){
|
|
95688
95788
|
'use strict'
|
|
95689
95789
|
|
|
@@ -95766,7 +95866,7 @@ function getProxyFromURI (uri) {
|
|
|
95766
95866
|
module.exports = getProxyFromURI
|
|
95767
95867
|
|
|
95768
95868
|
}).call(this)}).call(this,require('_process'))
|
|
95769
|
-
},{"_process":335}],
|
|
95869
|
+
},{"_process":335}],633:[function(require,module,exports){
|
|
95770
95870
|
'use strict'
|
|
95771
95871
|
|
|
95772
95872
|
var fs = require('fs')
|
|
@@ -95973,7 +96073,7 @@ Har.prototype.options = function (options) {
|
|
|
95973
96073
|
|
|
95974
96074
|
exports.Har = Har
|
|
95975
96075
|
|
|
95976
|
-
},{"extend":
|
|
96076
|
+
},{"extend":575,"fs":225,"har-validator":601,"querystring":346}],634:[function(require,module,exports){
|
|
95977
96077
|
'use strict'
|
|
95978
96078
|
|
|
95979
96079
|
var crypto = require('crypto')
|
|
@@ -96064,7 +96164,7 @@ exports.header = function (uri, method, opts) {
|
|
|
96064
96164
|
return header
|
|
96065
96165
|
}
|
|
96066
96166
|
|
|
96067
|
-
},{"crypto":237}],
|
|
96167
|
+
},{"crypto":237}],635:[function(require,module,exports){
|
|
96068
96168
|
(function (process,setImmediate){(function (){
|
|
96069
96169
|
'use strict'
|
|
96070
96170
|
|
|
@@ -96134,7 +96234,7 @@ exports.version = version
|
|
|
96134
96234
|
exports.defer = defer
|
|
96135
96235
|
|
|
96136
96236
|
}).call(this)}).call(this,require('_process'),require("timers").setImmediate)
|
|
96137
|
-
},{"_process":335,"crypto":237,"json-stringify-safe":
|
|
96237
|
+
},{"_process":335,"crypto":237,"json-stringify-safe":612,"safe-buffer":645,"timers":393}],636:[function(require,module,exports){
|
|
96138
96238
|
'use strict'
|
|
96139
96239
|
|
|
96140
96240
|
var uuid = require('uuid/v4')
|
|
@@ -96248,7 +96348,7 @@ Multipart.prototype.onRequest = function (options) {
|
|
|
96248
96348
|
|
|
96249
96349
|
exports.Multipart = Multipart
|
|
96250
96350
|
|
|
96251
|
-
},{"combined-stream":
|
|
96351
|
+
},{"combined-stream":569,"isstream":608,"safe-buffer":645,"uuid/v4":643}],637:[function(require,module,exports){
|
|
96252
96352
|
'use strict'
|
|
96253
96353
|
|
|
96254
96354
|
var url = require('url')
|
|
@@ -96398,7 +96498,7 @@ OAuth.prototype.onRequest = function (_oauth) {
|
|
|
96398
96498
|
|
|
96399
96499
|
exports.OAuth = OAuth
|
|
96400
96500
|
|
|
96401
|
-
},{"caseless":
|
|
96501
|
+
},{"caseless":568,"crypto":237,"oauth-sign":620,"qs":625,"safe-buffer":645,"url":395,"uuid/v4":643}],638:[function(require,module,exports){
|
|
96402
96502
|
'use strict'
|
|
96403
96503
|
|
|
96404
96504
|
var qs = require('qs')
|
|
@@ -96450,7 +96550,7 @@ Querystring.prototype.unescape = querystring.unescape
|
|
|
96450
96550
|
|
|
96451
96551
|
exports.Querystring = Querystring
|
|
96452
96552
|
|
|
96453
|
-
},{"qs":
|
|
96553
|
+
},{"qs":625,"querystring":346}],639:[function(require,module,exports){
|
|
96454
96554
|
'use strict'
|
|
96455
96555
|
|
|
96456
96556
|
var url = require('url')
|
|
@@ -96606,7 +96706,7 @@ Redirect.prototype.onResponse = function (response) {
|
|
|
96606
96706
|
|
|
96607
96707
|
exports.Redirect = Redirect
|
|
96608
96708
|
|
|
96609
|
-
},{"url":395}],
|
|
96709
|
+
},{"url":395}],640:[function(require,module,exports){
|
|
96610
96710
|
'use strict'
|
|
96611
96711
|
|
|
96612
96712
|
var url = require('url')
|
|
@@ -96783,7 +96883,7 @@ Tunnel.defaultProxyHeaderWhiteList = defaultProxyHeaderWhiteList
|
|
|
96783
96883
|
Tunnel.defaultProxyHeaderExclusiveList = defaultProxyHeaderExclusiveList
|
|
96784
96884
|
exports.Tunnel = Tunnel
|
|
96785
96885
|
|
|
96786
|
-
},{"tunnel-agent":
|
|
96886
|
+
},{"tunnel-agent":679,"url":395}],641:[function(require,module,exports){
|
|
96787
96887
|
/**
|
|
96788
96888
|
* Convert array of 16 byte values to UUID string format of the form:
|
|
96789
96889
|
* XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
|
|
@@ -96811,7 +96911,7 @@ function bytesToUuid(buf, offset) {
|
|
|
96811
96911
|
|
|
96812
96912
|
module.exports = bytesToUuid;
|
|
96813
96913
|
|
|
96814
|
-
},{}],
|
|
96914
|
+
},{}],642:[function(require,module,exports){
|
|
96815
96915
|
// Unique ID creation requires a high quality random # generator. In the
|
|
96816
96916
|
// browser this is a little complicated due to unknown quality of Math.random()
|
|
96817
96917
|
// and inconsistent support for the `crypto` API. We do the best we can via
|
|
@@ -96847,7 +96947,7 @@ if (getRandomValues) {
|
|
|
96847
96947
|
};
|
|
96848
96948
|
}
|
|
96849
96949
|
|
|
96850
|
-
},{}],
|
|
96950
|
+
},{}],643:[function(require,module,exports){
|
|
96851
96951
|
var rng = require('./lib/rng');
|
|
96852
96952
|
var bytesToUuid = require('./lib/bytesToUuid');
|
|
96853
96953
|
|
|
@@ -96878,7 +96978,7 @@ function v4(options, buf, offset) {
|
|
|
96878
96978
|
|
|
96879
96979
|
module.exports = v4;
|
|
96880
96980
|
|
|
96881
|
-
},{"./lib/bytesToUuid":
|
|
96981
|
+
},{"./lib/bytesToUuid":641,"./lib/rng":642}],644:[function(require,module,exports){
|
|
96882
96982
|
(function (process){(function (){
|
|
96883
96983
|
'use strict'
|
|
96884
96984
|
|
|
@@ -98435,9 +98535,9 @@ Request.prototype.toJSON = requestToJSON
|
|
|
98435
98535
|
module.exports = Request
|
|
98436
98536
|
|
|
98437
98537
|
}).call(this)}).call(this,require('_process'))
|
|
98438
|
-
},{"./lib/auth":
|
|
98538
|
+
},{"./lib/auth":630,"./lib/cookies":631,"./lib/getProxyFromURI":632,"./lib/har":633,"./lib/hawk":634,"./lib/helpers":635,"./lib/multipart":636,"./lib/oauth":637,"./lib/querystring":638,"./lib/redirect":639,"./lib/tunnel":640,"_process":335,"aws-sign2":564,"aws4":565,"caseless":568,"extend":575,"forever-agent":579,"form-data":580,"http":387,"http-signature":602,"https":298,"is-typedarray":607,"isstream":608,"mime-types":619,"performance-now":621,"safe-buffer":645,"stream":386,"url":395,"util":400,"zlib":224}],645:[function(require,module,exports){
|
|
98439
98539
|
arguments[4][358][0].apply(exports,arguments)
|
|
98440
|
-
},{"buffer":227,"dup":358}],
|
|
98540
|
+
},{"buffer":227,"dup":358}],646:[function(require,module,exports){
|
|
98441
98541
|
(function (process){(function (){
|
|
98442
98542
|
/* eslint-disable node/no-deprecated-api */
|
|
98443
98543
|
|
|
@@ -98518,7 +98618,7 @@ if (!safer.constants) {
|
|
|
98518
98618
|
module.exports = safer
|
|
98519
98619
|
|
|
98520
98620
|
}).call(this)}).call(this,require('_process'))
|
|
98521
|
-
},{"_process":335,"buffer":227}],
|
|
98621
|
+
},{"_process":335,"buffer":227}],647:[function(require,module,exports){
|
|
98522
98622
|
// Copyright 2015 Joyent, Inc.
|
|
98523
98623
|
|
|
98524
98624
|
var Buffer = require('safer-buffer').Buffer;
|
|
@@ -98688,7 +98788,7 @@ module.exports = {
|
|
|
98688
98788
|
curves: curves
|
|
98689
98789
|
};
|
|
98690
98790
|
|
|
98691
|
-
},{"safer-buffer":
|
|
98791
|
+
},{"safer-buffer":646}],648:[function(require,module,exports){
|
|
98692
98792
|
// Copyright 2016 Joyent, Inc.
|
|
98693
98793
|
|
|
98694
98794
|
module.exports = Certificate;
|
|
@@ -99100,7 +99200,7 @@ Certificate._oldVersionDetect = function (obj) {
|
|
|
99100
99200
|
return ([1, 0]);
|
|
99101
99201
|
};
|
|
99102
99202
|
|
|
99103
|
-
},{"./algs":
|
|
99203
|
+
},{"./algs":647,"./errors":651,"./fingerprint":652,"./formats/openssh-cert":655,"./formats/x509":664,"./formats/x509-pem":663,"./identity":665,"./key":667,"./private-key":668,"./signature":669,"./utils":671,"assert-plus":563,"crypto":237,"safer-buffer":646,"util":400}],649:[function(require,module,exports){
|
|
99104
99204
|
// Copyright 2017 Joyent, Inc.
|
|
99105
99205
|
|
|
99106
99206
|
module.exports = {
|
|
@@ -99499,7 +99599,7 @@ function generateECDSA(curve) {
|
|
|
99499
99599
|
}
|
|
99500
99600
|
}
|
|
99501
99601
|
|
|
99502
|
-
},{"./algs":
|
|
99602
|
+
},{"./algs":647,"./key":667,"./private-key":668,"./utils":671,"assert-plus":563,"crypto":237,"ecc-jsbn":572,"ecc-jsbn/lib/ec":573,"jsbn":609,"safer-buffer":646,"tweetnacl":680}],650:[function(require,module,exports){
|
|
99503
99603
|
// Copyright 2015 Joyent, Inc.
|
|
99504
99604
|
|
|
99505
99605
|
module.exports = {
|
|
@@ -99593,7 +99693,7 @@ Signer.prototype.sign = function () {
|
|
|
99593
99693
|
return (sigObj);
|
|
99594
99694
|
};
|
|
99595
99695
|
|
|
99596
|
-
},{"./signature":
|
|
99696
|
+
},{"./signature":669,"assert-plus":563,"safer-buffer":646,"stream":386,"tweetnacl":680,"util":400}],651:[function(require,module,exports){
|
|
99597
99697
|
// Copyright 2015 Joyent, Inc.
|
|
99598
99698
|
|
|
99599
99699
|
var assert = require('assert-plus');
|
|
@@ -99679,7 +99779,7 @@ module.exports = {
|
|
|
99679
99779
|
CertificateParseError: CertificateParseError
|
|
99680
99780
|
};
|
|
99681
99781
|
|
|
99682
|
-
},{"assert-plus":
|
|
99782
|
+
},{"assert-plus":563,"util":400}],652:[function(require,module,exports){
|
|
99683
99783
|
// Copyright 2018 Joyent, Inc.
|
|
99684
99784
|
|
|
99685
99785
|
module.exports = Fingerprint;
|
|
@@ -99901,7 +100001,7 @@ Fingerprint._oldVersionDetect = function (obj) {
|
|
|
99901
100001
|
return ([1, 0]);
|
|
99902
100002
|
};
|
|
99903
100003
|
|
|
99904
|
-
},{"./algs":
|
|
100004
|
+
},{"./algs":647,"./certificate":648,"./errors":651,"./key":667,"./private-key":668,"./utils":671,"assert-plus":563,"crypto":237,"safer-buffer":646}],653:[function(require,module,exports){
|
|
99905
100005
|
// Copyright 2018 Joyent, Inc.
|
|
99906
100006
|
|
|
99907
100007
|
module.exports = {
|
|
@@ -100027,7 +100127,7 @@ function write(key, options) {
|
|
|
100027
100127
|
throw (new Error('"auto" format cannot be used for writing'));
|
|
100028
100128
|
}
|
|
100029
100129
|
|
|
100030
|
-
},{"../key":
|
|
100130
|
+
},{"../key":667,"../private-key":668,"../utils":671,"./dnssec":654,"./pem":656,"./putty":659,"./rfc4253":660,"./ssh":662,"assert-plus":563,"safer-buffer":646}],654:[function(require,module,exports){
|
|
100031
100131
|
// Copyright 2017 Joyent, Inc.
|
|
100032
100132
|
|
|
100033
100133
|
module.exports = {
|
|
@@ -100316,7 +100416,7 @@ function write(key, options) {
|
|
|
100316
100416
|
}
|
|
100317
100417
|
}
|
|
100318
100418
|
|
|
100319
|
-
},{"../dhe":
|
|
100419
|
+
},{"../dhe":649,"../key":667,"../private-key":668,"../ssh-buffer":670,"../utils":671,"assert-plus":563,"safer-buffer":646}],655:[function(require,module,exports){
|
|
100320
100420
|
// Copyright 2017 Joyent, Inc.
|
|
100321
100421
|
|
|
100322
100422
|
module.exports = {
|
|
@@ -100670,7 +100770,7 @@ function getCertType(key) {
|
|
|
100670
100770
|
throw (new Error('Unsupported key type ' + key.type));
|
|
100671
100771
|
}
|
|
100672
100772
|
|
|
100673
|
-
},{"../algs":
|
|
100773
|
+
},{"../algs":647,"../certificate":648,"../identity":665,"../key":667,"../private-key":668,"../signature":669,"../ssh-buffer":670,"../utils":671,"./rfc4253":660,"assert-plus":563,"crypto":237,"safer-buffer":646}],656:[function(require,module,exports){
|
|
100674
100774
|
// Copyright 2018 Joyent, Inc.
|
|
100675
100775
|
|
|
100676
100776
|
module.exports = {
|
|
@@ -100962,7 +101062,7 @@ function write(key, options, type) {
|
|
|
100962
101062
|
return (buf.slice(0, o));
|
|
100963
101063
|
}
|
|
100964
101064
|
|
|
100965
|
-
},{"../algs":
|
|
101065
|
+
},{"../algs":647,"../errors":651,"../key":667,"../private-key":668,"../utils":671,"./pkcs1":657,"./pkcs8":658,"./rfc4253":660,"./ssh-private":661,"asn1":562,"assert-plus":563,"crypto":237,"safer-buffer":646}],657:[function(require,module,exports){
|
|
100966
101066
|
// Copyright 2015 Joyent, Inc.
|
|
100967
101067
|
|
|
100968
101068
|
module.exports = {
|
|
@@ -101337,7 +101437,7 @@ function writePkcs1EdDSAPublic(der, key) {
|
|
|
101337
101437
|
throw (new Error('Public keys are not supported for EdDSA PKCS#1'));
|
|
101338
101438
|
}
|
|
101339
101439
|
|
|
101340
|
-
},{"../algs":
|
|
101440
|
+
},{"../algs":647,"../key":667,"../private-key":668,"../utils":671,"./pem":656,"./pkcs8":658,"asn1":562,"assert-plus":563,"safer-buffer":646}],658:[function(require,module,exports){
|
|
101341
101441
|
// Copyright 2018 Joyent, Inc.
|
|
101342
101442
|
|
|
101343
101443
|
module.exports = {
|
|
@@ -101970,7 +102070,7 @@ function writePkcs8EdDSAPrivate(key, der) {
|
|
|
101970
102070
|
der.endSequence();
|
|
101971
102071
|
}
|
|
101972
102072
|
|
|
101973
|
-
},{"../algs":
|
|
102073
|
+
},{"../algs":647,"../key":667,"../private-key":668,"../utils":671,"./pem":656,"asn1":562,"assert-plus":563,"safer-buffer":646}],659:[function(require,module,exports){
|
|
101974
102074
|
// Copyright 2018 Joyent, Inc.
|
|
101975
102075
|
|
|
101976
102076
|
module.exports = {
|
|
@@ -102166,7 +102266,7 @@ function wrap(txt, len) {
|
|
|
102166
102266
|
return (lines);
|
|
102167
102267
|
}
|
|
102168
102268
|
|
|
102169
|
-
},{"../errors":
|
|
102269
|
+
},{"../errors":651,"../key":667,"../private-key":668,"../ssh-buffer":670,"./rfc4253":660,"assert-plus":563,"crypto":237,"safer-buffer":646}],660:[function(require,module,exports){
|
|
102170
102270
|
// Copyright 2015 Joyent, Inc.
|
|
102171
102271
|
|
|
102172
102272
|
module.exports = {
|
|
@@ -102334,7 +102434,7 @@ function write(key, options) {
|
|
|
102334
102434
|
return (buf.toBuffer());
|
|
102335
102435
|
}
|
|
102336
102436
|
|
|
102337
|
-
},{"../algs":
|
|
102437
|
+
},{"../algs":647,"../key":667,"../private-key":668,"../ssh-buffer":670,"../utils":671,"assert-plus":563,"safer-buffer":646}],661:[function(require,module,exports){
|
|
102338
102438
|
// Copyright 2015 Joyent, Inc.
|
|
102339
102439
|
|
|
102340
102440
|
module.exports = {
|
|
@@ -102598,7 +102698,7 @@ function write(key, options) {
|
|
|
102598
102698
|
return (buf.slice(0, o));
|
|
102599
102699
|
}
|
|
102600
102700
|
|
|
102601
|
-
},{"../algs":
|
|
102701
|
+
},{"../algs":647,"../errors":651,"../key":667,"../private-key":668,"../ssh-buffer":670,"../utils":671,"./pem":656,"./rfc4253":660,"asn1":562,"assert-plus":563,"bcrypt-pbkdf":567,"crypto":237,"safer-buffer":646}],662:[function(require,module,exports){
|
|
102602
102702
|
// Copyright 2015 Joyent, Inc.
|
|
102603
102703
|
|
|
102604
102704
|
module.exports = {
|
|
@@ -102715,7 +102815,7 @@ function write(key, options) {
|
|
|
102715
102815
|
return (Buffer.from(parts.join(' ')));
|
|
102716
102816
|
}
|
|
102717
102817
|
|
|
102718
|
-
},{"../key":
|
|
102818
|
+
},{"../key":667,"../private-key":668,"../utils":671,"./rfc4253":660,"./ssh-private":661,"assert-plus":563,"safer-buffer":646}],663:[function(require,module,exports){
|
|
102719
102819
|
// Copyright 2016 Joyent, Inc.
|
|
102720
102820
|
|
|
102721
102821
|
var x509 = require('./x509');
|
|
@@ -102805,7 +102905,7 @@ function write(cert, options) {
|
|
|
102805
102905
|
return (buf.slice(0, o));
|
|
102806
102906
|
}
|
|
102807
102907
|
|
|
102808
|
-
},{"../algs":
|
|
102908
|
+
},{"../algs":647,"../certificate":648,"../identity":665,"../key":667,"../private-key":668,"../signature":669,"../utils":671,"./pem":656,"./x509":664,"asn1":562,"assert-plus":563,"safer-buffer":646}],664:[function(require,module,exports){
|
|
102809
102909
|
// Copyright 2017 Joyent, Inc.
|
|
102810
102910
|
|
|
102811
102911
|
module.exports = {
|
|
@@ -103559,7 +103659,7 @@ function writeBitField(setBits, bitIndex) {
|
|
|
103559
103659
|
return (bits);
|
|
103560
103660
|
}
|
|
103561
103661
|
|
|
103562
|
-
},{"../algs":
|
|
103662
|
+
},{"../algs":647,"../certificate":648,"../identity":665,"../key":667,"../private-key":668,"../signature":669,"../utils":671,"./pem":656,"./pkcs8":658,"asn1":562,"assert-plus":563,"safer-buffer":646}],665:[function(require,module,exports){
|
|
103563
103663
|
// Copyright 2017 Joyent, Inc.
|
|
103564
103664
|
|
|
103565
103665
|
module.exports = Identity;
|
|
@@ -103934,7 +104034,7 @@ Identity._oldVersionDetect = function (obj) {
|
|
|
103934
104034
|
return ([1, 0]);
|
|
103935
104035
|
};
|
|
103936
104036
|
|
|
103937
|
-
},{"./algs":
|
|
104037
|
+
},{"./algs":647,"./errors":651,"./fingerprint":652,"./signature":669,"./utils":671,"asn1":562,"assert-plus":563,"crypto":237,"safer-buffer":646,"util":400}],666:[function(require,module,exports){
|
|
103938
104038
|
// Copyright 2015 Joyent, Inc.
|
|
103939
104039
|
|
|
103940
104040
|
var Key = require('./key');
|
|
@@ -103976,7 +104076,7 @@ module.exports = {
|
|
|
103976
104076
|
CertificateParseError: errs.CertificateParseError
|
|
103977
104077
|
};
|
|
103978
104078
|
|
|
103979
|
-
},{"./certificate":
|
|
104079
|
+
},{"./certificate":648,"./errors":651,"./fingerprint":652,"./identity":665,"./key":667,"./private-key":668,"./signature":669}],667:[function(require,module,exports){
|
|
103980
104080
|
(function (Buffer){(function (){
|
|
103981
104081
|
// Copyright 2018 Joyent, Inc.
|
|
103982
104082
|
|
|
@@ -104274,7 +104374,7 @@ Key._oldVersionDetect = function (obj) {
|
|
|
104274
104374
|
};
|
|
104275
104375
|
|
|
104276
104376
|
}).call(this)}).call(this,{"isBuffer":require("../../../browser-agent/node_modules/is-buffer/index.js")})
|
|
104277
|
-
},{"../../../browser-agent/node_modules/is-buffer/index.js":302,"./algs":
|
|
104377
|
+
},{"../../../browser-agent/node_modules/is-buffer/index.js":302,"./algs":647,"./dhe":649,"./ed-compat":650,"./errors":651,"./fingerprint":652,"./formats/auto":653,"./formats/dnssec":654,"./formats/pem":656,"./formats/pkcs1":657,"./formats/pkcs8":658,"./formats/putty":659,"./formats/rfc4253":660,"./formats/ssh":662,"./formats/ssh-private":661,"./private-key":668,"./signature":669,"./utils":671,"assert-plus":563,"crypto":237}],668:[function(require,module,exports){
|
|
104278
104378
|
// Copyright 2017 Joyent, Inc.
|
|
104279
104379
|
|
|
104280
104380
|
module.exports = PrivateKey;
|
|
@@ -104523,7 +104623,7 @@ PrivateKey._oldVersionDetect = function (obj) {
|
|
|
104523
104623
|
return ([1, 0]);
|
|
104524
104624
|
};
|
|
104525
104625
|
|
|
104526
|
-
},{"./algs":
|
|
104626
|
+
},{"./algs":647,"./dhe":649,"./ed-compat":650,"./errors":651,"./fingerprint":652,"./formats/auto":653,"./formats/dnssec":654,"./formats/pem":656,"./formats/pkcs1":657,"./formats/pkcs8":658,"./formats/putty":659,"./formats/rfc4253":660,"./formats/ssh-private":661,"./key":667,"./signature":669,"./utils":671,"assert-plus":563,"crypto":237,"safer-buffer":646,"tweetnacl":680,"util":400}],669:[function(require,module,exports){
|
|
104527
104627
|
// Copyright 2015 Joyent, Inc.
|
|
104528
104628
|
|
|
104529
104629
|
module.exports = Signature;
|
|
@@ -104839,7 +104939,7 @@ Signature._oldVersionDetect = function (obj) {
|
|
|
104839
104939
|
return ([1, 0]);
|
|
104840
104940
|
};
|
|
104841
104941
|
|
|
104842
|
-
},{"./algs":
|
|
104942
|
+
},{"./algs":647,"./errors":651,"./ssh-buffer":670,"./utils":671,"asn1":562,"assert-plus":563,"crypto":237,"safer-buffer":646}],670:[function(require,module,exports){
|
|
104843
104943
|
// Copyright 2015 Joyent, Inc.
|
|
104844
104944
|
|
|
104845
104945
|
module.exports = SSHBuffer;
|
|
@@ -104990,7 +105090,7 @@ SSHBuffer.prototype.write = function (buf) {
|
|
|
104990
105090
|
this._offset += buf.length;
|
|
104991
105091
|
};
|
|
104992
105092
|
|
|
104993
|
-
},{"assert-plus":
|
|
105093
|
+
},{"assert-plus":563,"safer-buffer":646}],671:[function(require,module,exports){
|
|
104994
105094
|
// Copyright 2015 Joyent, Inc.
|
|
104995
105095
|
|
|
104996
105096
|
module.exports = {
|
|
@@ -105396,7 +105496,7 @@ function opensshCipherInfo(cipher) {
|
|
|
105396
105496
|
return (inf);
|
|
105397
105497
|
}
|
|
105398
105498
|
|
|
105399
|
-
},{"./algs":
|
|
105499
|
+
},{"./algs":647,"./key":667,"./private-key":668,"asn1":562,"assert-plus":563,"crypto":237,"ecc-jsbn/lib/ec":573,"jsbn":609,"safer-buffer":646,"tweetnacl":680}],672:[function(require,module,exports){
|
|
105400
105500
|
/*!
|
|
105401
105501
|
* Copyright (c) 2015, Salesforce.com, Inc.
|
|
105402
105502
|
* All rights reserved.
|
|
@@ -106880,7 +106980,7 @@ exports.permuteDomain = require('./permuteDomain').permuteDomain;
|
|
|
106880
106980
|
exports.permutePath = permutePath;
|
|
106881
106981
|
exports.canonicalDomain = canonicalDomain;
|
|
106882
106982
|
|
|
106883
|
-
},{"./memstore":
|
|
106983
|
+
},{"./memstore":673,"./pathMatch":674,"./permuteDomain":675,"./pubsuffix-psl":676,"./store":677,"./version":678,"net":225,"punycode":343,"url":395,"util":400}],673:[function(require,module,exports){
|
|
106884
106984
|
/*!
|
|
106885
106985
|
* Copyright (c) 2015, Salesforce.com, Inc.
|
|
106886
106986
|
* All rights reserved.
|
|
@@ -107063,7 +107163,7 @@ MemoryCookieStore.prototype.getAllCookies = function(cb) {
|
|
|
107063
107163
|
cb(null, cookies);
|
|
107064
107164
|
};
|
|
107065
107165
|
|
|
107066
|
-
},{"./pathMatch":
|
|
107166
|
+
},{"./pathMatch":674,"./permuteDomain":675,"./store":677,"util":400}],674:[function(require,module,exports){
|
|
107067
107167
|
/*!
|
|
107068
107168
|
* Copyright (c) 2015, Salesforce.com, Inc.
|
|
107069
107169
|
* All rights reserved.
|
|
@@ -107126,7 +107226,7 @@ function pathMatch (reqPath, cookiePath) {
|
|
|
107126
107226
|
|
|
107127
107227
|
exports.pathMatch = pathMatch;
|
|
107128
107228
|
|
|
107129
|
-
},{}],
|
|
107229
|
+
},{}],675:[function(require,module,exports){
|
|
107130
107230
|
/*!
|
|
107131
107231
|
* Copyright (c) 2015, Salesforce.com, Inc.
|
|
107132
107232
|
* All rights reserved.
|
|
@@ -107184,7 +107284,7 @@ function permuteDomain (domain) {
|
|
|
107184
107284
|
|
|
107185
107285
|
exports.permuteDomain = permuteDomain;
|
|
107186
107286
|
|
|
107187
|
-
},{"./pubsuffix-psl":
|
|
107287
|
+
},{"./pubsuffix-psl":676}],676:[function(require,module,exports){
|
|
107188
107288
|
/*!
|
|
107189
107289
|
* Copyright (c) 2018, Salesforce.com, Inc.
|
|
107190
107290
|
* All rights reserved.
|
|
@@ -107224,7 +107324,7 @@ function getPublicSuffix(domain) {
|
|
|
107224
107324
|
|
|
107225
107325
|
exports.getPublicSuffix = getPublicSuffix;
|
|
107226
107326
|
|
|
107227
|
-
},{"psl":
|
|
107327
|
+
},{"psl":623}],677:[function(require,module,exports){
|
|
107228
107328
|
/*!
|
|
107229
107329
|
* Copyright (c) 2015, Salesforce.com, Inc.
|
|
107230
107330
|
* All rights reserved.
|
|
@@ -107301,11 +107401,11 @@ Store.prototype.getAllCookies = function(cb) {
|
|
|
107301
107401
|
throw new Error('getAllCookies is not implemented (therefore jar cannot be serialized)');
|
|
107302
107402
|
};
|
|
107303
107403
|
|
|
107304
|
-
},{}],
|
|
107404
|
+
},{}],678:[function(require,module,exports){
|
|
107305
107405
|
// generated by genversion
|
|
107306
107406
|
module.exports = '2.5.0'
|
|
107307
107407
|
|
|
107308
|
-
},{}],
|
|
107408
|
+
},{}],679:[function(require,module,exports){
|
|
107309
107409
|
(function (process){(function (){
|
|
107310
107410
|
'use strict'
|
|
107311
107411
|
|
|
@@ -107553,7 +107653,7 @@ if (process.env.NODE_DEBUG && /\btunnel\b/.test(process.env.NODE_DEBUG)) {
|
|
|
107553
107653
|
exports.debug = debug // for test
|
|
107554
107654
|
|
|
107555
107655
|
}).call(this)}).call(this,require('_process'))
|
|
107556
|
-
},{"_process":335,"assert":172,"events":266,"http":387,"https":298,"net":225,"safe-buffer":
|
|
107656
|
+
},{"_process":335,"assert":172,"events":266,"http":387,"https":298,"net":225,"safe-buffer":645,"tls":225,"util":400}],680:[function(require,module,exports){
|
|
107557
107657
|
(function(nacl) {
|
|
107558
107658
|
'use strict';
|
|
107559
107659
|
|
|
@@ -109943,7 +110043,7 @@ nacl.setPRNG = function(fn) {
|
|
|
109943
110043
|
|
|
109944
110044
|
})(typeof module !== 'undefined' && module.exports ? module.exports : (self.nacl = self.nacl || {}));
|
|
109945
110045
|
|
|
109946
|
-
},{"crypto":179}],
|
|
110046
|
+
},{"crypto":179}],681:[function(require,module,exports){
|
|
109947
110047
|
/** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */
|
|
109948
110048
|
(function (global, factory) {
|
|
109949
110049
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
|
@@ -111388,7 +111488,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
111388
111488
|
})));
|
|
111389
111489
|
|
|
111390
111490
|
|
|
111391
|
-
},{}],
|
|
111491
|
+
},{}],682:[function(require,module,exports){
|
|
111392
111492
|
var v1 = require('./v1');
|
|
111393
111493
|
var v4 = require('./v4');
|
|
111394
111494
|
|
|
@@ -111398,7 +111498,7 @@ uuid.v4 = v4;
|
|
|
111398
111498
|
|
|
111399
111499
|
module.exports = uuid;
|
|
111400
111500
|
|
|
111401
|
-
},{"./v1":
|
|
111501
|
+
},{"./v1":685,"./v4":686}],683:[function(require,module,exports){
|
|
111402
111502
|
/**
|
|
111403
111503
|
* Convert array of 16 byte values to UUID string format of the form:
|
|
111404
111504
|
* XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
|
|
@@ -111423,7 +111523,7 @@ function bytesToUuid(buf, offset) {
|
|
|
111423
111523
|
|
|
111424
111524
|
module.exports = bytesToUuid;
|
|
111425
111525
|
|
|
111426
|
-
},{}],
|
|
111526
|
+
},{}],684:[function(require,module,exports){
|
|
111427
111527
|
(function (global){(function (){
|
|
111428
111528
|
// Unique ID creation requires a high quality random # generator. In the
|
|
111429
111529
|
// browser this is a little complicated due to unknown quality of Math.random()
|
|
@@ -111460,7 +111560,7 @@ if (!rng) {
|
|
|
111460
111560
|
module.exports = rng;
|
|
111461
111561
|
|
|
111462
111562
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
111463
|
-
},{}],
|
|
111563
|
+
},{}],685:[function(require,module,exports){
|
|
111464
111564
|
var rng = require('./lib/rng');
|
|
111465
111565
|
var bytesToUuid = require('./lib/bytesToUuid');
|
|
111466
111566
|
|
|
@@ -111562,7 +111662,7 @@ function v1(options, buf, offset) {
|
|
|
111562
111662
|
|
|
111563
111663
|
module.exports = v1;
|
|
111564
111664
|
|
|
111565
|
-
},{"./lib/bytesToUuid":
|
|
111665
|
+
},{"./lib/bytesToUuid":683,"./lib/rng":684}],686:[function(require,module,exports){
|
|
111566
111666
|
var rng = require('./lib/rng');
|
|
111567
111667
|
var bytesToUuid = require('./lib/bytesToUuid');
|
|
111568
111668
|
|
|
@@ -111593,7 +111693,7 @@ function v4(options, buf, offset) {
|
|
|
111593
111693
|
|
|
111594
111694
|
module.exports = v4;
|
|
111595
111695
|
|
|
111596
|
-
},{"./lib/bytesToUuid":
|
|
111696
|
+
},{"./lib/bytesToUuid":683,"./lib/rng":684}],687:[function(require,module,exports){
|
|
111597
111697
|
/*
|
|
111598
111698
|
* verror.js: richer JavaScript errors
|
|
111599
111699
|
*/
|
|
@@ -112046,4 +112146,4 @@ WError.prototype.cause = function we_cause(c)
|
|
|
112046
112146
|
return (this.jse_cause);
|
|
112047
112147
|
};
|
|
112048
112148
|
|
|
112049
|
-
},{"assert-plus":
|
|
112149
|
+
},{"assert-plus":563,"core-util-is":570,"extsprintf":576,"util":400}]},{},[403]);
|