slnodejs 6.1.327 → 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.
Files changed (36) hide show
  1. package/browser-agent/dist/browser-agent-all.js +697 -587
  2. package/browser-agent/dist/browser-agent-all.min.js +3 -3
  3. package/browser-agent/package.json +1 -1
  4. package/package.json +1 -1
  5. package/tsOutputs/build-scanner/build-diff-process.js +14 -0
  6. package/tsOutputs/build-scanner/build-diff-process.js.map +1 -1
  7. package/tsOutputs/cli-parse/contracts.d.ts +245 -0
  8. package/tsOutputs/cli-parse/contracts.js +7 -1
  9. package/tsOutputs/cli-parse/contracts.js.map +1 -1
  10. package/tsOutputs/cli-parse/executors/base-executor.js +10 -4
  11. package/tsOutputs/cli-parse/executors/base-executor.js.map +1 -1
  12. package/tsOutputs/cli-parse/executors/build-end-executor.js +1 -1
  13. package/tsOutputs/cli-parse/executors/build-end-executor.js.map +1 -1
  14. package/tsOutputs/cli-parse/executors/build-executor.js +1 -0
  15. package/tsOutputs/cli-parse/executors/build-executor.js.map +1 -1
  16. package/tsOutputs/common/agent-events/agent-events-conracts.d.ts +8 -6
  17. package/tsOutputs/common/agent-events/agent-events-conracts.js.map +1 -1
  18. package/tsOutputs/common/agent-events/agent-events-controller.js +2 -1
  19. package/tsOutputs/common/agent-events/agent-events-controller.js.map +1 -1
  20. package/tsOutputs/common/agent-events/agent-start-info-builder.d.ts +2 -1
  21. package/tsOutputs/common/agent-events/agent-start-info-builder.js +4 -0
  22. package/tsOutputs/common/agent-events/agent-start-info-builder.js.map +1 -1
  23. package/tsOutputs/common/agent-events/browser-info-builder.d.ts +6 -0
  24. package/tsOutputs/common/agent-events/browser-info-builder.js +23 -0
  25. package/tsOutputs/common/agent-events/browser-info-builder.js.map +1 -0
  26. package/tsOutputs/common/agent-events/cockpit-notifier.d.ts +2 -2
  27. package/tsOutputs/common/agent-events/cockpit-notifier.js.map +1 -1
  28. package/tsOutputs/common/config-process/config-loader.js +4 -3
  29. package/tsOutputs/common/config-process/config-loader.js.map +1 -1
  30. package/tsOutputs/common/events-process/events-contracts.d.ts +1 -0
  31. package/tsOutputs/common/events-process/events-contracts.js +1 -0
  32. package/tsOutputs/common/events-process/events-contracts.js.map +1 -1
  33. package/tsOutputs/common/scm/git.js +46 -0
  34. package/tsOutputs/common/scm/git.js.map +1 -1
  35. package/tsOutputs/test-listener/test-recommendation-handler.js +5 -0
  36. 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('@opentelemetry/api: All API registration versions must match');
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.0';
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
- const Readable = require('./_stream_readable');
22577
- const Writable = require('./_stream_writable');
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
- const keys = objectKeys(Writable.prototype);
22581
+ var keys = objectKeys(Writable.prototype);
22582
22582
  for (var v = 0; v < keys.length; v++) {
22583
- const method = keys[v];
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
- const Transform = require('./_stream_transform');
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
- const EE = require('events').EventEmitter;
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
- const Buffer = require('buffer').Buffer;
22749
- const OurUint8Array = (typeof global !== 'undefined' ? global : typeof window !== 'undefined' ? window : typeof self !== 'undefined' ? self : {}).Uint8Array || function () {};
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
- const debugUtil = require('util');
22759
- let debug;
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
- const BufferList = require('./internal/streams/buffer_list');
22768
- const destroyImpl = require('./internal/streams/destroy');
22769
- const _require = require('./internal/streams/state'),
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
- const _require$codes = require('../errors').codes,
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
- let StringDecoder;
22779
- let createReadableStreamAsyncIterator;
22780
- let from;
22778
+ var StringDecoder;
22779
+ var createReadableStreamAsyncIterator;
22780
+ var from;
22781
22781
  require('inherits')(Readable, Stream);
22782
- const errorOrDestroy = destroyImpl.errorOrDestroy;
22783
- const kProxyEvents = ['error', 'close', 'destroy', 'pause', 'resume'];
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
- const isDuplex = this instanceof Duplex;
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
- const decoder = new StringDecoder(enc);
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
- let p = this._readableState.buffer.head;
23014
- let content = '';
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
- const MAX_HWM = 0x40000000;
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
- const len = state.length;
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
- const res = Stream.prototype.on.call(this, ev, fn);
23451
- const state = this._readableState;
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
- const res = Stream.prototype.removeListener.call(this, ev, fn);
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
- const res = Stream.prototype.removeAllListeners.apply(this, arguments);
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
- const state = self._readableState;
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
- const state = stream._readableState;
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) this.push(chunk);
23577
+ if (chunk && chunk.length) _this.push(chunk);
23577
23578
  }
