slnodejs 6.1.321 → 6.1.336
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 +782 -615
- package/browser-agent/dist/browser-agent-all.min.js +3 -3
- package/browser-agent/package.json +1 -1
- package/package.json +1 -1
- package/tsOutputs/build-scanner/build-diff-process.js +14 -0
- package/tsOutputs/build-scanner/build-diff-process.js.map +1 -1
- package/tsOutputs/cli-parse/contracts.d.ts +245 -0
- package/tsOutputs/cli-parse/contracts.js +7 -1
- package/tsOutputs/cli-parse/contracts.js.map +1 -1
- package/tsOutputs/cli-parse/executors/base-executor.js +10 -4
- package/tsOutputs/cli-parse/executors/base-executor.js.map +1 -1
- package/tsOutputs/cli-parse/executors/build-end-executor.js +1 -1
- package/tsOutputs/cli-parse/executors/build-end-executor.js.map +1 -1
- package/tsOutputs/cli-parse/executors/build-executor.js +1 -0
- package/tsOutputs/cli-parse/executors/build-executor.js.map +1 -1
- package/tsOutputs/common/agent-events/agent-events-conracts.d.ts +8 -6
- package/tsOutputs/common/agent-events/agent-events-conracts.js.map +1 -1
- package/tsOutputs/common/agent-events/agent-events-controller.js +2 -1
- package/tsOutputs/common/agent-events/agent-events-controller.js.map +1 -1
- package/tsOutputs/common/agent-events/agent-start-info-builder.d.ts +2 -1
- package/tsOutputs/common/agent-events/agent-start-info-builder.js +4 -0
- package/tsOutputs/common/agent-events/agent-start-info-builder.js.map +1 -1
- package/tsOutputs/common/agent-events/browser-info-builder.d.ts +6 -0
- package/tsOutputs/common/agent-events/browser-info-builder.js +23 -0
- package/tsOutputs/common/agent-events/browser-info-builder.js.map +1 -0
- package/tsOutputs/common/agent-events/cockpit-notifier.d.ts +2 -2
- package/tsOutputs/common/agent-events/cockpit-notifier.js.map +1 -1
- package/tsOutputs/common/config-process/config-loader.js +4 -3
- package/tsOutputs/common/config-process/config-loader.js.map +1 -1
- package/tsOutputs/common/events-process/events-contracts.d.ts +1 -0
- package/tsOutputs/common/events-process/events-contracts.js +1 -0
- package/tsOutputs/common/events-process/events-contracts.js.map +1 -1
- package/tsOutputs/common/footprints-process-v6/hits-collector.js +1 -0
- package/tsOutputs/common/footprints-process-v6/hits-collector.js.map +1 -1
- package/tsOutputs/common/footprints-process-v6/index.js +1 -0
- package/tsOutputs/common/footprints-process-v6/index.js.map +1 -1
- package/tsOutputs/common/scm/git.js +46 -0
- package/tsOutputs/common/scm/git.js.map +1 -1
- package/tsOutputs/test-listener/footprints-process/ts-node-hits-collector.js +46 -30
- package/tsOutputs/test-listener/footprints-process/ts-node-hits-collector.js.map +1 -1
- package/tsOutputs/test-listener/test-recommendation-handler.js +5 -0
- package/tsOutputs/test-listener/test-recommendation-handler.js.map +1 -1
|
@@ -1081,7 +1081,7 @@ function registerGlobal(type, instance, diag, allowOverride = false) {
|
|
|
1081
1081
|
}
|
|
1082
1082
|
if (api.version !== version_1.VERSION) {
|
|
1083
1083
|
// All registered APIs must be of the same version exactly
|
|
1084
|
-
const err = new Error(
|
|
1084
|
+
const err = new Error(`@opentelemetry/api: Registration of version v${api.version} for ${type} does not match previously registered API v${version_1.VERSION}`);
|
|
1085
1085
|
diag.error(err.stack || err.message);
|
|
1086
1086
|
return false;
|
|
1087
1087
|
}
|
|
@@ -2411,7 +2411,7 @@ var TraceFlags;
|
|
|
2411
2411
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2412
2412
|
exports.VERSION = void 0;
|
|
2413
2413
|
// this is autogenerated file, see scripts/version-update.js
|
|
2414
|
-
exports.VERSION = '1.4.
|
|
2414
|
+
exports.VERSION = '1.4.1';
|
|
2415
2415
|
|
|
2416
2416
|
},{}],47:[function(require,module,exports){
|
|
2417
2417
|
"use strict";
|
|
@@ -22573,14 +22573,14 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
22573
22573
|
/*</replacement>*/
|
|
22574
22574
|
|
|
22575
22575
|
module.exports = Duplex;
|
|
22576
|
-
|
|
22577
|
-
|
|
22576
|
+
var Readable = require('./_stream_readable');
|
|
22577
|
+
var Writable = require('./_stream_writable');
|
|
22578
22578
|
require('inherits')(Duplex, Readable);
|
|
22579
22579
|
{
|
|
22580
22580
|
// Allow the keys array to be GC'ed.
|
|
22581
|
-
|
|
22581
|
+
var keys = objectKeys(Writable.prototype);
|
|
22582
22582
|
for (var v = 0; v < keys.length; v++) {
|
|
22583
|
-
|
|
22583
|
+
var method = keys[v];
|
|
22584
22584
|
if (!Duplex.prototype[method]) Duplex.prototype[method] = Writable.prototype[method];
|
|
22585
22585
|
}
|
|
22586
22586
|
}
|
|
@@ -22603,7 +22603,7 @@ Object.defineProperty(Duplex.prototype, 'writableHighWaterMark', {
|
|
|
22603
22603
|
// because otherwise some prototype manipulation in
|
|
22604
22604
|
// userland will fail
|
|
22605
22605
|
enumerable: false,
|
|
22606
|
-
get() {
|
|
22606
|
+
get: function get() {
|
|
22607
22607
|
return this._writableState.highWaterMark;
|
|
22608
22608
|
}
|
|
22609
22609
|
});
|
|
@@ -22621,7 +22621,7 @@ Object.defineProperty(Duplex.prototype, 'writableLength', {
|
|
|
22621
22621
|
// because otherwise some prototype manipulation in
|
|
22622
22622
|
// userland will fail
|
|
22623
22623
|
enumerable: false,
|
|
22624
|
-
get() {
|
|
22624
|
+
get: function get() {
|
|
22625
22625
|
return this._writableState.length;
|
|
22626
22626
|
}
|
|
22627
22627
|
});
|
|
@@ -22643,13 +22643,13 @@ Object.defineProperty(Duplex.prototype, 'destroyed', {
|
|
|
22643
22643
|
// because otherwise some prototype manipulation in
|
|
22644
22644
|
// userland will fail
|
|
22645
22645
|
enumerable: false,
|
|
22646
|
-
get() {
|
|
22646
|
+
get: function get() {
|
|
22647
22647
|
if (this._readableState === undefined || this._writableState === undefined) {
|
|
22648
22648
|
return false;
|
|
22649
22649
|
}
|
|
22650
22650
|
return this._readableState.destroyed && this._writableState.destroyed;
|
|
22651
22651
|
},
|
|
22652
|
-
set(value) {
|
|
22652
|
+
set: function set(value) {
|
|
22653
22653
|
// we ignore the value if the stream
|
|
22654
22654
|
// has not been initialized yet
|
|
22655
22655
|
if (this._readableState === undefined || this._writableState === undefined) {
|
|
@@ -22692,7 +22692,7 @@ Object.defineProperty(Duplex.prototype, 'destroyed', {
|
|
|
22692
22692
|
'use strict';
|
|
22693
22693
|
|
|
22694
22694
|
module.exports = PassThrough;
|
|
22695
|
-
|
|
22695
|
+
var Transform = require('./_stream_transform');
|
|
22696
22696
|
require('inherits')(PassThrough, Transform);
|
|
22697
22697
|
function PassThrough(options) {
|
|
22698
22698
|
if (!(this instanceof PassThrough)) return new PassThrough(options);
|
|
@@ -22735,7 +22735,7 @@ var Duplex;
|
|
|
22735
22735
|
Readable.ReadableState = ReadableState;
|
|
22736
22736
|
|
|
22737
22737
|
/*<replacement>*/
|
|
22738
|
-
|
|
22738
|
+
var EE = require('events').EventEmitter;
|
|
22739
22739
|
var EElistenerCount = function EElistenerCount(emitter, type) {
|
|
22740
22740
|
return emitter.listeners(type).length;
|
|
22741
22741
|
};
|
|
@@ -22745,8 +22745,8 @@ var EElistenerCount = function EElistenerCount(emitter, type) {
|
|
|
22745
22745
|
var Stream = require('./internal/streams/stream');
|
|
22746
22746
|
/*</replacement>*/
|
|
22747
22747
|
|
|
22748
|
-
|
|
22749
|
-
|
|
22748
|
+
var Buffer = require('buffer').Buffer;
|
|
22749
|
+
var OurUint8Array = (typeof global !== 'undefined' ? global : typeof window !== 'undefined' ? window : typeof self !== 'undefined' ? self : {}).Uint8Array || function () {};
|
|
22750
22750
|
function _uint8ArrayToBuffer(chunk) {
|
|
22751
22751
|
return Buffer.from(chunk);
|
|
22752
22752
|
}
|
|
@@ -22755,8 +22755,8 @@ function _isUint8Array(obj) {
|
|
|
22755
22755
|
}
|
|
22756
22756
|
|
|
22757
22757
|
/*<replacement>*/
|
|
22758
|
-
|
|
22759
|
-
|
|
22758
|
+
var debugUtil = require('util');
|
|
22759
|
+
var debug;
|
|
22760
22760
|
if (debugUtil && debugUtil.debuglog) {
|
|
22761
22761
|
debug = debugUtil.debuglog('stream');
|
|
22762
22762
|
} else {
|
|
@@ -22764,23 +22764,23 @@ if (debugUtil && debugUtil.debuglog) {
|
|
|
22764
22764
|
}
|
|
22765
22765
|
/*</replacement>*/
|
|
22766
22766
|
|
|
22767
|
-
|
|
22768
|
-
|
|
22769
|
-
|
|
22767
|
+
var BufferList = require('./internal/streams/buffer_list');
|
|
22768
|
+
var destroyImpl = require('./internal/streams/destroy');
|
|
22769
|
+
var _require = require('./internal/streams/state'),
|
|
22770
22770
|
getHighWaterMark = _require.getHighWaterMark;
|
|
22771
|
-
|
|
22771
|
+
var _require$codes = require('../errors').codes,
|
|
22772
22772
|
ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE,
|
|
22773
22773
|
ERR_STREAM_PUSH_AFTER_EOF = _require$codes.ERR_STREAM_PUSH_AFTER_EOF,
|
|
22774
22774
|
ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED,
|
|
22775
22775
|
ERR_STREAM_UNSHIFT_AFTER_END_EVENT = _require$codes.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;
|
|
22776
22776
|
|
|
22777
22777
|
// Lazy loaded to improve the startup performance.
|
|
22778
|
-
|
|
22779
|
-
|
|
22780
|
-
|
|
22778
|
+
var StringDecoder;
|
|
22779
|
+
var createReadableStreamAsyncIterator;
|
|
22780
|
+
var from;
|
|
22781
22781
|
require('inherits')(Readable, Stream);
|
|
22782
|
-
|
|
22783
|
-
|
|
22782
|
+
var errorOrDestroy = destroyImpl.errorOrDestroy;
|
|
22783
|
+
var kProxyEvents = ['error', 'close', 'destroy', 'pause', 'resume'];
|
|
22784
22784
|
function prependListener(emitter, event, fn) {
|
|
22785
22785
|
// Sadly this is not cacheable as some libraries bundle their own
|
|
22786
22786
|
// event emitter implementation with them.
|
|
@@ -22871,7 +22871,7 @@ function Readable(options) {
|
|
|
22871
22871
|
|
|
22872
22872
|
// Checking for a Stream.Duplex instance is faster here instead of inside
|
|
22873
22873
|
// the ReadableState constructor, at least with V8 6.5
|
|
22874
|
-
|
|
22874
|
+
var isDuplex = this instanceof Duplex;
|
|
22875
22875
|
this._readableState = new ReadableState(options, this, isDuplex);
|
|
22876
22876
|
|
|
22877
22877
|
// legacy
|
|
@@ -22887,13 +22887,13 @@ Object.defineProperty(Readable.prototype, 'destroyed', {
|
|
|
22887
22887
|
// because otherwise some prototype manipulation in
|
|
22888
22888
|
// userland will fail
|
|
22889
22889
|
enumerable: false,
|
|
22890
|
-
get() {
|
|
22890
|
+
get: function get() {
|
|
22891
22891
|
if (this._readableState === undefined) {
|
|
22892
22892
|
return false;
|
|
22893
22893
|
}
|
|
22894
22894
|
return this._readableState.destroyed;
|
|
22895
22895
|
},
|
|
22896
|
-
set(value) {
|
|
22896
|
+
set: function set(value) {
|
|
22897
22897
|
// we ignore the value if the stream
|
|
22898
22898
|
// has not been initialized yet
|
|
22899
22899
|
if (!this._readableState) {
|
|
@@ -23004,14 +23004,14 @@ Readable.prototype.isPaused = function () {
|
|
|
23004
23004
|
// backwards compatibility.
|
|
23005
23005
|
Readable.prototype.setEncoding = function (enc) {
|
|
23006
23006
|
if (!StringDecoder) StringDecoder = require('string_decoder/').StringDecoder;
|
|
23007
|
-
|
|
23007
|
+
var decoder = new StringDecoder(enc);
|
|
23008
23008
|
this._readableState.decoder = decoder;
|
|
23009
23009
|
// If setEncoding(null), decoder.encoding equals utf8
|
|
23010
23010
|
this._readableState.encoding = this._readableState.decoder.encoding;
|
|
23011
23011
|
|
|
23012
23012
|
// Iterate over current buffer to convert already stored Buffers:
|
|
23013
|
-
|
|
23014
|
-
|
|
23013
|
+
var p = this._readableState.buffer.head;
|
|
23014
|
+
var content = '';
|
|
23015
23015
|
while (p !== null) {
|
|
23016
23016
|
content += decoder.write(p.data);
|
|
23017
23017
|
p = p.next;
|
|
@@ -23023,7 +23023,7 @@ Readable.prototype.setEncoding = function (enc) {
|
|
|
23023
23023
|
};
|
|
23024
23024
|
|
|
23025
23025
|
// Don't raise the hwm > 1GB
|
|
23026
|
-
|
|
23026
|
+
var MAX_HWM = 0x40000000;
|
|
23027
23027
|
function computeNewHighWaterMark(n) {
|
|
23028
23028
|
if (n >= MAX_HWM) {
|
|
23029
23029
|
// TODO(ronag): Throw ERR_VALUE_OUT_OF_RANGE.
|
|
@@ -23250,7 +23250,7 @@ function maybeReadMore_(stream, state) {
|
|
|
23250
23250
|
// read()s. The execution ends in this method again after the _read() ends
|
|
23251
23251
|
// up calling push() with more data.
|
|
23252
23252
|
while (!state.reading && !state.ended && (state.length < state.highWaterMark || state.flowing && state.length === 0)) {
|
|
23253
|
-
|
|
23253
|
+
var len = state.length;
|
|
23254
23254
|
debug('maybeReadMore read 0');
|
|
23255
23255
|
stream.read(0);
|
|
23256
23256
|
if (len === state.length)
|
|
@@ -23447,8 +23447,8 @@ Readable.prototype.unpipe = function (dest) {
|
|
|
23447
23447
|
// set up data events if they are asked for
|
|
23448
23448
|
// Ensure readable listeners eventually get something
|
|
23449
23449
|
Readable.prototype.on = function (ev, fn) {
|
|
23450
|
-
|
|
23451
|
-
|
|
23450
|
+
var res = Stream.prototype.on.call(this, ev, fn);
|
|
23451
|
+
var state = this._readableState;
|
|
23452
23452
|
if (ev === 'data') {
|
|
23453
23453
|
// update readableListening so that resume() may be a no-op
|
|
23454
23454
|
// a few lines down. This is needed to support once('readable').
|
|
@@ -23473,7 +23473,7 @@ Readable.prototype.on = function (ev, fn) {
|
|
|
23473
23473
|
};
|
|
23474
23474
|
Readable.prototype.addListener = Readable.prototype.on;
|
|
23475
23475
|
Readable.prototype.removeListener = function (ev, fn) {
|
|
23476
|
-
|
|
23476
|
+
var res = Stream.prototype.removeListener.call(this, ev, fn);
|
|
23477
23477
|
if (ev === 'readable') {
|
|
23478
23478
|
// We need to check if there is someone still listening to
|
|
23479
23479
|
// readable and reset the state. However this needs to happen
|
|
@@ -23486,7 +23486,7 @@ Readable.prototype.removeListener = function (ev, fn) {
|
|
|
23486
23486
|
return res;
|
|
23487
23487
|
};
|
|
23488
23488
|
Readable.prototype.removeAllListeners = function (ev) {
|
|
23489
|
-
|
|
23489
|
+
var res = Stream.prototype.removeAllListeners.apply(this, arguments);
|
|
23490
23490
|
if (ev === 'readable' || ev === undefined) {
|
|
23491
23491
|
// We need to check if there is someone still listening to
|
|
23492
23492
|
// readable and reset the state. However this needs to happen
|
|
@@ -23499,7 +23499,7 @@ Readable.prototype.removeAllListeners = function (ev) {
|
|
|
23499
23499
|
return res;
|
|
23500
23500
|
};
|
|
23501
23501
|
function updateReadableListening(self) {
|
|
23502
|
-
|
|
23502
|
+
var state = self._readableState;
|
|
23503
23503
|
state.readableListening = self.listenerCount('readable') > 0;
|
|
23504
23504
|
if (state.resumeScheduled && !state.paused) {
|
|
23505
23505
|
// flowing needs to be set to true now, otherwise
|
|
@@ -23558,7 +23558,7 @@ Readable.prototype.pause = function () {
|
|
|
23558
23558
|
return this;
|
|
23559
23559
|
};
|
|
23560
23560
|
function flow(stream) {
|
|
23561
|
-
|
|
23561
|
+
var state = stream._readableState;
|
|
23562
23562
|
debug('flow', state.flowing);
|
|
23563
23563
|
while (state.flowing && stream.read() !== null);
|
|
23564
23564
|
}
|
|
@@ -23567,23 +23567,24 @@ function flow(stream) {
|
|
|
23567
23567
|
// This is *not* part of the readable stream interface.
|
|
23568
23568
|
// It is an ugly unfortunate mess of history.
|
|
23569
23569
|
Readable.prototype.wrap = function (stream) {
|
|
23570
|
+
var _this = this;
|
|
23570
23571
|
var state = this._readableState;
|
|
23571
23572
|
var paused = false;
|
|
23572
|
-
stream.on('end', ()
|
|
23573
|
+
stream.on('end', function () {
|
|
23573
23574
|
debug('wrapped end');
|
|
23574
23575
|
if (state.decoder && !state.ended) {
|
|
23575
23576
|
var chunk = state.decoder.end();
|
|
23576
|
-
if (chunk && chunk.length)
|
|
23577
|
+
if (chunk && chunk.length) _this.push(chunk);
|
|
23577
23578
|
}
|
|
23578
|
-
|
|
23579
|
+
_this.push(null);
|
|
23579
23580
|
});
|
|
23580
|
-
stream.on('data', chunk
|
|
23581
|
+
stream.on('data', function (chunk) {
|
|
23581
23582
|
debug('wrapped data');
|
|
23582
23583
|
if (state.decoder) chunk = state.decoder.write(chunk);
|
|
23583
23584
|
|
|
23584
23585
|
// don't skip over falsy values in objectMode
|
|
23585
23586
|
if (state.objectMode && (chunk === null || chunk === undefined)) return;else if (!state.objectMode && (!chunk || !chunk.length)) return;
|
|
23586
|
-
var ret =
|
|
23587
|
+
var ret = _this.push(chunk);
|
|
23587
23588
|
if (!ret) {
|
|
23588
23589
|
paused = true;
|
|
23589
23590
|
stream.pause();
|
|
@@ -23609,7 +23610,7 @@ Readable.prototype.wrap = function (stream) {
|
|
|
23609
23610
|
|
|
23610
23611
|
// when we try to consume some more bytes, simply unpause the
|
|
23611
23612
|
// underlying stream.
|
|
23612
|
-
this._read = n
|
|
23613
|
+
this._read = function (n) {
|
|
23613
23614
|
debug('wrapped _read', n);
|
|
23614
23615
|
if (paused) {
|
|
23615
23616
|
paused = false;
|
|
@@ -23666,7 +23667,7 @@ Object.defineProperty(Readable.prototype, 'readableLength', {
|
|
|
23666
23667
|
// because otherwise some prototype manipulation in
|
|
23667
23668
|
// userland will fail
|
|
23668
23669
|
enumerable: false,
|
|
23669
|
-
get() {
|
|
23670
|
+
get: function get() {
|
|
23670
23671
|
return this._readableState.length;
|
|
23671
23672
|
}
|
|
23672
23673
|
});
|
|
@@ -23708,7 +23709,7 @@ function endReadableNT(state, stream) {
|
|
|
23708
23709
|
if (state.autoDestroy) {
|
|
23709
23710
|
// In case of duplex streams we need a way to detect
|
|
23710
23711
|
// if the writable side is ready for autoDestroy as well
|
|
23711
|
-
|
|
23712
|
+
var wState = stream._writableState;
|
|
23712
23713
|
if (!wState || wState.autoDestroy && wState.finished) {
|
|
23713
23714
|
stream.destroy();
|
|
23714
23715
|
}
|
|
@@ -23797,12 +23798,12 @@ function indexOf(xs, x) {
|
|
|
23797
23798
|
'use strict';
|
|
23798
23799
|
|
|
23799
23800
|
module.exports = Transform;
|
|
23800
|
-
|
|
23801
|
+
var _require$codes = require('../errors').codes,
|
|
23801
23802
|
ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED,
|
|
23802
23803
|
ERR_MULTIPLE_CALLBACK = _require$codes.ERR_MULTIPLE_CALLBACK,
|
|
23803
23804
|
ERR_TRANSFORM_ALREADY_TRANSFORMING = _require$codes.ERR_TRANSFORM_ALREADY_TRANSFORMING,
|
|
23804
23805
|
ERR_TRANSFORM_WITH_LENGTH_0 = _require$codes.ERR_TRANSFORM_WITH_LENGTH_0;
|
|
23805
|
-
|
|
23806
|
+
var Duplex = require('./_stream_duplex');
|
|
23806
23807
|
require('inherits')(Transform, Duplex);
|
|
23807
23808
|
function afterTransform(er, data) {
|
|
23808
23809
|
var ts = this._transformState;
|
|
@@ -23851,9 +23852,10 @@ function Transform(options) {
|
|
|
23851
23852
|
this.on('prefinish', prefinish);
|
|
23852
23853
|
}
|
|
23853
23854
|
function prefinish() {
|
|
23855
|
+
var _this = this;
|
|
23854
23856
|
if (typeof this._flush === 'function' && !this._readableState.destroyed) {
|
|
23855
|
-
this._flush((er, data)
|
|
23856
|
-
done(
|
|
23857
|
+
this._flush(function (er, data) {
|
|
23858
|
+
done(_this, er, data);
|
|
23857
23859
|
});
|
|
23858
23860
|
} else {
|
|
23859
23861
|
done(this, null, null);
|
|
@@ -23903,7 +23905,7 @@ Transform.prototype._read = function (n) {
|
|
|
23903
23905
|
}
|
|
23904
23906
|
};
|
|
23905
23907
|
Transform.prototype._destroy = function (err, cb) {
|
|
23906
|
-
Duplex.prototype._destroy.call(this, err, err2
|
|
23908
|
+
Duplex.prototype._destroy.call(this, err, function (err2) {
|
|
23907
23909
|
cb(err2);
|
|
23908
23910
|
});
|
|
23909
23911
|
};
|
|
@@ -23962,10 +23964,11 @@ function WriteReq(chunk, encoding, cb) {
|
|
|
23962
23964
|
// It seems a linked list but it is not
|
|
23963
23965
|
// there will be only 2 of these for each stream
|
|
23964
23966
|
function CorkedRequest(state) {
|
|
23967
|
+
var _this = this;
|
|
23965
23968
|
this.next = null;
|
|
23966
23969
|
this.entry = null;
|
|
23967
|
-
this.finish = ()
|
|
23968
|
-
onCorkedFinish(
|
|
23970
|
+
this.finish = function () {
|
|
23971
|
+
onCorkedFinish(_this, state);
|
|
23969
23972
|
};
|
|
23970
23973
|
}
|
|
23971
23974
|
/* </replacement> */
|
|
@@ -23977,7 +23980,7 @@ var Duplex;
|
|
|
23977
23980
|
Writable.WritableState = WritableState;
|
|
23978
23981
|
|
|
23979
23982
|
/*<replacement>*/
|
|
23980
|
-
|
|
23983
|
+
var internalUtil = {
|
|
23981
23984
|
deprecate: require('util-deprecate')
|
|
23982
23985
|
};
|
|
23983
23986
|
/*</replacement>*/
|
|
@@ -23986,18 +23989,18 @@ const internalUtil = {
|
|
|
23986
23989
|
var Stream = require('./internal/streams/stream');
|
|
23987
23990
|
/*</replacement>*/
|
|
23988
23991
|
|
|
23989
|
-
|
|
23990
|
-
|
|
23992
|
+
var Buffer = require('buffer').Buffer;
|
|
23993
|
+
var OurUint8Array = (typeof global !== 'undefined' ? global : typeof window !== 'undefined' ? window : typeof self !== 'undefined' ? self : {}).Uint8Array || function () {};
|
|
23991
23994
|
function _uint8ArrayToBuffer(chunk) {
|
|
23992
23995
|
return Buffer.from(chunk);
|
|
23993
23996
|
}
|
|
23994
23997
|
function _isUint8Array(obj) {
|
|
23995
23998
|
return Buffer.isBuffer(obj) || obj instanceof OurUint8Array;
|
|
23996
23999
|
}
|
|
23997
|
-
|
|
23998
|
-
|
|
24000
|
+
var destroyImpl = require('./internal/streams/destroy');
|
|
24001
|
+
var _require = require('./internal/streams/state'),
|
|
23999
24002
|
getHighWaterMark = _require.getHighWaterMark;
|
|
24000
|
-
|
|
24003
|
+
var _require$codes = require('../errors').codes,
|
|
24001
24004
|
ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE,
|
|
24002
24005
|
ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED,
|
|
24003
24006
|
ERR_MULTIPLE_CALLBACK = _require$codes.ERR_MULTIPLE_CALLBACK,
|
|
@@ -24006,7 +24009,7 @@ const _require$codes = require('../errors').codes,
|
|
|
24006
24009
|
ERR_STREAM_NULL_VALUES = _require$codes.ERR_STREAM_NULL_VALUES,
|
|
24007
24010
|
ERR_STREAM_WRITE_AFTER_END = _require$codes.ERR_STREAM_WRITE_AFTER_END,
|
|
24008
24011
|
ERR_UNKNOWN_ENCODING = _require$codes.ERR_UNKNOWN_ENCODING;
|
|
24009
|
-
|
|
24012
|
+
var errorOrDestroy = destroyImpl.errorOrDestroy;
|
|
24010
24013
|
require('inherits')(Writable, Stream);
|
|
24011
24014
|
function nop() {}
|
|
24012
24015
|
function WritableState(options, stream, isDuplex) {
|
|
@@ -24164,7 +24167,7 @@ function Writable(options) {
|
|
|
24164
24167
|
|
|
24165
24168
|
// Checking for a Stream.Duplex instance is faster here instead of inside
|
|
24166
24169
|
// the WritableState constructor, at least with V8 6.5
|
|
24167
|
-
|
|
24170
|
+
var isDuplex = this instanceof Duplex;
|
|
24168
24171
|
if (!isDuplex && !realHasInstance.call(Writable, this)) return new Writable(options);
|
|
24169
24172
|
this._writableState = new WritableState(options, this, isDuplex);
|
|
24170
24173
|
|
|
@@ -24288,9 +24291,9 @@ function writeOrBuffer(stream, state, isBuf, chunk, encoding, cb) {
|
|
|
24288
24291
|
if (state.writing || state.corked) {
|
|
24289
24292
|
var last = state.lastBufferedRequest;
|
|
24290
24293
|
state.lastBufferedRequest = {
|
|
24291
|
-
chunk,
|
|
24292
|
-
encoding,
|
|
24293
|
-
isBuf,
|
|
24294
|
+
chunk: chunk,
|
|
24295
|
+
encoding: encoding,
|
|
24296
|
+
isBuf: isBuf,
|
|
24294
24297
|
callback: cb,
|
|
24295
24298
|
next: null
|
|
24296
24299
|
};
|
|
@@ -24463,7 +24466,7 @@ Object.defineProperty(Writable.prototype, 'writableLength', {
|
|
|
24463
24466
|
// because otherwise some prototype manipulation in
|
|
24464
24467
|
// userland will fail
|
|
24465
24468
|
enumerable: false,
|
|
24466
|
-
get() {
|
|
24469
|
+
get: function get() {
|
|
24467
24470
|
return this._writableState.length;
|
|
24468
24471
|
}
|
|
24469
24472
|
});
|
|
@@ -24471,7 +24474,7 @@ function needFinish(state) {
|
|
|
24471
24474
|
return state.ending && state.length === 0 && state.bufferedRequest === null && !state.finished && !state.writing;
|
|
24472
24475
|
}
|
|
24473
24476
|
function callFinal(stream, state) {
|
|
24474
|
-
stream._final(err
|
|
24477
|
+
stream._final(function (err) {
|
|
24475
24478
|
state.pendingcb--;
|
|
24476
24479
|
if (err) {
|
|
24477
24480
|
errorOrDestroy(stream, err);
|
|
@@ -24503,7 +24506,7 @@ function finishMaybe(stream, state) {
|
|
|
24503
24506
|
if (state.autoDestroy) {
|
|
24504
24507
|
// In case of duplex streams we need a way to detect
|
|
24505
24508
|
// if the readable side is ready for autoDestroy as well
|
|
24506
|
-
|
|
24509
|
+
var rState = stream._readableState;
|
|
24507
24510
|
if (!rState || rState.autoDestroy && rState.endEmitted) {
|
|
24508
24511
|
stream.destroy();
|
|
24509
24512
|
}
|
|
@@ -24539,13 +24542,13 @@ Object.defineProperty(Writable.prototype, 'destroyed', {
|
|
|
24539
24542
|
// because otherwise some prototype manipulation in
|
|
24540
24543
|
// userland will fail
|
|
24541
24544
|
enumerable: false,
|
|
24542
|
-
get() {
|
|
24545
|
+
get: function get() {
|
|
24543
24546
|
if (this._writableState === undefined) {
|
|
24544
24547
|
return false;
|
|
24545
24548
|
}
|
|
24546
24549
|
return this._writableState.destroyed;
|
|
24547
24550
|
},
|
|
24548
|
-
set(value) {
|
|
24551
|
+
set: function set(value) {
|
|
24549
24552
|
// we ignore the value if the stream
|
|
24550
24553
|
// has not been initialized yet
|
|
24551
24554
|
if (!this._writableState) {
|
|
@@ -24567,24 +24570,28 @@ Writable.prototype._destroy = function (err, cb) {
|
|
|
24567
24570
|
(function (process){(function (){
|
|
24568
24571
|
'use strict';
|
|
24569
24572
|
|
|
24570
|
-
|
|
24571
|
-
|
|
24572
|
-
|
|
24573
|
-
|
|
24574
|
-
|
|
24575
|
-
|
|
24576
|
-
|
|
24577
|
-
|
|
24573
|
+
var _Object$setPrototypeO;
|
|
24574
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
24575
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
24576
|
+
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
24577
|
+
var finished = require('./end-of-stream');
|
|
24578
|
+
var kLastResolve = Symbol('lastResolve');
|
|
24579
|
+
var kLastReject = Symbol('lastReject');
|
|
24580
|
+
var kError = Symbol('error');
|
|
24581
|
+
var kEnded = Symbol('ended');
|
|
24582
|
+
var kLastPromise = Symbol('lastPromise');
|
|
24583
|
+
var kHandlePromise = Symbol('handlePromise');
|
|
24584
|
+
var kStream = Symbol('stream');
|
|
24578
24585
|
function createIterResult(value, done) {
|
|
24579
24586
|
return {
|
|
24580
|
-
value,
|
|
24581
|
-
done
|
|
24587
|
+
value: value,
|
|
24588
|
+
done: done
|
|
24582
24589
|
};
|
|
24583
24590
|
}
|
|
24584
24591
|
function readAndResolve(iter) {
|
|
24585
|
-
|
|
24592
|
+
var resolve = iter[kLastResolve];
|
|
24586
24593
|
if (resolve !== null) {
|
|
24587
|
-
|
|
24594
|
+
var data = iter[kStream].read();
|
|
24588
24595
|
// we defer if data is null
|
|
24589
24596
|
// we can be expecting either 'end' or
|
|
24590
24597
|
// 'error'
|
|
@@ -24602,8 +24609,8 @@ function onReadable(iter) {
|
|
|
24602
24609
|
process.nextTick(readAndResolve, iter);
|
|
24603
24610
|
}
|
|
24604
24611
|
function wrapForNext(lastPromise, iter) {
|
|
24605
|
-
return (resolve, reject)
|
|
24606
|
-
lastPromise.then(()
|
|
24612
|
+
return function (resolve, reject) {
|
|
24613
|
+
lastPromise.then(function () {
|
|
24607
24614
|
if (iter[kEnded]) {
|
|
24608
24615
|
resolve(createIterResult(undefined, true));
|
|
24609
24616
|
return;
|
|
@@ -24612,15 +24619,16 @@ function wrapForNext(lastPromise, iter) {
|
|
|
24612
24619
|
}, reject);
|
|
24613
24620
|
};
|
|
24614
24621
|
}
|
|
24615
|
-
|
|
24616
|
-
|
|
24622
|
+
var AsyncIteratorPrototype = Object.getPrototypeOf(function () {});
|
|
24623
|
+
var ReadableStreamAsyncIteratorPrototype = Object.setPrototypeOf((_Object$setPrototypeO = {
|
|
24617
24624
|
get stream() {
|
|
24618
24625
|
return this[kStream];
|
|
24619
24626
|
},
|
|
24620
|
-
next() {
|
|
24627
|
+
next: function next() {
|
|
24628
|
+
var _this = this;
|
|
24621
24629
|
// if we have detected an error in the meanwhile
|
|
24622
24630
|
// reject straight away
|
|
24623
|
-
|
|
24631
|
+
var error = this[kError];
|
|
24624
24632
|
if (error !== null) {
|
|
24625
24633
|
return Promise.reject(error);
|
|
24626
24634
|
}
|
|
@@ -24632,10 +24640,10 @@ const ReadableStreamAsyncIteratorPrototype = Object.setPrototypeOf({
|
|
|
24632
24640
|
// called, the error will be emitted via nextTick, and
|
|
24633
24641
|
// we cannot guarantee that there is no error lingering around
|
|
24634
24642
|
// waiting to be emitted.
|
|
24635
|
-
return new Promise((resolve, reject)
|
|
24636
|
-
process.nextTick(()
|
|
24637
|
-
if (
|
|
24638
|
-
reject(
|
|
24643
|
+
return new Promise(function (resolve, reject) {
|
|
24644
|
+
process.nextTick(function () {
|
|
24645
|
+
if (_this[kError]) {
|
|
24646
|
+
reject(_this[kError]);
|
|
24639
24647
|
} else {
|
|
24640
24648
|
resolve(createIterResult(undefined, true));
|
|
24641
24649
|
}
|
|
@@ -24647,14 +24655,14 @@ const ReadableStreamAsyncIteratorPrototype = Object.setPrototypeOf({
|
|
|
24647
24655
|
// we will wait for the previous Promise to finish
|
|
24648
24656
|
// this logic is optimized to support for await loops,
|
|
24649
24657
|
// where next() is only called once at a time
|
|
24650
|
-
|
|
24651
|
-
|
|
24658
|
+
var lastPromise = this[kLastPromise];
|
|
24659
|
+
var promise;
|
|
24652
24660
|
if (lastPromise) {
|
|
24653
24661
|
promise = new Promise(wrapForNext(lastPromise, this));
|
|
24654
24662
|
} else {
|
|
24655
24663
|
// fast path needed to support multiple this.push()
|
|
24656
24664
|
// without triggering the next() queue
|
|
24657
|
-
|
|
24665
|
+
var data = this[kStream].read();
|
|
24658
24666
|
if (data !== null) {
|
|
24659
24667
|
return Promise.resolve(createIterResult(data, false));
|
|
24660
24668
|
}
|
|
@@ -24662,70 +24670,60 @@ const ReadableStreamAsyncIteratorPrototype = Object.setPrototypeOf({
|
|
|
24662
24670
|
}
|
|
24663
24671
|
this[kLastPromise] = promise;
|
|
24664
24672
|
return promise;
|
|
24665
|
-
},
|
|
24666
|
-
[Symbol.asyncIterator]() {
|
|
24667
|
-
return this;
|
|
24668
|
-
},
|
|
24669
|
-
return() {
|
|
24670
|
-
// destroy(err, cb) is a private API
|
|
24671
|
-
// we can guarantee we have that here, because we control the
|
|
24672
|
-
// Readable class this is attached to
|
|
24673
|
-
return new Promise((resolve, reject) => {
|
|
24674
|
-
this[kStream].destroy(null, err => {
|
|
24675
|
-
if (err) {
|
|
24676
|
-
reject(err);
|
|
24677
|
-
return;
|
|
24678
|
-
}
|
|
24679
|
-
resolve(createIterResult(undefined, true));
|
|
24680
|
-
});
|
|
24681
|
-
});
|
|
24682
24673
|
}
|
|
24683
|
-
},
|
|
24684
|
-
|
|
24685
|
-
|
|
24686
|
-
|
|
24687
|
-
|
|
24688
|
-
|
|
24689
|
-
|
|
24690
|
-
|
|
24691
|
-
|
|
24692
|
-
|
|
24693
|
-
|
|
24694
|
-
|
|
24695
|
-
|
|
24696
|
-
|
|
24697
|
-
}
|
|
24698
|
-
[kError]: {
|
|
24699
|
-
value: null,
|
|
24700
|
-
writable: true
|
|
24701
|
-
},
|
|
24702
|
-
[kEnded]: {
|
|
24703
|
-
value: stream._readableState.endEmitted,
|
|
24704
|
-
writable: true
|
|
24705
|
-
},
|
|
24706
|
-
// the function passed to new Promise
|
|
24707
|
-
// is cached so we avoid allocating a new
|
|
24708
|
-
// closure at every run
|
|
24709
|
-
[kHandlePromise]: {
|
|
24710
|
-
value: (resolve, reject) => {
|
|
24711
|
-
const data = iterator[kStream].read();
|
|
24712
|
-
if (data) {
|
|
24713
|
-
iterator[kLastPromise] = null;
|
|
24714
|
-
iterator[kLastResolve] = null;
|
|
24715
|
-
iterator[kLastReject] = null;
|
|
24716
|
-
resolve(createIterResult(data, false));
|
|
24717
|
-
} else {
|
|
24718
|
-
iterator[kLastResolve] = resolve;
|
|
24719
|
-
iterator[kLastReject] = reject;
|
|
24720
|
-
}
|
|
24721
|
-
},
|
|
24722
|
-
writable: true
|
|
24723
|
-
}
|
|
24674
|
+
}, _defineProperty(_Object$setPrototypeO, Symbol.asyncIterator, function () {
|
|
24675
|
+
return this;
|
|
24676
|
+
}), _defineProperty(_Object$setPrototypeO, "return", function _return() {
|
|
24677
|
+
var _this2 = this;
|
|
24678
|
+
// destroy(err, cb) is a private API
|
|
24679
|
+
// we can guarantee we have that here, because we control the
|
|
24680
|
+
// Readable class this is attached to
|
|
24681
|
+
return new Promise(function (resolve, reject) {
|
|
24682
|
+
_this2[kStream].destroy(null, function (err) {
|
|
24683
|
+
if (err) {
|
|
24684
|
+
reject(err);
|
|
24685
|
+
return;
|
|
24686
|
+
}
|
|
24687
|
+
resolve(createIterResult(undefined, true));
|
|
24688
|
+
});
|
|
24724
24689
|
});
|
|
24690
|
+
}), _Object$setPrototypeO), AsyncIteratorPrototype);
|
|
24691
|
+
var createReadableStreamAsyncIterator = function createReadableStreamAsyncIterator(stream) {
|
|
24692
|
+
var _Object$create;
|
|
24693
|
+
var iterator = Object.create(ReadableStreamAsyncIteratorPrototype, (_Object$create = {}, _defineProperty(_Object$create, kStream, {
|
|
24694
|
+
value: stream,
|
|
24695
|
+
writable: true
|
|
24696
|
+
}), _defineProperty(_Object$create, kLastResolve, {
|
|
24697
|
+
value: null,
|
|
24698
|
+
writable: true
|
|
24699
|
+
}), _defineProperty(_Object$create, kLastReject, {
|
|
24700
|
+
value: null,
|
|
24701
|
+
writable: true
|
|
24702
|
+
}), _defineProperty(_Object$create, kError, {
|
|
24703
|
+
value: null,
|
|
24704
|
+
writable: true
|
|
24705
|
+
}), _defineProperty(_Object$create, kEnded, {
|
|
24706
|
+
value: stream._readableState.endEmitted,
|
|
24707
|
+
writable: true
|
|
24708
|
+
}), _defineProperty(_Object$create, kHandlePromise, {
|
|
24709
|
+
value: function value(resolve, reject) {
|
|
24710
|
+
var data = iterator[kStream].read();
|
|
24711
|
+
if (data) {
|
|
24712
|
+
iterator[kLastPromise] = null;
|
|
24713
|
+
iterator[kLastResolve] = null;
|
|
24714
|
+
iterator[kLastReject] = null;
|
|
24715
|
+
resolve(createIterResult(data, false));
|
|
24716
|
+
} else {
|
|
24717
|
+
iterator[kLastResolve] = resolve;
|
|
24718
|
+
iterator[kLastReject] = reject;
|
|
24719
|
+
}
|
|
24720
|
+
},
|
|
24721
|
+
writable: true
|
|
24722
|
+
}), _Object$create));
|
|
24725
24723
|
iterator[kLastPromise] = null;
|
|
24726
|
-
finished(stream, err
|
|
24724
|
+
finished(stream, function (err) {
|
|
24727
24725
|
if (err && err.code !== 'ERR_STREAM_PREMATURE_CLOSE') {
|
|
24728
|
-
|
|
24726
|
+
var reject = iterator[kLastReject];
|
|
24729
24727
|
// reject if we are waiting for data in the Promise
|
|
24730
24728
|
// returned by next() and store the error
|
|
24731
24729
|
if (reject !== null) {
|
|
@@ -24737,7 +24735,7 @@ const createReadableStreamAsyncIterator = stream => {
|
|
|
24737
24735
|
iterator[kError] = err;
|
|
24738
24736
|
return;
|
|
24739
24737
|
}
|
|
24740
|
-
|
|
24738
|
+
var resolve = iterator[kLastResolve];
|
|
24741
24739
|
if (resolve !== null) {
|
|
24742
24740
|
iterator[kLastPromise] = null;
|
|
24743
24741
|
iterator[kLastResolve] = null;
|
|
@@ -24757,164 +24755,193 @@ module.exports = createReadableStreamAsyncIterator;
|
|
|
24757
24755
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
24758
24756
|
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
24759
24757
|
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
24758
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
24759
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
24760
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
24760
24761
|
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
24761
24762
|
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
24762
|
-
|
|
24763
|
+
var _require = require('buffer'),
|
|
24763
24764
|
Buffer = _require.Buffer;
|
|
24764
|
-
|
|
24765
|
+
var _require2 = require('util'),
|
|
24765
24766
|
inspect = _require2.inspect;
|
|
24766
|
-
|
|
24767
|
+
var custom = inspect && inspect.custom || 'inspect';
|
|
24767
24768
|
function copyBuffer(src, target, offset) {
|
|
24768
24769
|
Buffer.prototype.copy.call(src, target, offset);
|
|
24769
24770
|
}
|
|
24770
|
-
module.exports =
|
|
24771
|
-
|
|
24771
|
+
module.exports = /*#__PURE__*/function () {
|
|
24772
|
+
function BufferList() {
|
|
24773
|
+
_classCallCheck(this, BufferList);
|
|
24772
24774
|
this.head = null;
|
|
24773
24775
|
this.tail = null;
|
|
24774
24776
|
this.length = 0;
|
|
24775
24777
|
}
|
|
24776
|
-
|
|
24777
|
-
|
|
24778
|
-
|
|
24779
|
-
|
|
24780
|
-
|
|
24781
|
-
|
|
24782
|
-
|
|
24783
|
-
|
|
24784
|
-
|
|
24785
|
-
|
|
24786
|
-
|
|
24787
|
-
|
|
24788
|
-
|
|
24789
|
-
|
|
24790
|
-
|
|
24791
|
-
|
|
24792
|
-
|
|
24793
|
-
|
|
24794
|
-
|
|
24795
|
-
|
|
24796
|
-
|
|
24797
|
-
|
|
24798
|
-
|
|
24799
|
-
|
|
24800
|
-
|
|
24801
|
-
|
|
24802
|
-
|
|
24803
|
-
|
|
24804
|
-
|
|
24805
|
-
|
|
24806
|
-
|
|
24807
|
-
|
|
24808
|
-
|
|
24809
|
-
|
|
24810
|
-
|
|
24811
|
-
|
|
24812
|
-
|
|
24813
|
-
|
|
24814
|
-
|
|
24815
|
-
|
|
24816
|
-
|
|
24817
|
-
|
|
24818
|
-
|
|
24819
|
-
|
|
24820
|
-
|
|
24821
|
-
}
|
|
24822
|
-
|
|
24823
|
-
|
|
24824
|
-
|
|
24825
|
-
|
|
24826
|
-
|
|
24827
|
-
|
|
24828
|
-
|
|
24829
|
-
|
|
24830
|
-
|
|
24831
|
-
|
|
24832
|
-
|
|
24833
|
-
|
|
24834
|
-
ret
|
|
24835
|
-
}
|
|
24836
|
-
|
|
24837
|
-
|
|
24838
|
-
|
|
24839
|
-
|
|
24840
|
-
|
|
24841
|
-
|
|
24842
|
-
|
|
24843
|
-
|
|
24844
|
-
|
|
24845
|
-
|
|
24846
|
-
|
|
24847
|
-
|
|
24848
|
-
|
|
24849
|
-
|
|
24850
|
-
|
|
24851
|
-
|
|
24852
|
-
|
|
24853
|
-
|
|
24854
|
-
|
|
24855
|
-
|
|
24856
|
-
|
|
24857
|
-
|
|
24858
|
-
|
|
24859
|
-
|
|
24860
|
-
|
|
24861
|
-
|
|
24862
|
-
|
|
24778
|
+
_createClass(BufferList, [{
|
|
24779
|
+
key: "push",
|
|
24780
|
+
value: function push(v) {
|
|
24781
|
+
var entry = {
|
|
24782
|
+
data: v,
|
|
24783
|
+
next: null
|
|
24784
|
+
};
|
|
24785
|
+
if (this.length > 0) this.tail.next = entry;else this.head = entry;
|
|
24786
|
+
this.tail = entry;
|
|
24787
|
+
++this.length;
|
|
24788
|
+
}
|
|
24789
|
+
}, {
|
|
24790
|
+
key: "unshift",
|
|
24791
|
+
value: function unshift(v) {
|
|
24792
|
+
var entry = {
|
|
24793
|
+
data: v,
|
|
24794
|
+
next: this.head
|
|
24795
|
+
};
|
|
24796
|
+
if (this.length === 0) this.tail = entry;
|
|
24797
|
+
this.head = entry;
|
|
24798
|
+
++this.length;
|
|
24799
|
+
}
|
|
24800
|
+
}, {
|
|
24801
|
+
key: "shift",
|
|
24802
|
+
value: function shift() {
|
|
24803
|
+
if (this.length === 0) return;
|
|
24804
|
+
var ret = this.head.data;
|
|
24805
|
+
if (this.length === 1) this.head = this.tail = null;else this.head = this.head.next;
|
|
24806
|
+
--this.length;
|
|
24807
|
+
return ret;
|
|
24808
|
+
}
|
|
24809
|
+
}, {
|
|
24810
|
+
key: "clear",
|
|
24811
|
+
value: function clear() {
|
|
24812
|
+
this.head = this.tail = null;
|
|
24813
|
+
this.length = 0;
|
|
24814
|
+
}
|
|
24815
|
+
}, {
|
|
24816
|
+
key: "join",
|
|
24817
|
+
value: function join(s) {
|
|
24818
|
+
if (this.length === 0) return '';
|
|
24819
|
+
var p = this.head;
|
|
24820
|
+
var ret = '' + p.data;
|
|
24821
|
+
while (p = p.next) ret += s + p.data;
|
|
24822
|
+
return ret;
|
|
24823
|
+
}
|
|
24824
|
+
}, {
|
|
24825
|
+
key: "concat",
|
|
24826
|
+
value: function concat(n) {
|
|
24827
|
+
if (this.length === 0) return Buffer.alloc(0);
|
|
24828
|
+
var ret = Buffer.allocUnsafe(n >>> 0);
|
|
24829
|
+
var p = this.head;
|
|
24830
|
+
var i = 0;
|
|
24831
|
+
while (p) {
|
|
24832
|
+
copyBuffer(p.data, ret, i);
|
|
24833
|
+
i += p.data.length;
|
|
24834
|
+
p = p.next;
|
|
24835
|
+
}
|
|
24836
|
+
return ret;
|
|
24837
|
+
}
|
|
24838
|
+
|
|
24839
|
+
// Consumes a specified amount of bytes or characters from the buffered data.
|
|
24840
|
+
}, {
|
|
24841
|
+
key: "consume",
|
|
24842
|
+
value: function consume(n, hasStrings) {
|
|
24843
|
+
var ret;
|
|
24844
|
+
if (n < this.head.data.length) {
|
|
24845
|
+
// `slice` is the same for buffers and strings.
|
|
24846
|
+
ret = this.head.data.slice(0, n);
|
|
24847
|
+
this.head.data = this.head.data.slice(n);
|
|
24848
|
+
} else if (n === this.head.data.length) {
|
|
24849
|
+
// First chunk is a perfect match.
|
|
24850
|
+
ret = this.shift();
|
|
24851
|
+
} else {
|
|
24852
|
+
// Result spans more than one buffer.
|
|
24853
|
+
ret = hasStrings ? this._getString(n) : this._getBuffer(n);
|
|
24854
|
+
}
|
|
24855
|
+
return ret;
|
|
24856
|
+
}
|
|
24857
|
+
}, {
|
|
24858
|
+
key: "first",
|
|
24859
|
+
value: function first() {
|
|
24860
|
+
return this.head.data;
|
|
24861
|
+
}
|
|
24862
|
+
|
|
24863
|
+
// Consumes a specified amount of characters from the buffered data.
|
|
24864
|
+
}, {
|
|
24865
|
+
key: "_getString",
|
|
24866
|
+
value: function _getString(n) {
|
|
24867
|
+
var p = this.head;
|
|
24868
|
+
var c = 1;
|
|
24869
|
+
var ret = p.data;
|
|
24870
|
+
n -= ret.length;
|
|
24871
|
+
while (p = p.next) {
|
|
24872
|
+
var str = p.data;
|
|
24873
|
+
var nb = n > str.length ? str.length : n;
|
|
24874
|
+
if (nb === str.length) ret += str;else ret += str.slice(0, n);
|
|
24875
|
+
n -= nb;
|
|
24876
|
+
if (n === 0) {
|
|
24877
|
+
if (nb === str.length) {
|
|
24878
|
+
++c;
|
|
24879
|
+
if (p.next) this.head = p.next;else this.head = this.tail = null;
|
|
24880
|
+
} else {
|
|
24881
|
+
this.head = p;
|
|
24882
|
+
p.data = str.slice(nb);
|
|
24883
|
+
}
|
|
24884
|
+
break;
|
|
24863
24885
|
}
|
|
24864
|
-
|
|
24886
|
+
++c;
|
|
24865
24887
|
}
|
|
24866
|
-
|
|
24867
|
-
|
|
24868
|
-
|
|
24869
|
-
|
|
24870
|
-
|
|
24871
|
-
|
|
24872
|
-
|
|
24873
|
-
|
|
24874
|
-
|
|
24875
|
-
|
|
24876
|
-
|
|
24877
|
-
|
|
24878
|
-
|
|
24879
|
-
|
|
24880
|
-
|
|
24881
|
-
|
|
24882
|
-
|
|
24883
|
-
|
|
24884
|
-
|
|
24885
|
-
|
|
24886
|
-
|
|
24887
|
-
|
|
24888
|
-
|
|
24889
|
-
|
|
24890
|
-
|
|
24888
|
+
this.length -= c;
|
|
24889
|
+
return ret;
|
|
24890
|
+
}
|
|
24891
|
+
|
|
24892
|
+
// Consumes a specified amount of bytes from the buffered data.
|
|
24893
|
+
}, {
|
|
24894
|
+
key: "_getBuffer",
|
|
24895
|
+
value: function _getBuffer(n) {
|
|
24896
|
+
var ret = Buffer.allocUnsafe(n);
|
|
24897
|
+
var p = this.head;
|
|
24898
|
+
var c = 1;
|
|
24899
|
+
p.data.copy(ret);
|
|
24900
|
+
n -= p.data.length;
|
|
24901
|
+
while (p = p.next) {
|
|
24902
|
+
var buf = p.data;
|
|
24903
|
+
var nb = n > buf.length ? buf.length : n;
|
|
24904
|
+
buf.copy(ret, ret.length - n, 0, nb);
|
|
24905
|
+
n -= nb;
|
|
24906
|
+
if (n === 0) {
|
|
24907
|
+
if (nb === buf.length) {
|
|
24908
|
+
++c;
|
|
24909
|
+
if (p.next) this.head = p.next;else this.head = this.tail = null;
|
|
24910
|
+
} else {
|
|
24911
|
+
this.head = p;
|
|
24912
|
+
p.data = buf.slice(nb);
|
|
24913
|
+
}
|
|
24914
|
+
break;
|
|
24891
24915
|
}
|
|
24892
|
-
|
|
24916
|
+
++c;
|
|
24893
24917
|
}
|
|
24894
|
-
|
|
24918
|
+
this.length -= c;
|
|
24919
|
+
return ret;
|
|
24895
24920
|
}
|
|
24896
|
-
this.length -= c;
|
|
24897
|
-
return ret;
|
|
24898
|
-
}
|
|
24899
24921
|
|
|
24900
|
-
|
|
24901
|
-
|
|
24902
|
-
|
|
24903
|
-
|
|
24904
|
-
|
|
24905
|
-
|
|
24906
|
-
|
|
24907
|
-
|
|
24908
|
-
|
|
24909
|
-
};
|
|
24922
|
+
// Make sure the linked list only shows the minimal necessary information.
|
|
24923
|
+
}, {
|
|
24924
|
+
key: custom,
|
|
24925
|
+
value: function value(_, options) {
|
|
24926
|
+
return inspect(this, _objectSpread(_objectSpread({}, options), {}, {
|
|
24927
|
+
// Only inspect one level.
|
|
24928
|
+
depth: 0,
|
|
24929
|
+
// It should not recurse.
|
|
24930
|
+
customInspect: false
|
|
24931
|
+
}));
|
|
24932
|
+
}
|
|
24933
|
+
}]);
|
|
24934
|
+
return BufferList;
|
|
24935
|
+
}();
|
|
24910
24936
|
},{"buffer":227,"util":179}],215:[function(require,module,exports){
|
|
24911
24937
|
(function (process){(function (){
|
|
24912
24938
|
'use strict';
|
|
24913
24939
|
|
|
24914
24940
|
// undocumented cb() API, needed for core, not for public API
|
|
24915
24941
|
function destroy(err, cb) {
|
|
24916
|
-
|
|
24917
|
-
|
|
24942
|
+
var _this = this;
|
|
24943
|
+
var readableDestroyed = this._readableState && this._readableState.destroyed;
|
|
24944
|
+
var writableDestroyed = this._writableState && this._writableState.destroyed;
|
|
24918
24945
|
if (readableDestroyed || writableDestroyed) {
|
|
24919
24946
|
if (cb) {
|
|
24920
24947
|
cb(err);
|
|
@@ -24940,21 +24967,21 @@ function destroy(err, cb) {
|
|
|
24940
24967
|
if (this._writableState) {
|
|
24941
24968
|
this._writableState.destroyed = true;
|
|
24942
24969
|
}
|
|
24943
|
-
this._destroy(err || null, err
|
|
24970
|
+
this._destroy(err || null, function (err) {
|
|
24944
24971
|
if (!cb && err) {
|
|
24945
|
-
if (!
|
|
24946
|
-
process.nextTick(emitErrorAndCloseNT,
|
|
24947
|
-
} else if (!
|
|
24948
|
-
|
|
24949
|
-
process.nextTick(emitErrorAndCloseNT,
|
|
24972
|
+
if (!_this._writableState) {
|
|
24973
|
+
process.nextTick(emitErrorAndCloseNT, _this, err);
|
|
24974
|
+
} else if (!_this._writableState.errorEmitted) {
|
|
24975
|
+
_this._writableState.errorEmitted = true;
|
|
24976
|
+
process.nextTick(emitErrorAndCloseNT, _this, err);
|
|
24950
24977
|
} else {
|
|
24951
|
-
process.nextTick(emitCloseNT,
|
|
24978
|
+
process.nextTick(emitCloseNT, _this);
|
|
24952
24979
|
}
|
|
24953
24980
|
} else if (cb) {
|
|
24954
|
-
process.nextTick(emitCloseNT,
|
|
24981
|
+
process.nextTick(emitCloseNT, _this);
|
|
24955
24982
|
cb(err);
|
|
24956
24983
|
} else {
|
|
24957
|
-
process.nextTick(emitCloseNT,
|
|
24984
|
+
process.nextTick(emitCloseNT, _this);
|
|
24958
24985
|
}
|
|
24959
24986
|
});
|
|
24960
24987
|
return this;
|
|
@@ -24995,14 +25022,14 @@ function errorOrDestroy(stream, err) {
|
|
|
24995
25022
|
// the error to be emitted nextTick. In a future
|
|
24996
25023
|
// semver major update we should change the default to this.
|
|
24997
25024
|
|
|
24998
|
-
|
|
24999
|
-
|
|
25025
|
+
var rState = stream._readableState;
|
|
25026
|
+
var wState = stream._writableState;
|
|
25000
25027
|
if (rState && rState.autoDestroy || wState && wState.autoDestroy) stream.destroy(err);else stream.emit('error', err);
|
|
25001
25028
|
}
|
|
25002
25029
|
module.exports = {
|
|
25003
|
-
destroy,
|
|
25004
|
-
undestroy,
|
|
25005
|
-
errorOrDestroy
|
|
25030
|
+
destroy: destroy,
|
|
25031
|
+
undestroy: undestroy,
|
|
25032
|
+
errorOrDestroy: errorOrDestroy
|
|
25006
25033
|
};
|
|
25007
25034
|
}).call(this)}).call(this,require('_process'))
|
|
25008
25035
|
},{"_process":335}],216:[function(require,module,exports){
|
|
@@ -25011,9 +25038,9 @@ module.exports = {
|
|
|
25011
25038
|
|
|
25012
25039
|
'use strict';
|
|
25013
25040
|
|
|
25014
|
-
|
|
25041
|
+
var ERR_STREAM_PREMATURE_CLOSE = require('../../../errors').codes.ERR_STREAM_PREMATURE_CLOSE;
|
|
25015
25042
|
function once(callback) {
|
|
25016
|
-
|
|
25043
|
+
var called = false;
|
|
25017
25044
|
return function () {
|
|
25018
25045
|
if (called) return;
|
|
25019
25046
|
called = true;
|
|
@@ -25031,28 +25058,28 @@ function eos(stream, opts, callback) {
|
|
|
25031
25058
|
if (typeof opts === 'function') return eos(stream, null, opts);
|
|
25032
25059
|
if (!opts) opts = {};
|
|
25033
25060
|
callback = once(callback || noop);
|
|
25034
|
-
|
|
25035
|
-
|
|
25036
|
-
|
|
25061
|
+
var readable = opts.readable || opts.readable !== false && stream.readable;
|
|
25062
|
+
var writable = opts.writable || opts.writable !== false && stream.writable;
|
|
25063
|
+
var onlegacyfinish = function onlegacyfinish() {
|
|
25037
25064
|
if (!stream.writable) onfinish();
|
|
25038
25065
|
};
|
|
25039
25066
|
var writableEnded = stream._writableState && stream._writableState.finished;
|
|
25040
|
-
|
|
25067
|
+
var onfinish = function onfinish() {
|
|
25041
25068
|
writable = false;
|
|
25042
25069
|
writableEnded = true;
|
|
25043
25070
|
if (!readable) callback.call(stream);
|
|
25044
25071
|
};
|
|
25045
25072
|
var readableEnded = stream._readableState && stream._readableState.endEmitted;
|
|
25046
|
-
|
|
25073
|
+
var onend = function onend() {
|
|
25047
25074
|
readable = false;
|
|
25048
25075
|
readableEnded = true;
|
|
25049
25076
|
if (!writable) callback.call(stream);
|
|
25050
25077
|
};
|
|
25051
|
-
|
|
25078
|
+
var onerror = function onerror(err) {
|
|
25052
25079
|
callback.call(stream, err);
|
|
25053
25080
|
};
|
|
25054
|
-
|
|
25055
|
-
|
|
25081
|
+
var onclose = function onclose() {
|
|
25082
|
+
var err;
|
|
25056
25083
|
if (readable && !readableEnded) {
|
|
25057
25084
|
if (!stream._readableState || !stream._readableState.ended) err = new ERR_STREAM_PREMATURE_CLOSE();
|
|
25058
25085
|
return callback.call(stream, err);
|
|
@@ -25062,7 +25089,7 @@ function eos(stream, opts, callback) {
|
|
|
25062
25089
|
return callback.call(stream, err);
|
|
25063
25090
|
}
|
|
25064
25091
|
};
|
|
25065
|
-
|
|
25092
|
+
var onrequest = function onrequest() {
|
|
25066
25093
|
stream.req.on('finish', onfinish);
|
|
25067
25094
|
};
|
|
25068
25095
|
if (isRequest(stream)) {
|
|
@@ -25103,16 +25130,16 @@ module.exports = function () {
|
|
|
25103
25130
|
|
|
25104
25131
|
'use strict';
|
|
25105
25132
|
|
|
25106
|
-
|
|
25133
|
+
var eos;
|
|
25107
25134
|
function once(callback) {
|
|
25108
|
-
|
|
25135
|
+
var called = false;
|
|
25109
25136
|
return function () {
|
|
25110
25137
|
if (called) return;
|
|
25111
25138
|
called = true;
|
|
25112
|
-
callback(
|
|
25139
|
+
callback.apply(void 0, arguments);
|
|
25113
25140
|
};
|
|
25114
25141
|
}
|
|
25115
|
-
|
|
25142
|
+
var _require$codes = require('../../../errors').codes,
|
|
25116
25143
|
ERR_MISSING_ARGS = _require$codes.ERR_MISSING_ARGS,
|
|
25117
25144
|
ERR_STREAM_DESTROYED = _require$codes.ERR_STREAM_DESTROYED;
|
|
25118
25145
|
function noop(err) {
|
|
@@ -25124,21 +25151,21 @@ function isRequest(stream) {
|
|
|
25124
25151
|
}
|
|
25125
25152
|
function destroyer(stream, reading, writing, callback) {
|
|
25126
25153
|
callback = once(callback);
|
|
25127
|
-
|
|
25128
|
-
stream.on('close', ()
|
|
25154
|
+
var closed = false;
|
|
25155
|
+
stream.on('close', function () {
|
|
25129
25156
|
closed = true;
|
|
25130
25157
|
});
|
|
25131
25158
|
if (eos === undefined) eos = require('./end-of-stream');
|
|
25132
25159
|
eos(stream, {
|
|
25133
25160
|
readable: reading,
|
|
25134
25161
|
writable: writing
|
|
25135
|
-
}, err
|
|
25162
|
+
}, function (err) {
|
|
25136
25163
|
if (err) return callback(err);
|
|
25137
25164
|
closed = true;
|
|
25138
25165
|
callback();
|
|
25139
25166
|
});
|
|
25140
|
-
|
|
25141
|
-
return err
|
|
25167
|
+
var destroyed = false;
|
|
25168
|
+
return function (err) {
|
|
25142
25169
|
if (closed) return;
|
|
25143
25170
|
if (destroyed) return;
|
|
25144
25171
|
destroyed = true;
|
|
@@ -25164,15 +25191,15 @@ function pipeline() {
|
|
|
25164
25191
|
for (var _len = arguments.length, streams = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
25165
25192
|
streams[_key] = arguments[_key];
|
|
25166
25193
|
}
|
|
25167
|
-
|
|
25194
|
+
var callback = popCallback(streams);
|
|
25168
25195
|
if (Array.isArray(streams[0])) streams = streams[0];
|
|
25169
25196
|
if (streams.length < 2) {
|
|
25170
25197
|
throw new ERR_MISSING_ARGS('streams');
|
|
25171
25198
|
}
|
|
25172
|
-
|
|
25173
|
-
|
|
25174
|
-
|
|
25175
|
-
|
|
25199
|
+
var error;
|
|
25200
|
+
var destroys = streams.map(function (stream, i) {
|
|
25201
|
+
var reading = i < streams.length - 1;
|
|
25202
|
+
var writing = i > 0;
|
|
25176
25203
|
return destroyer(stream, reading, writing, function (err) {
|
|
25177
25204
|
if (!error) error = err;
|
|
25178
25205
|
if (err) destroys.forEach(call);
|
|
@@ -25187,15 +25214,15 @@ module.exports = pipeline;
|
|
|
25187
25214
|
},{"../../../errors":207,"./end-of-stream":216}],219:[function(require,module,exports){
|
|
25188
25215
|
'use strict';
|
|
25189
25216
|
|
|
25190
|
-
|
|
25217
|
+
var ERR_INVALID_OPT_VALUE = require('../../../errors').codes.ERR_INVALID_OPT_VALUE;
|
|
25191
25218
|
function highWaterMarkFrom(options, isDuplex, duplexKey) {
|
|
25192
25219
|
return options.highWaterMark != null ? options.highWaterMark : isDuplex ? options[duplexKey] : null;
|
|
25193
25220
|
}
|
|
25194
25221
|
function getHighWaterMark(state, options, duplexKey, isDuplex) {
|
|
25195
|
-
|
|
25222
|
+
var hwm = highWaterMarkFrom(options, isDuplex, duplexKey);
|
|
25196
25223
|
if (hwm != null) {
|
|
25197
25224
|
if (!(isFinite(hwm) && Math.floor(hwm) === hwm) || hwm < 0) {
|
|
25198
|
-
|
|
25225
|
+
var name = isDuplex ? duplexKey : 'highWaterMark';
|
|
25199
25226
|
throw new ERR_INVALID_OPT_VALUE(name, hwm);
|
|
25200
25227
|
}
|
|
25201
25228
|
return Math.floor(hwm);
|
|
@@ -25205,7 +25232,7 @@ function getHighWaterMark(state, options, duplexKey, isDuplex) {
|
|
|
25205
25232
|
return state.objectMode ? 16 : 16 * 1024;
|
|
25206
25233
|
}
|
|
25207
25234
|
module.exports = {
|
|
25208
|
-
getHighWaterMark
|
|
25235
|
+
getHighWaterMark: getHighWaterMark
|
|
25209
25236
|
};
|
|
25210
25237
|
},{"../../../errors":207}],220:[function(require,module,exports){
|
|
25211
25238
|
module.exports = require('events').EventEmitter;
|
|
@@ -53319,7 +53346,7 @@ function extend() {
|
|
|
53319
53346
|
exports.AgentFactory = AgentFactory;
|
|
53320
53347
|
});
|
|
53321
53348
|
|
|
53322
|
-
},{"../../common/agent-events/agent-events-conracts":
|
|
53349
|
+
},{"../../common/agent-events/agent-events-conracts":454,"../../common/agent-events/cockpit-notifier":461,"../../common/agent-instance-data":467,"../../common/config-process":471,"../../common/config-process/config-loader":468,"../../common/config-process/no-op-config-process":472,"../../common/footprints-process-v6/collector-footprints-buffer":486,"../../common/footprints-process-v6/collector-footprints-process":487,"../../common/footprints-process-v6/footprints-buffer":488,"../../common/footprints-process-v6/index":491,"../../common/footprints-process-v6/relative-path-resolver":493,"../../common/http/backend-proxy":495,"../../common/no-op-state-tracker":501,"../../common/state-tracker-fpv6":503,"../../common/system-date":505,"./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":431,"./istanbul-to-footprints-convertor":433,"./istanbul-to-footprints-convertor-v3":432,"./logger/log-factory":436,"./queues/footprints-items-queue":438,"./queues/queue":439,"./services/http/http-client":440,"./services/json/json-client":444,"./services/json/json-client-adapter":443,"./services/json/noop-json-client":445,"./services/light-backend-proxy":446,"./sl-mapping-loader":447,"./state-tracker":448,"./test-state-helper":449,"./watchdog":451,"./window-timers-wrapper":452}],405:[function(require,module,exports){
|
|
53323
53350
|
(function (factory) {
|
|
53324
53351
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
53325
53352
|
var v = factory(require, exports);
|
|
@@ -53553,7 +53580,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
53553
53580
|
exports.BrowserAgentInstance = BrowserAgentInstance;
|
|
53554
53581
|
});
|
|
53555
53582
|
|
|
53556
|
-
},{"../../common/agent-events/cockpit-notifier":
|
|
53583
|
+
},{"../../common/agent-events/cockpit-notifier":461,"./basic-uuid-generator":405,"./config":414,"./karma-handler":434}],408:[function(require,module,exports){
|
|
53557
53584
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
53558
53585
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
53559
53586
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -53690,7 +53717,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
53690
53717
|
exports.BrowserEventsProcess = BrowserEventsProcess;
|
|
53691
53718
|
});
|
|
53692
53719
|
|
|
53693
|
-
},{"../../common/events-process":
|
|
53720
|
+
},{"../../common/events-process":483}],410:[function(require,module,exports){
|
|
53694
53721
|
(function (factory) {
|
|
53695
53722
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
53696
53723
|
var v = factory(require, exports);
|
|
@@ -53721,7 +53748,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
53721
53748
|
exports.BrowserHitsCollector = BrowserHitsCollector;
|
|
53722
53749
|
});
|
|
53723
53750
|
|
|
53724
|
-
},{"../../common/footprints-process-v6/hits-collector":
|
|
53751
|
+
},{"../../common/footprints-process-v6/hits-collector":489}],411:[function(require,module,exports){
|
|
53725
53752
|
(function (factory) {
|
|
53726
53753
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
53727
53754
|
var v = factory(require, exports);
|
|
@@ -53747,7 +53774,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
53747
53774
|
exports.BrowserHitsConverter = BrowserHitsConverter;
|
|
53748
53775
|
});
|
|
53749
53776
|
|
|
53750
|
-
},{"../../common/footprints-process-v6/base-browser-hits-converter":
|
|
53777
|
+
},{"../../common/footprints-process-v6/base-browser-hits-converter":484}],412:[function(require,module,exports){
|
|
53751
53778
|
(function (factory) {
|
|
53752
53779
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
53753
53780
|
var v = factory(require, exports);
|
|
@@ -53910,7 +53937,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
53910
53937
|
"use strict";
|
|
53911
53938
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53912
53939
|
exports.SL_AGENT_TYPE = exports.SL_AGENT_VERSION = void 0;
|
|
53913
|
-
exports.SL_AGENT_VERSION = '6.1.
|
|
53940
|
+
exports.SL_AGENT_VERSION = '6.1.336';
|
|
53914
53941
|
exports.SL_AGENT_TYPE = 'browser';
|
|
53915
53942
|
});
|
|
53916
53943
|
|
|
@@ -54260,18 +54287,31 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54260
54287
|
})(function (require, exports) {
|
|
54261
54288
|
"use strict";
|
|
54262
54289
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54263
|
-
exports.relativePathRegex = exports.EVENTS = exports.SL_TEST_NAME = exports.SL_SESSION_ID = exports.SL_CONTEXT_KEY = exports.SL_BAGGAGE_HEADER = void 0;
|
|
54290
|
+
exports.relativePathRegex = exports.EVENTS = exports.EVENT_TYPES = exports.CONTEXT = exports.SL_EVENTS_BRIDGE = exports.SL_TEST_NAME = exports.SL_SESSION_ID = exports.SL_CONTEXT_KEY = exports.SL_BAGGAGE_HEADER = void 0;
|
|
54264
54291
|
exports.SL_BAGGAGE_HEADER = 'baggage';
|
|
54265
54292
|
exports.SL_CONTEXT_KEY = 'sl-context';
|
|
54266
54293
|
exports.SL_SESSION_ID = 'x-sl-test-session-id';
|
|
54267
54294
|
exports.SL_TEST_NAME = 'x-sl-test-name';
|
|
54295
|
+
exports.SL_EVENTS_BRIDGE = 'sl-events-bridge';
|
|
54296
|
+
exports.CONTEXT = 'context';
|
|
54297
|
+
exports.EVENT_TYPES = {
|
|
54298
|
+
SET: 'set',
|
|
54299
|
+
ACK: 'ack',
|
|
54300
|
+
DELETE: 'delete',
|
|
54301
|
+
READY: 'ready',
|
|
54302
|
+
REQUEST: 'request',
|
|
54303
|
+
RESPONSE: 'response',
|
|
54304
|
+
};
|
|
54268
54305
|
exports.EVENTS = {
|
|
54269
|
-
SET_BAGGAGE:
|
|
54270
|
-
|
|
54271
|
-
|
|
54272
|
-
|
|
54273
|
-
|
|
54274
|
-
|
|
54306
|
+
SET_BAGGAGE: `${exports.EVENT_TYPES.SET}:${exports.SL_BAGGAGE_HEADER}`,
|
|
54307
|
+
SET_CONTEXT: `${exports.EVENT_TYPES.SET}:${exports.CONTEXT}`,
|
|
54308
|
+
ACK_BAGGAGE: `${exports.EVENT_TYPES.ACK}:${exports.SL_BAGGAGE_HEADER}`,
|
|
54309
|
+
ACK_CONTEXT: `${exports.EVENT_TYPES.ACK}:${exports.CONTEXT}`,
|
|
54310
|
+
DELETE_BAGGAGE: `${exports.EVENT_TYPES.DELETE}:${exports.SL_BAGGAGE_HEADER}`,
|
|
54311
|
+
DELETE_CONTEXT: `${exports.EVENT_TYPES.DELETE}:${exports.CONTEXT}`,
|
|
54312
|
+
READY_EVENTS_BRIDGE: `${exports.EVENT_TYPES.READY}:${exports.SL_EVENTS_BRIDGE}`,
|
|
54313
|
+
REQUEST_AGENT_CONTEXT: `${exports.EVENT_TYPES.REQUEST}:${exports.SL_CONTEXT_KEY}`,
|
|
54314
|
+
RESPONSE_AGENT_CONTEXT: `${exports.EVENT_TYPES.RESPONSE}:${exports.SL_CONTEXT_KEY}`,
|
|
54275
54315
|
};
|
|
54276
54316
|
exports.relativePathRegex = new RegExp('^(?!www\\.|(?:http|ftp)s?://|[A-Za-z]:\\\\|//).*');
|
|
54277
54317
|
});
|
|
@@ -54283,7 +54323,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54283
54323
|
if (v !== undefined) module.exports = v;
|
|
54284
54324
|
}
|
|
54285
54325
|
else if (typeof define === "function" && define.amd) {
|
|
54286
|
-
define(["require", "exports", "./const", "@opentelemetry/api", "
|
|
54326
|
+
define(["require", "exports", "./const", "@opentelemetry/api", "../../../common/agent-events/cockpit-notifier"], factory);
|
|
54287
54327
|
}
|
|
54288
54328
|
})(function (require, exports) {
|
|
54289
54329
|
"use strict";
|
|
@@ -54291,7 +54331,6 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54291
54331
|
exports.registerEvents = void 0;
|
|
54292
54332
|
const SlConst = require("./const");
|
|
54293
54333
|
const api = require("@opentelemetry/api");
|
|
54294
|
-
const const_1 = require("./const");
|
|
54295
54334
|
const cockpit_notifier_1 = require("../../../common/agent-events/cockpit-notifier");
|
|
54296
54335
|
const registerEvents = (logger, withOpenTelemetry) => {
|
|
54297
54336
|
try {
|
|
@@ -54302,19 +54341,20 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54302
54341
|
};
|
|
54303
54342
|
if (withOpenTelemetry) {
|
|
54304
54343
|
SlContext = api.ROOT_CONTEXT.setValue(api.createContextKey(SlConst.SL_CONTEXT_KEY), true);
|
|
54305
|
-
window.$Sealights.eventsBridge.getBaggage = () => SlContext.getValue(api.createContextKey(SlConst.SL_BAGGAGE_HEADER));
|
|
54344
|
+
window.$Sealights.eventsBridge.getBaggage = () => (SlContext.getValue(api.createContextKey(SlConst.SL_BAGGAGE_HEADER)));
|
|
54345
|
+
window.$Sealights.eventsBridge.getContext = () => (SlContext.getValue(api.createContextKey(SlConst.CONTEXT)));
|
|
54306
54346
|
window.$Sealights.eventsBridge.otel = true;
|
|
54307
54347
|
}
|
|
54308
54348
|
addEventListener(SlConst.EVENTS.SET_BAGGAGE, ({ detail }) => {
|
|
54309
54349
|
var _a, _b;
|
|
54310
|
-
const sessionId = detail === null || detail === void 0 ? void 0 : detail[
|
|
54311
|
-
const testName = detail === null || detail === void 0 ? void 0 : detail[
|
|
54350
|
+
const sessionId = detail === null || detail === void 0 ? void 0 : detail[SlConst.SL_SESSION_ID];
|
|
54351
|
+
const testName = detail === null || detail === void 0 ? void 0 : detail[SlConst.SL_TEST_NAME];
|
|
54312
54352
|
if (!(sessionId === null || sessionId === void 0 ? void 0 : sessionId.length) || !(testName === null || testName === void 0 ? void 0 : testName.length))
|
|
54313
54353
|
return;
|
|
54314
54354
|
if (withOpenTelemetry) {
|
|
54315
54355
|
SlContext = SlContext.setValue(api.createContextKey(SlConst.SL_BAGGAGE_HEADER), {
|
|
54316
|
-
[
|
|
54317
|
-
[
|
|
54356
|
+
[SlConst.SL_SESSION_ID]: sessionId,
|
|
54357
|
+
[SlConst.SL_TEST_NAME]: encodeURI(testName),
|
|
54318
54358
|
});
|
|
54319
54359
|
}
|
|
54320
54360
|
(_b = (_a = window.$SealightsAgent) === null || _a === void 0 ? void 0 : _a.setCurrentTestIdentifier) === null || _b === void 0 ? void 0 : _b.call(_a, `${sessionId}/${testName}`);
|
|
@@ -54322,6 +54362,19 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54322
54362
|
detail,
|
|
54323
54363
|
}));
|
|
54324
54364
|
});
|
|
54365
|
+
addEventListener(SlConst.EVENTS.SET_CONTEXT, ({ detail }) => {
|
|
54366
|
+
var _a;
|
|
54367
|
+
dispatchEvent(new CustomEvent(SlConst.EVENTS.SET_BAGGAGE, {
|
|
54368
|
+
detail: Object.assign({}, ((_a = detail[SlConst.SL_BAGGAGE_HEADER]) !== null && _a !== void 0 ? _a : {})),
|
|
54369
|
+
}));
|
|
54370
|
+
delete detail[SlConst.SL_BAGGAGE_HEADER];
|
|
54371
|
+
if (withOpenTelemetry) {
|
|
54372
|
+
SlContext = SlContext.setValue(api.createContextKey(SlConst.CONTEXT), detail);
|
|
54373
|
+
}
|
|
54374
|
+
dispatchEvent(new CustomEvent(SlConst.EVENTS.ACK_CONTEXT, {
|
|
54375
|
+
detail,
|
|
54376
|
+
}));
|
|
54377
|
+
});
|
|
54325
54378
|
addEventListener(SlConst.EVENTS.REQUEST_AGENT_CONTEXT, () => {
|
|
54326
54379
|
dispatchEvent(new CustomEvent(SlConst.EVENTS.RESPONSE_AGENT_CONTEXT, {
|
|
54327
54380
|
detail: { components: window.$Sealights.components || {} },
|
|
@@ -54332,6 +54385,12 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54332
54385
|
SlContext = SlContext.deleteValue(api.createContextKey(SlConst.SL_BAGGAGE_HEADER));
|
|
54333
54386
|
(_b = (_a = window.$SealightsAgent) === null || _a === void 0 ? void 0 : _a.setCurrentTestIdentifier) === null || _b === void 0 ? void 0 : _b.call(_a, null);
|
|
54334
54387
|
});
|
|
54388
|
+
addEventListener(SlConst.EVENTS.DELETE_CONTEXT, () => {
|
|
54389
|
+
var _a, _b;
|
|
54390
|
+
SlContext = SlContext.deleteValue(api.createContextKey(SlConst.SL_BAGGAGE_HEADER));
|
|
54391
|
+
SlContext = SlContext.deleteValue(api.createContextKey(SlConst.CONTEXT));
|
|
54392
|
+
(_b = (_a = window.$SealightsAgent) === null || _a === void 0 ? void 0 : _a.setCurrentTestIdentifier) === null || _b === void 0 ? void 0 : _b.call(_a, null);
|
|
54393
|
+
});
|
|
54335
54394
|
window.$Sealights.eventsBridge.loaded = true;
|
|
54336
54395
|
logger.info(`Events Bridge integration loaded. All events registered successfully. OpenTelemetry status: ${withOpenTelemetry}`);
|
|
54337
54396
|
}
|
|
@@ -54344,7 +54403,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54344
54403
|
exports.registerEvents = registerEvents;
|
|
54345
54404
|
});
|
|
54346
54405
|
|
|
54347
|
-
},{"../../../common/agent-events/cockpit-notifier":
|
|
54406
|
+
},{"../../../common/agent-events/cockpit-notifier":461,"./const":423,"@opentelemetry/api":18}],425:[function(require,module,exports){
|
|
54348
54407
|
(function (factory) {
|
|
54349
54408
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
54350
54409
|
var v = factory(require, exports);
|
|
@@ -54374,7 +54433,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54374
54433
|
if (!startsWithOrigin && !isRelativeUrl) {
|
|
54375
54434
|
return;
|
|
54376
54435
|
}
|
|
54377
|
-
const contextPropagationHeaders = (0, utils_1.constructBaggageHeader)();
|
|
54436
|
+
const contextPropagationHeaders = Object.assign(Object.assign({}, (0, utils_1.constructBaggageHeader)()), (0, utils_1.constructContextHeaders)());
|
|
54378
54437
|
if (options instanceof Request && contextPropagationHeaders) {
|
|
54379
54438
|
setPropagationHeaders(options, contextPropagationHeaders);
|
|
54380
54439
|
}
|
|
@@ -54387,8 +54446,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54387
54446
|
}
|
|
54388
54447
|
}
|
|
54389
54448
|
else {
|
|
54390
|
-
|
|
54391
|
-
options.headers = Object.assign({}, headers, options.headers || {});
|
|
54449
|
+
options.headers = Object.assign({}, contextPropagationHeaders, options.headers || {});
|
|
54392
54450
|
}
|
|
54393
54451
|
}
|
|
54394
54452
|
exports.handleAddHeaders = handleAddHeaders;
|
|
@@ -54418,16 +54476,16 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54418
54476
|
const utils_1 = require("../utils");
|
|
54419
54477
|
const const_1 = require("../const");
|
|
54420
54478
|
function handleAddHeaders(xhr, spanUrl) {
|
|
54421
|
-
var _a;
|
|
54422
54479
|
const origin = window.location.origin;
|
|
54423
54480
|
const startsWithOrigin = spanUrl === null || spanUrl === void 0 ? void 0 : spanUrl.startsWith(origin);
|
|
54424
54481
|
const isRelativeUrl = const_1.relativePathRegex.test(spanUrl);
|
|
54425
54482
|
if (!startsWithOrigin && !isRelativeUrl) {
|
|
54426
54483
|
return;
|
|
54427
54484
|
}
|
|
54428
|
-
const headers = (0, utils_1.constructBaggageHeader)();
|
|
54429
|
-
|
|
54430
|
-
xhr.setRequestHeader(
|
|
54485
|
+
const headers = Object.assign(Object.assign({}, (0, utils_1.constructBaggageHeader)()), (0, utils_1.constructContextHeaders)());
|
|
54486
|
+
Object.keys(headers).forEach((headerKey) => {
|
|
54487
|
+
xhr.setRequestHeader(headerKey, headers[headerKey]);
|
|
54488
|
+
});
|
|
54431
54489
|
}
|
|
54432
54490
|
exports.handleAddHeaders = handleAddHeaders;
|
|
54433
54491
|
class CustomXMLHttpRequestInstrumentation extends instrumentation_xml_http_request_1.XMLHttpRequestInstrumentation {
|
|
@@ -54506,7 +54564,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54506
54564
|
exports.registerOpenTelemetry = registerOpenTelemetry;
|
|
54507
54565
|
});
|
|
54508
54566
|
|
|
54509
|
-
},{"../../../common/agent-events/cockpit-notifier":
|
|
54567
|
+
},{"../../../common/agent-events/cockpit-notifier":461,"./implementations/CustomFetchInstrumentation":425,"./implementations/CustomXMLHttpRequestInstrumentation":426,"@opentelemetry/instrumentation":98}],429:[function(require,module,exports){
|
|
54510
54568
|
(function (factory) {
|
|
54511
54569
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
54512
54570
|
var v = factory(require, exports);
|
|
@@ -54518,23 +54576,47 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54518
54576
|
})(function (require, exports) {
|
|
54519
54577
|
"use strict";
|
|
54520
54578
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54521
|
-
exports.constructBaggageHeader = void 0;
|
|
54579
|
+
exports.constructContextHeaders = exports.constructBaggageHeader = exports.mapHeaderValuesToString = void 0;
|
|
54580
|
+
const mapHeaderValuesToString = (headerValues) => {
|
|
54581
|
+
return Object.keys(headerValues !== null && headerValues !== void 0 ? headerValues : {})
|
|
54582
|
+
.map((key) => {
|
|
54583
|
+
return `${key}=${headerValues[key]}`;
|
|
54584
|
+
})
|
|
54585
|
+
.join();
|
|
54586
|
+
};
|
|
54587
|
+
exports.mapHeaderValuesToString = mapHeaderValuesToString;
|
|
54522
54588
|
const constructBaggageHeader = () => {
|
|
54523
54589
|
var _a, _b;
|
|
54524
54590
|
const { getBaggage } = ((_a = window.$Sealights) === null || _a === void 0 ? void 0 : _a.eventsBridge) || {};
|
|
54525
54591
|
const baggage = (_b = getBaggage === null || getBaggage === void 0 ? void 0 : getBaggage()) !== null && _b !== void 0 ? _b : {};
|
|
54526
|
-
if (!Object.keys(baggage
|
|
54592
|
+
if (!Object.keys(baggage).length) {
|
|
54527
54593
|
return {};
|
|
54528
54594
|
}
|
|
54529
54595
|
return {
|
|
54530
|
-
baggage:
|
|
54531
|
-
.map((key) => {
|
|
54532
|
-
return `${key}=${baggage[key]}`;
|
|
54533
|
-
})
|
|
54534
|
-
.join(),
|
|
54596
|
+
baggage: (0, exports.mapHeaderValuesToString)(baggage),
|
|
54535
54597
|
};
|
|
54536
54598
|
};
|
|
54537
54599
|
exports.constructBaggageHeader = constructBaggageHeader;
|
|
54600
|
+
const constructContextHeaders = () => {
|
|
54601
|
+
var _a, _b;
|
|
54602
|
+
const { getContext } = ((_a = window.$Sealights) === null || _a === void 0 ? void 0 : _a.eventsBridge) || {};
|
|
54603
|
+
const contextHeaders = (_b = getContext === null || getContext === void 0 ? void 0 : getContext()) !== null && _b !== void 0 ? _b : {};
|
|
54604
|
+
if (!Object.keys(contextHeaders).length) {
|
|
54605
|
+
return {};
|
|
54606
|
+
}
|
|
54607
|
+
const headers = {};
|
|
54608
|
+
Object.entries(contextHeaders).forEach((entry) => {
|
|
54609
|
+
const [key, value] = entry;
|
|
54610
|
+
if (typeof value === 'string') {
|
|
54611
|
+
headers[key] = value;
|
|
54612
|
+
}
|
|
54613
|
+
else {
|
|
54614
|
+
headers[key] = (0, exports.mapHeaderValuesToString)(value);
|
|
54615
|
+
}
|
|
54616
|
+
});
|
|
54617
|
+
return headers;
|
|
54618
|
+
};
|
|
54619
|
+
exports.constructContextHeaders = constructContextHeaders;
|
|
54538
54620
|
});
|
|
54539
54621
|
|
|
54540
54622
|
},{}],430:[function(require,module,exports){
|
|
@@ -54781,7 +54863,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
54781
54863
|
exports.FootprintsQueueSender = FootprintsQueueSender;
|
|
54782
54864
|
});
|
|
54783
54865
|
|
|
54784
|
-
},{"../../common/system-date":
|
|
54866
|
+
},{"../../common/system-date":505,"./entities/footprints-item-data":422}],432:[function(require,module,exports){
|
|
54785
54867
|
(function (factory) {
|
|
54786
54868
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
54787
54869
|
var v = factory(require, exports);
|
|
@@ -55036,7 +55118,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
55036
55118
|
exports.IstanbulToFootprintsConvertorV3 = IstanbulToFootprintsConvertorV3;
|
|
55037
55119
|
});
|
|
55038
55120
|
|
|
55039
|
-
},{"../../common/footprints-process-v6/location-formatter":
|
|
55121
|
+
},{"../../common/footprints-process-v6/location-formatter":492,"../../common/footprints-process/collection-interval":494,"../../common/system-date":505,"./logger/log-factory":436}],433:[function(require,module,exports){
|
|
55040
55122
|
(function (factory) {
|
|
55041
55123
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
55042
55124
|
var v = factory(require, exports);
|
|
@@ -55217,7 +55299,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
55217
55299
|
exports.KarmaHandler = KarmaHandler;
|
|
55218
55300
|
});
|
|
55219
55301
|
|
|
55220
|
-
},{"../../common/events-process/events-contracts":
|
|
55302
|
+
},{"../../common/events-process/events-contracts":481,"../../common/events-process/events-creator":482,"../../common/utils/validation-utils":509,"./browser-agent-instance":407}],435:[function(require,module,exports){
|
|
55221
55303
|
(function (factory) {
|
|
55222
55304
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
55223
55305
|
var v = factory(require, exports);
|
|
@@ -55408,7 +55490,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
55408
55490
|
exports.ConsoleLogger = ConsoleLogger;
|
|
55409
55491
|
});
|
|
55410
55492
|
|
|
55411
|
-
},{"../../../common/system-date":
|
|
55493
|
+
},{"../../../common/system-date":505,"../configuration-override":416}],436:[function(require,module,exports){
|
|
55412
55494
|
(function (factory) {
|
|
55413
55495
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
55414
55496
|
var v = factory(require, exports);
|
|
@@ -55576,7 +55658,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
55576
55658
|
exports.FootprintsItemsQueue = FootprintsItemsQueue;
|
|
55577
55659
|
});
|
|
55578
55660
|
|
|
55579
|
-
},{"../../../common/system-date":
|
|
55661
|
+
},{"../../../common/system-date":505,"../delegate":418,"../entities/footprints-item-data":422}],439:[function(require,module,exports){
|
|
55580
55662
|
(function (factory) {
|
|
55581
55663
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
55582
55664
|
var v = factory(require, exports);
|
|
@@ -55643,7 +55725,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
55643
55725
|
Queue.DEFAULT_MAX_ITEMS_IN_QUEUE = 1000;
|
|
55644
55726
|
});
|
|
55645
55727
|
|
|
55646
|
-
},{"../../../common/utils/validation-utils":
|
|
55728
|
+
},{"../../../common/utils/validation-utils":509}],440:[function(require,module,exports){
|
|
55647
55729
|
(function (factory) {
|
|
55648
55730
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
55649
55731
|
var v = factory(require, exports);
|
|
@@ -55804,7 +55886,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
55804
55886
|
exports.JsonClientAdapter = JsonClientAdapter;
|
|
55805
55887
|
});
|
|
55806
55888
|
|
|
55807
|
-
},{"../../../../common/utils/validation-utils":
|
|
55889
|
+
},{"../../../../common/utils/validation-utils":509}],444:[function(require,module,exports){
|
|
55808
55890
|
(function (factory) {
|
|
55809
55891
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
55810
55892
|
var v = factory(require, exports);
|
|
@@ -55915,7 +55997,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
55915
55997
|
exports.JsonClient = JsonClient;
|
|
55916
55998
|
});
|
|
55917
55999
|
|
|
55918
|
-
},{"../../../../common/http/contracts":
|
|
56000
|
+
},{"../../../../common/http/contracts":496,"../http/http-request":441}],445:[function(require,module,exports){
|
|
55919
56001
|
(function (factory) {
|
|
55920
56002
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
55921
56003
|
var v = factory(require, exports);
|
|
@@ -56037,7 +56119,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
56037
56119
|
exports.SlMappingLoader = SlMappingLoader;
|
|
56038
56120
|
});
|
|
56039
56121
|
|
|
56040
|
-
},{"../../common/agent-events/cockpit-notifier":
|
|
56122
|
+
},{"../../common/agent-events/cockpit-notifier":461}],448:[function(require,module,exports){
|
|
56041
56123
|
(function (factory) {
|
|
56042
56124
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
56043
56125
|
var v = factory(require, exports);
|
|
@@ -56363,6 +56445,49 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
56363
56445
|
});
|
|
56364
56446
|
|
|
56365
56447
|
},{}],453:[function(require,module,exports){
|
|
56448
|
+
(function (factory) {
|
|
56449
|
+
if (typeof module === "object" && typeof module.exports === "object") {
|
|
56450
|
+
var v = factory(require, exports);
|
|
56451
|
+
if (v !== undefined) module.exports = v;
|
|
56452
|
+
}
|
|
56453
|
+
else if (typeof define === "function" && define.amd) {
|
|
56454
|
+
define(["require", "exports"], factory);
|
|
56455
|
+
}
|
|
56456
|
+
})(function (require, exports) {
|
|
56457
|
+
"use strict";
|
|
56458
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56459
|
+
exports.COMMAND_ARGS = exports.COMMANDS = void 0;
|
|
56460
|
+
var COMMANDS;
|
|
56461
|
+
(function (COMMANDS) {
|
|
56462
|
+
COMMANDS["CONFIG"] = "config";
|
|
56463
|
+
COMMANDS["PR_CONFIG"] = "prConfig";
|
|
56464
|
+
COMMANDS["BUILD"] = "build";
|
|
56465
|
+
COMMANDS["SCAN"] = "scan";
|
|
56466
|
+
COMMANDS["MOCHA"] = "mocha";
|
|
56467
|
+
COMMANDS["JASMINE"] = "jasmine";
|
|
56468
|
+
COMMANDS["MOCHA_PHANTOM_JS"] = "mochaPhantomjs";
|
|
56469
|
+
COMMANDS["RUN"] = "run";
|
|
56470
|
+
COMMANDS["START"] = "start";
|
|
56471
|
+
COMMANDS["END"] = "end";
|
|
56472
|
+
COMMANDS["UPLOAD_REPORTS"] = "uploadReports";
|
|
56473
|
+
COMMANDS["EXTERNAL_REPORT"] = "externalReport";
|
|
56474
|
+
COMMANDS["NYC_REPORT"] = "nycReport";
|
|
56475
|
+
COMMANDS["INSTALL_BABEL"] = "installBabel";
|
|
56476
|
+
COMMANDS["COMPONENT_UPDATE"] = "componentUpdate";
|
|
56477
|
+
COMMANDS["COMPONENT_DELETE"] = "componentDelete";
|
|
56478
|
+
COMMANDS["BUILD_END"] = "buildend";
|
|
56479
|
+
COMMANDS["SCANNED"] = "scanned";
|
|
56480
|
+
COMMANDS["DRY_RUN"] = "dryRun";
|
|
56481
|
+
})(COMMANDS = exports.COMMANDS || (exports.COMMANDS = {}));
|
|
56482
|
+
var COMMAND_ARGS;
|
|
56483
|
+
(function (COMMAND_ARGS) {
|
|
56484
|
+
COMMAND_ARGS["USE_OTEL"] = "useOtel";
|
|
56485
|
+
COMMAND_ARGS["ENABLE_OPEN_TELEMETRY"] = "enableOpenTelemetry";
|
|
56486
|
+
COMMAND_ARGS["INSTRUMENT_FOR_BROWSERS"] = "instrumentForBrowsers";
|
|
56487
|
+
})(COMMAND_ARGS = exports.COMMAND_ARGS || (exports.COMMAND_ARGS = {}));
|
|
56488
|
+
});
|
|
56489
|
+
|
|
56490
|
+
},{}],454:[function(require,module,exports){
|
|
56366
56491
|
(function (factory) {
|
|
56367
56492
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
56368
56493
|
var v = factory(require, exports);
|
|
@@ -56426,7 +56551,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
56426
56551
|
})(Technology = exports.Technology || (exports.Technology = {}));
|
|
56427
56552
|
});
|
|
56428
56553
|
|
|
56429
|
-
},{}],
|
|
56554
|
+
},{}],455:[function(require,module,exports){
|
|
56430
56555
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
56431
56556
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
56432
56557
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -56442,7 +56567,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
56442
56567
|
if (v !== undefined) module.exports = v;
|
|
56443
56568
|
}
|
|
56444
56569
|
else if (typeof define === "function" && define.amd) {
|
|
56445
|
-
define(["require", "exports", "./agent-events-conracts", "./agent-instance-info-builder", "./machine-info-builder", "./nodejs-env-info-builder", "./agent-start-info-builder", "./ci-info-builder", "../http/backend-proxy", "../utils/validation-utils", "../watchdog", "../system-date"], factory);
|
|
56570
|
+
define(["require", "exports", "./agent-events-conracts", "./agent-instance-info-builder", "./machine-info-builder", "./nodejs-env-info-builder", "./agent-start-info-builder", "./ci-info-builder", "../http/backend-proxy", "../utils/validation-utils", "../watchdog", "../system-date", "./browser-info-builder"], factory);
|
|
56446
56571
|
}
|
|
56447
56572
|
})(function (require, exports) {
|
|
56448
56573
|
"use strict";
|
|
@@ -56458,6 +56583,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
56458
56583
|
const validation_utils_1 = require("../utils/validation-utils");
|
|
56459
56584
|
const watchdog_1 = require("../watchdog");
|
|
56460
56585
|
const system_date_1 = require("../system-date");
|
|
56586
|
+
const browser_info_builder_1 = require("./browser-info-builder");
|
|
56461
56587
|
class AgentEventsController {
|
|
56462
56588
|
constructor(agentConfig, agentInstanceData, logger, backendProxy, tool, tags) {
|
|
56463
56589
|
this.active = false;
|
|
@@ -56516,7 +56642,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
56516
56642
|
const agentInstanceInfoBuilder = new agent_instance_info_builder_1.AgentInstanceInfoBuilder(this);
|
|
56517
56643
|
const machineInfoBuilder = new machine_info_builder_1.MachineInfoBuilder();
|
|
56518
56644
|
const dependencies = Object.assign(Object.assign({}, packageJsonFile.dependencies), packageJsonFile.devDependencies);
|
|
56519
|
-
const nodejsEnvInfoBuilder = new nodejs_env_info_builder_1.NodejsEnvInfoBuilder(this.agentInstanceData, dependencies);
|
|
56645
|
+
const nodejsEnvInfoBuilder = this.agentInstanceData.technology === agent_events_conracts_1.Technology.BROWSER ? new browser_info_builder_1.BrowserInfoBuilder() : new nodejs_env_info_builder_1.NodejsEnvInfoBuilder(this.agentInstanceData, dependencies);
|
|
56520
56646
|
const ciInfoBuilder = new ci_info_builder_1.CiInfoBuilder();
|
|
56521
56647
|
const agentStartInfoBuilder = new agent_start_info_builder_1.AgentStartInfoBuilder(agentInstanceInfoBuilder, machineInfoBuilder, nodejsEnvInfoBuilder, ciInfoBuilder);
|
|
56522
56648
|
const agentStartInfo = agentStartInfoBuilder.build();
|
|
@@ -56658,7 +56784,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
56658
56784
|
})(StartRequestStatus || (StartRequestStatus = {}));
|
|
56659
56785
|
});
|
|
56660
56786
|
|
|
56661
|
-
},{"../http/backend-proxy":
|
|
56787
|
+
},{"../http/backend-proxy":495,"../system-date":505,"../utils/validation-utils":509,"../watchdog":510,"./agent-events-conracts":454,"./agent-instance-info-builder":457,"./agent-start-info-builder":458,"./browser-info-builder":459,"./ci-info-builder":460,"./machine-info-builder":463,"./nodejs-env-info-builder":465}],456:[function(require,module,exports){
|
|
56662
56788
|
(function (factory) {
|
|
56663
56789
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
56664
56790
|
var v = factory(require, exports);
|
|
@@ -56691,7 +56817,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
56691
56817
|
AgentEventsGuard.EVENT_CODE_TO_LAST_CALL = new Map();
|
|
56692
56818
|
});
|
|
56693
56819
|
|
|
56694
|
-
},{"../system-date":
|
|
56820
|
+
},{"../system-date":505,"./cockpit-notifier":461}],457:[function(require,module,exports){
|
|
56695
56821
|
(function (process){(function (){
|
|
56696
56822
|
(function (factory) {
|
|
56697
56823
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
@@ -56767,7 +56893,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
56767
56893
|
});
|
|
56768
56894
|
|
|
56769
56895
|
}).call(this)}).call(this,require('_process'))
|
|
56770
|
-
},{"./sensitive-data-filter":
|
|
56896
|
+
},{"./sensitive-data-filter":466,"_process":335}],458:[function(require,module,exports){
|
|
56771
56897
|
(function (factory) {
|
|
56772
56898
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
56773
56899
|
var v = factory(require, exports);
|
|
@@ -56786,6 +56912,10 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
56786
56912
|
this.machineInfoBuilder = machineInfoBuilder;
|
|
56787
56913
|
this.techSpecificInfoBuilder = techSpecificInfoBuilder;
|
|
56788
56914
|
this.ciInfoBuilder = ciInfoBuilder;
|
|
56915
|
+
this.agentInstanceInfoBuilder = agentInstanceInfoBuilder;
|
|
56916
|
+
this.machineInfoBuilder = machineInfoBuilder;
|
|
56917
|
+
this.techSpecificInfoBuilder = techSpecificInfoBuilder;
|
|
56918
|
+
this.ciInfoBuilder = ciInfoBuilder;
|
|
56789
56919
|
}
|
|
56790
56920
|
fillData() {
|
|
56791
56921
|
}
|
|
@@ -56801,7 +56931,40 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
56801
56931
|
exports.AgentStartInfoBuilder = AgentStartInfoBuilder;
|
|
56802
56932
|
});
|
|
56803
56933
|
|
|
56804
|
-
},{}],
|
|
56934
|
+
},{}],459:[function(require,module,exports){
|
|
56935
|
+
(function (factory) {
|
|
56936
|
+
if (typeof module === "object" && typeof module.exports === "object") {
|
|
56937
|
+
var v = factory(require, exports);
|
|
56938
|
+
if (v !== undefined) module.exports = v;
|
|
56939
|
+
}
|
|
56940
|
+
else if (typeof define === "function" && define.amd) {
|
|
56941
|
+
define(["require", "exports", "../system-date"], factory);
|
|
56942
|
+
}
|
|
56943
|
+
})(function (require, exports) {
|
|
56944
|
+
"use strict";
|
|
56945
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56946
|
+
exports.BrowserInfoBuilder = void 0;
|
|
56947
|
+
const system_date_1 = require("../system-date");
|
|
56948
|
+
class BrowserInfoBuilder {
|
|
56949
|
+
constructor() {
|
|
56950
|
+
this.info = {};
|
|
56951
|
+
}
|
|
56952
|
+
fillData() {
|
|
56953
|
+
const currentDate = (0, system_date_1.getSystemDate)();
|
|
56954
|
+
this.info.userAgent = window.navigator.userAgent;
|
|
56955
|
+
this.info.localDateTime = currentDate.toString();
|
|
56956
|
+
this.info.localDateTimeUnix_s = currentDate.getTime();
|
|
56957
|
+
this.info.location = window.location.toString();
|
|
56958
|
+
}
|
|
56959
|
+
build() {
|
|
56960
|
+
this.fillData();
|
|
56961
|
+
return this.info;
|
|
56962
|
+
}
|
|
56963
|
+
}
|
|
56964
|
+
exports.BrowserInfoBuilder = BrowserInfoBuilder;
|
|
56965
|
+
});
|
|
56966
|
+
|
|
56967
|
+
},{"../system-date":505}],460:[function(require,module,exports){
|
|
56805
56968
|
(function (process){(function (){
|
|
56806
56969
|
(function (factory) {
|
|
56807
56970
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
@@ -56843,7 +57006,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
56843
57006
|
});
|
|
56844
57007
|
|
|
56845
57008
|
}).call(this)}).call(this,require('_process'))
|
|
56846
|
-
},{"_process":335}],
|
|
57009
|
+
},{"_process":335}],461:[function(require,module,exports){
|
|
56847
57010
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
56848
57011
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
56849
57012
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -56929,7 +57092,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
56929
57092
|
CockpitNotifier.controllerNullLogged = false;
|
|
56930
57093
|
});
|
|
56931
57094
|
|
|
56932
|
-
},{"./agent-events-controller":
|
|
57095
|
+
},{"./agent-events-controller":455,"./dry-run-agent-events-controller":462,"./no-op-agent-events-controller":464}],462:[function(require,module,exports){
|
|
56933
57096
|
(function (factory) {
|
|
56934
57097
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
56935
57098
|
var v = factory(require, exports);
|
|
@@ -56957,7 +57120,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
56957
57120
|
exports.DryRunAgentEventsController = DryRunAgentEventsController;
|
|
56958
57121
|
});
|
|
56959
57122
|
|
|
56960
|
-
},{"../agent-instance-data":
|
|
57123
|
+
},{"../agent-instance-data":467,"../config-process/config":470,"./agent-events-conracts":454,"./agent-events-controller":455}],463:[function(require,module,exports){
|
|
56961
57124
|
(function (process){(function (){
|
|
56962
57125
|
(function (factory) {
|
|
56963
57126
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
@@ -57005,7 +57168,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57005
57168
|
});
|
|
57006
57169
|
|
|
57007
57170
|
}).call(this)}).call(this,require('_process'))
|
|
57008
|
-
},{"../system-date":
|
|
57171
|
+
},{"../system-date":505,"_process":335,"os":310}],464:[function(require,module,exports){
|
|
57009
57172
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
57010
57173
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
57011
57174
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -57063,7 +57226,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57063
57226
|
exports.NoOpAgentEventsController = NoOpAgentEventsController;
|
|
57064
57227
|
});
|
|
57065
57228
|
|
|
57066
|
-
},{"./agent-events-controller":
|
|
57229
|
+
},{"./agent-events-controller":455}],465:[function(require,module,exports){
|
|
57067
57230
|
(function (process){(function (){
|
|
57068
57231
|
(function (factory) {
|
|
57069
57232
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
@@ -57098,7 +57261,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57098
57261
|
});
|
|
57099
57262
|
|
|
57100
57263
|
}).call(this)}).call(this,require('_process'))
|
|
57101
|
-
},{"_process":335}],
|
|
57264
|
+
},{"_process":335}],466:[function(require,module,exports){
|
|
57102
57265
|
(function (factory) {
|
|
57103
57266
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
57104
57267
|
var v = factory(require, exports);
|
|
@@ -57163,7 +57326,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57163
57326
|
exports.isSensitive = isSensitive;
|
|
57164
57327
|
});
|
|
57165
57328
|
|
|
57166
|
-
},{}],
|
|
57329
|
+
},{}],467:[function(require,module,exports){
|
|
57167
57330
|
(function (__dirname){(function (){
|
|
57168
57331
|
(function (factory) {
|
|
57169
57332
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
@@ -57222,7 +57385,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57222
57385
|
});
|
|
57223
57386
|
|
|
57224
57387
|
}).call(this)}).call(this,"/tsOutputs/common")
|
|
57225
|
-
},{"./agent-events/agent-events-conracts":
|
|
57388
|
+
},{"./agent-events/agent-events-conracts":454,"./agent-events/agent-instance-info-builder":457,"./utils/files-utils":507,"fs":225,"uuid":679}],468:[function(require,module,exports){
|
|
57226
57389
|
(function (process){(function (){
|
|
57227
57390
|
(function (factory) {
|
|
57228
57391
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
@@ -57230,7 +57393,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57230
57393
|
if (v !== undefined) module.exports = v;
|
|
57231
57394
|
}
|
|
57232
57395
|
else if (typeof define === "function" && define.amd) {
|
|
57233
|
-
define(["require", "exports", "./config-system", "./config", "../constants/sl-env-vars", "fs", "jwt-decode"], factory);
|
|
57396
|
+
define(["require", "exports", "./config-system", "./config", "../constants/sl-env-vars", "fs", "jwt-decode", "../../cli-parse/contracts"], factory);
|
|
57234
57397
|
}
|
|
57235
57398
|
})(function (require, exports) {
|
|
57236
57399
|
"use strict";
|
|
@@ -57241,6 +57404,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57241
57404
|
const sl_env_vars_1 = require("../constants/sl-env-vars");
|
|
57242
57405
|
const fs = require("fs");
|
|
57243
57406
|
const jwtDecode = require("jwt-decode");
|
|
57407
|
+
const contracts_1 = require("../../cli-parse/contracts");
|
|
57244
57408
|
class ConfigLoader {
|
|
57245
57409
|
constructor(logger) {
|
|
57246
57410
|
this.logger = logger;
|
|
@@ -57270,7 +57434,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57270
57434
|
if (agentCfg.token.hasValue) {
|
|
57271
57435
|
this.loadConfigFromToken(agentCfg, agentCfg.token.value);
|
|
57272
57436
|
}
|
|
57273
|
-
this.resolveUsingOtel(agentCfg);
|
|
57437
|
+
this.resolveUsingOtel(agentCfg, initialJsonConfig);
|
|
57274
57438
|
this.printConfiguration(agentCfg);
|
|
57275
57439
|
return agentCfg;
|
|
57276
57440
|
}
|
|
@@ -57282,8 +57446,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57282
57446
|
this.logger.info('****************************************************');
|
|
57283
57447
|
this.logger.info(agentCfg.toJsonObject());
|
|
57284
57448
|
}
|
|
57285
|
-
resolveUsingOtel(agentCfg) {
|
|
57286
|
-
agentCfg.useOtel.value = sl_env_vars_1.SlEnvVars.shouldUseOtel();
|
|
57449
|
+
resolveUsingOtel(agentCfg, initialJsonConfig) {
|
|
57450
|
+
agentCfg.useOtel.value = sl_env_vars_1.SlEnvVars.shouldUseOtel() || (initialJsonConfig === null || initialJsonConfig === void 0 ? void 0 : initialJsonConfig[contracts_1.COMMAND_ARGS.ENABLE_OPEN_TELEMETRY]);
|
|
57287
57451
|
}
|
|
57288
57452
|
loadConfigFromToken(agentCfg, token) {
|
|
57289
57453
|
if (!token)
|
|
@@ -57314,7 +57478,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57314
57478
|
});
|
|
57315
57479
|
|
|
57316
57480
|
}).call(this)}).call(this,require('_process'))
|
|
57317
|
-
},{"../constants/sl-env-vars":
|
|
57481
|
+
},{"../../cli-parse/contracts":453,"../constants/sl-env-vars":474,"./config":470,"./config-system":469,"_process":335,"fs":225,"jwt-decode":613}],469:[function(require,module,exports){
|
|
57318
57482
|
(function (process){(function (){
|
|
57319
57483
|
(function (factory) {
|
|
57320
57484
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
@@ -57594,7 +57758,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57594
57758
|
});
|
|
57595
57759
|
|
|
57596
57760
|
}).call(this)}).call(this,require('_process'))
|
|
57597
|
-
},{"_process":335,"fs":225}],
|
|
57761
|
+
},{"_process":335,"fs":225}],470:[function(require,module,exports){
|
|
57598
57762
|
(function (factory) {
|
|
57599
57763
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
57600
57764
|
var v = factory(require, exports);
|
|
@@ -57663,7 +57827,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57663
57827
|
exports.AgentConfigWithRuntimeArgs = AgentConfigWithRuntimeArgs;
|
|
57664
57828
|
});
|
|
57665
57829
|
|
|
57666
|
-
},{"./config-system":
|
|
57830
|
+
},{"./config-system":469}],471:[function(require,module,exports){
|
|
57667
57831
|
(function (factory) {
|
|
57668
57832
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
57669
57833
|
var v = factory(require, exports);
|
|
@@ -57780,7 +57944,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57780
57944
|
exports.ConfigProcess = ConfigProcess;
|
|
57781
57945
|
});
|
|
57782
57946
|
|
|
57783
|
-
},{"./config-system":
|
|
57947
|
+
},{"./config-system":469,"events":266,"jwt-decode":613,"object-assign":309}],472:[function(require,module,exports){
|
|
57784
57948
|
(function (factory) {
|
|
57785
57949
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
57786
57950
|
var v = factory(require, exports);
|
|
@@ -57808,7 +57972,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57808
57972
|
exports.NoopConfigProcess = NoopConfigProcess;
|
|
57809
57973
|
});
|
|
57810
57974
|
|
|
57811
|
-
},{"./index":
|
|
57975
|
+
},{"./index":471}],473:[function(require,module,exports){
|
|
57812
57976
|
(function (factory) {
|
|
57813
57977
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
57814
57978
|
var v = factory(require, exports);
|
|
@@ -57843,7 +58007,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57843
58007
|
_a);
|
|
57844
58008
|
});
|
|
57845
58009
|
|
|
57846
|
-
},{}],
|
|
58010
|
+
},{}],474:[function(require,module,exports){
|
|
57847
58011
|
(function (process){(function (){
|
|
57848
58012
|
(function (factory) {
|
|
57849
58013
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
@@ -57986,7 +58150,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57986
58150
|
});
|
|
57987
58151
|
|
|
57988
58152
|
}).call(this)}).call(this,require('_process'))
|
|
57989
|
-
},{"../utils/env-var-parsing":
|
|
58153
|
+
},{"../utils/env-var-parsing":506,"_process":335}],475:[function(require,module,exports){
|
|
57990
58154
|
(function (factory) {
|
|
57991
58155
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
57992
58156
|
var v = factory(require, exports);
|
|
@@ -58006,7 +58170,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
58006
58170
|
})(ElementType = exports.ElementType || (exports.ElementType = {}));
|
|
58007
58171
|
});
|
|
58008
58172
|
|
|
58009
|
-
},{}],
|
|
58173
|
+
},{}],476:[function(require,module,exports){
|
|
58010
58174
|
(function (factory) {
|
|
58011
58175
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
58012
58176
|
var v = factory(require, exports);
|
|
@@ -58139,7 +58303,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
58139
58303
|
exports.FileElement = FileElement;
|
|
58140
58304
|
});
|
|
58141
58305
|
|
|
58142
|
-
},{"../utils/validation-utils":
|
|
58306
|
+
},{"../utils/validation-utils":509}],477:[function(require,module,exports){
|
|
58143
58307
|
(function (factory) {
|
|
58144
58308
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
58145
58309
|
var v = factory(require, exports);
|
|
@@ -58209,7 +58373,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
58209
58373
|
exports.IstanbulUniqueIdConverter = IstanbulUniqueIdConverter;
|
|
58210
58374
|
});
|
|
58211
58375
|
|
|
58212
|
-
},{"./contracts":
|
|
58376
|
+
},{"./contracts":475,"./unique-id-converter":480}],478:[function(require,module,exports){
|
|
58213
58377
|
(function (factory) {
|
|
58214
58378
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
58215
58379
|
var v = factory(require, exports);
|
|
@@ -58266,7 +58430,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
58266
58430
|
}
|
|
58267
58431
|
});
|
|
58268
58432
|
|
|
58269
|
-
},{"../system-date":
|
|
58433
|
+
},{"../system-date":505,"../utils/files-utils":507,"./istanbul-unique-id-converter":477,"path":327}],479:[function(require,module,exports){
|
|
58270
58434
|
(function (factory) {
|
|
58271
58435
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
58272
58436
|
var v = factory(require, exports);
|
|
@@ -58450,7 +58614,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
58450
58614
|
exports.OriginalModuleLoader = OriginalModuleLoader;
|
|
58451
58615
|
});
|
|
58452
58616
|
|
|
58453
|
-
},{"../source-maps-utils":
|
|
58617
|
+
},{"../source-maps-utils":502,"../utils/files-utils":507,"../utils/validation-utils":509}],480:[function(require,module,exports){
|
|
58454
58618
|
(function (factory) {
|
|
58455
58619
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
58456
58620
|
var v = factory(require, exports);
|
|
@@ -58662,7 +58826,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
58662
58826
|
exports.UniqueIdConverter = UniqueIdConverter;
|
|
58663
58827
|
});
|
|
58664
58828
|
|
|
58665
|
-
},{"./contracts":
|
|
58829
|
+
},{"./contracts":475,"./file-element":476}],481:[function(require,module,exports){
|
|
58666
58830
|
(function (factory) {
|
|
58667
58831
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
58668
58832
|
var v = factory(require, exports);
|
|
@@ -58689,11 +58853,12 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
58689
58853
|
TestSelectionStatus["DISABLED"] = "disabled";
|
|
58690
58854
|
TestSelectionStatus["DISABLED_BY_CONFIGURATION"] = "disabledByConfiguration";
|
|
58691
58855
|
TestSelectionStatus["RECOMMENDATIONS_TIMEOUT"] = "recommendationsTimeout";
|
|
58856
|
+
TestSelectionStatus["RECOMMENDATIONS_NOT_AVAILABLE"] = "recommendationsNotAvailable";
|
|
58692
58857
|
TestSelectionStatus["ERROR"] = "error";
|
|
58693
58858
|
})(TestSelectionStatus = exports.TestSelectionStatus || (exports.TestSelectionStatus = {}));
|
|
58694
58859
|
});
|
|
58695
58860
|
|
|
58696
|
-
},{}],
|
|
58861
|
+
},{}],482:[function(require,module,exports){
|
|
58697
58862
|
(function (factory) {
|
|
58698
58863
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
58699
58864
|
var v = factory(require, exports);
|
|
@@ -58733,7 +58898,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
58733
58898
|
exports.EventsCreator = EventsCreator;
|
|
58734
58899
|
});
|
|
58735
58900
|
|
|
58736
|
-
},{"../system-date":
|
|
58901
|
+
},{"../system-date":505,"./events-contracts":481}],483:[function(require,module,exports){
|
|
58737
58902
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
58738
58903
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
58739
58904
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -58921,7 +59086,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
58921
59086
|
EventsProcess.ITEMS_TO_DEQUE = 1000;
|
|
58922
59087
|
});
|
|
58923
59088
|
|
|
58924
|
-
},{"../system-date":
|
|
59089
|
+
},{"../system-date":505,"../utils/validation-utils":509}],484:[function(require,module,exports){
|
|
58925
59090
|
(function (factory) {
|
|
58926
59091
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
58927
59092
|
var v = factory(require, exports);
|
|
@@ -58977,7 +59142,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
58977
59142
|
exports.BaseBrowserHitsConverter = BaseBrowserHitsConverter;
|
|
58978
59143
|
});
|
|
58979
59144
|
|
|
58980
|
-
},{"../../common/footprints-process-v6/hits-converter":
|
|
59145
|
+
},{"../../common/footprints-process-v6/hits-converter":490,"../utils/files-utils":507,"./location-formatter":492}],485:[function(require,module,exports){
|
|
58981
59146
|
(function (factory) {
|
|
58982
59147
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
58983
59148
|
var v = factory(require, exports);
|
|
@@ -59022,7 +59187,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59022
59187
|
BufferSizeHelper.MB = 1024 * 1024;
|
|
59023
59188
|
});
|
|
59024
59189
|
|
|
59025
|
-
},{}],
|
|
59190
|
+
},{}],486:[function(require,module,exports){
|
|
59026
59191
|
(function (factory) {
|
|
59027
59192
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
59028
59193
|
var v = factory(require, exports);
|
|
@@ -59055,7 +59220,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59055
59220
|
exports.CollectorFootprintsBuffer = CollectorFootprintsBuffer;
|
|
59056
59221
|
});
|
|
59057
59222
|
|
|
59058
|
-
},{"../agent-events/agent-events-conracts":
|
|
59223
|
+
},{"../agent-events/agent-events-conracts":454,"./footprints-buffer":488}],487:[function(require,module,exports){
|
|
59059
59224
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
59060
59225
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
59061
59226
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -59125,7 +59290,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59125
59290
|
exports.CollectorFootprintsProcess = CollectorFootprintsProcess;
|
|
59126
59291
|
});
|
|
59127
59292
|
|
|
59128
|
-
},{".":
|
|
59293
|
+
},{".":491,"../no-op-state-tracker":501}],488:[function(require,module,exports){
|
|
59129
59294
|
(function (factory) {
|
|
59130
59295
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
59131
59296
|
var v = factory(require, exports);
|
|
@@ -59246,7 +59411,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59246
59411
|
FootprintsBuffer.BUFFER_FULL = 'bufferFull';
|
|
59247
59412
|
});
|
|
59248
59413
|
|
|
59249
|
-
},{"../agent-events/agent-events-conracts":
|
|
59414
|
+
},{"../agent-events/agent-events-conracts":454,"../agent-events/cockpit-notifier":461,"./buffer-size-helper":485,"events":266}],489:[function(require,module,exports){
|
|
59250
59415
|
(function (global){(function (){
|
|
59251
59416
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
59252
59417
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -59426,6 +59591,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59426
59591
|
if (this.errors.length > 0) {
|
|
59427
59592
|
const data = JSON.stringify(this.errors);
|
|
59428
59593
|
cockpit_notifier_1.CockpitNotifier.sendGenericMessage(`Errors during hit collection: ${data}`);
|
|
59594
|
+
this.errors = [];
|
|
59429
59595
|
}
|
|
59430
59596
|
}
|
|
59431
59597
|
}
|
|
@@ -59433,7 +59599,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59433
59599
|
});
|
|
59434
59600
|
|
|
59435
59601
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
59436
|
-
},{"../agent-events/cockpit-notifier":
|
|
59602
|
+
},{"../agent-events/cockpit-notifier":461,"../constants/sl-env-vars":474,"../coverage-elements/original-module-loader":479}],490:[function(require,module,exports){
|
|
59437
59603
|
(function (factory) {
|
|
59438
59604
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
59439
59605
|
var v = factory(require, exports);
|
|
@@ -59583,7 +59749,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59583
59749
|
HitsConverter.BRANCH_ID_DEL = '|';
|
|
59584
59750
|
});
|
|
59585
59751
|
|
|
59586
|
-
},{"../agent-events/cockpit-notifier":
|
|
59752
|
+
},{"../agent-events/cockpit-notifier":461,"../constants/sl-env-vars":474,"../coverage-elements/new-id-resolver":478,"../coverage-elements/original-module-loader":479,"./hits-collector":489}],491:[function(require,module,exports){
|
|
59587
59753
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
59588
59754
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
59589
59755
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -59677,6 +59843,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59677
59843
|
}
|
|
59678
59844
|
submitQueuedFootprints(execution) {
|
|
59679
59845
|
return __awaiter(this, void 0, void 0, function* () {
|
|
59846
|
+
this.hitsCollector.sendErrors();
|
|
59680
59847
|
if (!this.shouldSubmitFootprints()) {
|
|
59681
59848
|
return;
|
|
59682
59849
|
}
|
|
@@ -59873,7 +60040,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59873
60040
|
FootprintsProcess.ALARM_FIRED = 'alarm';
|
|
59874
60041
|
});
|
|
59875
60042
|
|
|
59876
|
-
},{"../agent-events/agent-events-conracts":
|
|
60043
|
+
},{"../agent-events/agent-events-conracts":454,"../agent-events/agent-events-guard":456,"../agent-events/cockpit-notifier":461,"../constants/sl-env-vars":474,"../footprints-process/collection-interval":494,"../state-tracker":504,"./footprints-buffer":488}],492:[function(require,module,exports){
|
|
59877
60044
|
(function (factory) {
|
|
59878
60045
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
59879
60046
|
var v = factory(require, exports);
|
|
@@ -59907,7 +60074,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59907
60074
|
}
|
|
59908
60075
|
});
|
|
59909
60076
|
|
|
59910
|
-
},{}],
|
|
60077
|
+
},{}],493:[function(require,module,exports){
|
|
59911
60078
|
(function (process){(function (){
|
|
59912
60079
|
(function (factory) {
|
|
59913
60080
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
@@ -59948,7 +60115,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59948
60115
|
});
|
|
59949
60116
|
|
|
59950
60117
|
}).call(this)}).call(this,require('_process'))
|
|
59951
|
-
},{"_process":335}],
|
|
60118
|
+
},{"_process":335}],494:[function(require,module,exports){
|
|
59952
60119
|
(function (factory) {
|
|
59953
60120
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
59954
60121
|
var v = factory(require, exports);
|
|
@@ -59986,7 +60153,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59986
60153
|
exports.CollectionInterval = CollectionInterval;
|
|
59987
60154
|
});
|
|
59988
60155
|
|
|
59989
|
-
},{"../system-date":
|
|
60156
|
+
},{"../system-date":505}],495:[function(require,module,exports){
|
|
59990
60157
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
59991
60158
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
59992
60159
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -60333,7 +60500,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
60333
60500
|
BackendProxy.DEFAULT_HTTP_ATTEMPT_INTERVAL = 5 * 1000;
|
|
60334
60501
|
});
|
|
60335
60502
|
|
|
60336
|
-
},{"../constants/constants":
|
|
60503
|
+
},{"../constants/constants":473,"../constants/sl-env-vars":474,"../utils/timer-utils":508,"../utils/validation-utils":509,"./contracts":496,"./entities-mapper":497,"./http-client":498,"./sl-routes":500}],496:[function(require,module,exports){
|
|
60337
60504
|
(function (factory) {
|
|
60338
60505
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
60339
60506
|
var v = factory(require, exports);
|
|
@@ -60439,7 +60606,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
60439
60606
|
})(SealightsHaderValues = exports.SealightsHaderValues || (exports.SealightsHaderValues = {}));
|
|
60440
60607
|
});
|
|
60441
60608
|
|
|
60442
|
-
},{"../system-date":
|
|
60609
|
+
},{"../system-date":505}],497:[function(require,module,exports){
|
|
60443
60610
|
(function (factory) {
|
|
60444
60611
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
60445
60612
|
var v = factory(require, exports);
|
|
@@ -60465,7 +60632,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
60465
60632
|
exports.EntitiesMapper = EntitiesMapper;
|
|
60466
60633
|
});
|
|
60467
60634
|
|
|
60468
|
-
},{"./contracts":
|
|
60635
|
+
},{"./contracts":496}],498:[function(require,module,exports){
|
|
60469
60636
|
(function (process,Buffer){(function (){
|
|
60470
60637
|
(function (factory) {
|
|
60471
60638
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
@@ -60672,7 +60839,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
60672
60839
|
});
|
|
60673
60840
|
|
|
60674
60841
|
}).call(this)}).call(this,require('_process'),require("buffer").Buffer)
|
|
60675
|
-
},{"../constants/sl-env-vars":
|
|
60842
|
+
},{"../constants/sl-env-vars":474,"../utils/validation-utils":509,"./contracts":496,"./http-verb":499,"_process":335,"buffer":227,"request":626,"zlib":224}],499:[function(require,module,exports){
|
|
60676
60843
|
(function (factory) {
|
|
60677
60844
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
60678
60845
|
var v = factory(require, exports);
|
|
@@ -60694,7 +60861,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
60694
60861
|
})(HttpVerb = exports.HttpVerb || (exports.HttpVerb = {}));
|
|
60695
60862
|
});
|
|
60696
60863
|
|
|
60697
|
-
},{}],
|
|
60864
|
+
},{}],500:[function(require,module,exports){
|
|
60698
60865
|
(function (factory) {
|
|
60699
60866
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
60700
60867
|
var v = factory(require, exports);
|
|
@@ -60923,7 +61090,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
60923
61090
|
SLRoutes.ACTIVE = 'active';
|
|
60924
61091
|
});
|
|
60925
61092
|
|
|
60926
|
-
},{"../constants/constants":
|
|
61093
|
+
},{"../constants/constants":473,"../utils/validation-utils":509}],501:[function(require,module,exports){
|
|
60927
61094
|
(function (factory) {
|
|
60928
61095
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
60929
61096
|
var v = factory(require, exports);
|
|
@@ -60955,7 +61122,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
60955
61122
|
exports.NoopStateTracker = NoopStateTracker;
|
|
60956
61123
|
});
|
|
60957
61124
|
|
|
60958
|
-
},{"./state-tracker-fpv6":
|
|
61125
|
+
},{"./state-tracker-fpv6":503}],502:[function(require,module,exports){
|
|
60959
61126
|
(function (factory) {
|
|
60960
61127
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
60961
61128
|
var v = factory(require, exports);
|
|
@@ -61002,7 +61169,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61002
61169
|
exports.SourceMapsUtils = SourceMapsUtils;
|
|
61003
61170
|
});
|
|
61004
61171
|
|
|
61005
|
-
},{"fs":225,"source-map":385}],
|
|
61172
|
+
},{"fs":225,"source-map":385}],503:[function(require,module,exports){
|
|
61006
61173
|
(function (factory) {
|
|
61007
61174
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
61008
61175
|
var v = factory(require, exports);
|
|
@@ -61035,7 +61202,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61035
61202
|
exports.StateTrackerFpv6 = StateTrackerFpv6;
|
|
61036
61203
|
});
|
|
61037
61204
|
|
|
61038
|
-
},{"./state-tracker":
|
|
61205
|
+
},{"./state-tracker":504}],504:[function(require,module,exports){
|
|
61039
61206
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
61040
61207
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
61041
61208
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -61275,7 +61442,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61275
61442
|
StateTracker.EXECUTION_STATUS_PENDING_DELETE = 'pendingDelete';
|
|
61276
61443
|
});
|
|
61277
61444
|
|
|
61278
|
-
},{"./agent-events/agent-events-conracts":
|
|
61445
|
+
},{"./agent-events/agent-events-conracts":454,"./agent-events/cockpit-notifier":461,"./constants/sl-env-vars":474,"./utils/validation-utils":509,"events":266}],505:[function(require,module,exports){
|
|
61279
61446
|
(function (factory) {
|
|
61280
61447
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
61281
61448
|
var v = factory(require, exports);
|
|
@@ -61301,7 +61468,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61301
61468
|
exports.getSystemDateValueOf = getSystemDateValueOf;
|
|
61302
61469
|
});
|
|
61303
61470
|
|
|
61304
|
-
},{}],
|
|
61471
|
+
},{}],506:[function(require,module,exports){
|
|
61305
61472
|
(function (process){(function (){
|
|
61306
61473
|
(function (factory) {
|
|
61307
61474
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
@@ -61341,7 +61508,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61341
61508
|
});
|
|
61342
61509
|
|
|
61343
61510
|
}).call(this)}).call(this,require('_process'))
|
|
61344
|
-
},{"_process":335}],
|
|
61511
|
+
},{"_process":335}],507:[function(require,module,exports){
|
|
61345
61512
|
(function (factory) {
|
|
61346
61513
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
61347
61514
|
var v = factory(require, exports);
|
|
@@ -61395,7 +61562,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61395
61562
|
exports.FilesUtils = FilesUtils;
|
|
61396
61563
|
});
|
|
61397
61564
|
|
|
61398
|
-
},{"fs":225,"path":327}],
|
|
61565
|
+
},{"fs":225,"path":327}],508:[function(require,module,exports){
|
|
61399
61566
|
(function (factory) {
|
|
61400
61567
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
61401
61568
|
var v = factory(require, exports);
|
|
@@ -61416,7 +61583,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61416
61583
|
exports.TimerUtils = TimerUtils;
|
|
61417
61584
|
});
|
|
61418
61585
|
|
|
61419
|
-
},{}],
|
|
61586
|
+
},{}],509:[function(require,module,exports){
|
|
61420
61587
|
(function (factory) {
|
|
61421
61588
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
61422
61589
|
var v = factory(require, exports);
|
|
@@ -61443,7 +61610,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61443
61610
|
exports.ValidationUtils = ValidationUtils;
|
|
61444
61611
|
});
|
|
61445
61612
|
|
|
61446
|
-
},{"../constants/constants":
|
|
61613
|
+
},{"../constants/constants":473}],510:[function(require,module,exports){
|
|
61447
61614
|
(function (factory) {
|
|
61448
61615
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
61449
61616
|
var v = factory(require, exports);
|
|
@@ -61550,7 +61717,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
61550
61717
|
exports.Watchdog = Watchdog;
|
|
61551
61718
|
});
|
|
61552
61719
|
|
|
61553
|
-
},{"events":266}],
|
|
61720
|
+
},{"events":266}],511:[function(require,module,exports){
|
|
61554
61721
|
'use strict';
|
|
61555
61722
|
|
|
61556
61723
|
var compileSchema = require('./compile')
|
|
@@ -62058,7 +62225,7 @@ function setLogger(self) {
|
|
|
62058
62225
|
|
|
62059
62226
|
function noop() {}
|
|
62060
62227
|
|
|
62061
|
-
},{"./cache":
|
|
62228
|
+
},{"./cache":512,"./compile":516,"./compile/async":513,"./compile/error_classes":514,"./compile/formats":515,"./compile/resolve":517,"./compile/rules":518,"./compile/schema_obj":519,"./compile/util":521,"./data":522,"./keyword":550,"./refs/data.json":551,"./refs/json-schema-draft-07.json":553,"fast-json-stable-stringify":575}],512:[function(require,module,exports){
|
|
62062
62229
|
'use strict';
|
|
62063
62230
|
|
|
62064
62231
|
|
|
@@ -62086,7 +62253,7 @@ Cache.prototype.clear = function Cache_clear() {
|
|
|
62086
62253
|
this._cache = {};
|
|
62087
62254
|
};
|
|
62088
62255
|
|
|
62089
|
-
},{}],
|
|
62256
|
+
},{}],513:[function(require,module,exports){
|
|
62090
62257
|
'use strict';
|
|
62091
62258
|
|
|
62092
62259
|
var MissingRefError = require('./error_classes').MissingRef;
|
|
@@ -62178,7 +62345,7 @@ function compileAsync(schema, meta, callback) {
|
|
|
62178
62345
|
}
|
|
62179
62346
|
}
|
|
62180
62347
|
|
|
62181
|
-
},{"./error_classes":
|
|
62348
|
+
},{"./error_classes":514}],514:[function(require,module,exports){
|
|
62182
62349
|
'use strict';
|
|
62183
62350
|
|
|
62184
62351
|
var resolve = require('./resolve');
|
|
@@ -62214,7 +62381,7 @@ function errorSubclass(Subclass) {
|
|
|
62214
62381
|
return Subclass;
|
|
62215
62382
|
}
|
|
62216
62383
|
|
|
62217
|
-
},{"./resolve":
|
|
62384
|
+
},{"./resolve":517}],515:[function(require,module,exports){
|
|
62218
62385
|
'use strict';
|
|
62219
62386
|
|
|
62220
62387
|
var util = require('./util');
|
|
@@ -62358,7 +62525,7 @@ function regex(str) {
|
|
|
62358
62525
|
}
|
|
62359
62526
|
}
|
|
62360
62527
|
|
|
62361
|
-
},{"./util":
|
|
62528
|
+
},{"./util":521}],516:[function(require,module,exports){
|
|
62362
62529
|
'use strict';
|
|
62363
62530
|
|
|
62364
62531
|
var resolve = require('./resolve')
|
|
@@ -62747,7 +62914,7 @@ function vars(arr, statement) {
|
|
|
62747
62914
|
return code;
|
|
62748
62915
|
}
|
|
62749
62916
|
|
|
62750
|
-
},{"../dotjs/validate":
|
|
62917
|
+
},{"../dotjs/validate":549,"./error_classes":514,"./resolve":517,"./util":521,"fast-deep-equal":574,"fast-json-stable-stringify":575}],517:[function(require,module,exports){
|
|
62751
62918
|
'use strict';
|
|
62752
62919
|
|
|
62753
62920
|
var URI = require('uri-js')
|
|
@@ -63019,7 +63186,7 @@ function resolveIds(schema) {
|
|
|
63019
63186
|
return localRefs;
|
|
63020
63187
|
}
|
|
63021
63188
|
|
|
63022
|
-
},{"./schema_obj":
|
|
63189
|
+
},{"./schema_obj":519,"./util":521,"fast-deep-equal":574,"json-schema-traverse":607,"uri-js":678}],518:[function(require,module,exports){
|
|
63023
63190
|
'use strict';
|
|
63024
63191
|
|
|
63025
63192
|
var ruleModules = require('../dotjs')
|
|
@@ -63087,7 +63254,7 @@ module.exports = function rules() {
|
|
|
63087
63254
|
return RULES;
|
|
63088
63255
|
};
|
|
63089
63256
|
|
|
63090
|
-
},{"../dotjs":
|
|
63257
|
+
},{"../dotjs":538,"./util":521}],519:[function(require,module,exports){
|
|
63091
63258
|
'use strict';
|
|
63092
63259
|
|
|
63093
63260
|
var util = require('./util');
|
|
@@ -63098,7 +63265,7 @@ function SchemaObject(obj) {
|
|
|
63098
63265
|
util.copy(obj, this);
|
|
63099
63266
|
}
|
|
63100
63267
|
|
|
63101
|
-
},{"./util":
|
|
63268
|
+
},{"./util":521}],520:[function(require,module,exports){
|
|
63102
63269
|
'use strict';
|
|
63103
63270
|
|
|
63104
63271
|
// https://mathiasbynens.be/notes/javascript-encoding
|
|
@@ -63120,7 +63287,7 @@ module.exports = function ucs2length(str) {
|
|
|
63120
63287
|
return length;
|
|
63121
63288
|
};
|
|
63122
63289
|
|
|
63123
|
-
},{}],
|
|
63290
|
+
},{}],521:[function(require,module,exports){
|
|
63124
63291
|
'use strict';
|
|
63125
63292
|
|
|
63126
63293
|
|
|
@@ -63361,7 +63528,7 @@ function unescapeJsonPointer(str) {
|
|
|
63361
63528
|
return str.replace(/~1/g, '/').replace(/~0/g, '~');
|
|
63362
63529
|
}
|
|
63363
63530
|
|
|
63364
|
-
},{"./ucs2length":
|
|
63531
|
+
},{"./ucs2length":520,"fast-deep-equal":574}],522:[function(require,module,exports){
|
|
63365
63532
|
'use strict';
|
|
63366
63533
|
|
|
63367
63534
|
var KEYWORDS = [
|
|
@@ -63412,7 +63579,7 @@ module.exports = function (metaSchema, keywordsJsonPointers) {
|
|
|
63412
63579
|
return metaSchema;
|
|
63413
63580
|
};
|
|
63414
63581
|
|
|
63415
|
-
},{}],
|
|
63582
|
+
},{}],523:[function(require,module,exports){
|
|
63416
63583
|
'use strict';
|
|
63417
63584
|
|
|
63418
63585
|
var metaSchema = require('./refs/json-schema-draft-07.json');
|
|
@@ -63451,7 +63618,7 @@ module.exports = {
|
|
|
63451
63618
|
}
|
|
63452
63619
|
};
|
|
63453
63620
|
|
|
63454
|
-
},{"./refs/json-schema-draft-07.json":
|
|
63621
|
+
},{"./refs/json-schema-draft-07.json":553}],524:[function(require,module,exports){
|
|
63455
63622
|
'use strict';
|
|
63456
63623
|
module.exports = function generate__limit(it, $keyword, $ruleType) {
|
|
63457
63624
|
var out = ' ';
|
|
@@ -63616,7 +63783,7 @@ module.exports = function generate__limit(it, $keyword, $ruleType) {
|
|
|
63616
63783
|
return out;
|
|
63617
63784
|
}
|
|
63618
63785
|
|
|
63619
|
-
},{}],
|
|
63786
|
+
},{}],525:[function(require,module,exports){
|
|
63620
63787
|
'use strict';
|
|
63621
63788
|
module.exports = function generate__limitItems(it, $keyword, $ruleType) {
|
|
63622
63789
|
var out = ' ';
|
|
@@ -63698,7 +63865,7 @@ module.exports = function generate__limitItems(it, $keyword, $ruleType) {
|
|
|
63698
63865
|
return out;
|
|
63699
63866
|
}
|
|
63700
63867
|
|
|
63701
|
-
},{}],
|
|
63868
|
+
},{}],526:[function(require,module,exports){
|
|
63702
63869
|
'use strict';
|
|
63703
63870
|
module.exports = function generate__limitLength(it, $keyword, $ruleType) {
|
|
63704
63871
|
var out = ' ';
|
|
@@ -63785,7 +63952,7 @@ module.exports = function generate__limitLength(it, $keyword, $ruleType) {
|
|
|
63785
63952
|
return out;
|
|
63786
63953
|
}
|
|
63787
63954
|
|
|
63788
|
-
},{}],
|
|
63955
|
+
},{}],527:[function(require,module,exports){
|
|
63789
63956
|
'use strict';
|
|
63790
63957
|
module.exports = function generate__limitProperties(it, $keyword, $ruleType) {
|
|
63791
63958
|
var out = ' ';
|
|
@@ -63867,7 +64034,7 @@ module.exports = function generate__limitProperties(it, $keyword, $ruleType) {
|
|
|
63867
64034
|
return out;
|
|
63868
64035
|
}
|
|
63869
64036
|
|
|
63870
|
-
},{}],
|
|
64037
|
+
},{}],528:[function(require,module,exports){
|
|
63871
64038
|
'use strict';
|
|
63872
64039
|
module.exports = function generate_allOf(it, $keyword, $ruleType) {
|
|
63873
64040
|
var out = ' ';
|
|
@@ -63911,7 +64078,7 @@ module.exports = function generate_allOf(it, $keyword, $ruleType) {
|
|
|
63911
64078
|
return out;
|
|
63912
64079
|
}
|
|
63913
64080
|
|
|
63914
|
-
},{}],
|
|
64081
|
+
},{}],529:[function(require,module,exports){
|
|
63915
64082
|
'use strict';
|
|
63916
64083
|
module.exports = function generate_anyOf(it, $keyword, $ruleType) {
|
|
63917
64084
|
var out = ' ';
|
|
@@ -63986,7 +64153,7 @@ module.exports = function generate_anyOf(it, $keyword, $ruleType) {
|
|
|
63986
64153
|
return out;
|
|
63987
64154
|
}
|
|
63988
64155
|
|
|
63989
|
-
},{}],
|
|
64156
|
+
},{}],530:[function(require,module,exports){
|
|
63990
64157
|
'use strict';
|
|
63991
64158
|
module.exports = function generate_comment(it, $keyword, $ruleType) {
|
|
63992
64159
|
var out = ' ';
|
|
@@ -64002,7 +64169,7 @@ module.exports = function generate_comment(it, $keyword, $ruleType) {
|
|
|
64002
64169
|
return out;
|
|
64003
64170
|
}
|
|
64004
64171
|
|
|
64005
|
-
},{}],
|
|
64172
|
+
},{}],531:[function(require,module,exports){
|
|
64006
64173
|
'use strict';
|
|
64007
64174
|
module.exports = function generate_const(it, $keyword, $ruleType) {
|
|
64008
64175
|
var out = ' ';
|
|
@@ -64060,7 +64227,7 @@ module.exports = function generate_const(it, $keyword, $ruleType) {
|
|
|
64060
64227
|
return out;
|
|
64061
64228
|
}
|
|
64062
64229
|
|
|
64063
|
-
},{}],
|
|
64230
|
+
},{}],532:[function(require,module,exports){
|
|
64064
64231
|
'use strict';
|
|
64065
64232
|
module.exports = function generate_contains(it, $keyword, $ruleType) {
|
|
64066
64233
|
var out = ' ';
|
|
@@ -64143,7 +64310,7 @@ module.exports = function generate_contains(it, $keyword, $ruleType) {
|
|
|
64143
64310
|
return out;
|
|
64144
64311
|
}
|
|
64145
64312
|
|
|
64146
|
-
},{}],
|
|
64313
|
+
},{}],533:[function(require,module,exports){
|
|
64147
64314
|
'use strict';
|
|
64148
64315
|
module.exports = function generate_custom(it, $keyword, $ruleType) {
|
|
64149
64316
|
var out = ' ';
|
|
@@ -64373,7 +64540,7 @@ module.exports = function generate_custom(it, $keyword, $ruleType) {
|
|
|
64373
64540
|
return out;
|
|
64374
64541
|
}
|
|
64375
64542
|
|
|
64376
|
-
},{}],
|
|
64543
|
+
},{}],534:[function(require,module,exports){
|
|
64377
64544
|
'use strict';
|
|
64378
64545
|
module.exports = function generate_dependencies(it, $keyword, $ruleType) {
|
|
64379
64546
|
var out = ' ';
|
|
@@ -64543,7 +64710,7 @@ module.exports = function generate_dependencies(it, $keyword, $ruleType) {
|
|
|
64543
64710
|
return out;
|
|
64544
64711
|
}
|
|
64545
64712
|
|
|
64546
|
-
},{}],
|
|
64713
|
+
},{}],535:[function(require,module,exports){
|
|
64547
64714
|
'use strict';
|
|
64548
64715
|
module.exports = function generate_enum(it, $keyword, $ruleType) {
|
|
64549
64716
|
var out = ' ';
|
|
@@ -64611,7 +64778,7 @@ module.exports = function generate_enum(it, $keyword, $ruleType) {
|
|
|
64611
64778
|
return out;
|
|
64612
64779
|
}
|
|
64613
64780
|
|
|
64614
|
-
},{}],
|
|
64781
|
+
},{}],536:[function(require,module,exports){
|
|
64615
64782
|
'use strict';
|
|
64616
64783
|
module.exports = function generate_format(it, $keyword, $ruleType) {
|
|
64617
64784
|
var out = ' ';
|
|
@@ -64763,7 +64930,7 @@ module.exports = function generate_format(it, $keyword, $ruleType) {
|
|
|
64763
64930
|
return out;
|
|
64764
64931
|
}
|
|
64765
64932
|
|
|
64766
|
-
},{}],
|
|
64933
|
+
},{}],537:[function(require,module,exports){
|
|
64767
64934
|
'use strict';
|
|
64768
64935
|
module.exports = function generate_if(it, $keyword, $ruleType) {
|
|
64769
64936
|
var out = ' ';
|
|
@@ -64868,7 +65035,7 @@ module.exports = function generate_if(it, $keyword, $ruleType) {
|
|
|
64868
65035
|
return out;
|
|
64869
65036
|
}
|
|
64870
65037
|
|
|
64871
|
-
},{}],
|
|
65038
|
+
},{}],538:[function(require,module,exports){
|
|
64872
65039
|
'use strict';
|
|
64873
65040
|
|
|
64874
65041
|
//all requires must be explicit because browserify won't work with dynamic requires
|
|
@@ -64903,7 +65070,7 @@ module.exports = {
|
|
|
64903
65070
|
validate: require('./validate')
|
|
64904
65071
|
};
|
|
64905
65072
|
|
|
64906
|
-
},{"./_limit":
|
|
65073
|
+
},{"./_limit":524,"./_limitItems":525,"./_limitLength":526,"./_limitProperties":527,"./allOf":528,"./anyOf":529,"./comment":530,"./const":531,"./contains":532,"./dependencies":534,"./enum":535,"./format":536,"./if":537,"./items":539,"./multipleOf":540,"./not":541,"./oneOf":542,"./pattern":543,"./properties":544,"./propertyNames":545,"./ref":546,"./required":547,"./uniqueItems":548,"./validate":549}],539:[function(require,module,exports){
|
|
64907
65074
|
'use strict';
|
|
64908
65075
|
module.exports = function generate_items(it, $keyword, $ruleType) {
|
|
64909
65076
|
var out = ' ';
|
|
@@ -65045,7 +65212,7 @@ module.exports = function generate_items(it, $keyword, $ruleType) {
|
|
|
65045
65212
|
return out;
|
|
65046
65213
|
}
|
|
65047
65214
|
|
|
65048
|
-
},{}],
|
|
65215
|
+
},{}],540:[function(require,module,exports){
|
|
65049
65216
|
'use strict';
|
|
65050
65217
|
module.exports = function generate_multipleOf(it, $keyword, $ruleType) {
|
|
65051
65218
|
var out = ' ';
|
|
@@ -65127,7 +65294,7 @@ module.exports = function generate_multipleOf(it, $keyword, $ruleType) {
|
|
|
65127
65294
|
return out;
|
|
65128
65295
|
}
|
|
65129
65296
|
|
|
65130
|
-
},{}],
|
|
65297
|
+
},{}],541:[function(require,module,exports){
|
|
65131
65298
|
'use strict';
|
|
65132
65299
|
module.exports = function generate_not(it, $keyword, $ruleType) {
|
|
65133
65300
|
var out = ' ';
|
|
@@ -65213,7 +65380,7 @@ module.exports = function generate_not(it, $keyword, $ruleType) {
|
|
|
65213
65380
|
return out;
|
|
65214
65381
|
}
|
|
65215
65382
|
|
|
65216
|
-
},{}],
|
|
65383
|
+
},{}],542:[function(require,module,exports){
|
|
65217
65384
|
'use strict';
|
|
65218
65385
|
module.exports = function generate_oneOf(it, $keyword, $ruleType) {
|
|
65219
65386
|
var out = ' ';
|
|
@@ -65288,7 +65455,7 @@ module.exports = function generate_oneOf(it, $keyword, $ruleType) {
|
|
|
65288
65455
|
return out;
|
|
65289
65456
|
}
|
|
65290
65457
|
|
|
65291
|
-
},{}],
|
|
65458
|
+
},{}],543:[function(require,module,exports){
|
|
65292
65459
|
'use strict';
|
|
65293
65460
|
module.exports = function generate_pattern(it, $keyword, $ruleType) {
|
|
65294
65461
|
var out = ' ';
|
|
@@ -65365,7 +65532,7 @@ module.exports = function generate_pattern(it, $keyword, $ruleType) {
|
|
|
65365
65532
|
return out;
|
|
65366
65533
|
}
|
|
65367
65534
|
|
|
65368
|
-
},{}],
|
|
65535
|
+
},{}],544:[function(require,module,exports){
|
|
65369
65536
|
'use strict';
|
|
65370
65537
|
module.exports = function generate_properties(it, $keyword, $ruleType) {
|
|
65371
65538
|
var out = ' ';
|
|
@@ -65702,7 +65869,7 @@ module.exports = function generate_properties(it, $keyword, $ruleType) {
|
|
|
65702
65869
|
return out;
|
|
65703
65870
|
}
|
|
65704
65871
|
|
|
65705
|
-
},{}],
|
|
65872
|
+
},{}],545:[function(require,module,exports){
|
|
65706
65873
|
'use strict';
|
|
65707
65874
|
module.exports = function generate_propertyNames(it, $keyword, $ruleType) {
|
|
65708
65875
|
var out = ' ';
|
|
@@ -65785,7 +65952,7 @@ module.exports = function generate_propertyNames(it, $keyword, $ruleType) {
|
|
|
65785
65952
|
return out;
|
|
65786
65953
|
}
|
|
65787
65954
|
|
|
65788
|
-
},{}],
|
|
65955
|
+
},{}],546:[function(require,module,exports){
|
|
65789
65956
|
'use strict';
|
|
65790
65957
|
module.exports = function generate_ref(it, $keyword, $ruleType) {
|
|
65791
65958
|
var out = ' ';
|
|
@@ -65911,7 +66078,7 @@ module.exports = function generate_ref(it, $keyword, $ruleType) {
|
|
|
65911
66078
|
return out;
|
|
65912
66079
|
}
|
|
65913
66080
|
|
|
65914
|
-
},{}],
|
|
66081
|
+
},{}],547:[function(require,module,exports){
|
|
65915
66082
|
'use strict';
|
|
65916
66083
|
module.exports = function generate_required(it, $keyword, $ruleType) {
|
|
65917
66084
|
var out = ' ';
|
|
@@ -66183,7 +66350,7 @@ module.exports = function generate_required(it, $keyword, $ruleType) {
|
|
|
66183
66350
|
return out;
|
|
66184
66351
|
}
|
|
66185
66352
|
|
|
66186
|
-
},{}],
|
|
66353
|
+
},{}],548:[function(require,module,exports){
|
|
66187
66354
|
'use strict';
|
|
66188
66355
|
module.exports = function generate_uniqueItems(it, $keyword, $ruleType) {
|
|
66189
66356
|
var out = ' ';
|
|
@@ -66271,7 +66438,7 @@ module.exports = function generate_uniqueItems(it, $keyword, $ruleType) {
|
|
|
66271
66438
|
return out;
|
|
66272
66439
|
}
|
|
66273
66440
|
|
|
66274
|
-
},{}],
|
|
66441
|
+
},{}],549:[function(require,module,exports){
|
|
66275
66442
|
'use strict';
|
|
66276
66443
|
module.exports = function generate_validate(it, $keyword, $ruleType) {
|
|
66277
66444
|
var out = '';
|
|
@@ -66755,7 +66922,7 @@ module.exports = function generate_validate(it, $keyword, $ruleType) {
|
|
|
66755
66922
|
return out;
|
|
66756
66923
|
}
|
|
66757
66924
|
|
|
66758
|
-
},{}],
|
|
66925
|
+
},{}],550:[function(require,module,exports){
|
|
66759
66926
|
'use strict';
|
|
66760
66927
|
|
|
66761
66928
|
var IDENTIFIER = /^[a-z_$][a-z0-9_$-]*$/i;
|
|
@@ -66903,7 +67070,7 @@ function validateKeyword(definition, throwError) {
|
|
|
66903
67070
|
return false;
|
|
66904
67071
|
}
|
|
66905
67072
|
|
|
66906
|
-
},{"./definition_schema":
|
|
67073
|
+
},{"./definition_schema":523,"./dotjs/custom":533}],551:[function(require,module,exports){
|
|
66907
67074
|
module.exports={
|
|
66908
67075
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
66909
67076
|
"$id": "https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#",
|
|
@@ -66922,7 +67089,7 @@ module.exports={
|
|
|
66922
67089
|
"additionalProperties": false
|
|
66923
67090
|
}
|
|
66924
67091
|
|
|
66925
|
-
},{}],
|
|
67092
|
+
},{}],552:[function(require,module,exports){
|
|
66926
67093
|
module.exports={
|
|
66927
67094
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
66928
67095
|
"$id": "http://json-schema.org/draft-06/schema#",
|
|
@@ -67078,7 +67245,7 @@ module.exports={
|
|
|
67078
67245
|
"default": {}
|
|
67079
67246
|
}
|
|
67080
67247
|
|
|
67081
|
-
},{}],
|
|
67248
|
+
},{}],553:[function(require,module,exports){
|
|
67082
67249
|
module.exports={
|
|
67083
67250
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
67084
67251
|
"$id": "http://json-schema.org/draft-07/schema#",
|
|
@@ -67248,7 +67415,7 @@ module.exports={
|
|
|
67248
67415
|
"default": true
|
|
67249
67416
|
}
|
|
67250
67417
|
|
|
67251
|
-
},{}],
|
|
67418
|
+
},{}],554:[function(require,module,exports){
|
|
67252
67419
|
// Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
|
|
67253
67420
|
|
|
67254
67421
|
|
|
@@ -67263,7 +67430,7 @@ module.exports = {
|
|
|
67263
67430
|
|
|
67264
67431
|
};
|
|
67265
67432
|
|
|
67266
|
-
},{}],
|
|
67433
|
+
},{}],555:[function(require,module,exports){
|
|
67267
67434
|
// Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
|
|
67268
67435
|
|
|
67269
67436
|
var errors = require('./errors');
|
|
@@ -67292,7 +67459,7 @@ for (var e in errors) {
|
|
|
67292
67459
|
module.exports[e] = errors[e];
|
|
67293
67460
|
}
|
|
67294
67461
|
|
|
67295
|
-
},{"./errors":
|
|
67462
|
+
},{"./errors":554,"./reader":556,"./types":557,"./writer":558}],556:[function(require,module,exports){
|
|
67296
67463
|
// Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
|
|
67297
67464
|
|
|
67298
67465
|
var assert = require('assert');
|
|
@@ -67556,7 +67723,7 @@ Reader.prototype._readTag = function (tag) {
|
|
|
67556
67723
|
|
|
67557
67724
|
module.exports = Reader;
|
|
67558
67725
|
|
|
67559
|
-
},{"./errors":
|
|
67726
|
+
},{"./errors":554,"./types":557,"assert":172,"safer-buffer":643}],557:[function(require,module,exports){
|
|
67560
67727
|
// Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
|
|
67561
67728
|
|
|
67562
67729
|
|
|
@@ -67594,7 +67761,7 @@ module.exports = {
|
|
|
67594
67761
|
Context: 128
|
|
67595
67762
|
};
|
|
67596
67763
|
|
|
67597
|
-
},{}],
|
|
67764
|
+
},{}],558:[function(require,module,exports){
|
|
67598
67765
|
// Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
|
|
67599
67766
|
|
|
67600
67767
|
var assert = require('assert');
|
|
@@ -67913,7 +68080,7 @@ Writer.prototype._ensure = function (len) {
|
|
|
67913
68080
|
|
|
67914
68081
|
module.exports = Writer;
|
|
67915
68082
|
|
|
67916
|
-
},{"./errors":
|
|
68083
|
+
},{"./errors":554,"./types":557,"assert":172,"safer-buffer":643}],559:[function(require,module,exports){
|
|
67917
68084
|
// Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
|
|
67918
68085
|
|
|
67919
68086
|
// If you have no idea what ASN.1 or BER is, see this:
|
|
@@ -67935,7 +68102,7 @@ module.exports = {
|
|
|
67935
68102
|
|
|
67936
68103
|
};
|
|
67937
68104
|
|
|
67938
|
-
},{"./ber/index":
|
|
68105
|
+
},{"./ber/index":555}],560:[function(require,module,exports){
|
|
67939
68106
|
(function (Buffer,process){(function (){
|
|
67940
68107
|
// Copyright (c) 2012, Mark Cavage. All rights reserved.
|
|
67941
68108
|
// Copyright 2015 Joyent, Inc.
|
|
@@ -68150,7 +68317,7 @@ function _setExports(ndebug) {
|
|
|
68150
68317
|
module.exports = _setExports(process.env.NODE_NDEBUG);
|
|
68151
68318
|
|
|
68152
68319
|
}).call(this)}).call(this,{"isBuffer":require("../../browser-agent/node_modules/is-buffer/index.js")},require('_process'))
|
|
68153
|
-
},{"../../browser-agent/node_modules/is-buffer/index.js":302,"_process":335,"assert":172,"stream":386,"util":400}],
|
|
68320
|
+
},{"../../browser-agent/node_modules/is-buffer/index.js":302,"_process":335,"assert":172,"stream":386,"util":400}],561:[function(require,module,exports){
|
|
68154
68321
|
|
|
68155
68322
|
/*!
|
|
68156
68323
|
* Copyright 2010 LearnBoost <dev@learnboost.com>
|
|
@@ -68364,7 +68531,7 @@ function canonicalizeResource (resource) {
|
|
|
68364
68531
|
}
|
|
68365
68532
|
module.exports.canonicalizeResource = canonicalizeResource
|
|
68366
68533
|
|
|
68367
|
-
},{"crypto":237,"url":395}],
|
|
68534
|
+
},{"crypto":237,"url":395}],562:[function(require,module,exports){
|
|
68368
68535
|
(function (process,Buffer){(function (){
|
|
68369
68536
|
var aws4 = exports,
|
|
68370
68537
|
url = require('url'),
|
|
@@ -68749,7 +68916,7 @@ aws4.sign = function(request, credentials) {
|
|
|
68749
68916
|
}
|
|
68750
68917
|
|
|
68751
68918
|
}).call(this)}).call(this,require('_process'),require("buffer").Buffer)
|
|
68752
|
-
},{"./lru":
|
|
68919
|
+
},{"./lru":563,"_process":335,"buffer":227,"crypto":237,"querystring":346,"url":395}],563:[function(require,module,exports){
|
|
68753
68920
|
module.exports = function(size) {
|
|
68754
68921
|
return new LruCache(size)
|
|
68755
68922
|
}
|
|
@@ -68847,7 +69014,7 @@ function DoublyLinkedNode(key, val) {
|
|
|
68847
69014
|
this.next = null
|
|
68848
69015
|
}
|
|
68849
69016
|
|
|
68850
|
-
},{}],
|
|
69017
|
+
},{}],564:[function(require,module,exports){
|
|
68851
69018
|
'use strict';
|
|
68852
69019
|
|
|
68853
69020
|
var crypto_hash_sha512 = require('tweetnacl').lowlevel.crypto_hash;
|
|
@@ -69405,7 +69572,7 @@ module.exports = {
|
|
|
69405
69572
|
pbkdf: bcrypt_pbkdf
|
|
69406
69573
|
};
|
|
69407
69574
|
|
|
69408
|
-
},{"tweetnacl":
|
|
69575
|
+
},{"tweetnacl":677}],565:[function(require,module,exports){
|
|
69409
69576
|
function Caseless (dict) {
|
|
69410
69577
|
this.dict = dict || {}
|
|
69411
69578
|
}
|
|
@@ -69474,7 +69641,7 @@ module.exports.httpify = function (resp, headers) {
|
|
|
69474
69641
|
return c
|
|
69475
69642
|
}
|
|
69476
69643
|
|
|
69477
|
-
},{}],
|
|
69644
|
+
},{}],566:[function(require,module,exports){
|
|
69478
69645
|
(function (Buffer){(function (){
|
|
69479
69646
|
var util = require('util');
|
|
69480
69647
|
var Stream = require('stream').Stream;
|
|
@@ -69686,7 +69853,7 @@ CombinedStream.prototype._emitError = function(err) {
|
|
|
69686
69853
|
};
|
|
69687
69854
|
|
|
69688
69855
|
}).call(this)}).call(this,{"isBuffer":require("../../../browser-agent/node_modules/is-buffer/index.js")})
|
|
69689
|
-
},{"../../../browser-agent/node_modules/is-buffer/index.js":302,"delayed-stream":
|
|
69856
|
+
},{"../../../browser-agent/node_modules/is-buffer/index.js":302,"delayed-stream":568,"stream":386,"util":400}],567:[function(require,module,exports){
|
|
69690
69857
|
(function (Buffer){(function (){
|
|
69691
69858
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
69692
69859
|
//
|
|
@@ -69797,7 +69964,7 @@ function objectToString(o) {
|
|
|
69797
69964
|
}
|
|
69798
69965
|
|
|
69799
69966
|
}).call(this)}).call(this,{"isBuffer":require("../../../browser-agent/node_modules/is-buffer/index.js")})
|
|
69800
|
-
},{"../../../browser-agent/node_modules/is-buffer/index.js":302}],
|
|
69967
|
+
},{"../../../browser-agent/node_modules/is-buffer/index.js":302}],568:[function(require,module,exports){
|
|
69801
69968
|
var Stream = require('stream').Stream;
|
|
69802
69969
|
var util = require('util');
|
|
69803
69970
|
|
|
@@ -69906,7 +70073,7 @@ DelayedStream.prototype._checkIfMaxDataSizeExceeded = function() {
|
|
|
69906
70073
|
this.emit('error', new Error(message));
|
|
69907
70074
|
};
|
|
69908
70075
|
|
|
69909
|
-
},{"stream":386,"util":400}],
|
|
70076
|
+
},{"stream":386,"util":400}],569:[function(require,module,exports){
|
|
69910
70077
|
var crypto = require("crypto");
|
|
69911
70078
|
var BigInteger = require("jsbn").BigInteger;
|
|
69912
70079
|
var ECPointFp = require("./lib/ec.js").ECPointFp;
|
|
@@ -69966,7 +70133,7 @@ exports.ECKey = function(curve, key, isPublic)
|
|
|
69966
70133
|
}
|
|
69967
70134
|
|
|
69968
70135
|
|
|
69969
|
-
},{"./lib/ec.js":
|
|
70136
|
+
},{"./lib/ec.js":570,"./lib/sec.js":571,"crypto":237,"jsbn":606,"safer-buffer":643}],570:[function(require,module,exports){
|
|
69970
70137
|
// Basic Javascript Elliptic Curve implementation
|
|
69971
70138
|
// Ported loosely from BouncyCastle's Java EC code
|
|
69972
70139
|
// Only Fp curves implemented for now
|
|
@@ -70529,7 +70696,7 @@ var exports = {
|
|
|
70529
70696
|
|
|
70530
70697
|
module.exports = exports
|
|
70531
70698
|
|
|
70532
|
-
},{"jsbn":
|
|
70699
|
+
},{"jsbn":606}],571:[function(require,module,exports){
|
|
70533
70700
|
// Named EC curves
|
|
70534
70701
|
|
|
70535
70702
|
// Requires ec.js, jsbn.js, and jsbn2.js
|
|
@@ -70701,7 +70868,7 @@ module.exports = {
|
|
|
70701
70868
|
"secp256r1":secp256r1
|
|
70702
70869
|
}
|
|
70703
70870
|
|
|
70704
|
-
},{"./ec.js":
|
|
70871
|
+
},{"./ec.js":570,"jsbn":606}],572:[function(require,module,exports){
|
|
70705
70872
|
'use strict';
|
|
70706
70873
|
|
|
70707
70874
|
var hasOwn = Object.prototype.hasOwnProperty;
|
|
@@ -70820,7 +70987,7 @@ module.exports = function extend() {
|
|
|
70820
70987
|
return target;
|
|
70821
70988
|
};
|
|
70822
70989
|
|
|
70823
|
-
},{}],
|
|
70990
|
+
},{}],573:[function(require,module,exports){
|
|
70824
70991
|
(function (process){(function (){
|
|
70825
70992
|
/*
|
|
70826
70993
|
* extsprintf.js: extended POSIX-style sprintf
|
|
@@ -71007,7 +71174,7 @@ function dumpException(ex)
|
|
|
71007
71174
|
}
|
|
71008
71175
|
|
|
71009
71176
|
}).call(this)}).call(this,require('_process'))
|
|
71010
|
-
},{"_process":335,"assert":172,"util":400}],
|
|
71177
|
+
},{"_process":335,"assert":172,"util":400}],574:[function(require,module,exports){
|
|
71011
71178
|
'use strict';
|
|
71012
71179
|
|
|
71013
71180
|
// do not edit .js files directly - edit src/index.jst
|
|
@@ -71055,7 +71222,7 @@ module.exports = function equal(a, b) {
|
|
|
71055
71222
|
return a!==a && b!==b;
|
|
71056
71223
|
};
|
|
71057
71224
|
|
|
71058
|
-
},{}],
|
|
71225
|
+
},{}],575:[function(require,module,exports){
|
|
71059
71226
|
'use strict';
|
|
71060
71227
|
|
|
71061
71228
|
module.exports = function (data, opts) {
|
|
@@ -71116,7 +71283,7 @@ module.exports = function (data, opts) {
|
|
|
71116
71283
|
})(data);
|
|
71117
71284
|
};
|
|
71118
71285
|
|
|
71119
|
-
},{}],
|
|
71286
|
+
},{}],576:[function(require,module,exports){
|
|
71120
71287
|
module.exports = ForeverAgent
|
|
71121
71288
|
ForeverAgent.SSL = ForeverAgentSSL
|
|
71122
71289
|
|
|
@@ -71256,11 +71423,11 @@ function createConnectionSSL (port, host, options) {
|
|
|
71256
71423
|
return tls.connect(options);
|
|
71257
71424
|
}
|
|
71258
71425
|
|
|
71259
|
-
},{"http":387,"https":298,"net":225,"tls":225,"util":400}],
|
|
71426
|
+
},{"http":387,"https":298,"net":225,"tls":225,"util":400}],577:[function(require,module,exports){
|
|
71260
71427
|
/* eslint-env browser */
|
|
71261
71428
|
module.exports = typeof self == 'object' ? self.FormData : window.FormData;
|
|
71262
71429
|
|
|
71263
|
-
},{}],
|
|
71430
|
+
},{}],578:[function(require,module,exports){
|
|
71264
71431
|
module.exports={
|
|
71265
71432
|
"$id": "afterRequest.json#",
|
|
71266
71433
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71292,7 +71459,7 @@ module.exports={
|
|
|
71292
71459
|
}
|
|
71293
71460
|
}
|
|
71294
71461
|
|
|
71295
|
-
},{}],
|
|
71462
|
+
},{}],579:[function(require,module,exports){
|
|
71296
71463
|
module.exports={
|
|
71297
71464
|
"$id": "beforeRequest.json#",
|
|
71298
71465
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71324,7 +71491,7 @@ module.exports={
|
|
|
71324
71491
|
}
|
|
71325
71492
|
}
|
|
71326
71493
|
|
|
71327
|
-
},{}],
|
|
71494
|
+
},{}],580:[function(require,module,exports){
|
|
71328
71495
|
module.exports={
|
|
71329
71496
|
"$id": "browser.json#",
|
|
71330
71497
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71346,7 +71513,7 @@ module.exports={
|
|
|
71346
71513
|
}
|
|
71347
71514
|
}
|
|
71348
71515
|
|
|
71349
|
-
},{}],
|
|
71516
|
+
},{}],581:[function(require,module,exports){
|
|
71350
71517
|
module.exports={
|
|
71351
71518
|
"$id": "cache.json#",
|
|
71352
71519
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71369,7 +71536,7 @@ module.exports={
|
|
|
71369
71536
|
}
|
|
71370
71537
|
}
|
|
71371
71538
|
|
|
71372
|
-
},{}],
|
|
71539
|
+
},{}],582:[function(require,module,exports){
|
|
71373
71540
|
module.exports={
|
|
71374
71541
|
"$id": "content.json#",
|
|
71375
71542
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71400,7 +71567,7 @@ module.exports={
|
|
|
71400
71567
|
}
|
|
71401
71568
|
}
|
|
71402
71569
|
|
|
71403
|
-
},{}],
|
|
71570
|
+
},{}],583:[function(require,module,exports){
|
|
71404
71571
|
module.exports={
|
|
71405
71572
|
"$id": "cookie.json#",
|
|
71406
71573
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71438,7 +71605,7 @@ module.exports={
|
|
|
71438
71605
|
}
|
|
71439
71606
|
}
|
|
71440
71607
|
|
|
71441
|
-
},{}],
|
|
71608
|
+
},{}],584:[function(require,module,exports){
|
|
71442
71609
|
module.exports={
|
|
71443
71610
|
"$id": "creator.json#",
|
|
71444
71611
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71460,7 +71627,7 @@ module.exports={
|
|
|
71460
71627
|
}
|
|
71461
71628
|
}
|
|
71462
71629
|
|
|
71463
|
-
},{}],
|
|
71630
|
+
},{}],585:[function(require,module,exports){
|
|
71464
71631
|
module.exports={
|
|
71465
71632
|
"$id": "entry.json#",
|
|
71466
71633
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71515,7 +71682,7 @@ module.exports={
|
|
|
71515
71682
|
}
|
|
71516
71683
|
}
|
|
71517
71684
|
|
|
71518
|
-
},{}],
|
|
71685
|
+
},{}],586:[function(require,module,exports){
|
|
71519
71686
|
module.exports={
|
|
71520
71687
|
"$id": "har.json#",
|
|
71521
71688
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71530,7 +71697,7 @@ module.exports={
|
|
|
71530
71697
|
}
|
|
71531
71698
|
}
|
|
71532
71699
|
|
|
71533
|
-
},{}],
|
|
71700
|
+
},{}],587:[function(require,module,exports){
|
|
71534
71701
|
module.exports={
|
|
71535
71702
|
"$id": "header.json#",
|
|
71536
71703
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71552,7 +71719,7 @@ module.exports={
|
|
|
71552
71719
|
}
|
|
71553
71720
|
}
|
|
71554
71721
|
|
|
71555
|
-
},{}],
|
|
71722
|
+
},{}],588:[function(require,module,exports){
|
|
71556
71723
|
'use strict'
|
|
71557
71724
|
|
|
71558
71725
|
module.exports = {
|
|
@@ -71576,7 +71743,7 @@ module.exports = {
|
|
|
71576
71743
|
timings: require('./timings.json')
|
|
71577
71744
|
}
|
|
71578
71745
|
|
|
71579
|
-
},{"./afterRequest.json":
|
|
71746
|
+
},{"./afterRequest.json":578,"./beforeRequest.json":579,"./browser.json":580,"./cache.json":581,"./content.json":582,"./cookie.json":583,"./creator.json":584,"./entry.json":585,"./har.json":586,"./header.json":587,"./log.json":589,"./page.json":590,"./pageTimings.json":591,"./postData.json":592,"./query.json":593,"./request.json":594,"./response.json":595,"./timings.json":596}],589:[function(require,module,exports){
|
|
71580
71747
|
module.exports={
|
|
71581
71748
|
"$id": "log.json#",
|
|
71582
71749
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71614,7 +71781,7 @@ module.exports={
|
|
|
71614
71781
|
}
|
|
71615
71782
|
}
|
|
71616
71783
|
|
|
71617
|
-
},{}],
|
|
71784
|
+
},{}],590:[function(require,module,exports){
|
|
71618
71785
|
module.exports={
|
|
71619
71786
|
"$id": "page.json#",
|
|
71620
71787
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71648,7 +71815,7 @@ module.exports={
|
|
|
71648
71815
|
}
|
|
71649
71816
|
}
|
|
71650
71817
|
|
|
71651
|
-
},{}],
|
|
71818
|
+
},{}],591:[function(require,module,exports){
|
|
71652
71819
|
module.exports={
|
|
71653
71820
|
"$id": "pageTimings.json#",
|
|
71654
71821
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71668,7 +71835,7 @@ module.exports={
|
|
|
71668
71835
|
}
|
|
71669
71836
|
}
|
|
71670
71837
|
|
|
71671
|
-
},{}],
|
|
71838
|
+
},{}],592:[function(require,module,exports){
|
|
71672
71839
|
module.exports={
|
|
71673
71840
|
"$id": "postData.json#",
|
|
71674
71841
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71713,7 +71880,7 @@ module.exports={
|
|
|
71713
71880
|
}
|
|
71714
71881
|
}
|
|
71715
71882
|
|
|
71716
|
-
},{}],
|
|
71883
|
+
},{}],593:[function(require,module,exports){
|
|
71717
71884
|
module.exports={
|
|
71718
71885
|
"$id": "query.json#",
|
|
71719
71886
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71735,7 +71902,7 @@ module.exports={
|
|
|
71735
71902
|
}
|
|
71736
71903
|
}
|
|
71737
71904
|
|
|
71738
|
-
},{}],
|
|
71905
|
+
},{}],594:[function(require,module,exports){
|
|
71739
71906
|
module.exports={
|
|
71740
71907
|
"$id": "request.json#",
|
|
71741
71908
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71794,7 +71961,7 @@ module.exports={
|
|
|
71794
71961
|
}
|
|
71795
71962
|
}
|
|
71796
71963
|
|
|
71797
|
-
},{}],
|
|
71964
|
+
},{}],595:[function(require,module,exports){
|
|
71798
71965
|
module.exports={
|
|
71799
71966
|
"$id": "response.json#",
|
|
71800
71967
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71850,7 +72017,7 @@ module.exports={
|
|
|
71850
72017
|
}
|
|
71851
72018
|
}
|
|
71852
72019
|
|
|
71853
|
-
},{}],
|
|
72020
|
+
},{}],596:[function(require,module,exports){
|
|
71854
72021
|
module.exports={
|
|
71855
72022
|
"$id": "timings.json#",
|
|
71856
72023
|
"$schema": "http://json-schema.org/draft-06/schema#",
|
|
@@ -71894,7 +72061,7 @@ module.exports={
|
|
|
71894
72061
|
}
|
|
71895
72062
|
}
|
|
71896
72063
|
|
|
71897
|
-
},{}],
|
|
72064
|
+
},{}],597:[function(require,module,exports){
|
|
71898
72065
|
function HARError (errors) {
|
|
71899
72066
|
var message = 'validation failed'
|
|
71900
72067
|
|
|
@@ -71913,7 +72080,7 @@ HARError.prototype = Error.prototype
|
|
|
71913
72080
|
|
|
71914
72081
|
module.exports = HARError
|
|
71915
72082
|
|
|
71916
|
-
},{}],
|
|
72083
|
+
},{}],598:[function(require,module,exports){
|
|
71917
72084
|
var Ajv = require('ajv')
|
|
71918
72085
|
var HARError = require('./error')
|
|
71919
72086
|
var schemas = require('har-schema')
|
|
@@ -72017,7 +72184,7 @@ exports.timings = function (data) {
|
|
|
72017
72184
|
return validate('timings', data)
|
|
72018
72185
|
}
|
|
72019
72186
|
|
|
72020
|
-
},{"./error":
|
|
72187
|
+
},{"./error":597,"ajv":511,"ajv/lib/refs/json-schema-draft-06.json":552,"har-schema":588}],599:[function(require,module,exports){
|
|
72021
72188
|
// Copyright 2015 Joyent, Inc.
|
|
72022
72189
|
|
|
72023
72190
|
var parser = require('./parser');
|
|
@@ -72048,7 +72215,7 @@ module.exports = {
|
|
|
72048
72215
|
verifyHMAC: verify.verifyHMAC
|
|
72049
72216
|
};
|
|
72050
72217
|
|
|
72051
|
-
},{"./parser":
|
|
72218
|
+
},{"./parser":600,"./signer":601,"./utils":602,"./verify":603}],600:[function(require,module,exports){
|
|
72052
72219
|
// Copyright 2012 Joyent, Inc. All rights reserved.
|
|
72053
72220
|
|
|
72054
72221
|
var assert = require('assert-plus');
|
|
@@ -72365,7 +72532,7 @@ module.exports = {
|
|
|
72365
72532
|
|
|
72366
72533
|
};
|
|
72367
72534
|
|
|
72368
|
-
},{"./utils":
|
|
72535
|
+
},{"./utils":602,"assert-plus":560,"util":400}],601:[function(require,module,exports){
|
|
72369
72536
|
(function (Buffer){(function (){
|
|
72370
72537
|
// Copyright 2012 Joyent, Inc. All rights reserved.
|
|
72371
72538
|
|
|
@@ -72770,7 +72937,7 @@ module.exports = {
|
|
|
72770
72937
|
};
|
|
72771
72938
|
|
|
72772
72939
|
}).call(this)}).call(this,{"isBuffer":require("../../../browser-agent/node_modules/is-buffer/index.js")})
|
|
72773
|
-
},{"../../../browser-agent/node_modules/is-buffer/index.js":302,"./utils":
|
|
72940
|
+
},{"../../../browser-agent/node_modules/is-buffer/index.js":302,"./utils":602,"assert-plus":560,"crypto":237,"http":387,"jsprim":610,"sshpk":663,"util":400}],602:[function(require,module,exports){
|
|
72774
72941
|
// Copyright 2012 Joyent, Inc. All rights reserved.
|
|
72775
72942
|
|
|
72776
72943
|
var assert = require('assert-plus');
|
|
@@ -72884,7 +73051,7 @@ module.exports = {
|
|
|
72884
73051
|
}
|
|
72885
73052
|
};
|
|
72886
73053
|
|
|
72887
|
-
},{"assert-plus":
|
|
73054
|
+
},{"assert-plus":560,"sshpk":663,"util":400}],603:[function(require,module,exports){
|
|
72888
73055
|
(function (Buffer){(function (){
|
|
72889
73056
|
// Copyright 2015 Joyent, Inc.
|
|
72890
73057
|
|
|
@@ -72976,7 +73143,7 @@ module.exports = {
|
|
|
72976
73143
|
};
|
|
72977
73144
|
|
|
72978
73145
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
72979
|
-
},{"./utils":
|
|
73146
|
+
},{"./utils":602,"assert-plus":560,"buffer":227,"crypto":237,"sshpk":663}],604:[function(require,module,exports){
|
|
72980
73147
|
module.exports = isTypedArray
|
|
72981
73148
|
isTypedArray.strict = isStrictTypedArray
|
|
72982
73149
|
isTypedArray.loose = isLooseTypedArray
|
|
@@ -73019,7 +73186,7 @@ function isLooseTypedArray(arr) {
|
|
|
73019
73186
|
return names[toString.call(arr)]
|
|
73020
73187
|
}
|
|
73021
73188
|
|
|
73022
|
-
},{}],
|
|
73189
|
+
},{}],605:[function(require,module,exports){
|
|
73023
73190
|
var stream = require('stream')
|
|
73024
73191
|
|
|
73025
73192
|
|
|
@@ -73048,7 +73215,7 @@ module.exports.isReadable = isReadable
|
|
|
73048
73215
|
module.exports.isWritable = isWritable
|
|
73049
73216
|
module.exports.isDuplex = isDuplex
|
|
73050
73217
|
|
|
73051
|
-
},{"stream":386}],
|
|
73218
|
+
},{"stream":386}],606:[function(require,module,exports){
|
|
73052
73219
|
(function(){
|
|
73053
73220
|
|
|
73054
73221
|
// Copyright (c) 2005 Tom Wu
|
|
@@ -74407,7 +74574,7 @@ module.exports.isDuplex = isDuplex
|
|
|
74407
74574
|
|
|
74408
74575
|
}).call(this);
|
|
74409
74576
|
|
|
74410
|
-
},{}],
|
|
74577
|
+
},{}],607:[function(require,module,exports){
|
|
74411
74578
|
'use strict';
|
|
74412
74579
|
|
|
74413
74580
|
var traverse = module.exports = function (schema, opts, cb) {
|
|
@@ -74498,7 +74665,7 @@ function escapeJsonPtr(str) {
|
|
|
74498
74665
|
return str.replace(/~/g, '~0').replace(/\//g, '~1');
|
|
74499
74666
|
}
|
|
74500
74667
|
|
|
74501
|
-
},{}],
|
|
74668
|
+
},{}],608:[function(require,module,exports){
|
|
74502
74669
|
/**
|
|
74503
74670
|
* JSONSchema Validator - Validates JavaScript objects using JSON Schemas
|
|
74504
74671
|
* (http://www.json.com/json-schema-proposal/)
|
|
@@ -74771,7 +74938,7 @@ exports.mustBeValid = function(result){
|
|
|
74771
74938
|
return exports;
|
|
74772
74939
|
}));
|
|
74773
74940
|
|
|
74774
|
-
},{}],
|
|
74941
|
+
},{}],609:[function(require,module,exports){
|
|
74775
74942
|
exports = module.exports = stringify
|
|
74776
74943
|
exports.getSerialize = serializer
|
|
74777
74944
|
|
|
@@ -74800,7 +74967,7 @@ function serializer(replacer, cycleReplacer) {
|
|
|
74800
74967
|
}
|
|
74801
74968
|
}
|
|
74802
74969
|
|
|
74803
|
-
},{}],
|
|
74970
|
+
},{}],610:[function(require,module,exports){
|
|
74804
74971
|
/*
|
|
74805
74972
|
* lib/jsprim.js: utilities for primitive JavaScript types
|
|
74806
74973
|
*/
|
|
@@ -75537,7 +75704,7 @@ function mergeObjects(provided, overrides, defaults)
|
|
|
75537
75704
|
return (rv);
|
|
75538
75705
|
}
|
|
75539
75706
|
|
|
75540
|
-
},{"assert-plus":
|
|
75707
|
+
},{"assert-plus":560,"extsprintf":573,"json-schema":608,"util":400,"verror":684}],611:[function(require,module,exports){
|
|
75541
75708
|
/**
|
|
75542
75709
|
* The code was extracted from:
|
|
75543
75710
|
* https://github.com/davidchambers/Base64.js
|
|
@@ -75577,7 +75744,7 @@ function polyfill (input) {
|
|
|
75577
75744
|
|
|
75578
75745
|
module.exports = typeof window !== 'undefined' && window.atob && window.atob.bind(window) || polyfill;
|
|
75579
75746
|
|
|
75580
|
-
},{}],
|
|
75747
|
+
},{}],612:[function(require,module,exports){
|
|
75581
75748
|
var atob = require('./atob');
|
|
75582
75749
|
|
|
75583
75750
|
function b64DecodeUnicode(str) {
|
|
@@ -75612,7 +75779,7 @@ module.exports = function(str) {
|
|
|
75612
75779
|
}
|
|
75613
75780
|
};
|
|
75614
75781
|
|
|
75615
|
-
},{"./atob":
|
|
75782
|
+
},{"./atob":611}],613:[function(require,module,exports){
|
|
75616
75783
|
'use strict';
|
|
75617
75784
|
|
|
75618
75785
|
var base64_url_decode = require('./base64_url_decode');
|
|
@@ -75640,7 +75807,7 @@ module.exports = function (token,options) {
|
|
|
75640
75807
|
|
|
75641
75808
|
module.exports.InvalidTokenError = InvalidTokenError;
|
|
75642
75809
|
|
|
75643
|
-
},{"./base64_url_decode":
|
|
75810
|
+
},{"./base64_url_decode":612}],614:[function(require,module,exports){
|
|
75644
75811
|
module.exports={
|
|
75645
75812
|
"application/1d-interleaved-parityfec": {
|
|
75646
75813
|
"source": "iana"
|
|
@@ -84161,7 +84328,7 @@ module.exports={
|
|
|
84161
84328
|
}
|
|
84162
84329
|
}
|
|
84163
84330
|
|
|
84164
|
-
},{}],
|
|
84331
|
+
},{}],615:[function(require,module,exports){
|
|
84165
84332
|
/*!
|
|
84166
84333
|
* mime-db
|
|
84167
84334
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -84175,7 +84342,7 @@ module.exports={
|
|
|
84175
84342
|
|
|
84176
84343
|
module.exports = require('./db.json')
|
|
84177
84344
|
|
|
84178
|
-
},{"./db.json":
|
|
84345
|
+
},{"./db.json":614}],616:[function(require,module,exports){
|
|
84179
84346
|
/*!
|
|
84180
84347
|
* mime-types
|
|
84181
84348
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -84365,7 +84532,7 @@ function populateMaps (extensions, types) {
|
|
|
84365
84532
|
})
|
|
84366
84533
|
}
|
|
84367
84534
|
|
|
84368
|
-
},{"mime-db":
|
|
84535
|
+
},{"mime-db":615,"path":327}],617:[function(require,module,exports){
|
|
84369
84536
|
var crypto = require('crypto')
|
|
84370
84537
|
|
|
84371
84538
|
function sha (key, body, algorithm) {
|
|
@@ -84512,7 +84679,7 @@ exports.plaintext = plaintext
|
|
|
84512
84679
|
exports.sign = sign
|
|
84513
84680
|
exports.rfc3986 = rfc3986
|
|
84514
84681
|
exports.generateBase = generateBase
|
|
84515
|
-
},{"crypto":237}],
|
|
84682
|
+
},{"crypto":237}],618:[function(require,module,exports){
|
|
84516
84683
|
(function (process){(function (){
|
|
84517
84684
|
// Generated by CoffeeScript 1.12.2
|
|
84518
84685
|
(function() {
|
|
@@ -84552,7 +84719,7 @@ exports.generateBase = generateBase
|
|
|
84552
84719
|
|
|
84553
84720
|
|
|
84554
84721
|
}).call(this)}).call(this,require('_process'))
|
|
84555
|
-
},{"_process":335}],
|
|
84722
|
+
},{"_process":335}],619:[function(require,module,exports){
|
|
84556
84723
|
module.exports=[
|
|
84557
84724
|
"ac",
|
|
84558
84725
|
"com.ac",
|
|
@@ -93929,7 +94096,7 @@ module.exports=[
|
|
|
93929
94096
|
"virtualserver.io",
|
|
93930
94097
|
"enterprisecloud.nu"
|
|
93931
94098
|
]
|
|
93932
|
-
},{}],
|
|
94099
|
+
},{}],620:[function(require,module,exports){
|
|
93933
94100
|
/*eslint no-var:0, prefer-arrow-callback: 0, object-shorthand: 0 */
|
|
93934
94101
|
'use strict';
|
|
93935
94102
|
|
|
@@ -94200,7 +94367,7 @@ exports.isValid = function (domain) {
|
|
|
94200
94367
|
return Boolean(parsed.domain && parsed.listed);
|
|
94201
94368
|
};
|
|
94202
94369
|
|
|
94203
|
-
},{"./data/rules.json":
|
|
94370
|
+
},{"./data/rules.json":619,"punycode":343}],621:[function(require,module,exports){
|
|
94204
94371
|
'use strict';
|
|
94205
94372
|
|
|
94206
94373
|
var replace = String.prototype.replace;
|
|
@@ -94220,7 +94387,7 @@ module.exports = {
|
|
|
94220
94387
|
RFC3986: 'RFC3986'
|
|
94221
94388
|
};
|
|
94222
94389
|
|
|
94223
|
-
},{}],
|
|
94390
|
+
},{}],622:[function(require,module,exports){
|
|
94224
94391
|
'use strict';
|
|
94225
94392
|
|
|
94226
94393
|
var stringify = require('./stringify');
|
|
@@ -94233,7 +94400,7 @@ module.exports = {
|
|
|
94233
94400
|
stringify: stringify
|
|
94234
94401
|
};
|
|
94235
94402
|
|
|
94236
|
-
},{"./formats":
|
|
94403
|
+
},{"./formats":621,"./parse":623,"./stringify":624}],623:[function(require,module,exports){
|
|
94237
94404
|
'use strict';
|
|
94238
94405
|
|
|
94239
94406
|
var utils = require('./utils');
|
|
@@ -94410,7 +94577,7 @@ module.exports = function (str, opts) {
|
|
|
94410
94577
|
return utils.compact(obj);
|
|
94411
94578
|
};
|
|
94412
94579
|
|
|
94413
|
-
},{"./utils":
|
|
94580
|
+
},{"./utils":625}],624:[function(require,module,exports){
|
|
94414
94581
|
'use strict';
|
|
94415
94582
|
|
|
94416
94583
|
var utils = require('./utils');
|
|
@@ -94629,7 +94796,7 @@ module.exports = function (object, opts) {
|
|
|
94629
94796
|
return joined.length > 0 ? prefix + joined : '';
|
|
94630
94797
|
};
|
|
94631
94798
|
|
|
94632
|
-
},{"./formats":
|
|
94799
|
+
},{"./formats":621,"./utils":625}],625:[function(require,module,exports){
|
|
94633
94800
|
'use strict';
|
|
94634
94801
|
|
|
94635
94802
|
var has = Object.prototype.hasOwnProperty;
|
|
@@ -94846,7 +95013,7 @@ module.exports = {
|
|
|
94846
95013
|
merge: merge
|
|
94847
95014
|
};
|
|
94848
95015
|
|
|
94849
|
-
},{}],
|
|
95016
|
+
},{}],626:[function(require,module,exports){
|
|
94850
95017
|
// Copyright 2010-2012 Mikeal Rogers
|
|
94851
95018
|
//
|
|
94852
95019
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -95003,7 +95170,7 @@ Object.defineProperty(request, 'debug', {
|
|
|
95003
95170
|
}
|
|
95004
95171
|
})
|
|
95005
95172
|
|
|
95006
|
-
},{"./lib/cookies":
|
|
95173
|
+
},{"./lib/cookies":628,"./lib/helpers":632,"./request":641,"extend":572}],627:[function(require,module,exports){
|
|
95007
95174
|
'use strict'
|
|
95008
95175
|
|
|
95009
95176
|
var caseless = require('caseless')
|
|
@@ -95172,7 +95339,7 @@ Auth.prototype.onResponse = function (response) {
|
|
|
95172
95339
|
|
|
95173
95340
|
exports.Auth = Auth
|
|
95174
95341
|
|
|
95175
|
-
},{"./helpers":
|
|
95342
|
+
},{"./helpers":632,"caseless":565,"uuid/v4":640}],628:[function(require,module,exports){
|
|
95176
95343
|
'use strict'
|
|
95177
95344
|
|
|
95178
95345
|
var tough = require('tough-cookie')
|
|
@@ -95212,7 +95379,7 @@ exports.jar = function (store) {
|
|
|
95212
95379
|
return new RequestJar(store)
|
|
95213
95380
|
}
|
|
95214
95381
|
|
|
95215
|
-
},{"tough-cookie":
|
|
95382
|
+
},{"tough-cookie":669}],629:[function(require,module,exports){
|
|
95216
95383
|
(function (process){(function (){
|
|
95217
95384
|
'use strict'
|
|
95218
95385
|
|
|
@@ -95295,7 +95462,7 @@ function getProxyFromURI (uri) {
|
|
|
95295
95462
|
module.exports = getProxyFromURI
|
|
95296
95463
|
|
|
95297
95464
|
}).call(this)}).call(this,require('_process'))
|
|
95298
|
-
},{"_process":335}],
|
|
95465
|
+
},{"_process":335}],630:[function(require,module,exports){
|
|
95299
95466
|
'use strict'
|
|
95300
95467
|
|
|
95301
95468
|
var fs = require('fs')
|
|
@@ -95502,7 +95669,7 @@ Har.prototype.options = function (options) {
|
|
|
95502
95669
|
|
|
95503
95670
|
exports.Har = Har
|
|
95504
95671
|
|
|
95505
|
-
},{"extend":
|
|
95672
|
+
},{"extend":572,"fs":225,"har-validator":598,"querystring":346}],631:[function(require,module,exports){
|
|
95506
95673
|
'use strict'
|
|
95507
95674
|
|
|
95508
95675
|
var crypto = require('crypto')
|
|
@@ -95593,7 +95760,7 @@ exports.header = function (uri, method, opts) {
|
|
|
95593
95760
|
return header
|
|
95594
95761
|
}
|
|
95595
95762
|
|
|
95596
|
-
},{"crypto":237}],
|
|
95763
|
+
},{"crypto":237}],632:[function(require,module,exports){
|
|
95597
95764
|
(function (process,setImmediate){(function (){
|
|
95598
95765
|
'use strict'
|
|
95599
95766
|
|
|
@@ -95663,7 +95830,7 @@ exports.version = version
|
|
|
95663
95830
|
exports.defer = defer
|
|
95664
95831
|
|
|
95665
95832
|
}).call(this)}).call(this,require('_process'),require("timers").setImmediate)
|
|
95666
|
-
},{"_process":335,"crypto":237,"json-stringify-safe":
|
|
95833
|
+
},{"_process":335,"crypto":237,"json-stringify-safe":609,"safe-buffer":642,"timers":393}],633:[function(require,module,exports){
|
|
95667
95834
|
'use strict'
|
|
95668
95835
|
|
|
95669
95836
|
var uuid = require('uuid/v4')
|
|
@@ -95777,7 +95944,7 @@ Multipart.prototype.onRequest = function (options) {
|
|
|
95777
95944
|
|
|
95778
95945
|
exports.Multipart = Multipart
|
|
95779
95946
|
|
|
95780
|
-
},{"combined-stream":
|
|
95947
|
+
},{"combined-stream":566,"isstream":605,"safe-buffer":642,"uuid/v4":640}],634:[function(require,module,exports){
|
|
95781
95948
|
'use strict'
|
|
95782
95949
|
|
|
95783
95950
|
var url = require('url')
|
|
@@ -95927,7 +96094,7 @@ OAuth.prototype.onRequest = function (_oauth) {
|
|
|
95927
96094
|
|
|
95928
96095
|
exports.OAuth = OAuth
|
|
95929
96096
|
|
|
95930
|
-
},{"caseless":
|
|
96097
|
+
},{"caseless":565,"crypto":237,"oauth-sign":617,"qs":622,"safe-buffer":642,"url":395,"uuid/v4":640}],635:[function(require,module,exports){
|
|
95931
96098
|
'use strict'
|
|
95932
96099
|
|
|
95933
96100
|
var qs = require('qs')
|
|
@@ -95979,7 +96146,7 @@ Querystring.prototype.unescape = querystring.unescape
|
|
|
95979
96146
|
|
|
95980
96147
|
exports.Querystring = Querystring
|
|
95981
96148
|
|
|
95982
|
-
},{"qs":
|
|
96149
|
+
},{"qs":622,"querystring":346}],636:[function(require,module,exports){
|
|
95983
96150
|
'use strict'
|
|
95984
96151
|
|
|
95985
96152
|
var url = require('url')
|
|
@@ -96135,7 +96302,7 @@ Redirect.prototype.onResponse = function (response) {
|
|
|
96135
96302
|
|
|
96136
96303
|
exports.Redirect = Redirect
|
|
96137
96304
|
|
|
96138
|
-
},{"url":395}],
|
|
96305
|
+
},{"url":395}],637:[function(require,module,exports){
|
|
96139
96306
|
'use strict'
|
|
96140
96307
|
|
|
96141
96308
|
var url = require('url')
|
|
@@ -96312,7 +96479,7 @@ Tunnel.defaultProxyHeaderWhiteList = defaultProxyHeaderWhiteList
|
|
|
96312
96479
|
Tunnel.defaultProxyHeaderExclusiveList = defaultProxyHeaderExclusiveList
|
|
96313
96480
|
exports.Tunnel = Tunnel
|
|
96314
96481
|
|
|
96315
|
-
},{"tunnel-agent":
|
|
96482
|
+
},{"tunnel-agent":676,"url":395}],638:[function(require,module,exports){
|
|
96316
96483
|
/**
|
|
96317
96484
|
* Convert array of 16 byte values to UUID string format of the form:
|
|
96318
96485
|
* XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
|
|
@@ -96340,7 +96507,7 @@ function bytesToUuid(buf, offset) {
|
|
|
96340
96507
|
|
|
96341
96508
|
module.exports = bytesToUuid;
|
|
96342
96509
|
|
|
96343
|
-
},{}],
|
|
96510
|
+
},{}],639:[function(require,module,exports){
|
|
96344
96511
|
// Unique ID creation requires a high quality random # generator. In the
|
|
96345
96512
|
// browser this is a little complicated due to unknown quality of Math.random()
|
|
96346
96513
|
// and inconsistent support for the `crypto` API. We do the best we can via
|
|
@@ -96376,7 +96543,7 @@ if (getRandomValues) {
|
|
|
96376
96543
|
};
|
|
96377
96544
|
}
|
|
96378
96545
|
|
|
96379
|
-
},{}],
|
|
96546
|
+
},{}],640:[function(require,module,exports){
|
|
96380
96547
|
var rng = require('./lib/rng');
|
|
96381
96548
|
var bytesToUuid = require('./lib/bytesToUuid');
|
|
96382
96549
|
|
|
@@ -96407,7 +96574,7 @@ function v4(options, buf, offset) {
|
|
|
96407
96574
|
|
|
96408
96575
|
module.exports = v4;
|
|
96409
96576
|
|
|
96410
|
-
},{"./lib/bytesToUuid":
|
|
96577
|
+
},{"./lib/bytesToUuid":638,"./lib/rng":639}],641:[function(require,module,exports){
|
|
96411
96578
|
(function (process){(function (){
|
|
96412
96579
|
'use strict'
|
|
96413
96580
|
|
|
@@ -97964,9 +98131,9 @@ Request.prototype.toJSON = requestToJSON
|
|
|
97964
98131
|
module.exports = Request
|
|
97965
98132
|
|
|
97966
98133
|
}).call(this)}).call(this,require('_process'))
|
|
97967
|
-
},{"./lib/auth":
|
|
98134
|
+
},{"./lib/auth":627,"./lib/cookies":628,"./lib/getProxyFromURI":629,"./lib/har":630,"./lib/hawk":631,"./lib/helpers":632,"./lib/multipart":633,"./lib/oauth":634,"./lib/querystring":635,"./lib/redirect":636,"./lib/tunnel":637,"_process":335,"aws-sign2":561,"aws4":562,"caseless":565,"extend":572,"forever-agent":576,"form-data":577,"http":387,"http-signature":599,"https":298,"is-typedarray":604,"isstream":605,"mime-types":616,"performance-now":618,"safe-buffer":642,"stream":386,"url":395,"util":400,"zlib":224}],642:[function(require,module,exports){
|
|
97968
98135
|
arguments[4][358][0].apply(exports,arguments)
|
|
97969
|
-
},{"buffer":227,"dup":358}],
|
|
98136
|
+
},{"buffer":227,"dup":358}],643:[function(require,module,exports){
|
|
97970
98137
|
(function (process){(function (){
|
|
97971
98138
|
/* eslint-disable node/no-deprecated-api */
|
|
97972
98139
|
|
|
@@ -98047,7 +98214,7 @@ if (!safer.constants) {
|
|
|
98047
98214
|
module.exports = safer
|
|
98048
98215
|
|
|
98049
98216
|
}).call(this)}).call(this,require('_process'))
|
|
98050
|
-
},{"_process":335,"buffer":227}],
|
|
98217
|
+
},{"_process":335,"buffer":227}],644:[function(require,module,exports){
|
|
98051
98218
|
// Copyright 2015 Joyent, Inc.
|
|
98052
98219
|
|
|
98053
98220
|
var Buffer = require('safer-buffer').Buffer;
|
|
@@ -98217,7 +98384,7 @@ module.exports = {
|
|
|
98217
98384
|
curves: curves
|
|
98218
98385
|
};
|
|
98219
98386
|
|
|
98220
|
-
},{"safer-buffer":
|
|
98387
|
+
},{"safer-buffer":643}],645:[function(require,module,exports){
|
|
98221
98388
|
// Copyright 2016 Joyent, Inc.
|
|
98222
98389
|
|
|
98223
98390
|
module.exports = Certificate;
|
|
@@ -98629,7 +98796,7 @@ Certificate._oldVersionDetect = function (obj) {
|
|
|
98629
98796
|
return ([1, 0]);
|
|
98630
98797
|
};
|
|
98631
98798
|
|
|
98632
|
-
},{"./algs":
|
|
98799
|
+
},{"./algs":644,"./errors":648,"./fingerprint":649,"./formats/openssh-cert":652,"./formats/x509":661,"./formats/x509-pem":660,"./identity":662,"./key":664,"./private-key":665,"./signature":666,"./utils":668,"assert-plus":560,"crypto":237,"safer-buffer":643,"util":400}],646:[function(require,module,exports){
|
|
98633
98800
|
// Copyright 2017 Joyent, Inc.
|
|
98634
98801
|
|
|
98635
98802
|
module.exports = {
|
|
@@ -99028,7 +99195,7 @@ function generateECDSA(curve) {
|
|
|
99028
99195
|
}
|
|
99029
99196
|
}
|
|
99030
99197
|
|
|
99031
|
-
},{"./algs":
|
|
99198
|
+
},{"./algs":644,"./key":664,"./private-key":665,"./utils":668,"assert-plus":560,"crypto":237,"ecc-jsbn":569,"ecc-jsbn/lib/ec":570,"jsbn":606,"safer-buffer":643,"tweetnacl":677}],647:[function(require,module,exports){
|
|
99032
99199
|
// Copyright 2015 Joyent, Inc.
|
|
99033
99200
|
|
|
99034
99201
|
module.exports = {
|
|
@@ -99122,7 +99289,7 @@ Signer.prototype.sign = function () {
|
|
|
99122
99289
|
return (sigObj);
|
|
99123
99290
|
};
|
|
99124
99291
|
|
|
99125
|
-
},{"./signature":
|
|
99292
|
+
},{"./signature":666,"assert-plus":560,"safer-buffer":643,"stream":386,"tweetnacl":677,"util":400}],648:[function(require,module,exports){
|
|
99126
99293
|
// Copyright 2015 Joyent, Inc.
|
|
99127
99294
|
|
|
99128
99295
|
var assert = require('assert-plus');
|
|
@@ -99208,7 +99375,7 @@ module.exports = {
|
|
|
99208
99375
|
CertificateParseError: CertificateParseError
|
|
99209
99376
|
};
|
|
99210
99377
|
|
|
99211
|
-
},{"assert-plus":
|
|
99378
|
+
},{"assert-plus":560,"util":400}],649:[function(require,module,exports){
|
|
99212
99379
|
// Copyright 2018 Joyent, Inc.
|
|
99213
99380
|
|
|
99214
99381
|
module.exports = Fingerprint;
|
|
@@ -99430,7 +99597,7 @@ Fingerprint._oldVersionDetect = function (obj) {
|
|
|
99430
99597
|
return ([1, 0]);
|
|
99431
99598
|
};
|
|
99432
99599
|
|
|
99433
|
-
},{"./algs":
|
|
99600
|
+
},{"./algs":644,"./certificate":645,"./errors":648,"./key":664,"./private-key":665,"./utils":668,"assert-plus":560,"crypto":237,"safer-buffer":643}],650:[function(require,module,exports){
|
|
99434
99601
|
// Copyright 2018 Joyent, Inc.
|
|
99435
99602
|
|
|
99436
99603
|
module.exports = {
|
|
@@ -99556,7 +99723,7 @@ function write(key, options) {
|
|
|
99556
99723
|
throw (new Error('"auto" format cannot be used for writing'));
|
|
99557
99724
|
}
|
|
99558
99725
|
|
|
99559
|
-
},{"../key":
|
|
99726
|
+
},{"../key":664,"../private-key":665,"../utils":668,"./dnssec":651,"./pem":653,"./putty":656,"./rfc4253":657,"./ssh":659,"assert-plus":560,"safer-buffer":643}],651:[function(require,module,exports){
|
|
99560
99727
|
// Copyright 2017 Joyent, Inc.
|
|
99561
99728
|
|
|
99562
99729
|
module.exports = {
|
|
@@ -99845,7 +100012,7 @@ function write(key, options) {
|
|
|
99845
100012
|
}
|
|
99846
100013
|
}
|
|
99847
100014
|
|
|
99848
|
-
},{"../dhe":
|
|
100015
|
+
},{"../dhe":646,"../key":664,"../private-key":665,"../ssh-buffer":667,"../utils":668,"assert-plus":560,"safer-buffer":643}],652:[function(require,module,exports){
|
|
99849
100016
|
// Copyright 2017 Joyent, Inc.
|
|
99850
100017
|
|
|
99851
100018
|
module.exports = {
|
|
@@ -100199,7 +100366,7 @@ function getCertType(key) {
|
|
|
100199
100366
|
throw (new Error('Unsupported key type ' + key.type));
|
|
100200
100367
|
}
|
|
100201
100368
|
|
|
100202
|
-
},{"../algs":
|
|
100369
|
+
},{"../algs":644,"../certificate":645,"../identity":662,"../key":664,"../private-key":665,"../signature":666,"../ssh-buffer":667,"../utils":668,"./rfc4253":657,"assert-plus":560,"crypto":237,"safer-buffer":643}],653:[function(require,module,exports){
|
|
100203
100370
|
// Copyright 2018 Joyent, Inc.
|
|
100204
100371
|
|
|
100205
100372
|
module.exports = {
|
|
@@ -100491,7 +100658,7 @@ function write(key, options, type) {
|
|
|
100491
100658
|
return (buf.slice(0, o));
|
|
100492
100659
|
}
|
|
100493
100660
|
|
|
100494
|
-
},{"../algs":
|
|
100661
|
+
},{"../algs":644,"../errors":648,"../key":664,"../private-key":665,"../utils":668,"./pkcs1":654,"./pkcs8":655,"./rfc4253":657,"./ssh-private":658,"asn1":559,"assert-plus":560,"crypto":237,"safer-buffer":643}],654:[function(require,module,exports){
|
|
100495
100662
|
// Copyright 2015 Joyent, Inc.
|
|
100496
100663
|
|
|
100497
100664
|
module.exports = {
|
|
@@ -100866,7 +101033,7 @@ function writePkcs1EdDSAPublic(der, key) {
|
|
|
100866
101033
|
throw (new Error('Public keys are not supported for EdDSA PKCS#1'));
|
|
100867
101034
|
}
|
|
100868
101035
|
|
|
100869
|
-
},{"../algs":
|
|
101036
|
+
},{"../algs":644,"../key":664,"../private-key":665,"../utils":668,"./pem":653,"./pkcs8":655,"asn1":559,"assert-plus":560,"safer-buffer":643}],655:[function(require,module,exports){
|
|
100870
101037
|
// Copyright 2018 Joyent, Inc.
|
|
100871
101038
|
|
|
100872
101039
|
module.exports = {
|
|
@@ -101499,7 +101666,7 @@ function writePkcs8EdDSAPrivate(key, der) {
|
|
|
101499
101666
|
der.endSequence();
|
|
101500
101667
|
}
|
|
101501
101668
|
|
|
101502
|
-
},{"../algs":
|
|
101669
|
+
},{"../algs":644,"../key":664,"../private-key":665,"../utils":668,"./pem":653,"asn1":559,"assert-plus":560,"safer-buffer":643}],656:[function(require,module,exports){
|
|
101503
101670
|
// Copyright 2018 Joyent, Inc.
|
|
101504
101671
|
|
|
101505
101672
|
module.exports = {
|
|
@@ -101695,7 +101862,7 @@ function wrap(txt, len) {
|
|
|
101695
101862
|
return (lines);
|
|
101696
101863
|
}
|
|
101697
101864
|
|
|
101698
|
-
},{"../errors":
|
|
101865
|
+
},{"../errors":648,"../key":664,"../private-key":665,"../ssh-buffer":667,"./rfc4253":657,"assert-plus":560,"crypto":237,"safer-buffer":643}],657:[function(require,module,exports){
|
|
101699
101866
|
// Copyright 2015 Joyent, Inc.
|
|
101700
101867
|
|
|
101701
101868
|
module.exports = {
|
|
@@ -101863,7 +102030,7 @@ function write(key, options) {
|
|
|
101863
102030
|
return (buf.toBuffer());
|
|
101864
102031
|
}
|
|
101865
102032
|
|
|
101866
|
-
},{"../algs":
|
|
102033
|
+
},{"../algs":644,"../key":664,"../private-key":665,"../ssh-buffer":667,"../utils":668,"assert-plus":560,"safer-buffer":643}],658:[function(require,module,exports){
|
|
101867
102034
|
// Copyright 2015 Joyent, Inc.
|
|
101868
102035
|
|
|
101869
102036
|
module.exports = {
|
|
@@ -102127,7 +102294,7 @@ function write(key, options) {
|
|
|
102127
102294
|
return (buf.slice(0, o));
|
|
102128
102295
|
}
|
|
102129
102296
|
|
|
102130
|
-
},{"../algs":
|
|
102297
|
+
},{"../algs":644,"../errors":648,"../key":664,"../private-key":665,"../ssh-buffer":667,"../utils":668,"./pem":653,"./rfc4253":657,"asn1":559,"assert-plus":560,"bcrypt-pbkdf":564,"crypto":237,"safer-buffer":643}],659:[function(require,module,exports){
|
|
102131
102298
|
// Copyright 2015 Joyent, Inc.
|
|
102132
102299
|
|
|
102133
102300
|
module.exports = {
|
|
@@ -102244,7 +102411,7 @@ function write(key, options) {
|
|
|
102244
102411
|
return (Buffer.from(parts.join(' ')));
|
|
102245
102412
|
}
|
|
102246
102413
|
|
|
102247
|
-
},{"../key":
|
|
102414
|
+
},{"../key":664,"../private-key":665,"../utils":668,"./rfc4253":657,"./ssh-private":658,"assert-plus":560,"safer-buffer":643}],660:[function(require,module,exports){
|
|
102248
102415
|
// Copyright 2016 Joyent, Inc.
|
|
102249
102416
|
|
|
102250
102417
|
var x509 = require('./x509');
|
|
@@ -102334,7 +102501,7 @@ function write(cert, options) {
|
|
|
102334
102501
|
return (buf.slice(0, o));
|
|
102335
102502
|
}
|
|
102336
102503
|
|
|
102337
|
-
},{"../algs":
|
|
102504
|
+
},{"../algs":644,"../certificate":645,"../identity":662,"../key":664,"../private-key":665,"../signature":666,"../utils":668,"./pem":653,"./x509":661,"asn1":559,"assert-plus":560,"safer-buffer":643}],661:[function(require,module,exports){
|
|
102338
102505
|
// Copyright 2017 Joyent, Inc.
|
|
102339
102506
|
|
|
102340
102507
|
module.exports = {
|
|
@@ -103088,7 +103255,7 @@ function writeBitField(setBits, bitIndex) {
|
|
|
103088
103255
|
return (bits);
|
|
103089
103256
|
}
|
|
103090
103257
|
|
|
103091
|
-
},{"../algs":
|
|
103258
|
+
},{"../algs":644,"../certificate":645,"../identity":662,"../key":664,"../private-key":665,"../signature":666,"../utils":668,"./pem":653,"./pkcs8":655,"asn1":559,"assert-plus":560,"safer-buffer":643}],662:[function(require,module,exports){
|
|
103092
103259
|
// Copyright 2017 Joyent, Inc.
|
|
103093
103260
|
|
|
103094
103261
|
module.exports = Identity;
|
|
@@ -103463,7 +103630,7 @@ Identity._oldVersionDetect = function (obj) {
|
|
|
103463
103630
|
return ([1, 0]);
|
|
103464
103631
|
};
|
|
103465
103632
|
|
|
103466
|
-
},{"./algs":
|
|
103633
|
+
},{"./algs":644,"./errors":648,"./fingerprint":649,"./signature":666,"./utils":668,"asn1":559,"assert-plus":560,"crypto":237,"safer-buffer":643,"util":400}],663:[function(require,module,exports){
|
|
103467
103634
|
// Copyright 2015 Joyent, Inc.
|
|
103468
103635
|
|
|
103469
103636
|
var Key = require('./key');
|
|
@@ -103505,7 +103672,7 @@ module.exports = {
|
|
|
103505
103672
|
CertificateParseError: errs.CertificateParseError
|
|
103506
103673
|
};
|
|
103507
103674
|
|
|
103508
|
-
},{"./certificate":
|
|
103675
|
+
},{"./certificate":645,"./errors":648,"./fingerprint":649,"./identity":662,"./key":664,"./private-key":665,"./signature":666}],664:[function(require,module,exports){
|
|
103509
103676
|
(function (Buffer){(function (){
|
|
103510
103677
|
// Copyright 2018 Joyent, Inc.
|
|
103511
103678
|
|
|
@@ -103803,7 +103970,7 @@ Key._oldVersionDetect = function (obj) {
|
|
|
103803
103970
|
};
|
|
103804
103971
|
|
|
103805
103972
|
}).call(this)}).call(this,{"isBuffer":require("../../../browser-agent/node_modules/is-buffer/index.js")})
|
|
103806
|
-
},{"../../../browser-agent/node_modules/is-buffer/index.js":302,"./algs":
|
|
103973
|
+
},{"../../../browser-agent/node_modules/is-buffer/index.js":302,"./algs":644,"./dhe":646,"./ed-compat":647,"./errors":648,"./fingerprint":649,"./formats/auto":650,"./formats/dnssec":651,"./formats/pem":653,"./formats/pkcs1":654,"./formats/pkcs8":655,"./formats/putty":656,"./formats/rfc4253":657,"./formats/ssh":659,"./formats/ssh-private":658,"./private-key":665,"./signature":666,"./utils":668,"assert-plus":560,"crypto":237}],665:[function(require,module,exports){
|
|
103807
103974
|
// Copyright 2017 Joyent, Inc.
|
|
103808
103975
|
|
|
103809
103976
|
module.exports = PrivateKey;
|
|
@@ -104052,7 +104219,7 @@ PrivateKey._oldVersionDetect = function (obj) {
|
|
|
104052
104219
|
return ([1, 0]);
|
|
104053
104220
|
};
|
|
104054
104221
|
|
|
104055
|
-
},{"./algs":
|
|
104222
|
+
},{"./algs":644,"./dhe":646,"./ed-compat":647,"./errors":648,"./fingerprint":649,"./formats/auto":650,"./formats/dnssec":651,"./formats/pem":653,"./formats/pkcs1":654,"./formats/pkcs8":655,"./formats/putty":656,"./formats/rfc4253":657,"./formats/ssh-private":658,"./key":664,"./signature":666,"./utils":668,"assert-plus":560,"crypto":237,"safer-buffer":643,"tweetnacl":677,"util":400}],666:[function(require,module,exports){
|
|
104056
104223
|
// Copyright 2015 Joyent, Inc.
|
|
104057
104224
|
|
|
104058
104225
|
module.exports = Signature;
|
|
@@ -104368,7 +104535,7 @@ Signature._oldVersionDetect = function (obj) {
|
|
|
104368
104535
|
return ([1, 0]);
|
|
104369
104536
|
};
|
|
104370
104537
|
|
|
104371
|
-
},{"./algs":
|
|
104538
|
+
},{"./algs":644,"./errors":648,"./ssh-buffer":667,"./utils":668,"asn1":559,"assert-plus":560,"crypto":237,"safer-buffer":643}],667:[function(require,module,exports){
|
|
104372
104539
|
// Copyright 2015 Joyent, Inc.
|
|
104373
104540
|
|
|
104374
104541
|
module.exports = SSHBuffer;
|
|
@@ -104519,7 +104686,7 @@ SSHBuffer.prototype.write = function (buf) {
|
|
|
104519
104686
|
this._offset += buf.length;
|
|
104520
104687
|
};
|
|
104521
104688
|
|
|
104522
|
-
},{"assert-plus":
|
|
104689
|
+
},{"assert-plus":560,"safer-buffer":643}],668:[function(require,module,exports){
|
|
104523
104690
|
// Copyright 2015 Joyent, Inc.
|
|
104524
104691
|
|
|
104525
104692
|
module.exports = {
|
|
@@ -104925,7 +105092,7 @@ function opensshCipherInfo(cipher) {
|
|
|
104925
105092
|
return (inf);
|
|
104926
105093
|
}
|
|
104927
105094
|
|
|
104928
|
-
},{"./algs":
|
|
105095
|
+
},{"./algs":644,"./key":664,"./private-key":665,"asn1":559,"assert-plus":560,"crypto":237,"ecc-jsbn/lib/ec":570,"jsbn":606,"safer-buffer":643,"tweetnacl":677}],669:[function(require,module,exports){
|
|
104929
105096
|
/*!
|
|
104930
105097
|
* Copyright (c) 2015, Salesforce.com, Inc.
|
|
104931
105098
|
* All rights reserved.
|
|
@@ -106409,7 +106576,7 @@ exports.permuteDomain = require('./permuteDomain').permuteDomain;
|
|
|
106409
106576
|
exports.permutePath = permutePath;
|
|
106410
106577
|
exports.canonicalDomain = canonicalDomain;
|
|
106411
106578
|
|
|
106412
|
-
},{"./memstore":
|
|
106579
|
+
},{"./memstore":670,"./pathMatch":671,"./permuteDomain":672,"./pubsuffix-psl":673,"./store":674,"./version":675,"net":225,"punycode":343,"url":395,"util":400}],670:[function(require,module,exports){
|
|
106413
106580
|
/*!
|
|
106414
106581
|
* Copyright (c) 2015, Salesforce.com, Inc.
|
|
106415
106582
|
* All rights reserved.
|
|
@@ -106592,7 +106759,7 @@ MemoryCookieStore.prototype.getAllCookies = function(cb) {
|
|
|
106592
106759
|
cb(null, cookies);
|
|
106593
106760
|
};
|
|
106594
106761
|
|
|
106595
|
-
},{"./pathMatch":
|
|
106762
|
+
},{"./pathMatch":671,"./permuteDomain":672,"./store":674,"util":400}],671:[function(require,module,exports){
|
|
106596
106763
|
/*!
|
|
106597
106764
|
* Copyright (c) 2015, Salesforce.com, Inc.
|
|
106598
106765
|
* All rights reserved.
|
|
@@ -106655,7 +106822,7 @@ function pathMatch (reqPath, cookiePath) {
|
|
|
106655
106822
|
|
|
106656
106823
|
exports.pathMatch = pathMatch;
|
|
106657
106824
|
|
|
106658
|
-
},{}],
|
|
106825
|
+
},{}],672:[function(require,module,exports){
|
|
106659
106826
|
/*!
|
|
106660
106827
|
* Copyright (c) 2015, Salesforce.com, Inc.
|
|
106661
106828
|
* All rights reserved.
|
|
@@ -106713,7 +106880,7 @@ function permuteDomain (domain) {
|
|
|
106713
106880
|
|
|
106714
106881
|
exports.permuteDomain = permuteDomain;
|
|
106715
106882
|
|
|
106716
|
-
},{"./pubsuffix-psl":
|
|
106883
|
+
},{"./pubsuffix-psl":673}],673:[function(require,module,exports){
|
|
106717
106884
|
/*!
|
|
106718
106885
|
* Copyright (c) 2018, Salesforce.com, Inc.
|
|
106719
106886
|
* All rights reserved.
|
|
@@ -106753,7 +106920,7 @@ function getPublicSuffix(domain) {
|
|
|
106753
106920
|
|
|
106754
106921
|
exports.getPublicSuffix = getPublicSuffix;
|
|
106755
106922
|
|
|
106756
|
-
},{"psl":
|
|
106923
|
+
},{"psl":620}],674:[function(require,module,exports){
|
|
106757
106924
|
/*!
|
|
106758
106925
|
* Copyright (c) 2015, Salesforce.com, Inc.
|
|
106759
106926
|
* All rights reserved.
|
|
@@ -106830,11 +106997,11 @@ Store.prototype.getAllCookies = function(cb) {
|
|
|
106830
106997
|
throw new Error('getAllCookies is not implemented (therefore jar cannot be serialized)');
|
|
106831
106998
|
};
|
|
106832
106999
|
|
|
106833
|
-
},{}],
|
|
107000
|
+
},{}],675:[function(require,module,exports){
|
|
106834
107001
|
// generated by genversion
|
|
106835
107002
|
module.exports = '2.5.0'
|
|
106836
107003
|
|
|
106837
|
-
},{}],
|
|
107004
|
+
},{}],676:[function(require,module,exports){
|
|
106838
107005
|
(function (process){(function (){
|
|
106839
107006
|
'use strict'
|
|
106840
107007
|
|
|
@@ -107082,7 +107249,7 @@ if (process.env.NODE_DEBUG && /\btunnel\b/.test(process.env.NODE_DEBUG)) {
|
|
|
107082
107249
|
exports.debug = debug // for test
|
|
107083
107250
|
|
|
107084
107251
|
}).call(this)}).call(this,require('_process'))
|
|
107085
|
-
},{"_process":335,"assert":172,"events":266,"http":387,"https":298,"net":225,"safe-buffer":
|
|
107252
|
+
},{"_process":335,"assert":172,"events":266,"http":387,"https":298,"net":225,"safe-buffer":642,"tls":225,"util":400}],677:[function(require,module,exports){
|
|
107086
107253
|
(function(nacl) {
|
|
107087
107254
|
'use strict';
|
|
107088
107255
|
|
|
@@ -109472,7 +109639,7 @@ nacl.setPRNG = function(fn) {
|
|
|
109472
109639
|
|
|
109473
109640
|
})(typeof module !== 'undefined' && module.exports ? module.exports : (self.nacl = self.nacl || {}));
|
|
109474
109641
|
|
|
109475
|
-
},{"crypto":179}],
|
|
109642
|
+
},{"crypto":179}],678:[function(require,module,exports){
|
|
109476
109643
|
/** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */
|
|
109477
109644
|
(function (global, factory) {
|
|
109478
109645
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
|
@@ -110917,7 +111084,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
110917
111084
|
})));
|
|
110918
111085
|
|
|
110919
111086
|
|
|
110920
|
-
},{}],
|
|
111087
|
+
},{}],679:[function(require,module,exports){
|
|
110921
111088
|
var v1 = require('./v1');
|
|
110922
111089
|
var v4 = require('./v4');
|
|
110923
111090
|
|
|
@@ -110927,7 +111094,7 @@ uuid.v4 = v4;
|
|
|
110927
111094
|
|
|
110928
111095
|
module.exports = uuid;
|
|
110929
111096
|
|
|
110930
|
-
},{"./v1":
|
|
111097
|
+
},{"./v1":682,"./v4":683}],680:[function(require,module,exports){
|
|
110931
111098
|
/**
|
|
110932
111099
|
* Convert array of 16 byte values to UUID string format of the form:
|
|
110933
111100
|
* XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
|
|
@@ -110952,7 +111119,7 @@ function bytesToUuid(buf, offset) {
|
|
|
110952
111119
|
|
|
110953
111120
|
module.exports = bytesToUuid;
|
|
110954
111121
|
|
|
110955
|
-
},{}],
|
|
111122
|
+
},{}],681:[function(require,module,exports){
|
|
110956
111123
|
(function (global){(function (){
|
|
110957
111124
|
// Unique ID creation requires a high quality random # generator. In the
|
|
110958
111125
|
// browser this is a little complicated due to unknown quality of Math.random()
|
|
@@ -110989,7 +111156,7 @@ if (!rng) {
|
|
|
110989
111156
|
module.exports = rng;
|
|
110990
111157
|
|
|
110991
111158
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
110992
|
-
},{}],
|
|
111159
|
+
},{}],682:[function(require,module,exports){
|
|
110993
111160
|
var rng = require('./lib/rng');
|
|
110994
111161
|
var bytesToUuid = require('./lib/bytesToUuid');
|
|
110995
111162
|
|
|
@@ -111091,7 +111258,7 @@ function v1(options, buf, offset) {
|
|
|
111091
111258
|
|
|
111092
111259
|
module.exports = v1;
|
|
111093
111260
|
|
|
111094
|
-
},{"./lib/bytesToUuid":
|
|
111261
|
+
},{"./lib/bytesToUuid":680,"./lib/rng":681}],683:[function(require,module,exports){
|
|
111095
111262
|
var rng = require('./lib/rng');
|
|
111096
111263
|
var bytesToUuid = require('./lib/bytesToUuid');
|
|
111097
111264
|
|
|
@@ -111122,7 +111289,7 @@ function v4(options, buf, offset) {
|
|
|
111122
111289
|
|
|
111123
111290
|
module.exports = v4;
|
|
111124
111291
|
|
|
111125
|
-
},{"./lib/bytesToUuid":
|
|
111292
|
+
},{"./lib/bytesToUuid":680,"./lib/rng":681}],684:[function(require,module,exports){
|
|
111126
111293
|
/*
|
|
111127
111294
|
* verror.js: richer JavaScript errors
|
|
111128
111295
|
*/
|
|
@@ -111575,4 +111742,4 @@ WError.prototype.cause = function we_cause(c)
|
|
|
111575
111742
|
return (this.jse_cause);
|
|
111576
111743
|
};
|
|
111577
111744
|
|
|
111578
|
-
},{"assert-plus":
|
|
111745
|
+
},{"assert-plus":560,"core-util-is":567,"extsprintf":573,"util":400}]},{},[403]);
|