23578
- this.push(null);
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 = this.push(chunk);
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
- const wState = stream._writableState;
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
- const _require$codes = require('../errors').codes,
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
- const Duplex = require('./_stream_duplex');
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(this, er, data);
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(this, state);
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
- const internalUtil = {
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
- const Buffer = require('buffer').Buffer;
23990
- const OurUint8Array = (typeof global !== 'undefined' ? global : typeof window !== 'undefined' ? window : typeof self !== 'undefined' ? self : {}).Uint8Array || function () {};
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
- const destroyImpl = require('./internal/streams/destroy');
23998
- const _require = require('./internal/streams/state'),
24000
+ var destroyImpl = require('./internal/streams/destroy');
24001
+ var _require = require('./internal/streams/state'),
23999
24002
  getHighWaterMark = _require.getHighWaterMark;
24000
- const _require$codes = require('../errors').codes,
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
- const errorOrDestroy = destroyImpl.errorOrDestroy;
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
- const isDuplex = this instanceof Duplex;
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
- const rState = stream._readableState;
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
- const finished = require('./end-of-stream');
24571
- const kLastResolve = Symbol('lastResolve');
24572
- const kLastReject = Symbol('lastReject');
24573
- const kError = Symbol('error');
24574
- const kEnded = Symbol('ended');
24575
- const kLastPromise = Symbol('lastPromise');
24576
- const kHandlePromise = Symbol('handlePromise');
24577
- const kStream = Symbol('stream');
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
- const resolve = iter[kLastResolve];
24592
+ var resolve = iter[kLastResolve];
24586
24593
  if (resolve !== null) {
24587
- const data = iter[kStream].read();
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
- const AsyncIteratorPrototype = Object.getPrototypeOf(function () {});
24616
- const ReadableStreamAsyncIteratorPrototype = Object.setPrototypeOf({
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
- const error = this[kError];
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 (this[kError]) {
24638
- reject(this[kError]);
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
- const lastPromise = this[kLastPromise];
24651
- let promise;
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
- const data = this[kStream].read();
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
- }, AsyncIteratorPrototype);
24684
- const createReadableStreamAsyncIterator = stream => {
24685
- const iterator = Object.create(ReadableStreamAsyncIteratorPrototype, {
24686
- [kStream]: {
24687
- value: stream,
24688
- writable: true
24689
- },
24690
- [kLastResolve]: {
24691
- value: null,
24692
- writable: true
24693
- },
24694
- [kLastReject]: {
24695
- value: null,
24696
- writable: true
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
- const reject = iterator[kLastReject];
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
- const resolve = iterator[kLastResolve];
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
- const _require = require('buffer'),
24763
+ var _require = require('buffer'),
24763
24764
  Buffer = _require.Buffer;
24764
- const _require2 = require('util'),
24765
+ var _require2 = require('util'),
24765
24766
  inspect = _require2.inspect;
24766
- const custom = inspect && inspect.custom || 'inspect';
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 = class BufferList {
24771
- constructor() {
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
- push(v) {
24777
- const entry = {
24778
- data: v,
24779
- next: null
24780
- };
24781
- if (this.length > 0) this.tail.next = entry;else this.head = entry;
24782
- this.tail = entry;
24783
- ++this.length;
24784
- }
24785
- unshift(v) {
24786
- const entry = {
24787
- data: v,
24788
- next: this.head
24789
- };
24790
- if (this.length === 0) this.tail = entry;
24791
- this.head = entry;
24792
- ++this.length;
24793
- }
24794
- shift() {
24795
- if (this.length === 0) return;
24796
- const ret = this.head.data;
24797
- if (this.length === 1) this.head = this.tail = null;else this.head = this.head.next;
24798
- --this.length;
24799
- return ret;
24800
- }
24801
- clear() {
24802
- this.head = this.tail = null;
24803
- this.length = 0;
24804
- }
24805
- join(s) {
24806
- if (this.length === 0) return '';
24807
- var p = this.head;
24808
- var ret = '' + p.data;
24809
- while (p = p.next) ret += s + p.data;
24810
- return ret;
24811
- }
24812
- concat(n) {
24813
- if (this.length === 0) return Buffer.alloc(0);
24814
- const ret = Buffer.allocUnsafe(n >>> 0);
24815
- var p = this.head;
24816
- var i = 0;
24817
- while (p) {
24818
- copyBuffer(p.data, ret, i);
24819
- i += p.data.length;
24820
- p = p.next;
24821
- }
24822
- return ret;
24823
- }
24824
-
24825
- // Consumes a specified amount of bytes or characters from the buffered data.
24826
- consume(n, hasStrings) {
24827
- var ret;
24828
- if (n < this.head.data.length) {
24829
- // `slice` is the same for buffers and strings.
24830
- ret = this.head.data.slice(0, n);
24831
- this.head.data = this.head.data.slice(n);
24832
- } else if (n === this.head.data.length) {
24833
- // First chunk is a perfect match.
24834
- ret = this.shift();
24835
- } else {
24836
- // Result spans more than one buffer.
24837
- ret = hasStrings ? this._getString(n) : this._getBuffer(n);
24838
- }
24839
- return ret;
24840
- }
24841
- first() {
24842
- return this.head.data;
24843
- }
24844
-
24845
- // Consumes a specified amount of characters from the buffered data.
24846
- _getString(n) {
24847
- var p = this.head;
24848
- var c = 1;
24849
- var ret = p.data;
24850
- n -= ret.length;
24851
- while (p = p.next) {
24852
- const str = p.data;
24853
- const nb = n > str.length ? str.length : n;
24854
- if (nb === str.length) ret += str;else ret += str.slice(0, n);
24855
- n -= nb;
24856
- if (n === 0) {
24857
- if (nb === str.length) {
24858
- ++c;
24859
- if (p.next) this.head = p.next;else this.head = this.tail = null;
24860
- } else {
24861
- this.head = p;
24862
- p.data = str.slice(nb);
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
- break;
24886
+ ++c;
24865
24887
  }
24866
- ++c;
24867
- }
24868
- this.length -= c;
24869
- return ret;
24870
- }
24871
-
24872
- // Consumes a specified amount of bytes from the buffered data.
24873
- _getBuffer(n) {
24874
- const ret = Buffer.allocUnsafe(n);
24875
- var p = this.head;
24876
- var c = 1;
24877
- p.data.copy(ret);
24878
- n -= p.data.length;
24879
- while (p = p.next) {
24880
- const buf = p.data;
24881
- const nb = n > buf.length ? buf.length : n;
24882
- buf.copy(ret, ret.length - n, 0, nb);
24883
- n -= nb;
24884
- if (n === 0) {
24885
- if (nb === buf.length) {
24886
- ++c;
24887
- if (p.next) this.head = p.next;else this.head = this.tail = null;
24888
- } else {
24889
- this.head = p;
24890
- p.data = buf.slice(nb);
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
- break;
24916
+ ++c;
24893
24917
  }
24894
- ++c;
24918
+ this.length -= c;
24919
+ return ret;
24895
24920
  }
24896
- this.length -= c;
24897
- return ret;
24898
- }
24899
24921
 
24900
- // Make sure the linked list only shows the minimal necessary information.
24901
- [custom](_, options) {
24902
- return inspect(this, _objectSpread(_objectSpread({}, options), {}, {
24903
- // Only inspect one level.
24904
- depth: 0,
24905
- // It should not recurse.
24906
- customInspect: false
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
- const readableDestroyed = this._readableState && this._readableState.destroyed;
24917
- const writableDestroyed = this._writableState && this._writableState.destroyed;
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 (!this._writableState) {
24946
- process.nextTick(emitErrorAndCloseNT, this, err);
24947
- } else if (!this._writableState.errorEmitted) {
24948
- this._writableState.errorEmitted = true;
24949
- process.nextTick(emitErrorAndCloseNT, this, err);
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, this);
24978
+ process.nextTick(emitCloseNT, _this);
24952
24979
  }
24953
24980
  } else if (cb) {
24954
- process.nextTick(emitCloseNT, this);
24981
+ process.nextTick(emitCloseNT, _this);
24955
24982
  cb(err);
24956
24983
  } else {
24957
- process.nextTick(emitCloseNT, this);
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
- const rState = stream._readableState;
24999
- const wState = stream._writableState;
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
- const ERR_STREAM_PREMATURE_CLOSE = require('../../../errors').codes.ERR_STREAM_PREMATURE_CLOSE;
25041
+ var ERR_STREAM_PREMATURE_CLOSE = require('../../../errors').codes.ERR_STREAM_PREMATURE_CLOSE;
25015
25042
  function once(callback) {
25016
- let called = false;
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
- let readable = opts.readable || opts.readable !== false && stream.readable;
25035
- let writable = opts.writable || opts.writable !== false && stream.writable;
25036
- const onlegacyfinish = () => {
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
- const onfinish = () => {
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
- const onend = () => {
25073
+ var onend = function onend() {
25047
25074
  readable = false;
25048
25075
  readableEnded = true;
25049
25076
  if (!writable) callback.call(stream);
25050
25077
  };
25051
- const onerror = err => {
25078
+ var onerror = function onerror(err) {
25052
25079
  callback.call(stream, err);
25053
25080
  };
25054
- const onclose = () => {
25055
- let err;
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
- const onrequest = () => {
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
- let eos;
25133
+ var eos;
25107
25134
  function once(callback) {
25108
- let called = false;
25135
+ var called = false;
25109
25136
  return function () {
25110
25137
  if (called) return;
25111
25138
  called = true;
25112
- callback(...arguments);
25139
+ callback.apply(void 0, arguments);
25113
25140
  };
25114
25141
  }
25115
- const _require$codes = require('../../../errors').codes,
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
- let closed = false;
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
- let destroyed = false;
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
- const callback = popCallback(streams);
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
- let error;
25173
- const destroys = streams.map(function (stream, i) {
25174
- const reading = i < streams.length - 1;
25175
- const writing = i > 0;
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
- const ERR_INVALID_OPT_VALUE = require('../../../errors').codes.ERR_INVALID_OPT_VALUE;
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
- const hwm = highWaterMarkFrom(options, isDuplex, duplexKey);
25222
+ var hwm = highWaterMarkFrom(options, isDuplex, duplexKey);
25196
25223
  if (hwm != null) {
25197
25224
  if (!(isFinite(hwm) && Math.floor(hwm) === hwm) || hwm < 0) {
25198
- const name = isDuplex ? duplexKey : 'highWaterMark';
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":453,"../../common/agent-events/cockpit-notifier":459,"../../common/agent-instance-data":465,"../../common/config-process":469,"../../common/config-process/config-loader":466,"../../common/config-process/no-op-config-process":470,"../../common/footprints-process-v6/collector-footprints-buffer":484,"../../common/footprints-process-v6/collector-footprints-process":485,"../../common/footprints-process-v6/footprints-buffer":486,"../../common/footprints-process-v6/index":489,"../../common/footprints-process-v6/relative-path-resolver":491,"../../common/http/backend-proxy":493,"../../common/no-op-state-tracker":499,"../../common/state-tracker-fpv6":501,"../../common/system-date":503,"./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){
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":459,"./basic-uuid-generator":405,"./config":414,"./karma-handler":434}],408:[function(require,module,exports){
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":481}],410:[function(require,module,exports){
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":487}],411:[function(require,module,exports){
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":482}],412:[function(require,module,exports){
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.327';
53940
+ exports.SL_AGENT_VERSION = '6.1.336';
53914
53941
  exports.SL_AGENT_TYPE = 'browser';
53915
53942
  });
53916
53943
 
@@ -54376,7 +54403,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
54376
54403
  exports.registerEvents = registerEvents;
54377
54404
  });
54378
54405
 
54379
- },{"../../../common/agent-events/cockpit-notifier":459,"./const":423,"@opentelemetry/api":18}],425:[function(require,module,exports){
54406
+ },{"../../../common/agent-events/cockpit-notifier":461,"./const":423,"@opentelemetry/api":18}],425:[function(require,module,exports){
54380
54407
  (function (factory) {
54381
54408
  if (typeof module === "object" && typeof module.exports === "object") {
54382
54409
  var v = factory(require, exports);
@@ -54537,7 +54564,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
54537
54564
  exports.registerOpenTelemetry = registerOpenTelemetry;
54538
54565
  });
54539
54566
 
54540
- },{"../../../common/agent-events/cockpit-notifier":459,"./implementations/CustomFetchInstrumentation":425,"./implementations/CustomXMLHttpRequestInstrumentation":426,"@opentelemetry/instrumentation":98}],429:[function(require,module,exports){
54567
+ },{"../../../common/agent-events/cockpit-notifier":461,"./implementations/CustomFetchInstrumentation":425,"./implementations/CustomXMLHttpRequestInstrumentation":426,"@opentelemetry/instrumentation":98}],429:[function(require,module,exports){
54541
54568
  (function (factory) {
54542
54569
  if (typeof module === "object" && typeof module.exports === "object") {
54543
54570
  var v = factory(require, exports);
@@ -54836,7 +54863,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
54836
54863
  exports.FootprintsQueueSender = FootprintsQueueSender;
54837
54864
  });
54838
54865
 
54839
- },{"../../common/system-date":503,"./entities/footprints-item-data":422}],432:[function(require,module,exports){
54866
+ },{"../../common/system-date":505,"./entities/footprints-item-data":422}],432:[function(require,module,exports){
54840
54867
  (function (factory) {
54841
54868
  if (typeof module === "object" && typeof module.exports === "object") {
54842
54869
  var v = factory(require, exports);
@@ -55091,7 +55118,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
55091
55118
  exports.IstanbulToFootprintsConvertorV3 = IstanbulToFootprintsConvertorV3;
55092
55119
  });
55093
55120
 
55094
- },{"../../common/footprints-process-v6/location-formatter":490,"../../common/footprints-process/collection-interval":492,"../../common/system-date":503,"./logger/log-factory":436}],433:[function(require,module,exports){
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){
55095
55122
  (function (factory) {
55096
55123
  if (typeof module === "object" && typeof module.exports === "object") {
55097
55124
  var v = factory(require, exports);
@@ -55272,7 +55299,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
55272
55299
  exports.KarmaHandler = KarmaHandler;
55273
55300
  });
55274
55301
 
55275
- },{"../../common/events-process/events-contracts":479,"../../common/events-process/events-creator":480,"../../common/utils/validation-utils":507,"./browser-agent-instance":407}],435:[function(require,module,exports){
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){
55276
55303
  (function (factory) {
55277
55304
  if (typeof module === "object" && typeof module.exports === "object") {
55278
55305
  var v = factory(require, exports);
@@ -55463,7 +55490,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
55463
55490
  exports.ConsoleLogger = ConsoleLogger;
55464
55491
  });
55465
55492
 
55466
- },{"../../../common/system-date":503,"../configuration-override":416}],436:[function(require,module,exports){
55493
+ },{"../../../common/system-date":505,"../configuration-override":416}],436:[function(require,module,exports){
55467
55494
  (function (factory) {
55468
55495
  if (typeof module === "object" && typeof module.exports === "object") {
55469
55496
  var v = factory(require, exports);
@@ -55631,7 +55658,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
55631
55658
  exports.FootprintsItemsQueue = FootprintsItemsQueue;
55632
55659
  });
55633
55660
 
55634
- },{"../../../common/system-date":503,"../delegate":418,"../entities/footprints-item-data":422}],439:[function(require,module,exports){
55661
+ },{"../../../common/system-date":505,"../delegate":418,"../entities/footprints-item-data":422}],439:[function(require,module,exports){
55635
55662
  (function (factory) {
55636
55663
  if (typeof module === "object" && typeof module.exports === "object") {
55637
55664
  var v = factory(require, exports);
@@ -55698,7 +55725,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
55698
55725
  Queue.DEFAULT_MAX_ITEMS_IN_QUEUE = 1000;
55699
55726
  });
55700
55727
 
55701
- },{"../../../common/utils/validation-utils":507}],440:[function(require,module,exports){
55728
+ },{"../../../common/utils/validation-utils":509}],440:[function(require,module,exports){
55702
55729
  (function (factory) {
55703
55730
  if (typeof module === "object" && typeof module.exports === "object") {
55704
55731
  var v = factory(require, exports);
@@ -55859,7 +55886,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
55859
55886
  exports.JsonClientAdapter = JsonClientAdapter;
55860
55887
  });
55861
55888
 
55862
- },{"../../../../common/utils/validation-utils":507}],444:[function(require,module,exports){
55889
+ },{"../../../../common/utils/validation-utils":509}],444:[function(require,module,exports){
55863
55890
  (function (factory) {
55864
55891
  if (typeof module === "object" && typeof module.exports === "object") {
55865
55892
  var v = factory(require, exports);
@@ -55970,7 +55997,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
55970
55997
  exports.JsonClient = JsonClient;
55971
55998
  });
55972
55999
 
55973
- },{"../../../../common/http/contracts":494,"../http/http-request":441}],445:[function(require,module,exports){
56000
+ },{"../../../../common/http/contracts":496,"../http/http-request":441}],445:[function(require,module,exports){
55974
56001
  (function (factory) {
55975
56002
  if (typeof module === "object" && typeof module.exports === "object") {
55976
56003
  var v = factory(require, exports);
@@ -56092,7 +56119,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56092
56119
  exports.SlMappingLoader = SlMappingLoader;
56093
56120
  });
56094
56121
 
56095
- },{"../../common/agent-events/cockpit-notifier":459}],448:[function(require,module,exports){
56122
+ },{"../../common/agent-events/cockpit-notifier":461}],448:[function(require,module,exports){
56096
56123
  (function (factory) {
56097
56124
  if (typeof module === "object" && typeof module.exports === "object") {
56098
56125
  var v = factory(require, exports);
@@ -56418,6 +56445,49 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56418
56445
  });
56419
56446
 
56420
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){
56421
56491
  (function (factory) {
56422
56492
  if (typeof module === "object" && typeof module.exports === "object") {
56423
56493
  var v = factory(require, exports);
@@ -56481,7 +56551,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56481
56551
  })(Technology = exports.Technology || (exports.Technology = {}));
56482
56552
  });
56483
56553
 
56484
- },{}],454:[function(require,module,exports){
56554
+ },{}],455:[function(require,module,exports){
56485
56555
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
56486
56556
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
56487
56557
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -56497,7 +56567,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56497
56567
  if (v !== undefined) module.exports = v;
56498
56568
  }
56499
56569
  else if (typeof define === "function" && define.amd) {
56500
- 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);
56501
56571
  }
56502
56572
  })(function (require, exports) {
56503
56573
  "use strict";
@@ -56513,6 +56583,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56513
56583
  const validation_utils_1 = require("../utils/validation-utils");
56514
56584
  const watchdog_1 = require("../watchdog");
56515
56585
  const system_date_1 = require("../system-date");
56586
+ const browser_info_builder_1 = require("./browser-info-builder");
56516
56587
  class AgentEventsController {
56517
56588
  constructor(agentConfig, agentInstanceData, logger, backendProxy, tool, tags) {
56518
56589
  this.active = false;
@@ -56571,7 +56642,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56571
56642
  const agentInstanceInfoBuilder = new agent_instance_info_builder_1.AgentInstanceInfoBuilder(this);
56572
56643
  const machineInfoBuilder = new machine_info_builder_1.MachineInfoBuilder();
56573
56644
  const dependencies = Object.assign(Object.assign({}, packageJsonFile.dependencies), packageJsonFile.devDependencies);
56574
- 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);
56575
56646
  const ciInfoBuilder = new ci_info_builder_1.CiInfoBuilder();
56576
56647
  const agentStartInfoBuilder = new agent_start_info_builder_1.AgentStartInfoBuilder(agentInstanceInfoBuilder, machineInfoBuilder, nodejsEnvInfoBuilder, ciInfoBuilder);
56577
56648
  const agentStartInfo = agentStartInfoBuilder.build();
@@ -56713,7 +56784,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56713
56784
  })(StartRequestStatus || (StartRequestStatus = {}));
56714
56785
  });
56715
56786
 
56716
- },{"../http/backend-proxy":493,"../system-date":503,"../utils/validation-utils":507,"../watchdog":508,"./agent-events-conracts":453,"./agent-instance-info-builder":456,"./agent-start-info-builder":457,"./ci-info-builder":458,"./machine-info-builder":461,"./nodejs-env-info-builder":463}],455:[function(require,module,exports){
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){
56717
56788
  (function (factory) {
56718
56789
  if (typeof module === "object" && typeof module.exports === "object") {
56719
56790
  var v = factory(require, exports);
@@ -56746,7 +56817,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56746
56817
  AgentEventsGuard.EVENT_CODE_TO_LAST_CALL = new Map();
56747
56818
  });
56748
56819
 
56749
- },{"../system-date":503,"./cockpit-notifier":459}],456:[function(require,module,exports){
56820
+ },{"../system-date":505,"./cockpit-notifier":461}],457:[function(require,module,exports){
56750
56821
  (function (process){(function (){
56751
56822
  (function (factory) {
56752
56823
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -56822,7 +56893,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56822
56893
  });
56823
56894
 
56824
56895
  }).call(this)}).call(this,require('_process'))
56825
- },{"./sensitive-data-filter":464,"_process":335}],457:[function(require,module,exports){
56896
+ },{"./sensitive-data-filter":466,"_process":335}],458:[function(require,module,exports){
56826
56897
  (function (factory) {
56827
56898
  if (typeof module === "object" && typeof module.exports === "object") {
56828
56899
  var v = factory(require, exports);
@@ -56841,6 +56912,10 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56841
56912
  this.machineInfoBuilder = machineInfoBuilder;
56842
56913
  this.techSpecificInfoBuilder = techSpecificInfoBuilder;
56843
56914
  this.ciInfoBuilder = ciInfoBuilder;
56915
+ this.agentInstanceInfoBuilder = agentInstanceInfoBuilder;
56916
+ this.machineInfoBuilder = machineInfoBuilder;
56917
+ this.techSpecificInfoBuilder = techSpecificInfoBuilder;
56918
+ this.ciInfoBuilder = ciInfoBuilder;
56844
56919
  }
56845
56920
  fillData() {
56846
56921
  }
@@ -56856,7 +56931,40 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56856
56931
  exports.AgentStartInfoBuilder = AgentStartInfoBuilder;
56857
56932
  });
56858
56933
 
56859
- },{}],458:[function(require,module,exports){
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){
56860
56968
  (function (process){(function (){
56861
56969
  (function (factory) {
56862
56970
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -56898,7 +57006,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56898
57006
  });
56899
57007
 
56900
57008
  }).call(this)}).call(this,require('_process'))
56901
- },{"_process":335}],459:[function(require,module,exports){
57009
+ },{"_process":335}],461:[function(require,module,exports){
56902
57010
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
56903
57011
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
56904
57012
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -56984,7 +57092,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56984
57092
  CockpitNotifier.controllerNullLogged = false;
56985
57093
  });
56986
57094
 
56987
- },{"./agent-events-controller":454,"./dry-run-agent-events-controller":460,"./no-op-agent-events-controller":462}],460:[function(require,module,exports){
57095
+ },{"./agent-events-controller":455,"./dry-run-agent-events-controller":462,"./no-op-agent-events-controller":464}],462:[function(require,module,exports){
56988
57096
  (function (factory) {
56989
57097
  if (typeof module === "object" && typeof module.exports === "object") {
56990
57098
  var v = factory(require, exports);
@@ -57012,7 +57120,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57012
57120
  exports.DryRunAgentEventsController = DryRunAgentEventsController;
57013
57121
  });
57014
57122
 
57015
- },{"../agent-instance-data":465,"../config-process/config":468,"./agent-events-conracts":453,"./agent-events-controller":454}],461:[function(require,module,exports){
57123
+ },{"../agent-instance-data":467,"../config-process/config":470,"./agent-events-conracts":454,"./agent-events-controller":455}],463:[function(require,module,exports){
57016
57124
  (function (process){(function (){
57017
57125
  (function (factory) {
57018
57126
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -57060,7 +57168,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57060
57168
  });
57061
57169
 
57062
57170
  }).call(this)}).call(this,require('_process'))
57063
- },{"../system-date":503,"_process":335,"os":310}],462:[function(require,module,exports){
57171
+ },{"../system-date":505,"_process":335,"os":310}],464:[function(require,module,exports){
57064
57172
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
57065
57173
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
57066
57174
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -57118,7 +57226,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57118
57226
  exports.NoOpAgentEventsController = NoOpAgentEventsController;
57119
57227
  });
57120
57228
 
57121
- },{"./agent-events-controller":454}],463:[function(require,module,exports){
57229
+ },{"./agent-events-controller":455}],465:[function(require,module,exports){
57122
57230
  (function (process){(function (){
57123
57231
  (function (factory) {
57124
57232
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -57153,7 +57261,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57153
57261
  });
57154
57262
 
57155
57263
  }).call(this)}).call(this,require('_process'))
57156
- },{"_process":335}],464:[function(require,module,exports){
57264
+ },{"_process":335}],466:[function(require,module,exports){
57157
57265
  (function (factory) {
57158
57266
  if (typeof module === "object" && typeof module.exports === "object") {
57159
57267
  var v = factory(require, exports);
@@ -57218,7 +57326,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57218
57326
  exports.isSensitive = isSensitive;
57219
57327
  });
57220
57328
 
57221
- },{}],465:[function(require,module,exports){
57329
+ },{}],467:[function(require,module,exports){
57222
57330
  (function (__dirname){(function (){
57223
57331
  (function (factory) {
57224
57332
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -57277,7 +57385,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57277
57385
  });
57278
57386
 
57279
57387
  }).call(this)}).call(this,"/tsOutputs/common")
57280
- },{"./agent-events/agent-events-conracts":453,"./agent-events/agent-instance-info-builder":456,"./utils/files-utils":505,"fs":225,"uuid":677}],466:[function(require,module,exports){
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){
57281
57389
  (function (process){(function (){
57282
57390
  (function (factory) {
57283
57391
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -57285,7 +57393,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57285
57393
  if (v !== undefined) module.exports = v;
57286
57394
  }
57287
57395
  else if (typeof define === "function" && define.amd) {
57288
- 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);
57289
57397
  }
57290
57398
  })(function (require, exports) {
57291
57399
  "use strict";
@@ -57296,6 +57404,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57296
57404
  const sl_env_vars_1 = require("../constants/sl-env-vars");
57297
57405
  const fs = require("fs");
57298
57406
  const jwtDecode = require("jwt-decode");
57407
+ const contracts_1 = require("../../cli-parse/contracts");
57299
57408
  class ConfigLoader {
57300
57409
  constructor(logger) {
57301
57410
  this.logger = logger;
@@ -57325,7 +57434,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57325
57434
  if (agentCfg.token.hasValue) {
57326
57435
  this.loadConfigFromToken(agentCfg, agentCfg.token.value);
57327
57436
  }
57328
- this.resolveUsingOtel(agentCfg);
57437
+ this.resolveUsingOtel(agentCfg, initialJsonConfig);
57329
57438
  this.printConfiguration(agentCfg);
57330
57439
  return agentCfg;
57331
57440
  }
@@ -57337,8 +57446,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57337
57446
  this.logger.info('****************************************************');
57338
57447
  this.logger.info(agentCfg.toJsonObject());
57339
57448
  }
57340
- resolveUsingOtel(agentCfg) {
57341
- 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]);
57342
57451
  }
57343
57452
  loadConfigFromToken(agentCfg, token) {
57344
57453
  if (!token)
@@ -57369,7 +57478,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57369
57478
  });
57370
57479
 
57371
57480
  }).call(this)}).call(this,require('_process'))
57372
- },{"../constants/sl-env-vars":472,"./config":468,"./config-system":467,"_process":335,"fs":225,"jwt-decode":611}],467:[function(require,module,exports){
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){
57373
57482
  (function (process){(function (){
57374
57483
  (function (factory) {
57375
57484
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -57649,7 +57758,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57649
57758
  });
57650
57759
 
57651
57760
  }).call(this)}).call(this,require('_process'))
57652
- },{"_process":335,"fs":225}],468:[function(require,module,exports){
57761
+ },{"_process":335,"fs":225}],470:[function(require,module,exports){
57653
57762
  (function (factory) {
57654
57763
  if (typeof module === "object" && typeof module.exports === "object") {
57655
57764
  var v = factory(require, exports);
@@ -57718,7 +57827,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57718
57827
  exports.AgentConfigWithRuntimeArgs = AgentConfigWithRuntimeArgs;
57719
57828
  });
57720
57829
 
57721
- },{"./config-system":467}],469:[function(require,module,exports){
57830
+ },{"./config-system":469}],471:[function(require,module,exports){
57722
57831
  (function (factory) {
57723
57832
  if (typeof module === "object" && typeof module.exports === "object") {
57724
57833
  var v = factory(require, exports);
@@ -57835,7 +57944,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57835
57944
  exports.ConfigProcess = ConfigProcess;
57836
57945
  });
57837
57946
 
57838
- },{"./config-system":467,"events":266,"jwt-decode":611,"object-assign":309}],470:[function(require,module,exports){
57947
+ },{"./config-system":469,"events":266,"jwt-decode":613,"object-assign":309}],472:[function(require,module,exports){
57839
57948
  (function (factory) {
57840
57949
  if (typeof module === "object" && typeof module.exports === "object") {
57841
57950
  var v = factory(require, exports);
@@ -57863,7 +57972,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57863
57972
  exports.NoopConfigProcess = NoopConfigProcess;
57864
57973
  });
57865
57974
 
57866
- },{"./index":469}],471:[function(require,module,exports){
57975
+ },{"./index":471}],473:[function(require,module,exports){
57867
57976
  (function (factory) {
57868
57977
  if (typeof module === "object" && typeof module.exports === "object") {
57869
57978
  var v = factory(require, exports);
@@ -57898,7 +58007,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57898
58007
  _a);
57899
58008
  });
57900
58009
 
57901
- },{}],472:[function(require,module,exports){
58010
+ },{}],474:[function(require,module,exports){
57902
58011
  (function (process){(function (){
57903
58012
  (function (factory) {
57904
58013
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -58041,7 +58150,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
58041
58150
  });
58042
58151
 
58043
58152
  }).call(this)}).call(this,require('_process'))
58044
- },{"../utils/env-var-parsing":504,"_process":335}],473:[function(require,module,exports){
58153
+ },{"../utils/env-var-parsing":506,"_process":335}],475:[function(require,module,exports){
58045
58154
  (function (factory) {
58046
58155
  if (typeof module === "object" && typeof module.exports === "object") {
58047
58156
  var v = factory(require, exports);
@@ -58061,7 +58170,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
58061
58170
  })(ElementType = exports.ElementType || (exports.ElementType = {}));
58062
58171
  });
58063
58172
 
58064
- },{}],474:[function(require,module,exports){
58173
+ },{}],476:[function(require,module,exports){
58065
58174
  (function (factory) {
58066
58175
  if (typeof module === "object" && typeof module.exports === "object") {
58067
58176
  var v = factory(require, exports);
@@ -58194,7 +58303,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
58194
58303
  exports.FileElement = FileElement;
58195
58304
  });
58196
58305
 
58197
- },{"../utils/validation-utils":507}],475:[function(require,module,exports){
58306
+ },{"../utils/validation-utils":509}],477:[function(require,module,exports){
58198
58307
  (function (factory) {
58199
58308
  if (typeof module === "object" && typeof module.exports === "object") {
58200
58309
  var v = factory(require, exports);
@@ -58264,7 +58373,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
58264
58373
  exports.IstanbulUniqueIdConverter = IstanbulUniqueIdConverter;
58265
58374
  });
58266
58375
 
58267
- },{"./contracts":473,"./unique-id-converter":478}],476:[function(require,module,exports){
58376
+ },{"./contracts":475,"./unique-id-converter":480}],478:[function(require,module,exports){
58268
58377
  (function (factory) {
58269
58378
  if (typeof module === "object" && typeof module.exports === "object") {
58270
58379
  var v = factory(require, exports);
@@ -58321,7 +58430,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
58321
58430
  }
58322
58431
  });
58323
58432
 
58324
- },{"../system-date":503,"../utils/files-utils":505,"./istanbul-unique-id-converter":475,"path":327}],477:[function(require,module,exports){
58433
+ },{"../system-date":505,"../utils/files-utils":507,"./istanbul-unique-id-converter":477,"path":327}],479:[function(require,module,exports){
58325
58434
  (function (factory) {
58326
58435
  if (typeof module === "object" && typeof module.exports === "object") {
58327
58436
  var v = factory(require, exports);
@@ -58505,7 +58614,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
58505
58614
  exports.OriginalModuleLoader = OriginalModuleLoader;
58506
58615
  });
58507
58616
 
58508
- },{"../source-maps-utils":500,"../utils/files-utils":505,"../utils/validation-utils":507}],478:[function(require,module,exports){
58617
+ },{"../source-maps-utils":502,"../utils/files-utils":507,"../utils/validation-utils":509}],480:[function(require,module,exports){
58509
58618
  (function (factory) {
58510
58619
  if (typeof module === "object" && typeof module.exports === "object") {
58511
58620
  var v = factory(require, exports);
@@ -58717,7 +58826,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
58717
58826
  exports.UniqueIdConverter = UniqueIdConverter;
58718
58827
  });
58719
58828
 
58720
- },{"./contracts":473,"./file-element":474}],479:[function(require,module,exports){
58829
+ },{"./contracts":475,"./file-element":476}],481:[function(require,module,exports){
58721
58830
  (function (factory) {
58722
58831
  if (typeof module === "object" && typeof module.exports === "object") {
58723
58832
  var v = factory(require, exports);
@@ -58744,11 +58853,12 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
58744
58853
  TestSelectionStatus["DISABLED"] = "disabled";
58745
58854
  TestSelectionStatus["DISABLED_BY_CONFIGURATION"] = "disabledByConfiguration";
58746
58855
  TestSelectionStatus["RECOMMENDATIONS_TIMEOUT"] = "recommendationsTimeout";
58856
+ TestSelectionStatus["RECOMMENDATIONS_NOT_AVAILABLE"] = "recommendationsNotAvailable";
58747
58857
  TestSelectionStatus["ERROR"] = "error";
58748
58858
  })(TestSelectionStatus = exports.TestSelectionStatus || (exports.TestSelectionStatus = {}));
58749
58859
  });
58750
58860
 
58751
- },{}],480:[function(require,module,exports){
58861
+ },{}],482:[function(require,module,exports){
58752
58862
  (function (factory) {
58753
58863
  if (typeof module === "object" && typeof module.exports === "object") {
58754
58864
  var v = factory(require, exports);
@@ -58788,7 +58898,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
58788
58898
  exports.EventsCreator = EventsCreator;
58789
58899
  });
58790
58900
 
58791
- },{"../system-date":503,"./events-contracts":479}],481:[function(require,module,exports){
58901
+ },{"../system-date":505,"./events-contracts":481}],483:[function(require,module,exports){
58792
58902
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
58793
58903
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
58794
58904
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -58976,7 +59086,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
58976
59086
  EventsProcess.ITEMS_TO_DEQUE = 1000;
58977
59087
  });
58978
59088
 
58979
- },{"../system-date":503,"../utils/validation-utils":507}],482:[function(require,module,exports){
59089
+ },{"../system-date":505,"../utils/validation-utils":509}],484:[function(require,module,exports){
58980
59090
  (function (factory) {
58981
59091
  if (typeof module === "object" && typeof module.exports === "object") {
58982
59092
  var v = factory(require, exports);
@@ -59032,7 +59142,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
59032
59142
  exports.BaseBrowserHitsConverter = BaseBrowserHitsConverter;
59033
59143
  });
59034
59144
 
59035
- },{"../../common/footprints-process-v6/hits-converter":488,"../utils/files-utils":505,"./location-formatter":490}],483:[function(require,module,exports){
59145
+ },{"../../common/footprints-process-v6/hits-converter":490,"../utils/files-utils":507,"./location-formatter":492}],485:[function(require,module,exports){
59036
59146
  (function (factory) {
59037
59147
  if (typeof module === "object" && typeof module.exports === "object") {
59038
59148
  var v = factory(require, exports);
@@ -59077,7 +59187,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
59077
59187
  BufferSizeHelper.MB = 1024 * 1024;
59078
59188
  });
59079
59189
 
59080
- },{}],484:[function(require,module,exports){
59190
+ },{}],486:[function(require,module,exports){
59081
59191
  (function (factory) {
59082
59192
  if (typeof module === "object" && typeof module.exports === "object") {
59083
59193
  var v = factory(require, exports);
@@ -59110,7 +59220,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
59110
59220
  exports.CollectorFootprintsBuffer = CollectorFootprintsBuffer;
59111
59221
  });
59112
59222
 
59113
- },{"../agent-events/agent-events-conracts":453,"./footprints-buffer":486}],485:[function(require,module,exports){
59223
+ },{"../agent-events/agent-events-conracts":454,"./footprints-buffer":488}],487:[function(require,module,exports){
59114
59224
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
59115
59225
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
59116
59226
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -59180,7 +59290,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
59180
59290
  exports.CollectorFootprintsProcess = CollectorFootprintsProcess;
59181
59291
  });
59182
59292
 
59183
- },{".":489,"../no-op-state-tracker":499}],486:[function(require,module,exports){
59293
+ },{".":491,"../no-op-state-tracker":501}],488:[function(require,module,exports){
59184
59294
  (function (factory) {
59185
59295
  if (typeof module === "object" && typeof module.exports === "object") {
59186
59296
  var v = factory(require, exports);
@@ -59301,7 +59411,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
59301
59411
  FootprintsBuffer.BUFFER_FULL = 'bufferFull';
59302
59412
  });
59303
59413
 
59304
- },{"../agent-events/agent-events-conracts":453,"../agent-events/cockpit-notifier":459,"./buffer-size-helper":483,"events":266}],487:[function(require,module,exports){
59414
+ },{"../agent-events/agent-events-conracts":454,"../agent-events/cockpit-notifier":461,"./buffer-size-helper":485,"events":266}],489:[function(require,module,exports){
59305
59415
  (function (global){(function (){
59306
59416
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
59307
59417
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
@@ -59489,7 +59599,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
59489
59599
  });
59490
59600
 
59491
59601
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
59492
- },{"../agent-events/cockpit-notifier":459,"../constants/sl-env-vars":472,"../coverage-elements/original-module-loader":477}],488:[function(require,module,exports){
59602
+ },{"../agent-events/cockpit-notifier":461,"../constants/sl-env-vars":474,"../coverage-elements/original-module-loader":479}],490:[function(require,module,exports){
59493
59603
  (function (factory) {
59494
59604
  if (typeof module === "object" && typeof module.exports === "object") {
59495
59605
  var v = factory(require, exports);
@@ -59639,7 +59749,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
59639
59749
  HitsConverter.BRANCH_ID_DEL = '|';
59640
59750
  });
59641
59751
 
59642
- },{"../agent-events/cockpit-notifier":459,"../constants/sl-env-vars":472,"../coverage-elements/new-id-resolver":476,"../coverage-elements/original-module-loader":477,"./hits-collector":487}],489:[function(require,module,exports){
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){
59643
59753
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
59644
59754
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
59645
59755
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -59930,7 +60040,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
59930
60040
  FootprintsProcess.ALARM_FIRED = 'alarm';
59931
60041
  });
59932
60042
 
59933
- },{"../agent-events/agent-events-conracts":453,"../agent-events/agent-events-guard":455,"../agent-events/cockpit-notifier":459,"../constants/sl-env-vars":472,"../footprints-process/collection-interval":492,"../state-tracker":502,"./footprints-buffer":486}],490:[function(require,module,exports){
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){
59934
60044
  (function (factory) {
59935
60045
  if (typeof module === "object" && typeof module.exports === "object") {
59936
60046
  var v = factory(require, exports);
@@ -59964,7 +60074,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
59964
60074
  }
59965
60075
  });
59966
60076
 
59967
- },{}],491:[function(require,module,exports){
60077
+ },{}],493:[function(require,module,exports){
59968
60078
  (function (process){(function (){
59969
60079
  (function (factory) {
59970
60080
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -60005,7 +60115,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
60005
60115
  });
60006
60116
 
60007
60117
  }).call(this)}).call(this,require('_process'))
60008
- },{"_process":335}],492:[function(require,module,exports){
60118
+ },{"_process":335}],494:[function(require,module,exports){
60009
60119
  (function (factory) {
60010
60120
  if (typeof module === "object" && typeof module.exports === "object") {
60011
60121
  var v = factory(require, exports);
@@ -60043,7 +60153,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
60043
60153
  exports.CollectionInterval = CollectionInterval;
60044
60154
  });
60045
60155
 
60046
- },{"../system-date":503}],493:[function(require,module,exports){
60156
+ },{"../system-date":505}],495:[function(require,module,exports){
60047
60157
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
60048
60158
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
60049
60159
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -60390,7 +60500,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
60390
60500
  BackendProxy.DEFAULT_HTTP_ATTEMPT_INTERVAL = 5 * 1000;
60391
60501
  });
60392
60502
 
60393
- },{"../constants/constants":471,"../constants/sl-env-vars":472,"../utils/timer-utils":506,"../utils/validation-utils":507,"./contracts":494,"./entities-mapper":495,"./http-client":496,"./sl-routes":498}],494:[function(require,module,exports){
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){
60394
60504
  (function (factory) {
60395
60505
  if (typeof module === "object" && typeof module.exports === "object") {
60396
60506
  var v = factory(require, exports);
@@ -60496,7 +60606,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
60496
60606
  })(SealightsHaderValues = exports.SealightsHaderValues || (exports.SealightsHaderValues = {}));
60497
60607
  });
60498
60608
 
60499
- },{"../system-date":503}],495:[function(require,module,exports){
60609
+ },{"../system-date":505}],497:[function(require,module,exports){
60500
60610
  (function (factory) {
60501
60611
  if (typeof module === "object" && typeof module.exports === "object") {
60502
60612
  var v = factory(require, exports);
@@ -60522,7 +60632,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
60522
60632
  exports.EntitiesMapper = EntitiesMapper;
60523
60633
  });
60524
60634
 
60525
- },{"./contracts":494}],496:[function(require,module,exports){
60635
+ },{"./contracts":496}],498:[function(require,module,exports){
60526
60636
  (function (process,Buffer){(function (){
60527
60637
  (function (factory) {
60528
60638
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -60729,7 +60839,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
60729
60839
  });
60730
60840
 
60731
60841
  }).call(this)}).call(this,require('_process'),require("buffer").Buffer)
60732
- },{"../constants/sl-env-vars":472,"../utils/validation-utils":507,"./contracts":494,"./http-verb":497,"_process":335,"buffer":227,"request":624,"zlib":224}],497:[function(require,module,exports){
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){
60733
60843
  (function (factory) {
60734
60844
  if (typeof module === "object" && typeof module.exports === "object") {
60735
60845
  var v = factory(require, exports);
@@ -60751,7 +60861,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
60751
60861
  })(HttpVerb = exports.HttpVerb || (exports.HttpVerb = {}));
60752
60862
  });
60753
60863
 
60754
- },{}],498:[function(require,module,exports){
60864
+ },{}],500:[function(require,module,exports){
60755
60865
  (function (factory) {
60756
60866
  if (typeof module === "object" && typeof module.exports === "object") {
60757
60867
  var v = factory(require, exports);
@@ -60980,7 +61090,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
60980
61090
  SLRoutes.ACTIVE = 'active';
60981
61091
  });
60982
61092
 
60983
- },{"../constants/constants":471,"../utils/validation-utils":507}],499:[function(require,module,exports){
61093
+ },{"../constants/constants":473,"../utils/validation-utils":509}],501:[function(require,module,exports){
60984
61094
  (function (factory) {
60985
61095
  if (typeof module === "object" && typeof module.exports === "object") {
60986
61096
  var v = factory(require, exports);
@@ -61012,7 +61122,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
61012
61122
  exports.NoopStateTracker = NoopStateTracker;
61013
61123
  });
61014
61124
 
61015
- },{"./state-tracker-fpv6":501}],500:[function(require,module,exports){
61125
+ },{"./state-tracker-fpv6":503}],502:[function(require,module,exports){
61016
61126
  (function (factory) {
61017
61127
  if (typeof module === "object" && typeof module.exports === "object") {
61018
61128
  var v = factory(require, exports);
@@ -61059,7 +61169,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
61059
61169
  exports.SourceMapsUtils = SourceMapsUtils;
61060
61170
  });
61061
61171
 
61062
- },{"fs":225,"source-map":385}],501:[function(require,module,exports){
61172
+ },{"fs":225,"source-map":385}],503:[function(require,module,exports){
61063
61173
  (function (factory) {
61064
61174
  if (typeof module === "object" && typeof module.exports === "object") {
61065
61175
  var v = factory(require, exports);
@@ -61092,7 +61202,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
61092
61202
  exports.StateTrackerFpv6 = StateTrackerFpv6;
61093
61203
  });
61094
61204
 
61095
- },{"./state-tracker":502}],502:[function(require,module,exports){
61205
+ },{"./state-tracker":504}],504:[function(require,module,exports){
61096
61206
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
61097
61207
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
61098
61208
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -61332,7 +61442,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
61332
61442
  StateTracker.EXECUTION_STATUS_PENDING_DELETE = 'pendingDelete';
61333
61443
  });
61334
61444
 
61335
- },{"./agent-events/agent-events-conracts":453,"./agent-events/cockpit-notifier":459,"./constants/sl-env-vars":472,"./utils/validation-utils":507,"events":266}],503:[function(require,module,exports){
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){
61336
61446
  (function (factory) {
61337
61447
  if (typeof module === "object" && typeof module.exports === "object") {
61338
61448
  var v = factory(require, exports);
@@ -61358,7 +61468,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
61358
61468
  exports.getSystemDateValueOf = getSystemDateValueOf;
61359
61469
  });
61360
61470
 
61361
- },{}],504:[function(require,module,exports){
61471
+ },{}],506:[function(require,module,exports){
61362
61472
  (function (process){(function (){
61363
61473
  (function (factory) {
61364
61474
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -61398,7 +61508,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
61398
61508
  });
61399
61509
 
61400
61510
  }).call(this)}).call(this,require('_process'))
61401
- },{"_process":335}],505:[function(require,module,exports){
61511
+ },{"_process":335}],507:[function(require,module,exports){
61402
61512
  (function (factory) {
61403
61513
  if (typeof module === "object" && typeof module.exports === "object") {
61404
61514
  var v = factory(require, exports);
@@ -61452,7 +61562,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
61452
61562
  exports.FilesUtils = FilesUtils;
61453
61563
  });
61454
61564
 
61455
- },{"fs":225,"path":327}],506:[function(require,module,exports){
61565
+ },{"fs":225,"path":327}],508:[function(require,module,exports){
61456
61566
  (function (factory) {
61457
61567
  if (typeof module === "object" && typeof module.exports === "object") {
61458
61568
  var v = factory(require, exports);
@@ -61473,7 +61583,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
61473
61583
  exports.TimerUtils = TimerUtils;
61474
61584
  });
61475
61585
 
61476
- },{}],507:[function(require,module,exports){
61586
+ },{}],509:[function(require,module,exports){
61477
61587
  (function (factory) {
61478
61588
  if (typeof module === "object" && typeof module.exports === "object") {
61479
61589
  var v = factory(require, exports);
@@ -61500,7 +61610,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
61500
61610
  exports.ValidationUtils = ValidationUtils;
61501
61611
  });
61502
61612
 
61503
- },{"../constants/constants":471}],508:[function(require,module,exports){
61613
+ },{"../constants/constants":473}],510:[function(require,module,exports){
61504
61614
  (function (factory) {
61505
61615
  if (typeof module === "object" && typeof module.exports === "object") {
61506
61616
  var v = factory(require, exports);
@@ -61607,7 +61717,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
61607
61717
  exports.Watchdog = Watchdog;
61608
61718
  });
61609
61719
 
61610
- },{"events":266}],509:[function(require,module,exports){
61720
+ },{"events":266}],511:[function(require,module,exports){
61611
61721
  'use strict';
61612
61722
 
61613
61723
  var compileSchema = require('./compile')
@@ -62115,7 +62225,7 @@ function setLogger(self) {
62115
62225
 
62116
62226
  function noop() {}
62117
62227
 
62118
- },{"./cache":510,"./compile":514,"./compile/async":511,"./compile/error_classes":512,"./compile/formats":513,"./compile/resolve":515,"./compile/rules":516,"./compile/schema_obj":517,"./compile/util":519,"./data":520,"./keyword":548,"./refs/data.json":549,"./refs/json-schema-draft-07.json":551,"fast-json-stable-stringify":573}],510:[function(require,module,exports){
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){
62119
62229
  'use strict';
62120
62230
 
62121
62231
 
@@ -62143,7 +62253,7 @@ Cache.prototype.clear = function Cache_clear() {
62143
62253
  this._cache = {};
62144
62254
  };
62145
62255
 
62146
- },{}],511:[function(require,module,exports){
62256
+ },{}],513:[function(require,module,exports){
62147
62257
  'use strict';
62148
62258
 
62149
62259
  var MissingRefError = require('./error_classes').MissingRef;
@@ -62235,7 +62345,7 @@ function compileAsync(schema, meta, callback) {
62235
62345
  }
62236
62346
  }
62237
62347
 
62238
- },{"./error_classes":512}],512:[function(require,module,exports){
62348
+ },{"./error_classes":514}],514:[function(require,module,exports){
62239
62349
  'use strict';
62240
62350
 
62241
62351
  var resolve = require('./resolve');
@@ -62271,7 +62381,7 @@ function errorSubclass(Subclass) {
62271
62381
  return Subclass;
62272
62382
  }
62273
62383
 
62274
- },{"./resolve":515}],513:[function(require,module,exports){
62384
+ },{"./resolve":517}],515:[function(require,module,exports){
62275
62385
  'use strict';
62276
62386
 
62277
62387
  var util = require('./util');
@@ -62415,7 +62525,7 @@ function regex(str) {
62415
62525
  }
62416
62526
  }
62417
62527
 
62418
- },{"./util":519}],514:[function(require,module,exports){
62528
+ },{"./util":521}],516:[function(require,module,exports){
62419
62529
  'use strict';
62420
62530
 
62421
62531
  var resolve = require('./resolve')
@@ -62804,7 +62914,7 @@ function vars(arr, statement) {
62804
62914
  return code;
62805
62915
  }
62806
62916
 
62807
- },{"../dotjs/validate":547,"./error_classes":512,"./resolve":515,"./util":519,"fast-deep-equal":572,"fast-json-stable-stringify":573}],515:[function(require,module,exports){
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){
62808
62918
  'use strict';
62809
62919
 
62810
62920
  var URI = require('uri-js')
@@ -63076,7 +63186,7 @@ function resolveIds(schema) {
63076
63186
  return localRefs;
63077
63187
  }
63078
63188
 
63079
- },{"./schema_obj":517,"./util":519,"fast-deep-equal":572,"json-schema-traverse":605,"uri-js":676}],516:[function(require,module,exports){
63189
+ },{"./schema_obj":519,"./util":521,"fast-deep-equal":574,"json-schema-traverse":607,"uri-js":678}],518:[function(require,module,exports){
63080
63190
  'use strict';
63081
63191
 
63082
63192
  var ruleModules = require('../dotjs')
@@ -63144,7 +63254,7 @@ module.exports = function rules() {
63144
63254
  return RULES;
63145
63255
  };
63146
63256
 
63147
- },{"../dotjs":536,"./util":519}],517:[function(require,module,exports){
63257
+ },{"../dotjs":538,"./util":521}],519:[function(require,module,exports){
63148
63258
  'use strict';
63149
63259
 
63150
63260
  var util = require('./util');
@@ -63155,7 +63265,7 @@ function SchemaObject(obj) {
63155
63265
  util.copy(obj, this);
63156
63266
  }
63157
63267
 
63158
- },{"./util":519}],518:[function(require,module,exports){
63268
+ },{"./util":521}],520:[function(require,module,exports){
63159
63269
  'use strict';
63160
63270
 
63161
63271
  // https://mathiasbynens.be/notes/javascript-encoding
@@ -63177,7 +63287,7 @@ module.exports = function ucs2length(str) {
63177
63287
  return length;
63178
63288
  };
63179
63289
 
63180
- },{}],519:[function(require,module,exports){
63290
+ },{}],521:[function(require,module,exports){
63181
63291
  'use strict';
63182
63292
 
63183
63293
 
@@ -63418,7 +63528,7 @@ function unescapeJsonPointer(str) {
63418
63528
  return str.replace(/~1/g, '/').replace(/~0/g, '~');
63419
63529
  }
63420
63530
 
63421
- },{"./ucs2length":518,"fast-deep-equal":572}],520:[function(require,module,exports){
63531
+ },{"./ucs2length":520,"fast-deep-equal":574}],522:[function(require,module,exports){
63422
63532
  'use strict';
63423
63533
 
63424
63534
  var KEYWORDS = [
@@ -63469,7 +63579,7 @@ module.exports = function (metaSchema, keywordsJsonPointers) {
63469
63579
  return metaSchema;
63470
63580
  };
63471
63581
 
63472
- },{}],521:[function(require,module,exports){
63582
+ },{}],523:[function(require,module,exports){
63473
63583
  'use strict';
63474
63584
 
63475
63585
  var metaSchema = require('./refs/json-schema-draft-07.json');
@@ -63508,7 +63618,7 @@ module.exports = {
63508
63618
  }
63509
63619
  };
63510
63620
 
63511
- },{"./refs/json-schema-draft-07.json":551}],522:[function(require,module,exports){
63621
+ },{"./refs/json-schema-draft-07.json":553}],524:[function(require,module,exports){
63512
63622
  'use strict';
63513
63623
  module.exports = function generate__limit(it, $keyword, $ruleType) {
63514
63624
  var out = ' ';
@@ -63673,7 +63783,7 @@ module.exports = function generate__limit(it, $keyword, $ruleType) {
63673
63783
  return out;
63674
63784
  }
63675
63785
 
63676
- },{}],523:[function(require,module,exports){
63786
+ },{}],525:[function(require,module,exports){
63677
63787
  'use strict';
63678
63788
  module.exports = function generate__limitItems(it, $keyword, $ruleType) {
63679
63789
  var out = ' ';
@@ -63755,7 +63865,7 @@ module.exports = function generate__limitItems(it, $keyword, $ruleType) {
63755
63865
  return out;
63756
63866
  }
63757
63867
 
63758
- },{}],524:[function(require,module,exports){
63868
+ },{}],526:[function(require,module,exports){
63759
63869
  'use strict';
63760
63870
  module.exports = function generate__limitLength(it, $keyword, $ruleType) {
63761
63871
  var out = ' ';
@@ -63842,7 +63952,7 @@ module.exports = function generate__limitLength(it, $keyword, $ruleType) {
63842
63952
  return out;
63843
63953
  }
63844
63954
 
63845
- },{}],525:[function(require,module,exports){
63955
+ },{}],527:[function(require,module,exports){
63846
63956
  'use strict';
63847
63957
  module.exports = function generate__limitProperties(it, $keyword, $ruleType) {
63848
63958
  var out = ' ';
@@ -63924,7 +64034,7 @@ module.exports = function generate__limitProperties(it, $keyword, $ruleType) {
63924
64034
  return out;
63925
64035
  }
63926
64036
 
63927
- },{}],526:[function(require,module,exports){
64037
+ },{}],528:[function(require,module,exports){
63928
64038
  'use strict';
63929
64039
  module.exports = function generate_allOf(it, $keyword, $ruleType) {
63930
64040
  var out = ' ';
@@ -63968,7 +64078,7 @@ module.exports = function generate_allOf(it, $keyword, $ruleType) {
63968
64078
  return out;
63969
64079
  }
63970
64080
 
63971
- },{}],527:[function(require,module,exports){
64081
+ },{}],529:[function(require,module,exports){
63972
64082
  'use strict';
63973
64083
  module.exports = function generate_anyOf(it, $keyword, $ruleType) {
63974
64084
  var out = ' ';
@@ -64043,7 +64153,7 @@ module.exports = function generate_anyOf(it, $keyword, $ruleType) {
64043
64153
  return out;
64044
64154
  }
64045
64155
 
64046
- },{}],528:[function(require,module,exports){
64156
+ },{}],530:[function(require,module,exports){
64047
64157
  'use strict';
64048
64158
  module.exports = function generate_comment(it, $keyword, $ruleType) {
64049
64159
  var out = ' ';
@@ -64059,7 +64169,7 @@ module.exports = function generate_comment(it, $keyword, $ruleType) {
64059
64169
  return out;
64060
64170
  }
64061
64171
 
64062
- },{}],529:[function(require,module,exports){
64172
+ },{}],531:[function(require,module,exports){
64063
64173
  'use strict';
64064
64174
  module.exports = function generate_const(it, $keyword, $ruleType) {
64065
64175
  var out = ' ';
@@ -64117,7 +64227,7 @@ module.exports = function generate_const(it, $keyword, $ruleType) {
64117
64227
  return out;
64118
64228
  }
64119
64229
 
64120
- },{}],530:[function(require,module,exports){
64230
+ },{}],532:[function(require,module,exports){
64121
64231
  'use strict';
64122
64232
  module.exports = function generate_contains(it, $keyword, $ruleType) {
64123
64233
  var out = ' ';
@@ -64200,7 +64310,7 @@ module.exports = function generate_contains(it, $keyword, $ruleType) {
64200
64310
  return out;
64201
64311
  }
64202
64312
 
64203
- },{}],531:[function(require,module,exports){
64313
+ },{}],533:[function(require,module,exports){
64204
64314
  'use strict';
64205
64315
  module.exports = function generate_custom(it, $keyword, $ruleType) {
64206
64316
  var out = ' ';
@@ -64430,7 +64540,7 @@ module.exports = function generate_custom(it, $keyword, $ruleType) {
64430
64540
  return out;
64431
64541
  }
64432
64542
 
64433
- },{}],532:[function(require,module,exports){
64543
+ },{}],534:[function(require,module,exports){
64434
64544
  'use strict';
64435
64545
  module.exports = function generate_dependencies(it, $keyword, $ruleType) {
64436
64546
  var out = ' ';
@@ -64600,7 +64710,7 @@ module.exports = function generate_dependencies(it, $keyword, $ruleType) {
64600
64710
  return out;
64601
64711
  }
64602
64712
 
64603
- },{}],533:[function(require,module,exports){
64713
+ },{}],535:[function(require,module,exports){
64604
64714
  'use strict';
64605
64715
  module.exports = function generate_enum(it, $keyword, $ruleType) {
64606
64716
  var out = ' ';
@@ -64668,7 +64778,7 @@ module.exports = function generate_enum(it, $keyword, $ruleType) {
64668
64778
  return out;
64669
64779
  }
64670
64780
 
64671
- },{}],534:[function(require,module,exports){
64781
+ },{}],536:[function(require,module,exports){
64672
64782
  'use strict';
64673
64783
  module.exports = function generate_format(it, $keyword, $ruleType) {
64674
64784
  var out = ' ';
@@ -64820,7 +64930,7 @@ module.exports = function generate_format(it, $keyword, $ruleType) {
64820
64930
  return out;
64821
64931
  }
64822
64932
 
64823
- },{}],535:[function(require,module,exports){
64933
+ },{}],537:[function(require,module,exports){
64824
64934
  'use strict';
64825
64935
  module.exports = function generate_if(it, $keyword, $ruleType) {
64826
64936
  var out = ' ';
@@ -64925,7 +65035,7 @@ module.exports = function generate_if(it, $keyword, $ruleType) {
64925
65035
  return out;
64926
65036
  }
64927
65037
 
64928
- },{}],536:[function(require,module,exports){
65038
+ },{}],538:[function(require,module,exports){
64929
65039
  'use strict';
64930
65040
 
64931
65041
  //all requires must be explicit because browserify won't work with dynamic requires
@@ -64960,7 +65070,7 @@ module.exports = {
64960
65070
  validate: require('./validate')
64961
65071
  };
64962
65072
 
64963
- },{"./_limit":522,"./_limitItems":523,"./_limitLength":524,"./_limitProperties":525,"./allOf":526,"./anyOf":527,"./comment":528,"./const":529,"./contains":530,"./dependencies":532,"./enum":533,"./format":534,"./if":535,"./items":537,"./multipleOf":538,"./not":539,"./oneOf":540,"./pattern":541,"./properties":542,"./propertyNames":543,"./ref":544,"./required":545,"./uniqueItems":546,"./validate":547}],537:[function(require,module,exports){
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){
64964
65074
  'use strict';
64965
65075
  module.exports = function generate_items(it, $keyword, $ruleType) {
64966
65076
  var out = ' ';
@@ -65102,7 +65212,7 @@ module.exports = function generate_items(it, $keyword, $ruleType) {
65102
65212
  return out;
65103
65213
  }
65104
65214
 
65105
- },{}],538:[function(require,module,exports){
65215
+ },{}],540:[function(require,module,exports){
65106
65216
  'use strict';
65107
65217
  module.exports = function generate_multipleOf(it, $keyword, $ruleType) {
65108
65218
  var out = ' ';
@@ -65184,7 +65294,7 @@ module.exports = function generate_multipleOf(it, $keyword, $ruleType) {
65184
65294
  return out;
65185
65295
  }
65186
65296
 
65187
- },{}],539:[function(require,module,exports){
65297
+ },{}],541:[function(require,module,exports){
65188
65298
  'use strict';
65189
65299
  module.exports = function generate_not(it, $keyword, $ruleType) {
65190
65300
  var out = ' ';
@@ -65270,7 +65380,7 @@ module.exports = function generate_not(it, $keyword, $ruleType) {
65270
65380
  return out;
65271
65381
  }
65272
65382
 
65273
- },{}],540:[function(require,module,exports){
65383
+ },{}],542:[function(require,module,exports){
65274
65384
  'use strict';
65275
65385
  module.exports = function generate_oneOf(it, $keyword, $ruleType) {
65276
65386
  var out = ' ';
@@ -65345,7 +65455,7 @@ module.exports = function generate_oneOf(it, $keyword, $ruleType) {
65345
65455
  return out;
65346
65456
  }
65347
65457
 
65348
- },{}],541:[function(require,module,exports){
65458
+ },{}],543:[function(require,module,exports){
65349
65459
  'use strict';
65350
65460
  module.exports = function generate_pattern(it, $keyword, $ruleType) {
65351
65461
  var out = ' ';
@@ -65422,7 +65532,7 @@ module.exports = function generate_pattern(it, $keyword, $ruleType) {
65422
65532
  return out;
65423
65533
  }
65424
65534
 
65425
- },{}],542:[function(require,module,exports){
65535
+ },{}],544:[function(require,module,exports){
65426
65536
  'use strict';
65427
65537
  module.exports = function generate_properties(it, $keyword, $ruleType) {
65428
65538
  var out = ' ';
@@ -65759,7 +65869,7 @@ module.exports = function generate_properties(it, $keyword, $ruleType) {
65759
65869
  return out;
65760
65870
  }
65761
65871
 
65762
- },{}],543:[function(require,module,exports){
65872
+ },{}],545:[function(require,module,exports){
65763
65873
  'use strict';
65764
65874
  module.exports = function generate_propertyNames(it, $keyword, $ruleType) {
65765
65875
  var out = ' ';
@@ -65842,7 +65952,7 @@ module.exports = function generate_propertyNames(it, $keyword, $ruleType) {
65842
65952
  return out;
65843
65953
  }
65844
65954
 
65845
- },{}],544:[function(require,module,exports){
65955
+ },{}],546:[function(require,module,exports){
65846
65956
  'use strict';
65847
65957
  module.exports = function generate_ref(it, $keyword, $ruleType) {
65848
65958
  var out = ' ';
@@ -65968,7 +66078,7 @@ module.exports = function generate_ref(it, $keyword, $ruleType) {
65968
66078
  return out;
65969
66079
  }
65970
66080
 
65971
- },{}],545:[function(require,module,exports){
66081
+ },{}],547:[function(require,module,exports){
65972
66082
  'use strict';
65973
66083
  module.exports = function generate_required(it, $keyword, $ruleType) {
65974
66084
  var out = ' ';
@@ -66240,7 +66350,7 @@ module.exports = function generate_required(it, $keyword, $ruleType) {
66240
66350
  return out;
66241
66351
  }
66242
66352
 
66243
- },{}],546:[function(require,module,exports){
66353
+ },{}],548:[function(require,module,exports){
66244
66354
  'use strict';
66245
66355
  module.exports = function generate_uniqueItems(it, $keyword, $ruleType) {
66246
66356
  var out = ' ';
@@ -66328,7 +66438,7 @@ module.exports = function generate_uniqueItems(it, $keyword, $ruleType) {
66328
66438
  return out;
66329
66439
  }
66330
66440
 
66331
- },{}],547:[function(require,module,exports){
66441
+ },{}],549:[function(require,module,exports){
66332
66442
  'use strict';
66333
66443
  module.exports = function generate_validate(it, $keyword, $ruleType) {
66334
66444
  var out = '';
@@ -66812,7 +66922,7 @@ module.exports = function generate_validate(it, $keyword, $ruleType) {
66812
66922
  return out;
66813
66923
  }
66814
66924
 
66815
- },{}],548:[function(require,module,exports){
66925
+ },{}],550:[function(require,module,exports){
66816
66926
  'use strict';
66817
66927
 
66818
66928
  var IDENTIFIER = /^[a-z_$][a-z0-9_$-]*$/i;
@@ -66960,7 +67070,7 @@ function validateKeyword(definition, throwError) {
66960
67070
  return false;
66961
67071
  }
66962
67072
 
66963
- },{"./definition_schema":521,"./dotjs/custom":531}],549:[function(require,module,exports){
67073
+ },{"./definition_schema":523,"./dotjs/custom":533}],551:[function(require,module,exports){
66964
67074
  module.exports={
66965
67075
  "$schema": "http://json-schema.org/draft-07/schema#",
66966
67076
  "$id": "https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#",
@@ -66979,7 +67089,7 @@ module.exports={
66979
67089
  "additionalProperties": false
66980
67090
  }
66981
67091
 
66982
- },{}],550:[function(require,module,exports){
67092
+ },{}],552:[function(require,module,exports){
66983
67093
  module.exports={
66984
67094
  "$schema": "http://json-schema.org/draft-06/schema#",
66985
67095
  "$id": "http://json-schema.org/draft-06/schema#",
@@ -67135,7 +67245,7 @@ module.exports={
67135
67245
  "default": {}
67136
67246
  }
67137
67247
 
67138
- },{}],551:[function(require,module,exports){
67248
+ },{}],553:[function(require,module,exports){
67139
67249
  module.exports={
67140
67250
  "$schema": "http://json-schema.org/draft-07/schema#",
67141
67251
  "$id": "http://json-schema.org/draft-07/schema#",
@@ -67305,7 +67415,7 @@ module.exports={
67305
67415
  "default": true
67306
67416
  }
67307
67417
 
67308
- },{}],552:[function(require,module,exports){
67418
+ },{}],554:[function(require,module,exports){
67309
67419
  // Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
67310
67420
 
67311
67421
 
@@ -67320,7 +67430,7 @@ module.exports = {
67320
67430
 
67321
67431
  };
67322
67432
 
67323
- },{}],553:[function(require,module,exports){
67433
+ },{}],555:[function(require,module,exports){
67324
67434
  // Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
67325
67435
 
67326
67436
  var errors = require('./errors');
@@ -67349,7 +67459,7 @@ for (var e in errors) {
67349
67459
  module.exports[e] = errors[e];
67350
67460
  }
67351
67461
 
67352
- },{"./errors":552,"./reader":554,"./types":555,"./writer":556}],554:[function(require,module,exports){
67462
+ },{"./errors":554,"./reader":556,"./types":557,"./writer":558}],556:[function(require,module,exports){
67353
67463
  // Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
67354
67464
 
67355
67465
  var assert = require('assert');
@@ -67613,7 +67723,7 @@ Reader.prototype._readTag = function (tag) {
67613
67723
 
67614
67724
  module.exports = Reader;
67615
67725
 
67616
- },{"./errors":552,"./types":555,"assert":172,"safer-buffer":641}],555:[function(require,module,exports){
67726
+ },{"./errors":554,"./types":557,"assert":172,"safer-buffer":643}],557:[function(require,module,exports){
67617
67727
  // Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
67618
67728
 
67619
67729
 
@@ -67651,7 +67761,7 @@ module.exports = {
67651
67761
  Context: 128
67652
67762
  };
67653
67763
 
67654
- },{}],556:[function(require,module,exports){
67764
+ },{}],558:[function(require,module,exports){
67655
67765
  // Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
67656
67766
 
67657
67767
  var assert = require('assert');
@@ -67970,7 +68080,7 @@ Writer.prototype._ensure = function (len) {
67970
68080
 
67971
68081
  module.exports = Writer;
67972
68082
 
67973
- },{"./errors":552,"./types":555,"assert":172,"safer-buffer":641}],557:[function(require,module,exports){
68083
+ },{"./errors":554,"./types":557,"assert":172,"safer-buffer":643}],559:[function(require,module,exports){
67974
68084
  // Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
67975
68085
 
67976
68086
  // If you have no idea what ASN.1 or BER is, see this:
@@ -67992,7 +68102,7 @@ module.exports = {
67992
68102
 
67993
68103
  };
67994
68104
 
67995
- },{"./ber/index":553}],558:[function(require,module,exports){
68105
+ },{"./ber/index":555}],560:[function(require,module,exports){
67996
68106
  (function (Buffer,process){(function (){
67997
68107
  // Copyright (c) 2012, Mark Cavage. All rights reserved.
67998
68108
  // Copyright 2015 Joyent, Inc.
@@ -68207,7 +68317,7 @@ function _setExports(ndebug) {
68207
68317
  module.exports = _setExports(process.env.NODE_NDEBUG);
68208
68318
 
68209
68319
  }).call(this)}).call(this,{"isBuffer":require("../../browser-agent/node_modules/is-buffer/index.js")},require('_process'))
68210
- },{"../../browser-agent/node_modules/is-buffer/index.js":302,"_process":335,"assert":172,"stream":386,"util":400}],559:[function(require,module,exports){
68320
+ },{"../../browser-agent/node_modules/is-buffer/index.js":302,"_process":335,"assert":172,"stream":386,"util":400}],561:[function(require,module,exports){
68211
68321
 
68212
68322
  /*!
68213
68323
  * Copyright 2010 LearnBoost <dev@learnboost.com>
@@ -68421,7 +68531,7 @@ function canonicalizeResource (resource) {
68421
68531
  }
68422
68532
  module.exports.canonicalizeResource = canonicalizeResource
68423
68533
 
68424
- },{"crypto":237,"url":395}],560:[function(require,module,exports){
68534
+ },{"crypto":237,"url":395}],562:[function(require,module,exports){
68425
68535
  (function (process,Buffer){(function (){
68426
68536
  var aws4 = exports,
68427
68537
  url = require('url'),
@@ -68806,7 +68916,7 @@ aws4.sign = function(request, credentials) {
68806
68916
  }
68807
68917
 
68808
68918
  }).call(this)}).call(this,require('_process'),require("buffer").Buffer)
68809
- },{"./lru":561,"_process":335,"buffer":227,"crypto":237,"querystring":346,"url":395}],561:[function(require,module,exports){
68919
+ },{"./lru":563,"_process":335,"buffer":227,"crypto":237,"querystring":346,"url":395}],563:[function(require,module,exports){
68810
68920
  module.exports = function(size) {
68811
68921
  return new LruCache(size)
68812
68922
  }
@@ -68904,7 +69014,7 @@ function DoublyLinkedNode(key, val) {
68904
69014
  this.next = null
68905
69015
  }
68906
69016
 
68907
- },{}],562:[function(require,module,exports){
69017
+ },{}],564:[function(require,module,exports){
68908
69018
  'use strict';
68909
69019
 
68910
69020
  var crypto_hash_sha512 = require('tweetnacl').lowlevel.crypto_hash;
@@ -69462,7 +69572,7 @@ module.exports = {
69462
69572
  pbkdf: bcrypt_pbkdf
69463
69573
  };
69464
69574
 
69465
- },{"tweetnacl":675}],563:[function(require,module,exports){
69575
+ },{"tweetnacl":677}],565:[function(require,module,exports){
69466
69576
  function Caseless (dict) {
69467
69577
  this.dict = dict || {}
69468
69578
  }
@@ -69531,7 +69641,7 @@ module.exports.httpify = function (resp, headers) {
69531
69641
  return c
69532
69642
  }
69533
69643
 
69534
- },{}],564:[function(require,module,exports){
69644
+ },{}],566:[function(require,module,exports){
69535
69645
  (function (Buffer){(function (){
69536
69646
  var util = require('util');
69537
69647
  var Stream = require('stream').Stream;
@@ -69743,7 +69853,7 @@ CombinedStream.prototype._emitError = function(err) {
69743
69853
  };
69744
69854
 
69745
69855
  }).call(this)}).call(this,{"isBuffer":require("../../../browser-agent/node_modules/is-buffer/index.js")})
69746
- },{"../../../browser-agent/node_modules/is-buffer/index.js":302,"delayed-stream":566,"stream":386,"util":400}],565:[function(require,module,exports){
69856
+ },{"../../../browser-agent/node_modules/is-buffer/index.js":302,"delayed-stream":568,"stream":386,"util":400}],567:[function(require,module,exports){
69747
69857
  (function (Buffer){(function (){
69748
69858
  // Copyright Joyent, Inc. and other Node contributors.
69749
69859
  //
@@ -69854,7 +69964,7 @@ function objectToString(o) {
69854
69964
  }
69855
69965
 
69856
69966
  }).call(this)}).call(this,{"isBuffer":require("../../../browser-agent/node_modules/is-buffer/index.js")})
69857
- },{"../../../browser-agent/node_modules/is-buffer/index.js":302}],566:[function(require,module,exports){
69967
+ },{"../../../browser-agent/node_modules/is-buffer/index.js":302}],568:[function(require,module,exports){
69858
69968
  var Stream = require('stream').Stream;
69859
69969
  var util = require('util');
69860
69970
 
@@ -69963,7 +70073,7 @@ DelayedStream.prototype._checkIfMaxDataSizeExceeded = function() {
69963
70073
  this.emit('error', new Error(message));
69964
70074
  };
69965
70075
 
69966
- },{"stream":386,"util":400}],567:[function(require,module,exports){
70076
+ },{"stream":386,"util":400}],569:[function(require,module,exports){
69967
70077
  var crypto = require("crypto");
69968
70078
  var BigInteger = require("jsbn").BigInteger;
69969
70079
  var ECPointFp = require("./lib/ec.js").ECPointFp;
@@ -70023,7 +70133,7 @@ exports.ECKey = function(curve, key, isPublic)
70023
70133
  }
70024
70134
 
70025
70135
 
70026
- },{"./lib/ec.js":568,"./lib/sec.js":569,"crypto":237,"jsbn":604,"safer-buffer":641}],568:[function(require,module,exports){
70136
+ },{"./lib/ec.js":570,"./lib/sec.js":571,"crypto":237,"jsbn":606,"safer-buffer":643}],570:[function(require,module,exports){
70027
70137
  // Basic Javascript Elliptic Curve implementation
70028
70138
  // Ported loosely from BouncyCastle's Java EC code
70029
70139
  // Only Fp curves implemented for now
@@ -70586,7 +70696,7 @@ var exports = {
70586
70696
 
70587
70697
  module.exports = exports
70588
70698
 
70589
- },{"jsbn":604}],569:[function(require,module,exports){
70699
+ },{"jsbn":606}],571:[function(require,module,exports){
70590
70700
  // Named EC curves
70591
70701
 
70592
70702
  // Requires ec.js, jsbn.js, and jsbn2.js
@@ -70758,7 +70868,7 @@ module.exports = {
70758
70868
  "secp256r1":secp256r1
70759
70869
  }
70760
70870
 
70761
- },{"./ec.js":568,"jsbn":604}],570:[function(require,module,exports){
70871
+ },{"./ec.js":570,"jsbn":606}],572:[function(require,module,exports){
70762
70872
  'use strict';
70763
70873
 
70764
70874
  var hasOwn = Object.prototype.hasOwnProperty;
@@ -70877,7 +70987,7 @@ module.exports = function extend() {
70877
70987
  return target;
70878
70988
  };
70879
70989
 
70880
- },{}],571:[function(require,module,exports){
70990
+ },{}],573:[function(require,module,exports){
70881
70991
  (function (process){(function (){
70882
70992
  /*
70883
70993
  * extsprintf.js: extended POSIX-style sprintf
@@ -71064,7 +71174,7 @@ function dumpException(ex)
71064
71174
  }
71065
71175
 
71066
71176
  }).call(this)}).call(this,require('_process'))
71067
- },{"_process":335,"assert":172,"util":400}],572:[function(require,module,exports){
71177
+ },{"_process":335,"assert":172,"util":400}],574:[function(require,module,exports){
71068
71178
  'use strict';
71069
71179
 
71070
71180
  // do not edit .js files directly - edit src/index.jst
@@ -71112,7 +71222,7 @@ module.exports = function equal(a, b) {
71112
71222
  return a!==a && b!==b;
71113
71223
  };
71114
71224
 
71115
- },{}],573:[function(require,module,exports){
71225
+ },{}],575:[function(require,module,exports){
71116
71226
  'use strict';
71117
71227
 
71118
71228
  module.exports = function (data, opts) {
@@ -71173,7 +71283,7 @@ module.exports = function (data, opts) {
71173
71283
  })(data);
71174
71284
  };
71175
71285
 
71176
- },{}],574:[function(require,module,exports){
71286
+ },{}],576:[function(require,module,exports){
71177
71287
  module.exports = ForeverAgent
71178
71288
  ForeverAgent.SSL = ForeverAgentSSL
71179
71289
 
@@ -71313,11 +71423,11 @@ function createConnectionSSL (port, host, options) {
71313
71423
  return tls.connect(options);
71314
71424
  }
71315
71425
 
71316
- },{"http":387,"https":298,"net":225,"tls":225,"util":400}],575:[function(require,module,exports){
71426
+ },{"http":387,"https":298,"net":225,"tls":225,"util":400}],577:[function(require,module,exports){
71317
71427
  /* eslint-env browser */
71318
71428
  module.exports = typeof self == 'object' ? self.FormData : window.FormData;
71319
71429
 
71320
- },{}],576:[function(require,module,exports){
71430
+ },{}],578:[function(require,module,exports){
71321
71431
  module.exports={
71322
71432
  "$id": "afterRequest.json#",
71323
71433
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71349,7 +71459,7 @@ module.exports={
71349
71459
  }
71350
71460
  }
71351
71461
 
71352
- },{}],577:[function(require,module,exports){
71462
+ },{}],579:[function(require,module,exports){
71353
71463
  module.exports={
71354
71464
  "$id": "beforeRequest.json#",
71355
71465
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71381,7 +71491,7 @@ module.exports={
71381
71491
  }
71382
71492
  }
71383
71493
 
71384
- },{}],578:[function(require,module,exports){
71494
+ },{}],580:[function(require,module,exports){
71385
71495
  module.exports={
71386
71496
  "$id": "browser.json#",
71387
71497
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71403,7 +71513,7 @@ module.exports={
71403
71513
  }
71404
71514
  }
71405
71515
 
71406
- },{}],579:[function(require,module,exports){
71516
+ },{}],581:[function(require,module,exports){
71407
71517
  module.exports={
71408
71518
  "$id": "cache.json#",
71409
71519
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71426,7 +71536,7 @@ module.exports={
71426
71536
  }
71427
71537
  }
71428
71538
 
71429
- },{}],580:[function(require,module,exports){
71539
+ },{}],582:[function(require,module,exports){
71430
71540
  module.exports={
71431
71541
  "$id": "content.json#",
71432
71542
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71457,7 +71567,7 @@ module.exports={
71457
71567
  }
71458
71568
  }
71459
71569
 
71460
- },{}],581:[function(require,module,exports){
71570
+ },{}],583:[function(require,module,exports){
71461
71571
  module.exports={
71462
71572
  "$id": "cookie.json#",
71463
71573
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71495,7 +71605,7 @@ module.exports={
71495
71605
  }
71496
71606
  }
71497
71607
 
71498
- },{}],582:[function(require,module,exports){
71608
+ },{}],584:[function(require,module,exports){
71499
71609
  module.exports={
71500
71610
  "$id": "creator.json#",
71501
71611
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71517,7 +71627,7 @@ module.exports={
71517
71627
  }
71518
71628
  }
71519
71629
 
71520
- },{}],583:[function(require,module,exports){
71630
+ },{}],585:[function(require,module,exports){
71521
71631
  module.exports={
71522
71632
  "$id": "entry.json#",
71523
71633
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71572,7 +71682,7 @@ module.exports={
71572
71682
  }
71573
71683
  }
71574
71684
 
71575
- },{}],584:[function(require,module,exports){
71685
+ },{}],586:[function(require,module,exports){
71576
71686
  module.exports={
71577
71687
  "$id": "har.json#",
71578
71688
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71587,7 +71697,7 @@ module.exports={
71587
71697
  }
71588
71698
  }
71589
71699
 
71590
- },{}],585:[function(require,module,exports){
71700
+ },{}],587:[function(require,module,exports){
71591
71701
  module.exports={
71592
71702
  "$id": "header.json#",
71593
71703
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71609,7 +71719,7 @@ module.exports={
71609
71719
  }
71610
71720
  }
71611
71721
 
71612
- },{}],586:[function(require,module,exports){
71722
+ },{}],588:[function(require,module,exports){
71613
71723
  'use strict'
71614
71724
 
71615
71725
  module.exports = {
@@ -71633,7 +71743,7 @@ module.exports = {
71633
71743
  timings: require('./timings.json')
71634
71744
  }
71635
71745
 
71636
- },{"./afterRequest.json":576,"./beforeRequest.json":577,"./browser.json":578,"./cache.json":579,"./content.json":580,"./cookie.json":581,"./creator.json":582,"./entry.json":583,"./har.json":584,"./header.json":585,"./log.json":587,"./page.json":588,"./pageTimings.json":589,"./postData.json":590,"./query.json":591,"./request.json":592,"./response.json":593,"./timings.json":594}],587:[function(require,module,exports){
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){
71637
71747
  module.exports={
71638
71748
  "$id": "log.json#",
71639
71749
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71671,7 +71781,7 @@ module.exports={
71671
71781
  }
71672
71782
  }
71673
71783
 
71674
- },{}],588:[function(require,module,exports){
71784
+ },{}],590:[function(require,module,exports){
71675
71785
  module.exports={
71676
71786
  "$id": "page.json#",
71677
71787
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71705,7 +71815,7 @@ module.exports={
71705
71815
  }
71706
71816
  }
71707
71817
 
71708
- },{}],589:[function(require,module,exports){
71818
+ },{}],591:[function(require,module,exports){
71709
71819
  module.exports={
71710
71820
  "$id": "pageTimings.json#",
71711
71821
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71725,7 +71835,7 @@ module.exports={
71725
71835
  }
71726
71836
  }
71727
71837
 
71728
- },{}],590:[function(require,module,exports){
71838
+ },{}],592:[function(require,module,exports){
71729
71839
  module.exports={
71730
71840
  "$id": "postData.json#",
71731
71841
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71770,7 +71880,7 @@ module.exports={
71770
71880
  }
71771
71881
  }
71772
71882
 
71773
- },{}],591:[function(require,module,exports){
71883
+ },{}],593:[function(require,module,exports){
71774
71884
  module.exports={
71775
71885
  "$id": "query.json#",
71776
71886
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71792,7 +71902,7 @@ module.exports={
71792
71902
  }
71793
71903
  }
71794
71904
 
71795
- },{}],592:[function(require,module,exports){
71905
+ },{}],594:[function(require,module,exports){
71796
71906
  module.exports={
71797
71907
  "$id": "request.json#",
71798
71908
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71851,7 +71961,7 @@ module.exports={
71851
71961
  }
71852
71962
  }
71853
71963
 
71854
- },{}],593:[function(require,module,exports){
71964
+ },{}],595:[function(require,module,exports){
71855
71965
  module.exports={
71856
71966
  "$id": "response.json#",
71857
71967
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71907,7 +72017,7 @@ module.exports={
71907
72017
  }
71908
72018
  }
71909
72019
 
71910
- },{}],594:[function(require,module,exports){
72020
+ },{}],596:[function(require,module,exports){
71911
72021
  module.exports={
71912
72022
  "$id": "timings.json#",
71913
72023
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71951,7 +72061,7 @@ module.exports={
71951
72061
  }
71952
72062
  }
71953
72063
 
71954
- },{}],595:[function(require,module,exports){
72064
+ },{}],597:[function(require,module,exports){
71955
72065
  function HARError (errors) {
71956
72066
  var message = 'validation failed'
71957
72067
 
@@ -71970,7 +72080,7 @@ HARError.prototype = Error.prototype
71970
72080
 
71971
72081
  module.exports = HARError
71972
72082
 
71973
- },{}],596:[function(require,module,exports){
72083
+ },{}],598:[function(require,module,exports){
71974
72084
  var Ajv = require('ajv')
71975
72085
  var HARError = require('./error')
71976
72086
  var schemas = require('har-schema')
@@ -72074,7 +72184,7 @@ exports.timings = function (data) {
72074
72184
  return validate('timings', data)
72075
72185
  }
72076
72186
 
72077
- },{"./error":595,"ajv":509,"ajv/lib/refs/json-schema-draft-06.json":550,"har-schema":586}],597:[function(require,module,exports){
72187
+ },{"./error":597,"ajv":511,"ajv/lib/refs/json-schema-draft-06.json":552,"har-schema":588}],599:[function(require,module,exports){
72078
72188
  // Copyright 2015 Joyent, Inc.
72079
72189
 
72080
72190
  var parser = require('./parser');
@@ -72105,7 +72215,7 @@ module.exports = {
72105
72215
  verifyHMAC: verify.verifyHMAC
72106
72216
  };
72107
72217
 
72108
- },{"./parser":598,"./signer":599,"./utils":600,"./verify":601}],598:[function(require,module,exports){
72218
+ },{"./parser":600,"./signer":601,"./utils":602,"./verify":603}],600:[function(require,module,exports){
72109
72219
  // Copyright 2012 Joyent, Inc. All rights reserved.
72110
72220
 
72111
72221
  var assert = require('assert-plus');
@@ -72422,7 +72532,7 @@ module.exports = {
72422
72532
 
72423
72533
  };
72424
72534
 
72425
- },{"./utils":600,"assert-plus":558,"util":400}],599:[function(require,module,exports){
72535
+ },{"./utils":602,"assert-plus":560,"util":400}],601:[function(require,module,exports){
72426
72536
  (function (Buffer){(function (){
72427
72537
  // Copyright 2012 Joyent, Inc. All rights reserved.
72428
72538
 
@@ -72827,7 +72937,7 @@ module.exports = {
72827
72937
  };
72828
72938
 
72829
72939
  }).call(this)}).call(this,{"isBuffer":require("../../../browser-agent/node_modules/is-buffer/index.js")})
72830
- },{"../../../browser-agent/node_modules/is-buffer/index.js":302,"./utils":600,"assert-plus":558,"crypto":237,"http":387,"jsprim":608,"sshpk":661,"util":400}],600:[function(require,module,exports){
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){
72831
72941
  // Copyright 2012 Joyent, Inc. All rights reserved.
72832
72942
 
72833
72943
  var assert = require('assert-plus');
@@ -72941,7 +73051,7 @@ module.exports = {
72941
73051
  }
72942
73052
  };
72943
73053
 
72944
- },{"assert-plus":558,"sshpk":661,"util":400}],601:[function(require,module,exports){
73054
+ },{"assert-plus":560,"sshpk":663,"util":400}],603:[function(require,module,exports){
72945
73055
  (function (Buffer){(function (){
72946
73056
  // Copyright 2015 Joyent, Inc.
72947
73057
 
@@ -73033,7 +73143,7 @@ module.exports = {
73033
73143
  };
73034
73144
 
73035
73145
  }).call(this)}).call(this,require("buffer").Buffer)
73036
- },{"./utils":600,"assert-plus":558,"buffer":227,"crypto":237,"sshpk":661}],602:[function(require,module,exports){
73146
+ },{"./utils":602,"assert-plus":560,"buffer":227,"crypto":237,"sshpk":663}],604:[function(require,module,exports){
73037
73147
  module.exports = isTypedArray
73038
73148
  isTypedArray.strict = isStrictTypedArray
73039
73149
  isTypedArray.loose = isLooseTypedArray
@@ -73076,7 +73186,7 @@ function isLooseTypedArray(arr) {
73076
73186
  return names[toString.call(arr)]
73077
73187
  }
73078
73188
 
73079
- },{}],603:[function(require,module,exports){
73189
+ },{}],605:[function(require,module,exports){
73080
73190
  var stream = require('stream')
73081
73191
 
73082
73192
 
@@ -73105,7 +73215,7 @@ module.exports.isReadable = isReadable
73105
73215
  module.exports.isWritable = isWritable
73106
73216
  module.exports.isDuplex = isDuplex
73107
73217
 
73108
- },{"stream":386}],604:[function(require,module,exports){
73218
+ },{"stream":386}],606:[function(require,module,exports){
73109
73219
  (function(){
73110
73220
 
73111
73221
  // Copyright (c) 2005 Tom Wu
@@ -74464,7 +74574,7 @@ module.exports.isDuplex = isDuplex
74464
74574
 
74465
74575
  }).call(this);
74466
74576
 
74467
- },{}],605:[function(require,module,exports){
74577
+ },{}],607:[function(require,module,exports){
74468
74578
  'use strict';
74469
74579
 
74470
74580
  var traverse = module.exports = function (schema, opts, cb) {
@@ -74555,7 +74665,7 @@ function escapeJsonPtr(str) {
74555
74665
  return str.replace(/~/g, '~0').replace(/\//g, '~1');
74556
74666
  }
74557
74667
 
74558
- },{}],606:[function(require,module,exports){
74668
+ },{}],608:[function(require,module,exports){
74559
74669
  /**
74560
74670
  * JSONSchema Validator - Validates JavaScript objects using JSON Schemas
74561
74671
  * (http://www.json.com/json-schema-proposal/)
@@ -74828,7 +74938,7 @@ exports.mustBeValid = function(result){
74828
74938
  return exports;
74829
74939
  }));
74830
74940
 
74831
- },{}],607:[function(require,module,exports){
74941
+ },{}],609:[function(require,module,exports){
74832
74942
  exports = module.exports = stringify
74833
74943
  exports.getSerialize = serializer
74834
74944
 
@@ -74857,7 +74967,7 @@ function serializer(replacer, cycleReplacer) {
74857
74967
  }
74858
74968
  }
74859
74969
 
74860
- },{}],608:[function(require,module,exports){
74970
+ },{}],610:[function(require,module,exports){
74861
74971
  /*
74862
74972
  * lib/jsprim.js: utilities for primitive JavaScript types
74863
74973
  */
@@ -75594,7 +75704,7 @@ function mergeObjects(provided, overrides, defaults)
75594
75704
  return (rv);
75595
75705
  }
75596
75706
 
75597
- },{"assert-plus":558,"extsprintf":571,"json-schema":606,"util":400,"verror":682}],609:[function(require,module,exports){
75707
+ },{"assert-plus":560,"extsprintf":573,"json-schema":608,"util":400,"verror":684}],611:[function(require,module,exports){
75598
75708
  /**
75599
75709
  * The code was extracted from:
75600
75710
  * https://github.com/davidchambers/Base64.js
@@ -75634,7 +75744,7 @@ function polyfill (input) {
75634
75744
 
75635
75745
  module.exports = typeof window !== 'undefined' && window.atob && window.atob.bind(window) || polyfill;
75636
75746
 
75637
- },{}],610:[function(require,module,exports){
75747
+ },{}],612:[function(require,module,exports){
75638
75748
  var atob = require('./atob');
75639
75749
 
75640
75750
  function b64DecodeUnicode(str) {
@@ -75669,7 +75779,7 @@ module.exports = function(str) {
75669
75779
  }
75670
75780
  };
75671
75781
 
75672
- },{"./atob":609}],611:[function(require,module,exports){
75782
+ },{"./atob":611}],613:[function(require,module,exports){
75673
75783
  'use strict';
75674
75784
 
75675
75785
  var base64_url_decode = require('./base64_url_decode');
@@ -75697,7 +75807,7 @@ module.exports = function (token,options) {
75697
75807
 
75698
75808
  module.exports.InvalidTokenError = InvalidTokenError;
75699
75809
 
75700
- },{"./base64_url_decode":610}],612:[function(require,module,exports){
75810
+ },{"./base64_url_decode":612}],614:[function(require,module,exports){
75701
75811
  module.exports={
75702
75812
  "application/1d-interleaved-parityfec": {
75703
75813
  "source": "iana"
@@ -84218,7 +84328,7 @@ module.exports={
84218
84328
  }
84219
84329
  }
84220
84330
 
84221
- },{}],613:[function(require,module,exports){
84331
+ },{}],615:[function(require,module,exports){
84222
84332
  /*!
84223
84333
  * mime-db
84224
84334
  * Copyright(c) 2014 Jonathan Ong
@@ -84232,7 +84342,7 @@ module.exports={
84232
84342
 
84233
84343
  module.exports = require('./db.json')
84234
84344
 
84235
- },{"./db.json":612}],614:[function(require,module,exports){
84345
+ },{"./db.json":614}],616:[function(require,module,exports){
84236
84346
  /*!
84237
84347
  * mime-types
84238
84348
  * Copyright(c) 2014 Jonathan Ong
@@ -84422,7 +84532,7 @@ function populateMaps (extensions, types) {
84422
84532
  })
84423
84533
  }
84424
84534
 
84425
- },{"mime-db":613,"path":327}],615:[function(require,module,exports){
84535
+ },{"mime-db":615,"path":327}],617:[function(require,module,exports){
84426
84536
  var crypto = require('crypto')
84427
84537
 
84428
84538
  function sha (key, body, algorithm) {
@@ -84569,7 +84679,7 @@ exports.plaintext = plaintext
84569
84679
  exports.sign = sign
84570
84680
  exports.rfc3986 = rfc3986
84571
84681
  exports.generateBase = generateBase
84572
- },{"crypto":237}],616:[function(require,module,exports){
84682
+ },{"crypto":237}],618:[function(require,module,exports){
84573
84683
  (function (process){(function (){
84574
84684
  // Generated by CoffeeScript 1.12.2
84575
84685
  (function() {
@@ -84609,7 +84719,7 @@ exports.generateBase = generateBase
84609
84719
 
84610
84720
 
84611
84721
  }).call(this)}).call(this,require('_process'))
84612
- },{"_process":335}],617:[function(require,module,exports){
84722
+ },{"_process":335}],619:[function(require,module,exports){
84613
84723
  module.exports=[
84614
84724
  "ac",
84615
84725
  "com.ac",
@@ -93986,7 +94096,7 @@ module.exports=[
93986
94096
  "virtualserver.io",
93987
94097
  "enterprisecloud.nu"
93988
94098
  ]
93989
- },{}],618:[function(require,module,exports){
94099
+ },{}],620:[function(require,module,exports){
93990
94100
  /*eslint no-var:0, prefer-arrow-callback: 0, object-shorthand: 0 */
93991
94101
  'use strict';
93992
94102
 
@@ -94257,7 +94367,7 @@ exports.isValid = function (domain) {
94257
94367
  return Boolean(parsed.domain && parsed.listed);
94258
94368
  };
94259
94369
 
94260
- },{"./data/rules.json":617,"punycode":343}],619:[function(require,module,exports){
94370
+ },{"./data/rules.json":619,"punycode":343}],621:[function(require,module,exports){
94261
94371
  'use strict';
94262
94372
 
94263
94373
  var replace = String.prototype.replace;
@@ -94277,7 +94387,7 @@ module.exports = {
94277
94387
  RFC3986: 'RFC3986'
94278
94388
  };
94279
94389
 
94280
- },{}],620:[function(require,module,exports){
94390
+ },{}],622:[function(require,module,exports){
94281
94391
  'use strict';
94282
94392
 
94283
94393
  var stringify = require('./stringify');
@@ -94290,7 +94400,7 @@ module.exports = {
94290
94400
  stringify: stringify
94291
94401
  };
94292
94402
 
94293
- },{"./formats":619,"./parse":621,"./stringify":622}],621:[function(require,module,exports){
94403
+ },{"./formats":621,"./parse":623,"./stringify":624}],623:[function(require,module,exports){
94294
94404
  'use strict';
94295
94405
 
94296
94406
  var utils = require('./utils');
@@ -94467,7 +94577,7 @@ module.exports = function (str, opts) {
94467
94577
  return utils.compact(obj);
94468
94578
  };
94469
94579
 
94470
- },{"./utils":623}],622:[function(require,module,exports){
94580
+ },{"./utils":625}],624:[function(require,module,exports){
94471
94581
  'use strict';
94472
94582
 
94473
94583
  var utils = require('./utils');
@@ -94686,7 +94796,7 @@ module.exports = function (object, opts) {
94686
94796
  return joined.length > 0 ? prefix + joined : '';
94687
94797
  };
94688
94798
 
94689
- },{"./formats":619,"./utils":623}],623:[function(require,module,exports){
94799
+ },{"./formats":621,"./utils":625}],625:[function(require,module,exports){
94690
94800
  'use strict';
94691
94801
 
94692
94802
  var has = Object.prototype.hasOwnProperty;
@@ -94903,7 +95013,7 @@ module.exports = {
94903
95013
  merge: merge
94904
95014
  };
94905
95015
 
94906
- },{}],624:[function(require,module,exports){
95016
+ },{}],626:[function(require,module,exports){
94907
95017
  // Copyright 2010-2012 Mikeal Rogers
94908
95018
  //
94909
95019
  // Licensed under the Apache License, Version 2.0 (the "License");
@@ -95060,7 +95170,7 @@ Object.defineProperty(request, 'debug', {
95060
95170
  }
95061
95171
  })
95062
95172
 
95063
- },{"./lib/cookies":626,"./lib/helpers":630,"./request":639,"extend":570}],625:[function(require,module,exports){
95173
+ },{"./lib/cookies":628,"./lib/helpers":632,"./request":641,"extend":572}],627:[function(require,module,exports){
95064
95174
  'use strict'
95065
95175
 
95066
95176
  var caseless = require('caseless')
@@ -95229,7 +95339,7 @@ Auth.prototype.onResponse = function (response) {
95229
95339
 
95230
95340
  exports.Auth = Auth
95231
95341
 
95232
- },{"./helpers":630,"caseless":563,"uuid/v4":638}],626:[function(require,module,exports){
95342
+ },{"./helpers":632,"caseless":565,"uuid/v4":640}],628:[function(require,module,exports){
95233
95343
  'use strict'
95234
95344
 
95235
95345
  var tough = require('tough-cookie')
@@ -95269,7 +95379,7 @@ exports.jar = function (store) {
95269
95379
  return new RequestJar(store)
95270
95380
  }
95271
95381
 
95272
- },{"tough-cookie":667}],627:[function(require,module,exports){
95382
+ },{"tough-cookie":669}],629:[function(require,module,exports){
95273
95383
  (function (process){(function (){
95274
95384
  'use strict'
95275
95385
 
@@ -95352,7 +95462,7 @@ function getProxyFromURI (uri) {
95352
95462
  module.exports = getProxyFromURI
95353
95463
 
95354
95464
  }).call(this)}).call(this,require('_process'))
95355
- },{"_process":335}],628:[function(require,module,exports){
95465
+ },{"_process":335}],630:[function(require,module,exports){
95356
95466
  'use strict'
95357
95467
 
95358
95468
  var fs = require('fs')
@@ -95559,7 +95669,7 @@ Har.prototype.options = function (options) {
95559
95669
 
95560
95670
  exports.Har = Har
95561
95671
 
95562
- },{"extend":570,"fs":225,"har-validator":596,"querystring":346}],629:[function(require,module,exports){
95672
+ },{"extend":572,"fs":225,"har-validator":598,"querystring":346}],631:[function(require,module,exports){
95563
95673
  'use strict'
95564
95674
 
95565
95675
  var crypto = require('crypto')
@@ -95650,7 +95760,7 @@ exports.header = function (uri, method, opts) {
95650
95760
  return header
95651
95761
  }
95652
95762
 
95653
- },{"crypto":237}],630:[function(require,module,exports){
95763
+ },{"crypto":237}],632:[function(require,module,exports){
95654
95764
  (function (process,setImmediate){(function (){
95655
95765
  'use strict'
95656
95766
 
@@ -95720,7 +95830,7 @@ exports.version = version
95720
95830
  exports.defer = defer
95721
95831
 
95722
95832
  }).call(this)}).call(this,require('_process'),require("timers").setImmediate)
95723
- },{"_process":335,"crypto":237,"json-stringify-safe":607,"safe-buffer":640,"timers":393}],631:[function(require,module,exports){
95833
+ },{"_process":335,"crypto":237,"json-stringify-safe":609,"safe-buffer":642,"timers":393}],633:[function(require,module,exports){
95724
95834
  'use strict'
95725
95835
 
95726
95836
  var uuid = require('uuid/v4')
@@ -95834,7 +95944,7 @@ Multipart.prototype.onRequest = function (options) {
95834
95944
 
95835
95945
  exports.Multipart = Multipart
95836
95946
 
95837
- },{"combined-stream":564,"isstream":603,"safe-buffer":640,"uuid/v4":638}],632:[function(require,module,exports){
95947
+ },{"combined-stream":566,"isstream":605,"safe-buffer":642,"uuid/v4":640}],634:[function(require,module,exports){
95838
95948
  'use strict'
95839
95949
 
95840
95950
  var url = require('url')
@@ -95984,7 +96094,7 @@ OAuth.prototype.onRequest = function (_oauth) {
95984
96094
 
95985
96095
  exports.OAuth = OAuth
95986
96096
 
95987
- },{"caseless":563,"crypto":237,"oauth-sign":615,"qs":620,"safe-buffer":640,"url":395,"uuid/v4":638}],633:[function(require,module,exports){
96097
+ },{"caseless":565,"crypto":237,"oauth-sign":617,"qs":622,"safe-buffer":642,"url":395,"uuid/v4":640}],635:[function(require,module,exports){
95988
96098
  'use strict'
95989
96099
 
95990
96100
  var qs = require('qs')
@@ -96036,7 +96146,7 @@ Querystring.prototype.unescape = querystring.unescape
96036
96146
 
96037
96147
  exports.Querystring = Querystring
96038
96148
 
96039
- },{"qs":620,"querystring":346}],634:[function(require,module,exports){
96149
+ },{"qs":622,"querystring":346}],636:[function(require,module,exports){
96040
96150
  'use strict'
96041
96151
 
96042
96152
  var url = require('url')
@@ -96192,7 +96302,7 @@ Redirect.prototype.onResponse = function (response) {
96192
96302
 
96193
96303
  exports.Redirect = Redirect
96194
96304
 
96195
- },{"url":395}],635:[function(require,module,exports){
96305
+ },{"url":395}],637:[function(require,module,exports){
96196
96306
  'use strict'
96197
96307
 
96198
96308
  var url = require('url')
@@ -96369,7 +96479,7 @@ Tunnel.defaultProxyHeaderWhiteList = defaultProxyHeaderWhiteList
96369
96479
  Tunnel.defaultProxyHeaderExclusiveList = defaultProxyHeaderExclusiveList
96370
96480
  exports.Tunnel = Tunnel
96371
96481
 
96372
- },{"tunnel-agent":674,"url":395}],636:[function(require,module,exports){
96482
+ },{"tunnel-agent":676,"url":395}],638:[function(require,module,exports){
96373
96483
  /**
96374
96484
  * Convert array of 16 byte values to UUID string format of the form:
96375
96485
  * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
@@ -96397,7 +96507,7 @@ function bytesToUuid(buf, offset) {
96397
96507
 
96398
96508
  module.exports = bytesToUuid;
96399
96509
 
96400
- },{}],637:[function(require,module,exports){
96510
+ },{}],639:[function(require,module,exports){
96401
96511
  // Unique ID creation requires a high quality random # generator. In the
96402
96512
  // browser this is a little complicated due to unknown quality of Math.random()
96403
96513
  // and inconsistent support for the `crypto` API. We do the best we can via
@@ -96433,7 +96543,7 @@ if (getRandomValues) {
96433
96543
  };
96434
96544
  }
96435
96545
 
96436
- },{}],638:[function(require,module,exports){
96546
+ },{}],640:[function(require,module,exports){
96437
96547
  var rng = require('./lib/rng');
96438
96548
  var bytesToUuid = require('./lib/bytesToUuid');
96439
96549
 
@@ -96464,7 +96574,7 @@ function v4(options, buf, offset) {
96464
96574
 
96465
96575
  module.exports = v4;
96466
96576
 
96467
- },{"./lib/bytesToUuid":636,"./lib/rng":637}],639:[function(require,module,exports){
96577
+ },{"./lib/bytesToUuid":638,"./lib/rng":639}],641:[function(require,module,exports){
96468
96578
  (function (process){(function (){
96469
96579
  'use strict'
96470
96580
 
@@ -98021,9 +98131,9 @@ Request.prototype.toJSON = requestToJSON
98021
98131
  module.exports = Request
98022
98132
 
98023
98133
  }).call(this)}).call(this,require('_process'))
98024
- },{"./lib/auth":625,"./lib/cookies":626,"./lib/getProxyFromURI":627,"./lib/har":628,"./lib/hawk":629,"./lib/helpers":630,"./lib/multipart":631,"./lib/oauth":632,"./lib/querystring":633,"./lib/redirect":634,"./lib/tunnel":635,"_process":335,"aws-sign2":559,"aws4":560,"caseless":563,"extend":570,"forever-agent":574,"form-data":575,"http":387,"http-signature":597,"https":298,"is-typedarray":602,"isstream":603,"mime-types":614,"performance-now":616,"safe-buffer":640,"stream":386,"url":395,"util":400,"zlib":224}],640:[function(require,module,exports){
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){
98025
98135
  arguments[4][358][0].apply(exports,arguments)
98026
- },{"buffer":227,"dup":358}],641:[function(require,module,exports){
98136
+ },{"buffer":227,"dup":358}],643:[function(require,module,exports){
98027
98137
  (function (process){(function (){
98028
98138
  /* eslint-disable node/no-deprecated-api */
98029
98139
 
@@ -98104,7 +98214,7 @@ if (!safer.constants) {
98104
98214
  module.exports = safer
98105
98215
 
98106
98216
  }).call(this)}).call(this,require('_process'))
98107
- },{"_process":335,"buffer":227}],642:[function(require,module,exports){
98217
+ },{"_process":335,"buffer":227}],644:[function(require,module,exports){
98108
98218
  // Copyright 2015 Joyent, Inc.
98109
98219
 
98110
98220
  var Buffer = require('safer-buffer').Buffer;
@@ -98274,7 +98384,7 @@ module.exports = {
98274
98384
  curves: curves
98275
98385
  };
98276
98386
 
98277
- },{"safer-buffer":641}],643:[function(require,module,exports){
98387
+ },{"safer-buffer":643}],645:[function(require,module,exports){
98278
98388
  // Copyright 2016 Joyent, Inc.
98279
98389
 
98280
98390
  module.exports = Certificate;
@@ -98686,7 +98796,7 @@ Certificate._oldVersionDetect = function (obj) {
98686
98796
  return ([1, 0]);
98687
98797
  };
98688
98798
 
98689
- },{"./algs":642,"./errors":646,"./fingerprint":647,"./formats/openssh-cert":650,"./formats/x509":659,"./formats/x509-pem":658,"./identity":660,"./key":662,"./private-key":663,"./signature":664,"./utils":666,"assert-plus":558,"crypto":237,"safer-buffer":641,"util":400}],644:[function(require,module,exports){
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){
98690
98800
  // Copyright 2017 Joyent, Inc.
98691
98801
 
98692
98802
  module.exports = {
@@ -99085,7 +99195,7 @@ function generateECDSA(curve) {
99085
99195
  }
99086
99196
  }
99087
99197
 
99088
- },{"./algs":642,"./key":662,"./private-key":663,"./utils":666,"assert-plus":558,"crypto":237,"ecc-jsbn":567,"ecc-jsbn/lib/ec":568,"jsbn":604,"safer-buffer":641,"tweetnacl":675}],645:[function(require,module,exports){
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){
99089
99199
  // Copyright 2015 Joyent, Inc.
99090
99200
 
99091
99201
  module.exports = {
@@ -99179,7 +99289,7 @@ Signer.prototype.sign = function () {
99179
99289
  return (sigObj);
99180
99290
  };
99181
99291
 
99182
- },{"./signature":664,"assert-plus":558,"safer-buffer":641,"stream":386,"tweetnacl":675,"util":400}],646:[function(require,module,exports){
99292
+ },{"./signature":666,"assert-plus":560,"safer-buffer":643,"stream":386,"tweetnacl":677,"util":400}],648:[function(require,module,exports){
99183
99293
  // Copyright 2015 Joyent, Inc.
99184
99294
 
99185
99295
  var assert = require('assert-plus');
@@ -99265,7 +99375,7 @@ module.exports = {
99265
99375
  CertificateParseError: CertificateParseError
99266
99376
  };
99267
99377
 
99268
- },{"assert-plus":558,"util":400}],647:[function(require,module,exports){
99378
+ },{"assert-plus":560,"util":400}],649:[function(require,module,exports){
99269
99379
  // Copyright 2018 Joyent, Inc.
99270
99380
 
99271
99381
  module.exports = Fingerprint;
@@ -99487,7 +99597,7 @@ Fingerprint._oldVersionDetect = function (obj) {
99487
99597
  return ([1, 0]);
99488
99598
  };
99489
99599
 
99490
- },{"./algs":642,"./certificate":643,"./errors":646,"./key":662,"./private-key":663,"./utils":666,"assert-plus":558,"crypto":237,"safer-buffer":641}],648:[function(require,module,exports){
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){
99491
99601
  // Copyright 2018 Joyent, Inc.
99492
99602
 
99493
99603
  module.exports = {
@@ -99613,7 +99723,7 @@ function write(key, options) {
99613
99723
  throw (new Error('"auto" format cannot be used for writing'));
99614
99724
  }
99615
99725
 
99616
- },{"../key":662,"../private-key":663,"../utils":666,"./dnssec":649,"./pem":651,"./putty":654,"./rfc4253":655,"./ssh":657,"assert-plus":558,"safer-buffer":641}],649:[function(require,module,exports){
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){
99617
99727
  // Copyright 2017 Joyent, Inc.
99618
99728
 
99619
99729
  module.exports = {
@@ -99902,7 +100012,7 @@ function write(key, options) {
99902
100012
  }
99903
100013
  }
99904
100014
 
99905
- },{"../dhe":644,"../key":662,"../private-key":663,"../ssh-buffer":665,"../utils":666,"assert-plus":558,"safer-buffer":641}],650:[function(require,module,exports){
100015
+ },{"../dhe":646,"../key":664,"../private-key":665,"../ssh-buffer":667,"../utils":668,"assert-plus":560,"safer-buffer":643}],652:[function(require,module,exports){
99906
100016
  // Copyright 2017 Joyent, Inc.
99907
100017
 
99908
100018
  module.exports = {
@@ -100256,7 +100366,7 @@ function getCertType(key) {
100256
100366
  throw (new Error('Unsupported key type ' + key.type));
100257
100367
  }
100258
100368
 
100259
- },{"../algs":642,"../certificate":643,"../identity":660,"../key":662,"../private-key":663,"../signature":664,"../ssh-buffer":665,"../utils":666,"./rfc4253":655,"assert-plus":558,"crypto":237,"safer-buffer":641}],651:[function(require,module,exports){
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){
100260
100370
  // Copyright 2018 Joyent, Inc.
100261
100371
 
100262
100372
  module.exports = {
@@ -100548,7 +100658,7 @@ function write(key, options, type) {
100548
100658
  return (buf.slice(0, o));
100549
100659
  }
100550
100660
 
100551
- },{"../algs":642,"../errors":646,"../key":662,"../private-key":663,"../utils":666,"./pkcs1":652,"./pkcs8":653,"./rfc4253":655,"./ssh-private":656,"asn1":557,"assert-plus":558,"crypto":237,"safer-buffer":641}],652:[function(require,module,exports){
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){
100552
100662
  // Copyright 2015 Joyent, Inc.
100553
100663
 
100554
100664
  module.exports = {
@@ -100923,7 +101033,7 @@ function writePkcs1EdDSAPublic(der, key) {
100923
101033
  throw (new Error('Public keys are not supported for EdDSA PKCS#1'));
100924
101034
  }
100925
101035
 
100926
- },{"../algs":642,"../key":662,"../private-key":663,"../utils":666,"./pem":651,"./pkcs8":653,"asn1":557,"assert-plus":558,"safer-buffer":641}],653:[function(require,module,exports){
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){
100927
101037
  // Copyright 2018 Joyent, Inc.
100928
101038
 
100929
101039
  module.exports = {
@@ -101556,7 +101666,7 @@ function writePkcs8EdDSAPrivate(key, der) {
101556
101666
  der.endSequence();
101557
101667
  }
101558
101668
 
101559
- },{"../algs":642,"../key":662,"../private-key":663,"../utils":666,"./pem":651,"asn1":557,"assert-plus":558,"safer-buffer":641}],654:[function(require,module,exports){
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){
101560
101670
  // Copyright 2018 Joyent, Inc.
101561
101671
 
101562
101672
  module.exports = {
@@ -101752,7 +101862,7 @@ function wrap(txt, len) {
101752
101862
  return (lines);
101753
101863
  }
101754
101864
 
101755
- },{"../errors":646,"../key":662,"../private-key":663,"../ssh-buffer":665,"./rfc4253":655,"assert-plus":558,"crypto":237,"safer-buffer":641}],655:[function(require,module,exports){
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){
101756
101866
  // Copyright 2015 Joyent, Inc.
101757
101867
 
101758
101868
  module.exports = {
@@ -101920,7 +102030,7 @@ function write(key, options) {
101920
102030
  return (buf.toBuffer());
101921
102031
  }
101922
102032
 
101923
- },{"../algs":642,"../key":662,"../private-key":663,"../ssh-buffer":665,"../utils":666,"assert-plus":558,"safer-buffer":641}],656:[function(require,module,exports){
102033
+ },{"../algs":644,"../key":664,"../private-key":665,"../ssh-buffer":667,"../utils":668,"assert-plus":560,"safer-buffer":643}],658:[function(require,module,exports){
101924
102034
  // Copyright 2015 Joyent, Inc.
101925
102035
 
101926
102036
  module.exports = {
@@ -102184,7 +102294,7 @@ function write(key, options) {
102184
102294
  return (buf.slice(0, o));
102185
102295
  }
102186
102296
 
102187
- },{"../algs":642,"../errors":646,"../key":662,"../private-key":663,"../ssh-buffer":665,"../utils":666,"./pem":651,"./rfc4253":655,"asn1":557,"assert-plus":558,"bcrypt-pbkdf":562,"crypto":237,"safer-buffer":641}],657:[function(require,module,exports){
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){
102188
102298
  // Copyright 2015 Joyent, Inc.
102189
102299
 
102190
102300
  module.exports = {
@@ -102301,7 +102411,7 @@ function write(key, options) {
102301
102411
  return (Buffer.from(parts.join(' ')));
102302
102412
  }
102303
102413
 
102304
- },{"../key":662,"../private-key":663,"../utils":666,"./rfc4253":655,"./ssh-private":656,"assert-plus":558,"safer-buffer":641}],658:[function(require,module,exports){
102414
+ },{"../key":664,"../private-key":665,"../utils":668,"./rfc4253":657,"./ssh-private":658,"assert-plus":560,"safer-buffer":643}],660:[function(require,module,exports){
102305
102415
  // Copyright 2016 Joyent, Inc.
102306
102416
 
102307
102417
  var x509 = require('./x509');
@@ -102391,7 +102501,7 @@ function write(cert, options) {
102391
102501
  return (buf.slice(0, o));
102392
102502
  }
102393
102503
 
102394
- },{"../algs":642,"../certificate":643,"../identity":660,"../key":662,"../private-key":663,"../signature":664,"../utils":666,"./pem":651,"./x509":659,"asn1":557,"assert-plus":558,"safer-buffer":641}],659:[function(require,module,exports){
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){
102395
102505
  // Copyright 2017 Joyent, Inc.
102396
102506
 
102397
102507
  module.exports = {
@@ -103145,7 +103255,7 @@ function writeBitField(setBits, bitIndex) {
103145
103255
  return (bits);
103146
103256
  }
103147
103257
 
103148
- },{"../algs":642,"../certificate":643,"../identity":660,"../key":662,"../private-key":663,"../signature":664,"../utils":666,"./pem":651,"./pkcs8":653,"asn1":557,"assert-plus":558,"safer-buffer":641}],660:[function(require,module,exports){
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){
103149
103259
  // Copyright 2017 Joyent, Inc.
103150
103260
 
103151
103261
  module.exports = Identity;
@@ -103520,7 +103630,7 @@ Identity._oldVersionDetect = function (obj) {
103520
103630
  return ([1, 0]);
103521
103631
  };
103522
103632
 
103523
- },{"./algs":642,"./errors":646,"./fingerprint":647,"./signature":664,"./utils":666,"asn1":557,"assert-plus":558,"crypto":237,"safer-buffer":641,"util":400}],661:[function(require,module,exports){
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){
103524
103634
  // Copyright 2015 Joyent, Inc.
103525
103635
 
103526
103636
  var Key = require('./key');
@@ -103562,7 +103672,7 @@ module.exports = {
103562
103672
  CertificateParseError: errs.CertificateParseError
103563
103673
  };
103564
103674
 
103565
- },{"./certificate":643,"./errors":646,"./fingerprint":647,"./identity":660,"./key":662,"./private-key":663,"./signature":664}],662:[function(require,module,exports){
103675
+ },{"./certificate":645,"./errors":648,"./fingerprint":649,"./identity":662,"./key":664,"./private-key":665,"./signature":666}],664:[function(require,module,exports){
103566
103676
  (function (Buffer){(function (){
103567
103677
  // Copyright 2018 Joyent, Inc.
103568
103678
 
@@ -103860,7 +103970,7 @@ Key._oldVersionDetect = function (obj) {
103860
103970
  };
103861
103971
 
103862
103972
  }).call(this)}).call(this,{"isBuffer":require("../../../browser-agent/node_modules/is-buffer/index.js")})
103863
- },{"../../../browser-agent/node_modules/is-buffer/index.js":302,"./algs":642,"./dhe":644,"./ed-compat":645,"./errors":646,"./fingerprint":647,"./formats/auto":648,"./formats/dnssec":649,"./formats/pem":651,"./formats/pkcs1":652,"./formats/pkcs8":653,"./formats/putty":654,"./formats/rfc4253":655,"./formats/ssh":657,"./formats/ssh-private":656,"./private-key":663,"./signature":664,"./utils":666,"assert-plus":558,"crypto":237}],663:[function(require,module,exports){
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){
103864
103974
  // Copyright 2017 Joyent, Inc.
103865
103975
 
103866
103976
  module.exports = PrivateKey;
@@ -104109,7 +104219,7 @@ PrivateKey._oldVersionDetect = function (obj) {
104109
104219
  return ([1, 0]);
104110
104220
  };
104111
104221
 
104112
- },{"./algs":642,"./dhe":644,"./ed-compat":645,"./errors":646,"./fingerprint":647,"./formats/auto":648,"./formats/dnssec":649,"./formats/pem":651,"./formats/pkcs1":652,"./formats/pkcs8":653,"./formats/putty":654,"./formats/rfc4253":655,"./formats/ssh-private":656,"./key":662,"./signature":664,"./utils":666,"assert-plus":558,"crypto":237,"safer-buffer":641,"tweetnacl":675,"util":400}],664:[function(require,module,exports){
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){
104113
104223
  // Copyright 2015 Joyent, Inc.
104114
104224
 
104115
104225
  module.exports = Signature;
@@ -104425,7 +104535,7 @@ Signature._oldVersionDetect = function (obj) {
104425
104535
  return ([1, 0]);
104426
104536
  };
104427
104537
 
104428
- },{"./algs":642,"./errors":646,"./ssh-buffer":665,"./utils":666,"asn1":557,"assert-plus":558,"crypto":237,"safer-buffer":641}],665:[function(require,module,exports){
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){
104429
104539
  // Copyright 2015 Joyent, Inc.
104430
104540
 
104431
104541
  module.exports = SSHBuffer;
@@ -104576,7 +104686,7 @@ SSHBuffer.prototype.write = function (buf) {
104576
104686
  this._offset += buf.length;
104577
104687
  };
104578
104688
 
104579
- },{"assert-plus":558,"safer-buffer":641}],666:[function(require,module,exports){
104689
+ },{"assert-plus":560,"safer-buffer":643}],668:[function(require,module,exports){
104580
104690
  // Copyright 2015 Joyent, Inc.
104581
104691
 
104582
104692
  module.exports = {
@@ -104982,7 +105092,7 @@ function opensshCipherInfo(cipher) {
104982
105092
  return (inf);
104983
105093
  }
104984
105094
 
104985
- },{"./algs":642,"./key":662,"./private-key":663,"asn1":557,"assert-plus":558,"crypto":237,"ecc-jsbn/lib/ec":568,"jsbn":604,"safer-buffer":641,"tweetnacl":675}],667:[function(require,module,exports){
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){
104986
105096
  /*!
104987
105097
  * Copyright (c) 2015, Salesforce.com, Inc.
104988
105098
  * All rights reserved.
@@ -106466,7 +106576,7 @@ exports.permuteDomain = require('./permuteDomain').permuteDomain;
106466
106576
  exports.permutePath = permutePath;
106467
106577
  exports.canonicalDomain = canonicalDomain;
106468
106578
 
106469
- },{"./memstore":668,"./pathMatch":669,"./permuteDomain":670,"./pubsuffix-psl":671,"./store":672,"./version":673,"net":225,"punycode":343,"url":395,"util":400}],668:[function(require,module,exports){
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){
106470
106580
  /*!
106471
106581
  * Copyright (c) 2015, Salesforce.com, Inc.
106472
106582
  * All rights reserved.
@@ -106649,7 +106759,7 @@ MemoryCookieStore.prototype.getAllCookies = function(cb) {
106649
106759
  cb(null, cookies);
106650
106760
  };
106651
106761
 
106652
- },{"./pathMatch":669,"./permuteDomain":670,"./store":672,"util":400}],669:[function(require,module,exports){
106762
+ },{"./pathMatch":671,"./permuteDomain":672,"./store":674,"util":400}],671:[function(require,module,exports){
106653
106763
  /*!
106654
106764
  * Copyright (c) 2015, Salesforce.com, Inc.
106655
106765
  * All rights reserved.
@@ -106712,7 +106822,7 @@ function pathMatch (reqPath, cookiePath) {
106712
106822
 
106713
106823
  exports.pathMatch = pathMatch;
106714
106824
 
106715
- },{}],670:[function(require,module,exports){
106825
+ },{}],672:[function(require,module,exports){
106716
106826
  /*!
106717
106827
  * Copyright (c) 2015, Salesforce.com, Inc.
106718
106828
  * All rights reserved.
@@ -106770,7 +106880,7 @@ function permuteDomain (domain) {
106770
106880
 
106771
106881
  exports.permuteDomain = permuteDomain;
106772
106882
 
106773
- },{"./pubsuffix-psl":671}],671:[function(require,module,exports){
106883
+ },{"./pubsuffix-psl":673}],673:[function(require,module,exports){
106774
106884
  /*!
106775
106885
  * Copyright (c) 2018, Salesforce.com, Inc.
106776
106886
  * All rights reserved.
@@ -106810,7 +106920,7 @@ function getPublicSuffix(domain) {
106810
106920
 
106811
106921
  exports.getPublicSuffix = getPublicSuffix;
106812
106922
 
106813
- },{"psl":618}],672:[function(require,module,exports){
106923
+ },{"psl":620}],674:[function(require,module,exports){
106814
106924
  /*!
106815
106925
  * Copyright (c) 2015, Salesforce.com, Inc.
106816
106926
  * All rights reserved.
@@ -106887,11 +106997,11 @@ Store.prototype.getAllCookies = function(cb) {
106887
106997
  throw new Error('getAllCookies is not implemented (therefore jar cannot be serialized)');
106888
106998
  };
106889
106999
 
106890
- },{}],673:[function(require,module,exports){
107000
+ },{}],675:[function(require,module,exports){
106891
107001
  // generated by genversion
106892
107002
  module.exports = '2.5.0'
106893
107003
 
106894
- },{}],674:[function(require,module,exports){
107004
+ },{}],676:[function(require,module,exports){
106895
107005
  (function (process){(function (){
106896
107006
  'use strict'
106897
107007
 
@@ -107139,7 +107249,7 @@ if (process.env.NODE_DEBUG && /\btunnel\b/.test(process.env.NODE_DEBUG)) {
107139
107249
  exports.debug = debug // for test
107140
107250
 
107141
107251
  }).call(this)}).call(this,require('_process'))
107142
- },{"_process":335,"assert":172,"events":266,"http":387,"https":298,"net":225,"safe-buffer":640,"tls":225,"util":400}],675:[function(require,module,exports){
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){
107143
107253
  (function(nacl) {
107144
107254
  'use strict';
107145
107255
 
@@ -109529,7 +109639,7 @@ nacl.setPRNG = function(fn) {
109529
109639
 
109530
109640
  })(typeof module !== 'undefined' && module.exports ? module.exports : (self.nacl = self.nacl || {}));
109531
109641
 
109532
- },{"crypto":179}],676:[function(require,module,exports){
109642
+ },{"crypto":179}],678:[function(require,module,exports){
109533
109643
  /** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */
109534
109644
  (function (global, factory) {
109535
109645
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
@@ -110974,7 +111084,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
110974
111084
  })));
110975
111085
 
110976
111086
 
110977
- },{}],677:[function(require,module,exports){
111087
+ },{}],679:[function(require,module,exports){
110978
111088
  var v1 = require('./v1');
110979
111089
  var v4 = require('./v4');
110980
111090
 
@@ -110984,7 +111094,7 @@ uuid.v4 = v4;
110984
111094
 
110985
111095
  module.exports = uuid;
110986
111096
 
110987
- },{"./v1":680,"./v4":681}],678:[function(require,module,exports){
111097
+ },{"./v1":682,"./v4":683}],680:[function(require,module,exports){
110988
111098
  /**
110989
111099
  * Convert array of 16 byte values to UUID string format of the form:
110990
111100
  * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
@@ -111009,7 +111119,7 @@ function bytesToUuid(buf, offset) {
111009
111119
 
111010
111120
  module.exports = bytesToUuid;
111011
111121
 
111012
- },{}],679:[function(require,module,exports){
111122
+ },{}],681:[function(require,module,exports){
111013
111123
  (function (global){(function (){
111014
111124
  // Unique ID creation requires a high quality random # generator. In the
111015
111125
  // browser this is a little complicated due to unknown quality of Math.random()
@@ -111046,7 +111156,7 @@ if (!rng) {
111046
111156
  module.exports = rng;
111047
111157
 
111048
111158
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
111049
- },{}],680:[function(require,module,exports){
111159
+ },{}],682:[function(require,module,exports){
111050
111160
  var rng = require('./lib/rng');
111051
111161
  var bytesToUuid = require('./lib/bytesToUuid');
111052
111162
 
@@ -111148,7 +111258,7 @@ function v1(options, buf, offset) {
111148
111258
 
111149
111259
  module.exports = v1;
111150
111260
 
111151
- },{"./lib/bytesToUuid":678,"./lib/rng":679}],681:[function(require,module,exports){
111261
+ },{"./lib/bytesToUuid":680,"./lib/rng":681}],683:[function(require,module,exports){
111152
111262
  var rng = require('./lib/rng');
111153
111263
  var bytesToUuid = require('./lib/bytesToUuid');
111154
111264
 
@@ -111179,7 +111289,7 @@ function v4(options, buf, offset) {
111179
111289
 
111180
111290
  module.exports = v4;
111181
111291
 
111182
- },{"./lib/bytesToUuid":678,"./lib/rng":679}],682:[function(require,module,exports){
111292
+ },{"./lib/bytesToUuid":680,"./lib/rng":681}],684:[function(require,module,exports){
111183
111293
  /*
111184
111294
  * verror.js: richer JavaScript errors
111185
111295
  */
@@ -111632,4 +111742,4 @@ WError.prototype.cause = function we_cause(c)
111632
111742
  return (this.jse_cause);
111633
111743
  };
111634
111744
 
111635
- },{"assert-plus":558,"core-util-is":565,"extsprintf":571,"util":400}]},{},[403]);
111745
+ },{"assert-plus":560,"core-util-is":567,"extsprintf":573,"util":400}]},{},[403]);