slnodejs 6.1.327 → 6.1.340

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 (39) hide show
  1. package/browser-agent/dist/browser-agent-all.js +699 -588
  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 +20 -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 +9 -6
  17. package/tsOutputs/common/agent-events/agent-events-conracts.js +1 -0
  18. package/tsOutputs/common/agent-events/agent-events-conracts.js.map +1 -1
  19. package/tsOutputs/common/agent-events/agent-events-controller.js +2 -1
  20. package/tsOutputs/common/agent-events/agent-events-controller.js.map +1 -1
  21. package/tsOutputs/common/agent-events/agent-start-info-builder.d.ts +2 -1
  22. package/tsOutputs/common/agent-events/agent-start-info-builder.js +4 -0
  23. package/tsOutputs/common/agent-events/agent-start-info-builder.js.map +1 -1
  24. package/tsOutputs/common/agent-events/browser-info-builder.d.ts +6 -0
  25. package/tsOutputs/common/agent-events/browser-info-builder.js +23 -0
  26. package/tsOutputs/common/agent-events/browser-info-builder.js.map +1 -0
  27. package/tsOutputs/common/agent-events/cockpit-notifier.d.ts +2 -2
  28. package/tsOutputs/common/agent-events/cockpit-notifier.js.map +1 -1
  29. package/tsOutputs/common/config-process/config-loader.js +4 -3
  30. package/tsOutputs/common/config-process/config-loader.js.map +1 -1
  31. package/tsOutputs/common/events-process/events-contracts.d.ts +1 -0
  32. package/tsOutputs/common/events-process/events-contracts.js +1 -0
  33. package/tsOutputs/common/events-process/events-contracts.js.map +1 -1
  34. package/tsOutputs/common/scm/git.js +75 -0
  35. package/tsOutputs/common/scm/git.js.map +1 -1
  36. package/tsOutputs/common/scm/none.js +21 -0
  37. package/tsOutputs/common/scm/none.js.map +1 -1
  38. package/tsOutputs/test-listener/test-recommendation-handler.js +5 -0
  39. 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;
@@ -33823,7 +33850,7 @@ module.exports={
33823
33850
  "_resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz",
33824
33851
  "_shasum": "da37cebd31e79a1367e941b592ed1fbebd58abbb",
33825
33852
  "_spec": "elliptic@^6.5.3",
33826
- "_where": "/var/lib/jenkins/workspace/.OnPremise.Agent.JavaScript_main/browser-agent/node_modules/browserify-sign",
33853
+ "_where": "/var/lib/jenkins/workspace/.OnPremise.Agent.JavaScript_main@2/browser-agent/node_modules/browserify-sign",
33827
33854
  "author": {
33828
33855
  "name": "Fedor Indutny",
33829
33856
  "email": "fedor@indutny.com"
@@ -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.340';
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);
@@ -56456,6 +56526,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56456
56526
  AgentEventCode[AgentEventCode["WARN"] = 3000] = "WARN";
56457
56527
  AgentEventCode[AgentEventCode["AGENT_DID_NOT_SHUTDOWN"] = 3001] = "AGENT_DID_NOT_SHUTDOWN";
56458
56528
  AgentEventCode[AgentEventCode["GENERIC_WARNING_SUPERUSER"] = 3999] = "GENERIC_WARNING_SUPERUSER";
56529
+ AgentEventCode[AgentEventCode["GIT_SUBMODULES_DETECTED"] = 3501] = "GIT_SUBMODULES_DETECTED";
56459
56530
  AgentEventCode[AgentEventCode["GENERIC_ERROR"] = 4000] = "GENERIC_ERROR";
56460
56531
  AgentEventCode[AgentEventCode["DUPLICATE_MODULE"] = 4001] = "DUPLICATE_MODULE";
56461
56532
  AgentEventCode[AgentEventCode["DATA_PROCESSOR_NO_EXECUTIONS"] = 4002] = "DATA_PROCESSOR_NO_EXECUTIONS";
@@ -56481,7 +56552,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56481
56552
  })(Technology = exports.Technology || (exports.Technology = {}));
56482
56553
  });
56483
56554
 
56484
- },{}],454:[function(require,module,exports){
56555
+ },{}],455:[function(require,module,exports){
56485
56556
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
56486
56557
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
56487
56558
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -56497,7 +56568,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56497
56568
  if (v !== undefined) module.exports = v;
56498
56569
  }
56499
56570
  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);
56571
+ 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
56572
  }
56502
56573
  })(function (require, exports) {
56503
56574
  "use strict";
@@ -56513,6 +56584,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56513
56584
  const validation_utils_1 = require("../utils/validation-utils");
56514
56585
  const watchdog_1 = require("../watchdog");
56515
56586
  const system_date_1 = require("../system-date");
56587
+ const browser_info_builder_1 = require("./browser-info-builder");
56516
56588
  class AgentEventsController {
56517
56589
  constructor(agentConfig, agentInstanceData, logger, backendProxy, tool, tags) {
56518
56590
  this.active = false;
@@ -56571,7 +56643,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56571
56643
  const agentInstanceInfoBuilder = new agent_instance_info_builder_1.AgentInstanceInfoBuilder(this);
56572
56644
  const machineInfoBuilder = new machine_info_builder_1.MachineInfoBuilder();
56573
56645
  const dependencies = Object.assign(Object.assign({}, packageJsonFile.dependencies), packageJsonFile.devDependencies);
56574
- const nodejsEnvInfoBuilder = new nodejs_env_info_builder_1.NodejsEnvInfoBuilder(this.agentInstanceData, dependencies);
56646
+ 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
56647
  const ciInfoBuilder = new ci_info_builder_1.CiInfoBuilder();
56576
56648
  const agentStartInfoBuilder = new agent_start_info_builder_1.AgentStartInfoBuilder(agentInstanceInfoBuilder, machineInfoBuilder, nodejsEnvInfoBuilder, ciInfoBuilder);
56577
56649
  const agentStartInfo = agentStartInfoBuilder.build();
@@ -56713,7 +56785,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56713
56785
  })(StartRequestStatus || (StartRequestStatus = {}));
56714
56786
  });
56715
56787
 
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){
56788
+ },{"../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
56789
  (function (factory) {
56718
56790
  if (typeof module === "object" && typeof module.exports === "object") {
56719
56791
  var v = factory(require, exports);
@@ -56746,7 +56818,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56746
56818
  AgentEventsGuard.EVENT_CODE_TO_LAST_CALL = new Map();
56747
56819
  });
56748
56820
 
56749
- },{"../system-date":503,"./cockpit-notifier":459}],456:[function(require,module,exports){
56821
+ },{"../system-date":505,"./cockpit-notifier":461}],457:[function(require,module,exports){
56750
56822
  (function (process){(function (){
56751
56823
  (function (factory) {
56752
56824
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -56822,7 +56894,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56822
56894
  });
56823
56895
 
56824
56896
  }).call(this)}).call(this,require('_process'))
56825
- },{"./sensitive-data-filter":464,"_process":335}],457:[function(require,module,exports){
56897
+ },{"./sensitive-data-filter":466,"_process":335}],458:[function(require,module,exports){
56826
56898
  (function (factory) {
56827
56899
  if (typeof module === "object" && typeof module.exports === "object") {
56828
56900
  var v = factory(require, exports);
@@ -56841,6 +56913,10 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56841
56913
  this.machineInfoBuilder = machineInfoBuilder;
56842
56914
  this.techSpecificInfoBuilder = techSpecificInfoBuilder;
56843
56915
  this.ciInfoBuilder = ciInfoBuilder;
56916
+ this.agentInstanceInfoBuilder = agentInstanceInfoBuilder;
56917
+ this.machineInfoBuilder = machineInfoBuilder;
56918
+ this.techSpecificInfoBuilder = techSpecificInfoBuilder;
56919
+ this.ciInfoBuilder = ciInfoBuilder;
56844
56920
  }
56845
56921
  fillData() {
56846
56922
  }
@@ -56856,7 +56932,40 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56856
56932
  exports.AgentStartInfoBuilder = AgentStartInfoBuilder;
56857
56933
  });
56858
56934
 
56859
- },{}],458:[function(require,module,exports){
56935
+ },{}],459:[function(require,module,exports){
56936
+ (function (factory) {
56937
+ if (typeof module === "object" && typeof module.exports === "object") {
56938
+ var v = factory(require, exports);
56939
+ if (v !== undefined) module.exports = v;
56940
+ }
56941
+ else if (typeof define === "function" && define.amd) {
56942
+ define(["require", "exports", "../system-date"], factory);
56943
+ }
56944
+ })(function (require, exports) {
56945
+ "use strict";
56946
+ Object.defineProperty(exports, "__esModule", { value: true });
56947
+ exports.BrowserInfoBuilder = void 0;
56948
+ const system_date_1 = require("../system-date");
56949
+ class BrowserInfoBuilder {
56950
+ constructor() {
56951
+ this.info = {};
56952
+ }
56953
+ fillData() {
56954
+ const currentDate = (0, system_date_1.getSystemDate)();
56955
+ this.info.userAgent = window.navigator.userAgent;
56956
+ this.info.localDateTime = currentDate.toString();
56957
+ this.info.localDateTimeUnix_s = currentDate.getTime();
56958
+ this.info.location = window.location.toString();
56959
+ }
56960
+ build() {
56961
+ this.fillData();
56962
+ return this.info;
56963
+ }
56964
+ }
56965
+ exports.BrowserInfoBuilder = BrowserInfoBuilder;
56966
+ });
56967
+
56968
+ },{"../system-date":505}],460:[function(require,module,exports){
56860
56969
  (function (process){(function (){
56861
56970
  (function (factory) {
56862
56971
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -56898,7 +57007,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56898
57007
  });
56899
57008
 
56900
57009
  }).call(this)}).call(this,require('_process'))
56901
- },{"_process":335}],459:[function(require,module,exports){
57010
+ },{"_process":335}],461:[function(require,module,exports){
56902
57011
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
56903
57012
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
56904
57013
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -56984,7 +57093,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
56984
57093
  CockpitNotifier.controllerNullLogged = false;
56985
57094
  });
56986
57095
 
56987
- },{"./agent-events-controller":454,"./dry-run-agent-events-controller":460,"./no-op-agent-events-controller":462}],460:[function(require,module,exports){
57096
+ },{"./agent-events-controller":455,"./dry-run-agent-events-controller":462,"./no-op-agent-events-controller":464}],462:[function(require,module,exports){
56988
57097
  (function (factory) {
56989
57098
  if (typeof module === "object" && typeof module.exports === "object") {
56990
57099
  var v = factory(require, exports);
@@ -57012,7 +57121,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57012
57121
  exports.DryRunAgentEventsController = DryRunAgentEventsController;
57013
57122
  });
57014
57123
 
57015
- },{"../agent-instance-data":465,"../config-process/config":468,"./agent-events-conracts":453,"./agent-events-controller":454}],461:[function(require,module,exports){
57124
+ },{"../agent-instance-data":467,"../config-process/config":470,"./agent-events-conracts":454,"./agent-events-controller":455}],463:[function(require,module,exports){
57016
57125
  (function (process){(function (){
57017
57126
  (function (factory) {
57018
57127
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -57060,7 +57169,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57060
57169
  });
57061
57170
 
57062
57171
  }).call(this)}).call(this,require('_process'))
57063
- },{"../system-date":503,"_process":335,"os":310}],462:[function(require,module,exports){
57172
+ },{"../system-date":505,"_process":335,"os":310}],464:[function(require,module,exports){
57064
57173
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
57065
57174
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
57066
57175
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -57118,7 +57227,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57118
57227
  exports.NoOpAgentEventsController = NoOpAgentEventsController;
57119
57228
  });
57120
57229
 
57121
- },{"./agent-events-controller":454}],463:[function(require,module,exports){
57230
+ },{"./agent-events-controller":455}],465:[function(require,module,exports){
57122
57231
  (function (process){(function (){
57123
57232
  (function (factory) {
57124
57233
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -57153,7 +57262,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57153
57262
  });
57154
57263
 
57155
57264
  }).call(this)}).call(this,require('_process'))
57156
- },{"_process":335}],464:[function(require,module,exports){
57265
+ },{"_process":335}],466:[function(require,module,exports){
57157
57266
  (function (factory) {
57158
57267
  if (typeof module === "object" && typeof module.exports === "object") {
57159
57268
  var v = factory(require, exports);
@@ -57218,7 +57327,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57218
57327
  exports.isSensitive = isSensitive;
57219
57328
  });
57220
57329
 
57221
- },{}],465:[function(require,module,exports){
57330
+ },{}],467:[function(require,module,exports){
57222
57331
  (function (__dirname){(function (){
57223
57332
  (function (factory) {
57224
57333
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -57277,7 +57386,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57277
57386
  });
57278
57387
 
57279
57388
  }).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){
57389
+ },{"./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
57390
  (function (process){(function (){
57282
57391
  (function (factory) {
57283
57392
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -57285,7 +57394,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57285
57394
  if (v !== undefined) module.exports = v;
57286
57395
  }
57287
57396
  else if (typeof define === "function" && define.amd) {
57288
- define(["require", "exports", "./config-system", "./config", "../constants/sl-env-vars", "fs", "jwt-decode"], factory);
57397
+ define(["require", "exports", "./config-system", "./config", "../constants/sl-env-vars", "fs", "jwt-decode", "../../cli-parse/contracts"], factory);
57289
57398
  }
57290
57399
  })(function (require, exports) {
57291
57400
  "use strict";
@@ -57296,6 +57405,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57296
57405
  const sl_env_vars_1 = require("../constants/sl-env-vars");
57297
57406
  const fs = require("fs");
57298
57407
  const jwtDecode = require("jwt-decode");
57408
+ const contracts_1 = require("../../cli-parse/contracts");
57299
57409
  class ConfigLoader {
57300
57410
  constructor(logger) {
57301
57411
  this.logger = logger;
@@ -57325,7 +57435,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57325
57435
  if (agentCfg.token.hasValue) {
57326
57436
  this.loadConfigFromToken(agentCfg, agentCfg.token.value);
57327
57437
  }
57328
- this.resolveUsingOtel(agentCfg);
57438
+ this.resolveUsingOtel(agentCfg, initialJsonConfig);
57329
57439
  this.printConfiguration(agentCfg);
57330
57440
  return agentCfg;
57331
57441
  }
@@ -57337,8 +57447,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57337
57447
  this.logger.info('****************************************************');
57338
57448
  this.logger.info(agentCfg.toJsonObject());
57339
57449
  }
57340
- resolveUsingOtel(agentCfg) {
57341
- agentCfg.useOtel.value = sl_env_vars_1.SlEnvVars.shouldUseOtel();
57450
+ resolveUsingOtel(agentCfg, initialJsonConfig) {
57451
+ 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
57452
  }
57343
57453
  loadConfigFromToken(agentCfg, token) {
57344
57454
  if (!token)
@@ -57369,7 +57479,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57369
57479
  });
57370
57480
 
57371
57481
  }).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){
57482
+ },{"../../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
57483
  (function (process){(function (){
57374
57484
  (function (factory) {
57375
57485
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -57649,7 +57759,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57649
57759
  });
57650
57760
 
57651
57761
  }).call(this)}).call(this,require('_process'))
57652
- },{"_process":335,"fs":225}],468:[function(require,module,exports){
57762
+ },{"_process":335,"fs":225}],470:[function(require,module,exports){
57653
57763
  (function (factory) {
57654
57764
  if (typeof module === "object" && typeof module.exports === "object") {
57655
57765
  var v = factory(require, exports);
@@ -57718,7 +57828,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57718
57828
  exports.AgentConfigWithRuntimeArgs = AgentConfigWithRuntimeArgs;
57719
57829
  });
57720
57830
 
57721
- },{"./config-system":467}],469:[function(require,module,exports){
57831
+ },{"./config-system":469}],471:[function(require,module,exports){
57722
57832
  (function (factory) {
57723
57833
  if (typeof module === "object" && typeof module.exports === "object") {
57724
57834
  var v = factory(require, exports);
@@ -57835,7 +57945,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57835
57945
  exports.ConfigProcess = ConfigProcess;
57836
57946
  });
57837
57947
 
57838
- },{"./config-system":467,"events":266,"jwt-decode":611,"object-assign":309}],470:[function(require,module,exports){
57948
+ },{"./config-system":469,"events":266,"jwt-decode":613,"object-assign":309}],472:[function(require,module,exports){
57839
57949
  (function (factory) {
57840
57950
  if (typeof module === "object" && typeof module.exports === "object") {
57841
57951
  var v = factory(require, exports);
@@ -57863,7 +57973,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57863
57973
  exports.NoopConfigProcess = NoopConfigProcess;
57864
57974
  });
57865
57975
 
57866
- },{"./index":469}],471:[function(require,module,exports){
57976
+ },{"./index":471}],473:[function(require,module,exports){
57867
57977
  (function (factory) {
57868
57978
  if (typeof module === "object" && typeof module.exports === "object") {
57869
57979
  var v = factory(require, exports);
@@ -57898,7 +58008,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57898
58008
  _a);
57899
58009
  });
57900
58010
 
57901
- },{}],472:[function(require,module,exports){
58011
+ },{}],474:[function(require,module,exports){
57902
58012
  (function (process){(function (){
57903
58013
  (function (factory) {
57904
58014
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -58041,7 +58151,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
58041
58151
  });
58042
58152
 
58043
58153
  }).call(this)}).call(this,require('_process'))
58044
- },{"../utils/env-var-parsing":504,"_process":335}],473:[function(require,module,exports){
58154
+ },{"../utils/env-var-parsing":506,"_process":335}],475:[function(require,module,exports){
58045
58155
  (function (factory) {
58046
58156
  if (typeof module === "object" && typeof module.exports === "object") {
58047
58157
  var v = factory(require, exports);
@@ -58061,7 +58171,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
58061
58171
  })(ElementType = exports.ElementType || (exports.ElementType = {}));
58062
58172
  });
58063
58173
 
58064
- },{}],474:[function(require,module,exports){
58174
+ },{}],476:[function(require,module,exports){
58065
58175
  (function (factory) {
58066
58176
  if (typeof module === "object" && typeof module.exports === "object") {
58067
58177
  var v = factory(require, exports);
@@ -58194,7 +58304,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
58194
58304
  exports.FileElement = FileElement;
58195
58305
  });
58196
58306
 
58197
- },{"../utils/validation-utils":507}],475:[function(require,module,exports){
58307
+ },{"../utils/validation-utils":509}],477:[function(require,module,exports){
58198
58308
  (function (factory) {
58199
58309
  if (typeof module === "object" && typeof module.exports === "object") {
58200
58310
  var v = factory(require, exports);
@@ -58264,7 +58374,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
58264
58374
  exports.IstanbulUniqueIdConverter = IstanbulUniqueIdConverter;
58265
58375
  });
58266
58376
 
58267
- },{"./contracts":473,"./unique-id-converter":478}],476:[function(require,module,exports){
58377
+ },{"./contracts":475,"./unique-id-converter":480}],478:[function(require,module,exports){
58268
58378
  (function (factory) {
58269
58379
  if (typeof module === "object" && typeof module.exports === "object") {
58270
58380
  var v = factory(require, exports);
@@ -58321,7 +58431,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
58321
58431
  }
58322
58432
  });
58323
58433
 
58324
- },{"../system-date":503,"../utils/files-utils":505,"./istanbul-unique-id-converter":475,"path":327}],477:[function(require,module,exports){
58434
+ },{"../system-date":505,"../utils/files-utils":507,"./istanbul-unique-id-converter":477,"path":327}],479:[function(require,module,exports){
58325
58435
  (function (factory) {
58326
58436
  if (typeof module === "object" && typeof module.exports === "object") {
58327
58437
  var v = factory(require, exports);
@@ -58505,7 +58615,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
58505
58615
  exports.OriginalModuleLoader = OriginalModuleLoader;
58506
58616
  });
58507
58617
 
58508
- },{"../source-maps-utils":500,"../utils/files-utils":505,"../utils/validation-utils":507}],478:[function(require,module,exports){
58618
+ },{"../source-maps-utils":502,"../utils/files-utils":507,"../utils/validation-utils":509}],480:[function(require,module,exports){
58509
58619
  (function (factory) {
58510
58620
  if (typeof module === "object" && typeof module.exports === "object") {
58511
58621
  var v = factory(require, exports);
@@ -58717,7 +58827,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
58717
58827
  exports.UniqueIdConverter = UniqueIdConverter;
58718
58828
  });
58719
58829
 
58720
- },{"./contracts":473,"./file-element":474}],479:[function(require,module,exports){
58830
+ },{"./contracts":475,"./file-element":476}],481:[function(require,module,exports){
58721
58831
  (function (factory) {
58722
58832
  if (typeof module === "object" && typeof module.exports === "object") {
58723
58833
  var v = factory(require, exports);
@@ -58744,11 +58854,12 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
58744
58854
  TestSelectionStatus["DISABLED"] = "disabled";
58745
58855
  TestSelectionStatus["DISABLED_BY_CONFIGURATION"] = "disabledByConfiguration";
58746
58856
  TestSelectionStatus["RECOMMENDATIONS_TIMEOUT"] = "recommendationsTimeout";
58857
+ TestSelectionStatus["RECOMMENDATIONS_NOT_AVAILABLE"] = "recommendationsNotAvailable";
58747
58858
  TestSelectionStatus["ERROR"] = "error";
58748
58859
  })(TestSelectionStatus = exports.TestSelectionStatus || (exports.TestSelectionStatus = {}));
58749
58860
  });
58750
58861
 
58751
- },{}],480:[function(require,module,exports){
58862
+ },{}],482:[function(require,module,exports){
58752
58863
  (function (factory) {
58753
58864
  if (typeof module === "object" && typeof module.exports === "object") {
58754
58865
  var v = factory(require, exports);
@@ -58788,7 +58899,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
58788
58899
  exports.EventsCreator = EventsCreator;
58789
58900
  });
58790
58901
 
58791
- },{"../system-date":503,"./events-contracts":479}],481:[function(require,module,exports){
58902
+ },{"../system-date":505,"./events-contracts":481}],483:[function(require,module,exports){
58792
58903
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
58793
58904
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
58794
58905
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -58976,7 +59087,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
58976
59087
  EventsProcess.ITEMS_TO_DEQUE = 1000;
58977
59088
  });
58978
59089
 
58979
- },{"../system-date":503,"../utils/validation-utils":507}],482:[function(require,module,exports){
59090
+ },{"../system-date":505,"../utils/validation-utils":509}],484:[function(require,module,exports){
58980
59091
  (function (factory) {
58981
59092
  if (typeof module === "object" && typeof module.exports === "object") {
58982
59093
  var v = factory(require, exports);
@@ -59032,7 +59143,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
59032
59143
  exports.BaseBrowserHitsConverter = BaseBrowserHitsConverter;
59033
59144
  });
59034
59145
 
59035
- },{"../../common/footprints-process-v6/hits-converter":488,"../utils/files-utils":505,"./location-formatter":490}],483:[function(require,module,exports){
59146
+ },{"../../common/footprints-process-v6/hits-converter":490,"../utils/files-utils":507,"./location-formatter":492}],485:[function(require,module,exports){
59036
59147
  (function (factory) {
59037
59148
  if (typeof module === "object" && typeof module.exports === "object") {
59038
59149
  var v = factory(require, exports);
@@ -59077,7 +59188,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
59077
59188
  BufferSizeHelper.MB = 1024 * 1024;
59078
59189
  });
59079
59190
 
59080
- },{}],484:[function(require,module,exports){
59191
+ },{}],486:[function(require,module,exports){
59081
59192
  (function (factory) {
59082
59193
  if (typeof module === "object" && typeof module.exports === "object") {
59083
59194
  var v = factory(require, exports);
@@ -59110,7 +59221,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
59110
59221
  exports.CollectorFootprintsBuffer = CollectorFootprintsBuffer;
59111
59222
  });
59112
59223
 
59113
- },{"../agent-events/agent-events-conracts":453,"./footprints-buffer":486}],485:[function(require,module,exports){
59224
+ },{"../agent-events/agent-events-conracts":454,"./footprints-buffer":488}],487:[function(require,module,exports){
59114
59225
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
59115
59226
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
59116
59227
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -59180,7 +59291,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
59180
59291
  exports.CollectorFootprintsProcess = CollectorFootprintsProcess;
59181
59292
  });
59182
59293
 
59183
- },{".":489,"../no-op-state-tracker":499}],486:[function(require,module,exports){
59294
+ },{".":491,"../no-op-state-tracker":501}],488:[function(require,module,exports){
59184
59295
  (function (factory) {
59185
59296
  if (typeof module === "object" && typeof module.exports === "object") {
59186
59297
  var v = factory(require, exports);
@@ -59301,7 +59412,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
59301
59412
  FootprintsBuffer.BUFFER_FULL = 'bufferFull';
59302
59413
  });
59303
59414
 
59304
- },{"../agent-events/agent-events-conracts":453,"../agent-events/cockpit-notifier":459,"./buffer-size-helper":483,"events":266}],487:[function(require,module,exports){
59415
+ },{"../agent-events/agent-events-conracts":454,"../agent-events/cockpit-notifier":461,"./buffer-size-helper":485,"events":266}],489:[function(require,module,exports){
59305
59416
  (function (global){(function (){
59306
59417
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
59307
59418
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
@@ -59489,7 +59600,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
59489
59600
  });
59490
59601
 
59491
59602
  }).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){
59603
+ },{"../agent-events/cockpit-notifier":461,"../constants/sl-env-vars":474,"../coverage-elements/original-module-loader":479}],490:[function(require,module,exports){
59493
59604
  (function (factory) {
59494
59605
  if (typeof module === "object" && typeof module.exports === "object") {
59495
59606
  var v = factory(require, exports);
@@ -59639,7 +59750,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
59639
59750
  HitsConverter.BRANCH_ID_DEL = '|';
59640
59751
  });
59641
59752
 
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){
59753
+ },{"../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
59754
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
59644
59755
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
59645
59756
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -59930,7 +60041,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
59930
60041
  FootprintsProcess.ALARM_FIRED = 'alarm';
59931
60042
  });
59932
60043
 
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){
60044
+ },{"../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
60045
  (function (factory) {
59935
60046
  if (typeof module === "object" && typeof module.exports === "object") {
59936
60047
  var v = factory(require, exports);
@@ -59964,7 +60075,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
59964
60075
  }
59965
60076
  });
59966
60077
 
59967
- },{}],491:[function(require,module,exports){
60078
+ },{}],493:[function(require,module,exports){
59968
60079
  (function (process){(function (){
59969
60080
  (function (factory) {
59970
60081
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -60005,7 +60116,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
60005
60116
  });
60006
60117
 
60007
60118
  }).call(this)}).call(this,require('_process'))
60008
- },{"_process":335}],492:[function(require,module,exports){
60119
+ },{"_process":335}],494:[function(require,module,exports){
60009
60120
  (function (factory) {
60010
60121
  if (typeof module === "object" && typeof module.exports === "object") {
60011
60122
  var v = factory(require, exports);
@@ -60043,7 +60154,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
60043
60154
  exports.CollectionInterval = CollectionInterval;
60044
60155
  });
60045
60156
 
60046
- },{"../system-date":503}],493:[function(require,module,exports){
60157
+ },{"../system-date":505}],495:[function(require,module,exports){
60047
60158
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
60048
60159
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
60049
60160
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -60390,7 +60501,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
60390
60501
  BackendProxy.DEFAULT_HTTP_ATTEMPT_INTERVAL = 5 * 1000;
60391
60502
  });
60392
60503
 
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){
60504
+ },{"../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
60505
  (function (factory) {
60395
60506
  if (typeof module === "object" && typeof module.exports === "object") {
60396
60507
  var v = factory(require, exports);
@@ -60496,7 +60607,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
60496
60607
  })(SealightsHaderValues = exports.SealightsHaderValues || (exports.SealightsHaderValues = {}));
60497
60608
  });
60498
60609
 
60499
- },{"../system-date":503}],495:[function(require,module,exports){
60610
+ },{"../system-date":505}],497:[function(require,module,exports){
60500
60611
  (function (factory) {
60501
60612
  if (typeof module === "object" && typeof module.exports === "object") {
60502
60613
  var v = factory(require, exports);
@@ -60522,7 +60633,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
60522
60633
  exports.EntitiesMapper = EntitiesMapper;
60523
60634
  });
60524
60635
 
60525
- },{"./contracts":494}],496:[function(require,module,exports){
60636
+ },{"./contracts":496}],498:[function(require,module,exports){
60526
60637
  (function (process,Buffer){(function (){
60527
60638
  (function (factory) {
60528
60639
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -60729,7 +60840,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
60729
60840
  });
60730
60841
 
60731
60842
  }).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){
60843
+ },{"../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
60844
  (function (factory) {
60734
60845
  if (typeof module === "object" && typeof module.exports === "object") {
60735
60846
  var v = factory(require, exports);
@@ -60751,7 +60862,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
60751
60862
  })(HttpVerb = exports.HttpVerb || (exports.HttpVerb = {}));
60752
60863
  });
60753
60864
 
60754
- },{}],498:[function(require,module,exports){
60865
+ },{}],500:[function(require,module,exports){
60755
60866
  (function (factory) {
60756
60867
  if (typeof module === "object" && typeof module.exports === "object") {
60757
60868
  var v = factory(require, exports);
@@ -60980,7 +61091,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
60980
61091
  SLRoutes.ACTIVE = 'active';
60981
61092
  });
60982
61093
 
60983
- },{"../constants/constants":471,"../utils/validation-utils":507}],499:[function(require,module,exports){
61094
+ },{"../constants/constants":473,"../utils/validation-utils":509}],501:[function(require,module,exports){
60984
61095
  (function (factory) {
60985
61096
  if (typeof module === "object" && typeof module.exports === "object") {
60986
61097
  var v = factory(require, exports);
@@ -61012,7 +61123,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
61012
61123
  exports.NoopStateTracker = NoopStateTracker;
61013
61124
  });
61014
61125
 
61015
- },{"./state-tracker-fpv6":501}],500:[function(require,module,exports){
61126
+ },{"./state-tracker-fpv6":503}],502:[function(require,module,exports){
61016
61127
  (function (factory) {
61017
61128
  if (typeof module === "object" && typeof module.exports === "object") {
61018
61129
  var v = factory(require, exports);
@@ -61059,7 +61170,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
61059
61170
  exports.SourceMapsUtils = SourceMapsUtils;
61060
61171
  });
61061
61172
 
61062
- },{"fs":225,"source-map":385}],501:[function(require,module,exports){
61173
+ },{"fs":225,"source-map":385}],503:[function(require,module,exports){
61063
61174
  (function (factory) {
61064
61175
  if (typeof module === "object" && typeof module.exports === "object") {
61065
61176
  var v = factory(require, exports);
@@ -61092,7 +61203,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
61092
61203
  exports.StateTrackerFpv6 = StateTrackerFpv6;
61093
61204
  });
61094
61205
 
61095
- },{"./state-tracker":502}],502:[function(require,module,exports){
61206
+ },{"./state-tracker":504}],504:[function(require,module,exports){
61096
61207
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
61097
61208
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
61098
61209
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -61332,7 +61443,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
61332
61443
  StateTracker.EXECUTION_STATUS_PENDING_DELETE = 'pendingDelete';
61333
61444
  });
61334
61445
 
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){
61446
+ },{"./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
61447
  (function (factory) {
61337
61448
  if (typeof module === "object" && typeof module.exports === "object") {
61338
61449
  var v = factory(require, exports);
@@ -61358,7 +61469,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
61358
61469
  exports.getSystemDateValueOf = getSystemDateValueOf;
61359
61470
  });
61360
61471
 
61361
- },{}],504:[function(require,module,exports){
61472
+ },{}],506:[function(require,module,exports){
61362
61473
  (function (process){(function (){
61363
61474
  (function (factory) {
61364
61475
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -61398,7 +61509,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
61398
61509
  });
61399
61510
 
61400
61511
  }).call(this)}).call(this,require('_process'))
61401
- },{"_process":335}],505:[function(require,module,exports){
61512
+ },{"_process":335}],507:[function(require,module,exports){
61402
61513
  (function (factory) {
61403
61514
  if (typeof module === "object" && typeof module.exports === "object") {
61404
61515
  var v = factory(require, exports);
@@ -61452,7 +61563,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
61452
61563
  exports.FilesUtils = FilesUtils;
61453
61564
  });
61454
61565
 
61455
- },{"fs":225,"path":327}],506:[function(require,module,exports){
61566
+ },{"fs":225,"path":327}],508:[function(require,module,exports){
61456
61567
  (function (factory) {
61457
61568
  if (typeof module === "object" && typeof module.exports === "object") {
61458
61569
  var v = factory(require, exports);
@@ -61473,7 +61584,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
61473
61584
  exports.TimerUtils = TimerUtils;
61474
61585
  });
61475
61586
 
61476
- },{}],507:[function(require,module,exports){
61587
+ },{}],509:[function(require,module,exports){
61477
61588
  (function (factory) {
61478
61589
  if (typeof module === "object" && typeof module.exports === "object") {
61479
61590
  var v = factory(require, exports);
@@ -61500,7 +61611,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
61500
61611
  exports.ValidationUtils = ValidationUtils;
61501
61612
  });
61502
61613
 
61503
- },{"../constants/constants":471}],508:[function(require,module,exports){
61614
+ },{"../constants/constants":473}],510:[function(require,module,exports){
61504
61615
  (function (factory) {
61505
61616
  if (typeof module === "object" && typeof module.exports === "object") {
61506
61617
  var v = factory(require, exports);
@@ -61607,7 +61718,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
61607
61718
  exports.Watchdog = Watchdog;
61608
61719
  });
61609
61720
 
61610
- },{"events":266}],509:[function(require,module,exports){
61721
+ },{"events":266}],511:[function(require,module,exports){
61611
61722
  'use strict';
61612
61723
 
61613
61724
  var compileSchema = require('./compile')
@@ -62115,7 +62226,7 @@ function setLogger(self) {
62115
62226
 
62116
62227
  function noop() {}
62117
62228
 
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){
62229
+ },{"./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
62230
  'use strict';
62120
62231
 
62121
62232
 
@@ -62143,7 +62254,7 @@ Cache.prototype.clear = function Cache_clear() {
62143
62254
  this._cache = {};
62144
62255
  };
62145
62256
 
62146
- },{}],511:[function(require,module,exports){
62257
+ },{}],513:[function(require,module,exports){
62147
62258
  'use strict';
62148
62259
 
62149
62260
  var MissingRefError = require('./error_classes').MissingRef;
@@ -62235,7 +62346,7 @@ function compileAsync(schema, meta, callback) {
62235
62346
  }
62236
62347
  }
62237
62348
 
62238
- },{"./error_classes":512}],512:[function(require,module,exports){
62349
+ },{"./error_classes":514}],514:[function(require,module,exports){
62239
62350
  'use strict';
62240
62351
 
62241
62352
  var resolve = require('./resolve');
@@ -62271,7 +62382,7 @@ function errorSubclass(Subclass) {
62271
62382
  return Subclass;
62272
62383
  }
62273
62384
 
62274
- },{"./resolve":515}],513:[function(require,module,exports){
62385
+ },{"./resolve":517}],515:[function(require,module,exports){
62275
62386
  'use strict';
62276
62387
 
62277
62388
  var util = require('./util');
@@ -62415,7 +62526,7 @@ function regex(str) {
62415
62526
  }
62416
62527
  }
62417
62528
 
62418
- },{"./util":519}],514:[function(require,module,exports){
62529
+ },{"./util":521}],516:[function(require,module,exports){
62419
62530
  'use strict';
62420
62531
 
62421
62532
  var resolve = require('./resolve')
@@ -62804,7 +62915,7 @@ function vars(arr, statement) {
62804
62915
  return code;
62805
62916
  }
62806
62917
 
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){
62918
+ },{"../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
62919
  'use strict';
62809
62920
 
62810
62921
  var URI = require('uri-js')
@@ -63076,7 +63187,7 @@ function resolveIds(schema) {
63076
63187
  return localRefs;
63077
63188
  }
63078
63189
 
63079
- },{"./schema_obj":517,"./util":519,"fast-deep-equal":572,"json-schema-traverse":605,"uri-js":676}],516:[function(require,module,exports){
63190
+ },{"./schema_obj":519,"./util":521,"fast-deep-equal":574,"json-schema-traverse":607,"uri-js":678}],518:[function(require,module,exports){
63080
63191
  'use strict';
63081
63192
 
63082
63193
  var ruleModules = require('../dotjs')
@@ -63144,7 +63255,7 @@ module.exports = function rules() {
63144
63255
  return RULES;
63145
63256
  };
63146
63257
 
63147
- },{"../dotjs":536,"./util":519}],517:[function(require,module,exports){
63258
+ },{"../dotjs":538,"./util":521}],519:[function(require,module,exports){
63148
63259
  'use strict';
63149
63260
 
63150
63261
  var util = require('./util');
@@ -63155,7 +63266,7 @@ function SchemaObject(obj) {
63155
63266
  util.copy(obj, this);
63156
63267
  }
63157
63268
 
63158
- },{"./util":519}],518:[function(require,module,exports){
63269
+ },{"./util":521}],520:[function(require,module,exports){
63159
63270
  'use strict';
63160
63271
 
63161
63272
  // https://mathiasbynens.be/notes/javascript-encoding
@@ -63177,7 +63288,7 @@ module.exports = function ucs2length(str) {
63177
63288
  return length;
63178
63289
  };
63179
63290
 
63180
- },{}],519:[function(require,module,exports){
63291
+ },{}],521:[function(require,module,exports){
63181
63292
  'use strict';
63182
63293
 
63183
63294
 
@@ -63418,7 +63529,7 @@ function unescapeJsonPointer(str) {
63418
63529
  return str.replace(/~1/g, '/').replace(/~0/g, '~');
63419
63530
  }
63420
63531
 
63421
- },{"./ucs2length":518,"fast-deep-equal":572}],520:[function(require,module,exports){
63532
+ },{"./ucs2length":520,"fast-deep-equal":574}],522:[function(require,module,exports){
63422
63533
  'use strict';
63423
63534
 
63424
63535
  var KEYWORDS = [
@@ -63469,7 +63580,7 @@ module.exports = function (metaSchema, keywordsJsonPointers) {
63469
63580
  return metaSchema;
63470
63581
  };
63471
63582
 
63472
- },{}],521:[function(require,module,exports){
63583
+ },{}],523:[function(require,module,exports){
63473
63584
  'use strict';
63474
63585
 
63475
63586
  var metaSchema = require('./refs/json-schema-draft-07.json');
@@ -63508,7 +63619,7 @@ module.exports = {
63508
63619
  }
63509
63620
  };
63510
63621
 
63511
- },{"./refs/json-schema-draft-07.json":551}],522:[function(require,module,exports){
63622
+ },{"./refs/json-schema-draft-07.json":553}],524:[function(require,module,exports){
63512
63623
  'use strict';
63513
63624
  module.exports = function generate__limit(it, $keyword, $ruleType) {
63514
63625
  var out = ' ';
@@ -63673,7 +63784,7 @@ module.exports = function generate__limit(it, $keyword, $ruleType) {
63673
63784
  return out;
63674
63785
  }
63675
63786
 
63676
- },{}],523:[function(require,module,exports){
63787
+ },{}],525:[function(require,module,exports){
63677
63788
  'use strict';
63678
63789
  module.exports = function generate__limitItems(it, $keyword, $ruleType) {
63679
63790
  var out = ' ';
@@ -63755,7 +63866,7 @@ module.exports = function generate__limitItems(it, $keyword, $ruleType) {
63755
63866
  return out;
63756
63867
  }
63757
63868
 
63758
- },{}],524:[function(require,module,exports){
63869
+ },{}],526:[function(require,module,exports){
63759
63870
  'use strict';
63760
63871
  module.exports = function generate__limitLength(it, $keyword, $ruleType) {
63761
63872
  var out = ' ';
@@ -63842,7 +63953,7 @@ module.exports = function generate__limitLength(it, $keyword, $ruleType) {
63842
63953
  return out;
63843
63954
  }
63844
63955
 
63845
- },{}],525:[function(require,module,exports){
63956
+ },{}],527:[function(require,module,exports){
63846
63957
  'use strict';
63847
63958
  module.exports = function generate__limitProperties(it, $keyword, $ruleType) {
63848
63959
  var out = ' ';
@@ -63924,7 +64035,7 @@ module.exports = function generate__limitProperties(it, $keyword, $ruleType) {
63924
64035
  return out;
63925
64036
  }
63926
64037
 
63927
- },{}],526:[function(require,module,exports){
64038
+ },{}],528:[function(require,module,exports){
63928
64039
  'use strict';
63929
64040
  module.exports = function generate_allOf(it, $keyword, $ruleType) {
63930
64041
  var out = ' ';
@@ -63968,7 +64079,7 @@ module.exports = function generate_allOf(it, $keyword, $ruleType) {
63968
64079
  return out;
63969
64080
  }
63970
64081
 
63971
- },{}],527:[function(require,module,exports){
64082
+ },{}],529:[function(require,module,exports){
63972
64083
  'use strict';
63973
64084
  module.exports = function generate_anyOf(it, $keyword, $ruleType) {
63974
64085
  var out = ' ';
@@ -64043,7 +64154,7 @@ module.exports = function generate_anyOf(it, $keyword, $ruleType) {
64043
64154
  return out;
64044
64155
  }
64045
64156
 
64046
- },{}],528:[function(require,module,exports){
64157
+ },{}],530:[function(require,module,exports){
64047
64158
  'use strict';
64048
64159
  module.exports = function generate_comment(it, $keyword, $ruleType) {
64049
64160
  var out = ' ';
@@ -64059,7 +64170,7 @@ module.exports = function generate_comment(it, $keyword, $ruleType) {
64059
64170
  return out;
64060
64171
  }
64061
64172
 
64062
- },{}],529:[function(require,module,exports){
64173
+ },{}],531:[function(require,module,exports){
64063
64174
  'use strict';
64064
64175
  module.exports = function generate_const(it, $keyword, $ruleType) {
64065
64176
  var out = ' ';
@@ -64117,7 +64228,7 @@ module.exports = function generate_const(it, $keyword, $ruleType) {
64117
64228
  return out;
64118
64229
  }
64119
64230
 
64120
- },{}],530:[function(require,module,exports){
64231
+ },{}],532:[function(require,module,exports){
64121
64232
  'use strict';
64122
64233
  module.exports = function generate_contains(it, $keyword, $ruleType) {
64123
64234
  var out = ' ';
@@ -64200,7 +64311,7 @@ module.exports = function generate_contains(it, $keyword, $ruleType) {
64200
64311
  return out;
64201
64312
  }
64202
64313
 
64203
- },{}],531:[function(require,module,exports){
64314
+ },{}],533:[function(require,module,exports){
64204
64315
  'use strict';
64205
64316
  module.exports = function generate_custom(it, $keyword, $ruleType) {
64206
64317
  var out = ' ';
@@ -64430,7 +64541,7 @@ module.exports = function generate_custom(it, $keyword, $ruleType) {
64430
64541
  return out;
64431
64542
  }
64432
64543
 
64433
- },{}],532:[function(require,module,exports){
64544
+ },{}],534:[function(require,module,exports){
64434
64545
  'use strict';
64435
64546
  module.exports = function generate_dependencies(it, $keyword, $ruleType) {
64436
64547
  var out = ' ';
@@ -64600,7 +64711,7 @@ module.exports = function generate_dependencies(it, $keyword, $ruleType) {
64600
64711
  return out;
64601
64712
  }
64602
64713
 
64603
- },{}],533:[function(require,module,exports){
64714
+ },{}],535:[function(require,module,exports){
64604
64715
  'use strict';
64605
64716
  module.exports = function generate_enum(it, $keyword, $ruleType) {
64606
64717
  var out = ' ';
@@ -64668,7 +64779,7 @@ module.exports = function generate_enum(it, $keyword, $ruleType) {
64668
64779
  return out;
64669
64780
  }
64670
64781
 
64671
- },{}],534:[function(require,module,exports){
64782
+ },{}],536:[function(require,module,exports){
64672
64783
  'use strict';
64673
64784
  module.exports = function generate_format(it, $keyword, $ruleType) {
64674
64785
  var out = ' ';
@@ -64820,7 +64931,7 @@ module.exports = function generate_format(it, $keyword, $ruleType) {
64820
64931
  return out;
64821
64932
  }
64822
64933
 
64823
- },{}],535:[function(require,module,exports){
64934
+ },{}],537:[function(require,module,exports){
64824
64935
  'use strict';
64825
64936
  module.exports = function generate_if(it, $keyword, $ruleType) {
64826
64937
  var out = ' ';
@@ -64925,7 +65036,7 @@ module.exports = function generate_if(it, $keyword, $ruleType) {
64925
65036
  return out;
64926
65037
  }
64927
65038
 
64928
- },{}],536:[function(require,module,exports){
65039
+ },{}],538:[function(require,module,exports){
64929
65040
  'use strict';
64930
65041
 
64931
65042
  //all requires must be explicit because browserify won't work with dynamic requires
@@ -64960,7 +65071,7 @@ module.exports = {
64960
65071
  validate: require('./validate')
64961
65072
  };
64962
65073
 
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){
65074
+ },{"./_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
65075
  'use strict';
64965
65076
  module.exports = function generate_items(it, $keyword, $ruleType) {
64966
65077
  var out = ' ';
@@ -65102,7 +65213,7 @@ module.exports = function generate_items(it, $keyword, $ruleType) {
65102
65213
  return out;
65103
65214
  }
65104
65215
 
65105
- },{}],538:[function(require,module,exports){
65216
+ },{}],540:[function(require,module,exports){
65106
65217
  'use strict';
65107
65218
  module.exports = function generate_multipleOf(it, $keyword, $ruleType) {
65108
65219
  var out = ' ';
@@ -65184,7 +65295,7 @@ module.exports = function generate_multipleOf(it, $keyword, $ruleType) {
65184
65295
  return out;
65185
65296
  }
65186
65297
 
65187
- },{}],539:[function(require,module,exports){
65298
+ },{}],541:[function(require,module,exports){
65188
65299
  'use strict';
65189
65300
  module.exports = function generate_not(it, $keyword, $ruleType) {
65190
65301
  var out = ' ';
@@ -65270,7 +65381,7 @@ module.exports = function generate_not(it, $keyword, $ruleType) {
65270
65381
  return out;
65271
65382
  }
65272
65383
 
65273
- },{}],540:[function(require,module,exports){
65384
+ },{}],542:[function(require,module,exports){
65274
65385
  'use strict';
65275
65386
  module.exports = function generate_oneOf(it, $keyword, $ruleType) {
65276
65387
  var out = ' ';
@@ -65345,7 +65456,7 @@ module.exports = function generate_oneOf(it, $keyword, $ruleType) {
65345
65456
  return out;
65346
65457
  }
65347
65458
 
65348
- },{}],541:[function(require,module,exports){
65459
+ },{}],543:[function(require,module,exports){
65349
65460
  'use strict';
65350
65461
  module.exports = function generate_pattern(it, $keyword, $ruleType) {
65351
65462
  var out = ' ';
@@ -65422,7 +65533,7 @@ module.exports = function generate_pattern(it, $keyword, $ruleType) {
65422
65533
  return out;
65423
65534
  }
65424
65535
 
65425
- },{}],542:[function(require,module,exports){
65536
+ },{}],544:[function(require,module,exports){
65426
65537
  'use strict';
65427
65538
  module.exports = function generate_properties(it, $keyword, $ruleType) {
65428
65539
  var out = ' ';
@@ -65759,7 +65870,7 @@ module.exports = function generate_properties(it, $keyword, $ruleType) {
65759
65870
  return out;
65760
65871
  }
65761
65872
 
65762
- },{}],543:[function(require,module,exports){
65873
+ },{}],545:[function(require,module,exports){
65763
65874
  'use strict';
65764
65875
  module.exports = function generate_propertyNames(it, $keyword, $ruleType) {
65765
65876
  var out = ' ';
@@ -65842,7 +65953,7 @@ module.exports = function generate_propertyNames(it, $keyword, $ruleType) {
65842
65953
  return out;
65843
65954
  }
65844
65955
 
65845
- },{}],544:[function(require,module,exports){
65956
+ },{}],546:[function(require,module,exports){
65846
65957
  'use strict';
65847
65958
  module.exports = function generate_ref(it, $keyword, $ruleType) {
65848
65959
  var out = ' ';
@@ -65968,7 +66079,7 @@ module.exports = function generate_ref(it, $keyword, $ruleType) {
65968
66079
  return out;
65969
66080
  }
65970
66081
 
65971
- },{}],545:[function(require,module,exports){
66082
+ },{}],547:[function(require,module,exports){
65972
66083
  'use strict';
65973
66084
  module.exports = function generate_required(it, $keyword, $ruleType) {
65974
66085
  var out = ' ';
@@ -66240,7 +66351,7 @@ module.exports = function generate_required(it, $keyword, $ruleType) {
66240
66351
  return out;
66241
66352
  }
66242
66353
 
66243
- },{}],546:[function(require,module,exports){
66354
+ },{}],548:[function(require,module,exports){
66244
66355
  'use strict';
66245
66356
  module.exports = function generate_uniqueItems(it, $keyword, $ruleType) {
66246
66357
  var out = ' ';
@@ -66328,7 +66439,7 @@ module.exports = function generate_uniqueItems(it, $keyword, $ruleType) {
66328
66439
  return out;
66329
66440
  }
66330
66441
 
66331
- },{}],547:[function(require,module,exports){
66442
+ },{}],549:[function(require,module,exports){
66332
66443
  'use strict';
66333
66444
  module.exports = function generate_validate(it, $keyword, $ruleType) {
66334
66445
  var out = '';
@@ -66812,7 +66923,7 @@ module.exports = function generate_validate(it, $keyword, $ruleType) {
66812
66923
  return out;
66813
66924
  }
66814
66925
 
66815
- },{}],548:[function(require,module,exports){
66926
+ },{}],550:[function(require,module,exports){
66816
66927
  'use strict';
66817
66928
 
66818
66929
  var IDENTIFIER = /^[a-z_$][a-z0-9_$-]*$/i;
@@ -66960,7 +67071,7 @@ function validateKeyword(definition, throwError) {
66960
67071
  return false;
66961
67072
  }
66962
67073
 
66963
- },{"./definition_schema":521,"./dotjs/custom":531}],549:[function(require,module,exports){
67074
+ },{"./definition_schema":523,"./dotjs/custom":533}],551:[function(require,module,exports){
66964
67075
  module.exports={
66965
67076
  "$schema": "http://json-schema.org/draft-07/schema#",
66966
67077
  "$id": "https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#",
@@ -66979,7 +67090,7 @@ module.exports={
66979
67090
  "additionalProperties": false
66980
67091
  }
66981
67092
 
66982
- },{}],550:[function(require,module,exports){
67093
+ },{}],552:[function(require,module,exports){
66983
67094
  module.exports={
66984
67095
  "$schema": "http://json-schema.org/draft-06/schema#",
66985
67096
  "$id": "http://json-schema.org/draft-06/schema#",
@@ -67135,7 +67246,7 @@ module.exports={
67135
67246
  "default": {}
67136
67247
  }
67137
67248
 
67138
- },{}],551:[function(require,module,exports){
67249
+ },{}],553:[function(require,module,exports){
67139
67250
  module.exports={
67140
67251
  "$schema": "http://json-schema.org/draft-07/schema#",
67141
67252
  "$id": "http://json-schema.org/draft-07/schema#",
@@ -67305,7 +67416,7 @@ module.exports={
67305
67416
  "default": true
67306
67417
  }
67307
67418
 
67308
- },{}],552:[function(require,module,exports){
67419
+ },{}],554:[function(require,module,exports){
67309
67420
  // Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
67310
67421
 
67311
67422
 
@@ -67320,7 +67431,7 @@ module.exports = {
67320
67431
 
67321
67432
  };
67322
67433
 
67323
- },{}],553:[function(require,module,exports){
67434
+ },{}],555:[function(require,module,exports){
67324
67435
  // Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
67325
67436
 
67326
67437
  var errors = require('./errors');
@@ -67349,7 +67460,7 @@ for (var e in errors) {
67349
67460
  module.exports[e] = errors[e];
67350
67461
  }
67351
67462
 
67352
- },{"./errors":552,"./reader":554,"./types":555,"./writer":556}],554:[function(require,module,exports){
67463
+ },{"./errors":554,"./reader":556,"./types":557,"./writer":558}],556:[function(require,module,exports){
67353
67464
  // Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
67354
67465
 
67355
67466
  var assert = require('assert');
@@ -67613,7 +67724,7 @@ Reader.prototype._readTag = function (tag) {
67613
67724
 
67614
67725
  module.exports = Reader;
67615
67726
 
67616
- },{"./errors":552,"./types":555,"assert":172,"safer-buffer":641}],555:[function(require,module,exports){
67727
+ },{"./errors":554,"./types":557,"assert":172,"safer-buffer":643}],557:[function(require,module,exports){
67617
67728
  // Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
67618
67729
 
67619
67730
 
@@ -67651,7 +67762,7 @@ module.exports = {
67651
67762
  Context: 128
67652
67763
  };
67653
67764
 
67654
- },{}],556:[function(require,module,exports){
67765
+ },{}],558:[function(require,module,exports){
67655
67766
  // Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
67656
67767
 
67657
67768
  var assert = require('assert');
@@ -67970,7 +68081,7 @@ Writer.prototype._ensure = function (len) {
67970
68081
 
67971
68082
  module.exports = Writer;
67972
68083
 
67973
- },{"./errors":552,"./types":555,"assert":172,"safer-buffer":641}],557:[function(require,module,exports){
68084
+ },{"./errors":554,"./types":557,"assert":172,"safer-buffer":643}],559:[function(require,module,exports){
67974
68085
  // Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
67975
68086
 
67976
68087
  // If you have no idea what ASN.1 or BER is, see this:
@@ -67992,7 +68103,7 @@ module.exports = {
67992
68103
 
67993
68104
  };
67994
68105
 
67995
- },{"./ber/index":553}],558:[function(require,module,exports){
68106
+ },{"./ber/index":555}],560:[function(require,module,exports){
67996
68107
  (function (Buffer,process){(function (){
67997
68108
  // Copyright (c) 2012, Mark Cavage. All rights reserved.
67998
68109
  // Copyright 2015 Joyent, Inc.
@@ -68207,7 +68318,7 @@ function _setExports(ndebug) {
68207
68318
  module.exports = _setExports(process.env.NODE_NDEBUG);
68208
68319
 
68209
68320
  }).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){
68321
+ },{"../../browser-agent/node_modules/is-buffer/index.js":302,"_process":335,"assert":172,"stream":386,"util":400}],561:[function(require,module,exports){
68211
68322
 
68212
68323
  /*!
68213
68324
  * Copyright 2010 LearnBoost <dev@learnboost.com>
@@ -68421,7 +68532,7 @@ function canonicalizeResource (resource) {
68421
68532
  }
68422
68533
  module.exports.canonicalizeResource = canonicalizeResource
68423
68534
 
68424
- },{"crypto":237,"url":395}],560:[function(require,module,exports){
68535
+ },{"crypto":237,"url":395}],562:[function(require,module,exports){
68425
68536
  (function (process,Buffer){(function (){
68426
68537
  var aws4 = exports,
68427
68538
  url = require('url'),
@@ -68806,7 +68917,7 @@ aws4.sign = function(request, credentials) {
68806
68917
  }
68807
68918
 
68808
68919
  }).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){
68920
+ },{"./lru":563,"_process":335,"buffer":227,"crypto":237,"querystring":346,"url":395}],563:[function(require,module,exports){
68810
68921
  module.exports = function(size) {
68811
68922
  return new LruCache(size)
68812
68923
  }
@@ -68904,7 +69015,7 @@ function DoublyLinkedNode(key, val) {
68904
69015
  this.next = null
68905
69016
  }
68906
69017
 
68907
- },{}],562:[function(require,module,exports){
69018
+ },{}],564:[function(require,module,exports){
68908
69019
  'use strict';
68909
69020
 
68910
69021
  var crypto_hash_sha512 = require('tweetnacl').lowlevel.crypto_hash;
@@ -69462,7 +69573,7 @@ module.exports = {
69462
69573
  pbkdf: bcrypt_pbkdf
69463
69574
  };
69464
69575
 
69465
- },{"tweetnacl":675}],563:[function(require,module,exports){
69576
+ },{"tweetnacl":677}],565:[function(require,module,exports){
69466
69577
  function Caseless (dict) {
69467
69578
  this.dict = dict || {}
69468
69579
  }
@@ -69531,7 +69642,7 @@ module.exports.httpify = function (resp, headers) {
69531
69642
  return c
69532
69643
  }
69533
69644
 
69534
- },{}],564:[function(require,module,exports){
69645
+ },{}],566:[function(require,module,exports){
69535
69646
  (function (Buffer){(function (){
69536
69647
  var util = require('util');
69537
69648
  var Stream = require('stream').Stream;
@@ -69743,7 +69854,7 @@ CombinedStream.prototype._emitError = function(err) {
69743
69854
  };
69744
69855
 
69745
69856
  }).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){
69857
+ },{"../../../browser-agent/node_modules/is-buffer/index.js":302,"delayed-stream":568,"stream":386,"util":400}],567:[function(require,module,exports){
69747
69858
  (function (Buffer){(function (){
69748
69859
  // Copyright Joyent, Inc. and other Node contributors.
69749
69860
  //
@@ -69854,7 +69965,7 @@ function objectToString(o) {
69854
69965
  }
69855
69966
 
69856
69967
  }).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){
69968
+ },{"../../../browser-agent/node_modules/is-buffer/index.js":302}],568:[function(require,module,exports){
69858
69969
  var Stream = require('stream').Stream;
69859
69970
  var util = require('util');
69860
69971
 
@@ -69963,7 +70074,7 @@ DelayedStream.prototype._checkIfMaxDataSizeExceeded = function() {
69963
70074
  this.emit('error', new Error(message));
69964
70075
  };
69965
70076
 
69966
- },{"stream":386,"util":400}],567:[function(require,module,exports){
70077
+ },{"stream":386,"util":400}],569:[function(require,module,exports){
69967
70078
  var crypto = require("crypto");
69968
70079
  var BigInteger = require("jsbn").BigInteger;
69969
70080
  var ECPointFp = require("./lib/ec.js").ECPointFp;
@@ -70023,7 +70134,7 @@ exports.ECKey = function(curve, key, isPublic)
70023
70134
  }
70024
70135
 
70025
70136
 
70026
- },{"./lib/ec.js":568,"./lib/sec.js":569,"crypto":237,"jsbn":604,"safer-buffer":641}],568:[function(require,module,exports){
70137
+ },{"./lib/ec.js":570,"./lib/sec.js":571,"crypto":237,"jsbn":606,"safer-buffer":643}],570:[function(require,module,exports){
70027
70138
  // Basic Javascript Elliptic Curve implementation
70028
70139
  // Ported loosely from BouncyCastle's Java EC code
70029
70140
  // Only Fp curves implemented for now
@@ -70586,7 +70697,7 @@ var exports = {
70586
70697
 
70587
70698
  module.exports = exports
70588
70699
 
70589
- },{"jsbn":604}],569:[function(require,module,exports){
70700
+ },{"jsbn":606}],571:[function(require,module,exports){
70590
70701
  // Named EC curves
70591
70702
 
70592
70703
  // Requires ec.js, jsbn.js, and jsbn2.js
@@ -70758,7 +70869,7 @@ module.exports = {
70758
70869
  "secp256r1":secp256r1
70759
70870
  }
70760
70871
 
70761
- },{"./ec.js":568,"jsbn":604}],570:[function(require,module,exports){
70872
+ },{"./ec.js":570,"jsbn":606}],572:[function(require,module,exports){
70762
70873
  'use strict';
70763
70874
 
70764
70875
  var hasOwn = Object.prototype.hasOwnProperty;
@@ -70877,7 +70988,7 @@ module.exports = function extend() {
70877
70988
  return target;
70878
70989
  };
70879
70990
 
70880
- },{}],571:[function(require,module,exports){
70991
+ },{}],573:[function(require,module,exports){
70881
70992
  (function (process){(function (){
70882
70993
  /*
70883
70994
  * extsprintf.js: extended POSIX-style sprintf
@@ -71064,7 +71175,7 @@ function dumpException(ex)
71064
71175
  }
71065
71176
 
71066
71177
  }).call(this)}).call(this,require('_process'))
71067
- },{"_process":335,"assert":172,"util":400}],572:[function(require,module,exports){
71178
+ },{"_process":335,"assert":172,"util":400}],574:[function(require,module,exports){
71068
71179
  'use strict';
71069
71180
 
71070
71181
  // do not edit .js files directly - edit src/index.jst
@@ -71112,7 +71223,7 @@ module.exports = function equal(a, b) {
71112
71223
  return a!==a && b!==b;
71113
71224
  };
71114
71225
 
71115
- },{}],573:[function(require,module,exports){
71226
+ },{}],575:[function(require,module,exports){
71116
71227
  'use strict';
71117
71228
 
71118
71229
  module.exports = function (data, opts) {
@@ -71173,7 +71284,7 @@ module.exports = function (data, opts) {
71173
71284
  })(data);
71174
71285
  };
71175
71286
 
71176
- },{}],574:[function(require,module,exports){
71287
+ },{}],576:[function(require,module,exports){
71177
71288
  module.exports = ForeverAgent
71178
71289
  ForeverAgent.SSL = ForeverAgentSSL
71179
71290
 
@@ -71313,11 +71424,11 @@ function createConnectionSSL (port, host, options) {
71313
71424
  return tls.connect(options);
71314
71425
  }
71315
71426
 
71316
- },{"http":387,"https":298,"net":225,"tls":225,"util":400}],575:[function(require,module,exports){
71427
+ },{"http":387,"https":298,"net":225,"tls":225,"util":400}],577:[function(require,module,exports){
71317
71428
  /* eslint-env browser */
71318
71429
  module.exports = typeof self == 'object' ? self.FormData : window.FormData;
71319
71430
 
71320
- },{}],576:[function(require,module,exports){
71431
+ },{}],578:[function(require,module,exports){
71321
71432
  module.exports={
71322
71433
  "$id": "afterRequest.json#",
71323
71434
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71349,7 +71460,7 @@ module.exports={
71349
71460
  }
71350
71461
  }
71351
71462
 
71352
- },{}],577:[function(require,module,exports){
71463
+ },{}],579:[function(require,module,exports){
71353
71464
  module.exports={
71354
71465
  "$id": "beforeRequest.json#",
71355
71466
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71381,7 +71492,7 @@ module.exports={
71381
71492
  }
71382
71493
  }
71383
71494
 
71384
- },{}],578:[function(require,module,exports){
71495
+ },{}],580:[function(require,module,exports){
71385
71496
  module.exports={
71386
71497
  "$id": "browser.json#",
71387
71498
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71403,7 +71514,7 @@ module.exports={
71403
71514
  }
71404
71515
  }
71405
71516
 
71406
- },{}],579:[function(require,module,exports){
71517
+ },{}],581:[function(require,module,exports){
71407
71518
  module.exports={
71408
71519
  "$id": "cache.json#",
71409
71520
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71426,7 +71537,7 @@ module.exports={
71426
71537
  }
71427
71538
  }
71428
71539
 
71429
- },{}],580:[function(require,module,exports){
71540
+ },{}],582:[function(require,module,exports){
71430
71541
  module.exports={
71431
71542
  "$id": "content.json#",
71432
71543
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71457,7 +71568,7 @@ module.exports={
71457
71568
  }
71458
71569
  }
71459
71570
 
71460
- },{}],581:[function(require,module,exports){
71571
+ },{}],583:[function(require,module,exports){
71461
71572
  module.exports={
71462
71573
  "$id": "cookie.json#",
71463
71574
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71495,7 +71606,7 @@ module.exports={
71495
71606
  }
71496
71607
  }
71497
71608
 
71498
- },{}],582:[function(require,module,exports){
71609
+ },{}],584:[function(require,module,exports){
71499
71610
  module.exports={
71500
71611
  "$id": "creator.json#",
71501
71612
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71517,7 +71628,7 @@ module.exports={
71517
71628
  }
71518
71629
  }
71519
71630
 
71520
- },{}],583:[function(require,module,exports){
71631
+ },{}],585:[function(require,module,exports){
71521
71632
  module.exports={
71522
71633
  "$id": "entry.json#",
71523
71634
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71572,7 +71683,7 @@ module.exports={
71572
71683
  }
71573
71684
  }
71574
71685
 
71575
- },{}],584:[function(require,module,exports){
71686
+ },{}],586:[function(require,module,exports){
71576
71687
  module.exports={
71577
71688
  "$id": "har.json#",
71578
71689
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71587,7 +71698,7 @@ module.exports={
71587
71698
  }
71588
71699
  }
71589
71700
 
71590
- },{}],585:[function(require,module,exports){
71701
+ },{}],587:[function(require,module,exports){
71591
71702
  module.exports={
71592
71703
  "$id": "header.json#",
71593
71704
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71609,7 +71720,7 @@ module.exports={
71609
71720
  }
71610
71721
  }
71611
71722
 
71612
- },{}],586:[function(require,module,exports){
71723
+ },{}],588:[function(require,module,exports){
71613
71724
  'use strict'
71614
71725
 
71615
71726
  module.exports = {
@@ -71633,7 +71744,7 @@ module.exports = {
71633
71744
  timings: require('./timings.json')
71634
71745
  }
71635
71746
 
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){
71747
+ },{"./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
71748
  module.exports={
71638
71749
  "$id": "log.json#",
71639
71750
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71671,7 +71782,7 @@ module.exports={
71671
71782
  }
71672
71783
  }
71673
71784
 
71674
- },{}],588:[function(require,module,exports){
71785
+ },{}],590:[function(require,module,exports){
71675
71786
  module.exports={
71676
71787
  "$id": "page.json#",
71677
71788
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71705,7 +71816,7 @@ module.exports={
71705
71816
  }
71706
71817
  }
71707
71818
 
71708
- },{}],589:[function(require,module,exports){
71819
+ },{}],591:[function(require,module,exports){
71709
71820
  module.exports={
71710
71821
  "$id": "pageTimings.json#",
71711
71822
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71725,7 +71836,7 @@ module.exports={
71725
71836
  }
71726
71837
  }
71727
71838
 
71728
- },{}],590:[function(require,module,exports){
71839
+ },{}],592:[function(require,module,exports){
71729
71840
  module.exports={
71730
71841
  "$id": "postData.json#",
71731
71842
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71770,7 +71881,7 @@ module.exports={
71770
71881
  }
71771
71882
  }
71772
71883
 
71773
- },{}],591:[function(require,module,exports){
71884
+ },{}],593:[function(require,module,exports){
71774
71885
  module.exports={
71775
71886
  "$id": "query.json#",
71776
71887
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71792,7 +71903,7 @@ module.exports={
71792
71903
  }
71793
71904
  }
71794
71905
 
71795
- },{}],592:[function(require,module,exports){
71906
+ },{}],594:[function(require,module,exports){
71796
71907
  module.exports={
71797
71908
  "$id": "request.json#",
71798
71909
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71851,7 +71962,7 @@ module.exports={
71851
71962
  }
71852
71963
  }
71853
71964
 
71854
- },{}],593:[function(require,module,exports){
71965
+ },{}],595:[function(require,module,exports){
71855
71966
  module.exports={
71856
71967
  "$id": "response.json#",
71857
71968
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71907,7 +72018,7 @@ module.exports={
71907
72018
  }
71908
72019
  }
71909
72020
 
71910
- },{}],594:[function(require,module,exports){
72021
+ },{}],596:[function(require,module,exports){
71911
72022
  module.exports={
71912
72023
  "$id": "timings.json#",
71913
72024
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -71951,7 +72062,7 @@ module.exports={
71951
72062
  }
71952
72063
  }
71953
72064
 
71954
- },{}],595:[function(require,module,exports){
72065
+ },{}],597:[function(require,module,exports){
71955
72066
  function HARError (errors) {
71956
72067
  var message = 'validation failed'
71957
72068
 
@@ -71970,7 +72081,7 @@ HARError.prototype = Error.prototype
71970
72081
 
71971
72082
  module.exports = HARError
71972
72083
 
71973
- },{}],596:[function(require,module,exports){
72084
+ },{}],598:[function(require,module,exports){
71974
72085
  var Ajv = require('ajv')
71975
72086
  var HARError = require('./error')
71976
72087
  var schemas = require('har-schema')
@@ -72074,7 +72185,7 @@ exports.timings = function (data) {
72074
72185
  return validate('timings', data)
72075
72186
  }
72076
72187
 
72077
- },{"./error":595,"ajv":509,"ajv/lib/refs/json-schema-draft-06.json":550,"har-schema":586}],597:[function(require,module,exports){
72188
+ },{"./error":597,"ajv":511,"ajv/lib/refs/json-schema-draft-06.json":552,"har-schema":588}],599:[function(require,module,exports){
72078
72189
  // Copyright 2015 Joyent, Inc.
72079
72190
 
72080
72191
  var parser = require('./parser');
@@ -72105,7 +72216,7 @@ module.exports = {
72105
72216
  verifyHMAC: verify.verifyHMAC
72106
72217
  };
72107
72218
 
72108
- },{"./parser":598,"./signer":599,"./utils":600,"./verify":601}],598:[function(require,module,exports){
72219
+ },{"./parser":600,"./signer":601,"./utils":602,"./verify":603}],600:[function(require,module,exports){
72109
72220
  // Copyright 2012 Joyent, Inc. All rights reserved.
72110
72221
 
72111
72222
  var assert = require('assert-plus');
@@ -72422,7 +72533,7 @@ module.exports = {
72422
72533
 
72423
72534
  };
72424
72535
 
72425
- },{"./utils":600,"assert-plus":558,"util":400}],599:[function(require,module,exports){
72536
+ },{"./utils":602,"assert-plus":560,"util":400}],601:[function(require,module,exports){
72426
72537
  (function (Buffer){(function (){
72427
72538
  // Copyright 2012 Joyent, Inc. All rights reserved.
72428
72539
 
@@ -72827,7 +72938,7 @@ module.exports = {
72827
72938
  };
72828
72939
 
72829
72940
  }).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){
72941
+ },{"../../../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
72942
  // Copyright 2012 Joyent, Inc. All rights reserved.
72832
72943
 
72833
72944
  var assert = require('assert-plus');
@@ -72941,7 +73052,7 @@ module.exports = {
72941
73052
  }
72942
73053
  };
72943
73054
 
72944
- },{"assert-plus":558,"sshpk":661,"util":400}],601:[function(require,module,exports){
73055
+ },{"assert-plus":560,"sshpk":663,"util":400}],603:[function(require,module,exports){
72945
73056
  (function (Buffer){(function (){
72946
73057
  // Copyright 2015 Joyent, Inc.
72947
73058
 
@@ -73033,7 +73144,7 @@ module.exports = {
73033
73144
  };
73034
73145
 
73035
73146
  }).call(this)}).call(this,require("buffer").Buffer)
73036
- },{"./utils":600,"assert-plus":558,"buffer":227,"crypto":237,"sshpk":661}],602:[function(require,module,exports){
73147
+ },{"./utils":602,"assert-plus":560,"buffer":227,"crypto":237,"sshpk":663}],604:[function(require,module,exports){
73037
73148
  module.exports = isTypedArray
73038
73149
  isTypedArray.strict = isStrictTypedArray
73039
73150
  isTypedArray.loose = isLooseTypedArray
@@ -73076,7 +73187,7 @@ function isLooseTypedArray(arr) {
73076
73187
  return names[toString.call(arr)]
73077
73188
  }
73078
73189
 
73079
- },{}],603:[function(require,module,exports){
73190
+ },{}],605:[function(require,module,exports){
73080
73191
  var stream = require('stream')
73081
73192
 
73082
73193
 
@@ -73105,7 +73216,7 @@ module.exports.isReadable = isReadable
73105
73216
  module.exports.isWritable = isWritable
73106
73217
  module.exports.isDuplex = isDuplex
73107
73218
 
73108
- },{"stream":386}],604:[function(require,module,exports){
73219
+ },{"stream":386}],606:[function(require,module,exports){
73109
73220
  (function(){
73110
73221
 
73111
73222
  // Copyright (c) 2005 Tom Wu
@@ -74464,7 +74575,7 @@ module.exports.isDuplex = isDuplex
74464
74575
 
74465
74576
  }).call(this);
74466
74577
 
74467
- },{}],605:[function(require,module,exports){
74578
+ },{}],607:[function(require,module,exports){
74468
74579
  'use strict';
74469
74580
 
74470
74581
  var traverse = module.exports = function (schema, opts, cb) {
@@ -74555,7 +74666,7 @@ function escapeJsonPtr(str) {
74555
74666
  return str.replace(/~/g, '~0').replace(/\//g, '~1');
74556
74667
  }
74557
74668
 
74558
- },{}],606:[function(require,module,exports){
74669
+ },{}],608:[function(require,module,exports){
74559
74670
  /**
74560
74671
  * JSONSchema Validator - Validates JavaScript objects using JSON Schemas
74561
74672
  * (http://www.json.com/json-schema-proposal/)
@@ -74828,7 +74939,7 @@ exports.mustBeValid = function(result){
74828
74939
  return exports;
74829
74940
  }));
74830
74941
 
74831
- },{}],607:[function(require,module,exports){
74942
+ },{}],609:[function(require,module,exports){
74832
74943
  exports = module.exports = stringify
74833
74944
  exports.getSerialize = serializer
74834
74945
 
@@ -74857,7 +74968,7 @@ function serializer(replacer, cycleReplacer) {
74857
74968
  }
74858
74969
  }
74859
74970
 
74860
- },{}],608:[function(require,module,exports){
74971
+ },{}],610:[function(require,module,exports){
74861
74972
  /*
74862
74973
  * lib/jsprim.js: utilities for primitive JavaScript types
74863
74974
  */
@@ -75594,7 +75705,7 @@ function mergeObjects(provided, overrides, defaults)
75594
75705
  return (rv);
75595
75706
  }
75596
75707
 
75597
- },{"assert-plus":558,"extsprintf":571,"json-schema":606,"util":400,"verror":682}],609:[function(require,module,exports){
75708
+ },{"assert-plus":560,"extsprintf":573,"json-schema":608,"util":400,"verror":684}],611:[function(require,module,exports){
75598
75709
  /**
75599
75710
  * The code was extracted from:
75600
75711
  * https://github.com/davidchambers/Base64.js
@@ -75634,7 +75745,7 @@ function polyfill (input) {
75634
75745
 
75635
75746
  module.exports = typeof window !== 'undefined' && window.atob && window.atob.bind(window) || polyfill;
75636
75747
 
75637
- },{}],610:[function(require,module,exports){
75748
+ },{}],612:[function(require,module,exports){
75638
75749
  var atob = require('./atob');
75639
75750
 
75640
75751
  function b64DecodeUnicode(str) {
@@ -75669,7 +75780,7 @@ module.exports = function(str) {
75669
75780
  }
75670
75781
  };
75671
75782
 
75672
- },{"./atob":609}],611:[function(require,module,exports){
75783
+ },{"./atob":611}],613:[function(require,module,exports){
75673
75784
  'use strict';
75674
75785
 
75675
75786
  var base64_url_decode = require('./base64_url_decode');
@@ -75697,7 +75808,7 @@ module.exports = function (token,options) {
75697
75808
 
75698
75809
  module.exports.InvalidTokenError = InvalidTokenError;
75699
75810
 
75700
- },{"./base64_url_decode":610}],612:[function(require,module,exports){
75811
+ },{"./base64_url_decode":612}],614:[function(require,module,exports){
75701
75812
  module.exports={
75702
75813
  "application/1d-interleaved-parityfec": {
75703
75814
  "source": "iana"
@@ -84218,7 +84329,7 @@ module.exports={
84218
84329
  }
84219
84330
  }
84220
84331
 
84221
- },{}],613:[function(require,module,exports){
84332
+ },{}],615:[function(require,module,exports){
84222
84333
  /*!
84223
84334
  * mime-db
84224
84335
  * Copyright(c) 2014 Jonathan Ong
@@ -84232,7 +84343,7 @@ module.exports={
84232
84343
 
84233
84344
  module.exports = require('./db.json')
84234
84345
 
84235
- },{"./db.json":612}],614:[function(require,module,exports){
84346
+ },{"./db.json":614}],616:[function(require,module,exports){
84236
84347
  /*!
84237
84348
  * mime-types
84238
84349
  * Copyright(c) 2014 Jonathan Ong
@@ -84422,7 +84533,7 @@ function populateMaps (extensions, types) {
84422
84533
  })
84423
84534
  }
84424
84535
 
84425
- },{"mime-db":613,"path":327}],615:[function(require,module,exports){
84536
+ },{"mime-db":615,"path":327}],617:[function(require,module,exports){
84426
84537
  var crypto = require('crypto')
84427
84538
 
84428
84539
  function sha (key, body, algorithm) {
@@ -84569,7 +84680,7 @@ exports.plaintext = plaintext
84569
84680
  exports.sign = sign
84570
84681
  exports.rfc3986 = rfc3986
84571
84682
  exports.generateBase = generateBase
84572
- },{"crypto":237}],616:[function(require,module,exports){
84683
+ },{"crypto":237}],618:[function(require,module,exports){
84573
84684
  (function (process){(function (){
84574
84685
  // Generated by CoffeeScript 1.12.2
84575
84686
  (function() {
@@ -84609,7 +84720,7 @@ exports.generateBase = generateBase
84609
84720
 
84610
84721
 
84611
84722
  }).call(this)}).call(this,require('_process'))
84612
- },{"_process":335}],617:[function(require,module,exports){
84723
+ },{"_process":335}],619:[function(require,module,exports){
84613
84724
  module.exports=[
84614
84725
  "ac",
84615
84726
  "com.ac",
@@ -93986,7 +94097,7 @@ module.exports=[
93986
94097
  "virtualserver.io",
93987
94098
  "enterprisecloud.nu"
93988
94099
  ]
93989
- },{}],618:[function(require,module,exports){
94100
+ },{}],620:[function(require,module,exports){
93990
94101
  /*eslint no-var:0, prefer-arrow-callback: 0, object-shorthand: 0 */
93991
94102
  'use strict';
93992
94103
 
@@ -94257,7 +94368,7 @@ exports.isValid = function (domain) {
94257
94368
  return Boolean(parsed.domain && parsed.listed);
94258
94369
  };
94259
94370
 
94260
- },{"./data/rules.json":617,"punycode":343}],619:[function(require,module,exports){
94371
+ },{"./data/rules.json":619,"punycode":343}],621:[function(require,module,exports){
94261
94372
  'use strict';
94262
94373
 
94263
94374
  var replace = String.prototype.replace;
@@ -94277,7 +94388,7 @@ module.exports = {
94277
94388
  RFC3986: 'RFC3986'
94278
94389
  };
94279
94390
 
94280
- },{}],620:[function(require,module,exports){
94391
+ },{}],622:[function(require,module,exports){
94281
94392
  'use strict';
94282
94393
 
94283
94394
  var stringify = require('./stringify');
@@ -94290,7 +94401,7 @@ module.exports = {
94290
94401
  stringify: stringify
94291
94402
  };
94292
94403
 
94293
- },{"./formats":619,"./parse":621,"./stringify":622}],621:[function(require,module,exports){
94404
+ },{"./formats":621,"./parse":623,"./stringify":624}],623:[function(require,module,exports){
94294
94405
  'use strict';
94295
94406
 
94296
94407
  var utils = require('./utils');
@@ -94467,7 +94578,7 @@ module.exports = function (str, opts) {
94467
94578
  return utils.compact(obj);
94468
94579
  };
94469
94580
 
94470
- },{"./utils":623}],622:[function(require,module,exports){
94581
+ },{"./utils":625}],624:[function(require,module,exports){
94471
94582
  'use strict';
94472
94583
 
94473
94584
  var utils = require('./utils');
@@ -94686,7 +94797,7 @@ module.exports = function (object, opts) {
94686
94797
  return joined.length > 0 ? prefix + joined : '';
94687
94798
  };
94688
94799
 
94689
- },{"./formats":619,"./utils":623}],623:[function(require,module,exports){
94800
+ },{"./formats":621,"./utils":625}],625:[function(require,module,exports){
94690
94801
  'use strict';
94691
94802
 
94692
94803
  var has = Object.prototype.hasOwnProperty;
@@ -94903,7 +95014,7 @@ module.exports = {
94903
95014
  merge: merge
94904
95015
  };
94905
95016
 
94906
- },{}],624:[function(require,module,exports){
95017
+ },{}],626:[function(require,module,exports){
94907
95018
  // Copyright 2010-2012 Mikeal Rogers
94908
95019
  //
94909
95020
  // Licensed under the Apache License, Version 2.0 (the "License");
@@ -95060,7 +95171,7 @@ Object.defineProperty(request, 'debug', {
95060
95171
  }
95061
95172
  })
95062
95173
 
95063
- },{"./lib/cookies":626,"./lib/helpers":630,"./request":639,"extend":570}],625:[function(require,module,exports){
95174
+ },{"./lib/cookies":628,"./lib/helpers":632,"./request":641,"extend":572}],627:[function(require,module,exports){
95064
95175
  'use strict'
95065
95176
 
95066
95177
  var caseless = require('caseless')
@@ -95229,7 +95340,7 @@ Auth.prototype.onResponse = function (response) {
95229
95340
 
95230
95341
  exports.Auth = Auth
95231
95342
 
95232
- },{"./helpers":630,"caseless":563,"uuid/v4":638}],626:[function(require,module,exports){
95343
+ },{"./helpers":632,"caseless":565,"uuid/v4":640}],628:[function(require,module,exports){
95233
95344
  'use strict'
95234
95345
 
95235
95346
  var tough = require('tough-cookie')
@@ -95269,7 +95380,7 @@ exports.jar = function (store) {
95269
95380
  return new RequestJar(store)
95270
95381
  }
95271
95382
 
95272
- },{"tough-cookie":667}],627:[function(require,module,exports){
95383
+ },{"tough-cookie":669}],629:[function(require,module,exports){
95273
95384
  (function (process){(function (){
95274
95385
  'use strict'
95275
95386
 
@@ -95352,7 +95463,7 @@ function getProxyFromURI (uri) {
95352
95463
  module.exports = getProxyFromURI
95353
95464
 
95354
95465
  }).call(this)}).call(this,require('_process'))
95355
- },{"_process":335}],628:[function(require,module,exports){
95466
+ },{"_process":335}],630:[function(require,module,exports){
95356
95467
  'use strict'
95357
95468
 
95358
95469
  var fs = require('fs')
@@ -95559,7 +95670,7 @@ Har.prototype.options = function (options) {
95559
95670
 
95560
95671
  exports.Har = Har
95561
95672
 
95562
- },{"extend":570,"fs":225,"har-validator":596,"querystring":346}],629:[function(require,module,exports){
95673
+ },{"extend":572,"fs":225,"har-validator":598,"querystring":346}],631:[function(require,module,exports){
95563
95674
  'use strict'
95564
95675
 
95565
95676
  var crypto = require('crypto')
@@ -95650,7 +95761,7 @@ exports.header = function (uri, method, opts) {
95650
95761
  return header
95651
95762
  }
95652
95763
 
95653
- },{"crypto":237}],630:[function(require,module,exports){
95764
+ },{"crypto":237}],632:[function(require,module,exports){
95654
95765
  (function (process,setImmediate){(function (){
95655
95766
  'use strict'
95656
95767
 
@@ -95720,7 +95831,7 @@ exports.version = version
95720
95831
  exports.defer = defer
95721
95832
 
95722
95833
  }).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){
95834
+ },{"_process":335,"crypto":237,"json-stringify-safe":609,"safe-buffer":642,"timers":393}],633:[function(require,module,exports){
95724
95835
  'use strict'
95725
95836
 
95726
95837
  var uuid = require('uuid/v4')
@@ -95834,7 +95945,7 @@ Multipart.prototype.onRequest = function (options) {
95834
95945
 
95835
95946
  exports.Multipart = Multipart
95836
95947
 
95837
- },{"combined-stream":564,"isstream":603,"safe-buffer":640,"uuid/v4":638}],632:[function(require,module,exports){
95948
+ },{"combined-stream":566,"isstream":605,"safe-buffer":642,"uuid/v4":640}],634:[function(require,module,exports){
95838
95949
  'use strict'
95839
95950
 
95840
95951
  var url = require('url')
@@ -95984,7 +96095,7 @@ OAuth.prototype.onRequest = function (_oauth) {
95984
96095
 
95985
96096
  exports.OAuth = OAuth
95986
96097
 
95987
- },{"caseless":563,"crypto":237,"oauth-sign":615,"qs":620,"safe-buffer":640,"url":395,"uuid/v4":638}],633:[function(require,module,exports){
96098
+ },{"caseless":565,"crypto":237,"oauth-sign":617,"qs":622,"safe-buffer":642,"url":395,"uuid/v4":640}],635:[function(require,module,exports){
95988
96099
  'use strict'
95989
96100
 
95990
96101
  var qs = require('qs')
@@ -96036,7 +96147,7 @@ Querystring.prototype.unescape = querystring.unescape
96036
96147
 
96037
96148
  exports.Querystring = Querystring
96038
96149
 
96039
- },{"qs":620,"querystring":346}],634:[function(require,module,exports){
96150
+ },{"qs":622,"querystring":346}],636:[function(require,module,exports){
96040
96151
  'use strict'
96041
96152
 
96042
96153
  var url = require('url')
@@ -96192,7 +96303,7 @@ Redirect.prototype.onResponse = function (response) {
96192
96303
 
96193
96304
  exports.Redirect = Redirect
96194
96305
 
96195
- },{"url":395}],635:[function(require,module,exports){
96306
+ },{"url":395}],637:[function(require,module,exports){
96196
96307
  'use strict'
96197
96308
 
96198
96309
  var url = require('url')
@@ -96369,7 +96480,7 @@ Tunnel.defaultProxyHeaderWhiteList = defaultProxyHeaderWhiteList
96369
96480
  Tunnel.defaultProxyHeaderExclusiveList = defaultProxyHeaderExclusiveList
96370
96481
  exports.Tunnel = Tunnel
96371
96482
 
96372
- },{"tunnel-agent":674,"url":395}],636:[function(require,module,exports){
96483
+ },{"tunnel-agent":676,"url":395}],638:[function(require,module,exports){
96373
96484
  /**
96374
96485
  * Convert array of 16 byte values to UUID string format of the form:
96375
96486
  * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
@@ -96397,7 +96508,7 @@ function bytesToUuid(buf, offset) {
96397
96508
 
96398
96509
  module.exports = bytesToUuid;
96399
96510
 
96400
- },{}],637:[function(require,module,exports){
96511
+ },{}],639:[function(require,module,exports){
96401
96512
  // Unique ID creation requires a high quality random # generator. In the
96402
96513
  // browser this is a little complicated due to unknown quality of Math.random()
96403
96514
  // and inconsistent support for the `crypto` API. We do the best we can via
@@ -96433,7 +96544,7 @@ if (getRandomValues) {
96433
96544
  };
96434
96545
  }
96435
96546
 
96436
- },{}],638:[function(require,module,exports){
96547
+ },{}],640:[function(require,module,exports){
96437
96548
  var rng = require('./lib/rng');
96438
96549
  var bytesToUuid = require('./lib/bytesToUuid');
96439
96550
 
@@ -96464,7 +96575,7 @@ function v4(options, buf, offset) {
96464
96575
 
96465
96576
  module.exports = v4;
96466
96577
 
96467
- },{"./lib/bytesToUuid":636,"./lib/rng":637}],639:[function(require,module,exports){
96578
+ },{"./lib/bytesToUuid":638,"./lib/rng":639}],641:[function(require,module,exports){
96468
96579
  (function (process){(function (){
96469
96580
  'use strict'
96470
96581
 
@@ -98021,9 +98132,9 @@ Request.prototype.toJSON = requestToJSON
98021
98132
  module.exports = Request
98022
98133
 
98023
98134
  }).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){
98135
+ },{"./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
98136
  arguments[4][358][0].apply(exports,arguments)
98026
- },{"buffer":227,"dup":358}],641:[function(require,module,exports){
98137
+ },{"buffer":227,"dup":358}],643:[function(require,module,exports){
98027
98138
  (function (process){(function (){
98028
98139
  /* eslint-disable node/no-deprecated-api */
98029
98140
 
@@ -98104,7 +98215,7 @@ if (!safer.constants) {
98104
98215
  module.exports = safer
98105
98216
 
98106
98217
  }).call(this)}).call(this,require('_process'))
98107
- },{"_process":335,"buffer":227}],642:[function(require,module,exports){
98218
+ },{"_process":335,"buffer":227}],644:[function(require,module,exports){
98108
98219
  // Copyright 2015 Joyent, Inc.
98109
98220
 
98110
98221
  var Buffer = require('safer-buffer').Buffer;
@@ -98274,7 +98385,7 @@ module.exports = {
98274
98385
  curves: curves
98275
98386
  };
98276
98387
 
98277
- },{"safer-buffer":641}],643:[function(require,module,exports){
98388
+ },{"safer-buffer":643}],645:[function(require,module,exports){
98278
98389
  // Copyright 2016 Joyent, Inc.
98279
98390
 
98280
98391
  module.exports = Certificate;
@@ -98686,7 +98797,7 @@ Certificate._oldVersionDetect = function (obj) {
98686
98797
  return ([1, 0]);
98687
98798
  };
98688
98799
 
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){
98800
+ },{"./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
98801
  // Copyright 2017 Joyent, Inc.
98691
98802
 
98692
98803
  module.exports = {
@@ -99085,7 +99196,7 @@ function generateECDSA(curve) {
99085
99196
  }
99086
99197
  }
99087
99198
 
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){
99199
+ },{"./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
99200
  // Copyright 2015 Joyent, Inc.
99090
99201
 
99091
99202
  module.exports = {
@@ -99179,7 +99290,7 @@ Signer.prototype.sign = function () {
99179
99290
  return (sigObj);
99180
99291
  };
99181
99292
 
99182
- },{"./signature":664,"assert-plus":558,"safer-buffer":641,"stream":386,"tweetnacl":675,"util":400}],646:[function(require,module,exports){
99293
+ },{"./signature":666,"assert-plus":560,"safer-buffer":643,"stream":386,"tweetnacl":677,"util":400}],648:[function(require,module,exports){
99183
99294
  // Copyright 2015 Joyent, Inc.
99184
99295
 
99185
99296
  var assert = require('assert-plus');
@@ -99265,7 +99376,7 @@ module.exports = {
99265
99376
  CertificateParseError: CertificateParseError
99266
99377
  };
99267
99378
 
99268
- },{"assert-plus":558,"util":400}],647:[function(require,module,exports){
99379
+ },{"assert-plus":560,"util":400}],649:[function(require,module,exports){
99269
99380
  // Copyright 2018 Joyent, Inc.
99270
99381
 
99271
99382
  module.exports = Fingerprint;
@@ -99487,7 +99598,7 @@ Fingerprint._oldVersionDetect = function (obj) {
99487
99598
  return ([1, 0]);
99488
99599
  };
99489
99600
 
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){
99601
+ },{"./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
99602
  // Copyright 2018 Joyent, Inc.
99492
99603
 
99493
99604
  module.exports = {
@@ -99613,7 +99724,7 @@ function write(key, options) {
99613
99724
  throw (new Error('"auto" format cannot be used for writing'));
99614
99725
  }
99615
99726
 
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){
99727
+ },{"../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
99728
  // Copyright 2017 Joyent, Inc.
99618
99729
 
99619
99730
  module.exports = {
@@ -99902,7 +100013,7 @@ function write(key, options) {
99902
100013
  }
99903
100014
  }
99904
100015
 
99905
- },{"../dhe":644,"../key":662,"../private-key":663,"../ssh-buffer":665,"../utils":666,"assert-plus":558,"safer-buffer":641}],650:[function(require,module,exports){
100016
+ },{"../dhe":646,"../key":664,"../private-key":665,"../ssh-buffer":667,"../utils":668,"assert-plus":560,"safer-buffer":643}],652:[function(require,module,exports){
99906
100017
  // Copyright 2017 Joyent, Inc.
99907
100018
 
99908
100019
  module.exports = {
@@ -100256,7 +100367,7 @@ function getCertType(key) {
100256
100367
  throw (new Error('Unsupported key type ' + key.type));
100257
100368
  }
100258
100369
 
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){
100370
+ },{"../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
100371
  // Copyright 2018 Joyent, Inc.
100261
100372
 
100262
100373
  module.exports = {
@@ -100548,7 +100659,7 @@ function write(key, options, type) {
100548
100659
  return (buf.slice(0, o));
100549
100660
  }
100550
100661
 
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){
100662
+ },{"../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
100663
  // Copyright 2015 Joyent, Inc.
100553
100664
 
100554
100665
  module.exports = {
@@ -100923,7 +101034,7 @@ function writePkcs1EdDSAPublic(der, key) {
100923
101034
  throw (new Error('Public keys are not supported for EdDSA PKCS#1'));
100924
101035
  }
100925
101036
 
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){
101037
+ },{"../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
101038
  // Copyright 2018 Joyent, Inc.
100928
101039
 
100929
101040
  module.exports = {
@@ -101556,7 +101667,7 @@ function writePkcs8EdDSAPrivate(key, der) {
101556
101667
  der.endSequence();
101557
101668
  }
101558
101669
 
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){
101670
+ },{"../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
101671
  // Copyright 2018 Joyent, Inc.
101561
101672
 
101562
101673
  module.exports = {
@@ -101752,7 +101863,7 @@ function wrap(txt, len) {
101752
101863
  return (lines);
101753
101864
  }
101754
101865
 
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){
101866
+ },{"../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
101867
  // Copyright 2015 Joyent, Inc.
101757
101868
 
101758
101869
  module.exports = {
@@ -101920,7 +102031,7 @@ function write(key, options) {
101920
102031
  return (buf.toBuffer());
101921
102032
  }
101922
102033
 
101923
- },{"../algs":642,"../key":662,"../private-key":663,"../ssh-buffer":665,"../utils":666,"assert-plus":558,"safer-buffer":641}],656:[function(require,module,exports){
102034
+ },{"../algs":644,"../key":664,"../private-key":665,"../ssh-buffer":667,"../utils":668,"assert-plus":560,"safer-buffer":643}],658:[function(require,module,exports){
101924
102035
  // Copyright 2015 Joyent, Inc.
101925
102036
 
101926
102037
  module.exports = {
@@ -102184,7 +102295,7 @@ function write(key, options) {
102184
102295
  return (buf.slice(0, o));
102185
102296
  }
102186
102297
 
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){
102298
+ },{"../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
102299
  // Copyright 2015 Joyent, Inc.
102189
102300
 
102190
102301
  module.exports = {
@@ -102301,7 +102412,7 @@ function write(key, options) {
102301
102412
  return (Buffer.from(parts.join(' ')));
102302
102413
  }
102303
102414
 
102304
- },{"../key":662,"../private-key":663,"../utils":666,"./rfc4253":655,"./ssh-private":656,"assert-plus":558,"safer-buffer":641}],658:[function(require,module,exports){
102415
+ },{"../key":664,"../private-key":665,"../utils":668,"./rfc4253":657,"./ssh-private":658,"assert-plus":560,"safer-buffer":643}],660:[function(require,module,exports){
102305
102416
  // Copyright 2016 Joyent, Inc.
102306
102417
 
102307
102418
  var x509 = require('./x509');
@@ -102391,7 +102502,7 @@ function write(cert, options) {
102391
102502
  return (buf.slice(0, o));
102392
102503
  }
102393
102504
 
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){
102505
+ },{"../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
102506
  // Copyright 2017 Joyent, Inc.
102396
102507
 
102397
102508
  module.exports = {
@@ -103145,7 +103256,7 @@ function writeBitField(setBits, bitIndex) {
103145
103256
  return (bits);
103146
103257
  }
103147
103258
 
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){
103259
+ },{"../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
103260
  // Copyright 2017 Joyent, Inc.
103150
103261
 
103151
103262
  module.exports = Identity;
@@ -103520,7 +103631,7 @@ Identity._oldVersionDetect = function (obj) {
103520
103631
  return ([1, 0]);
103521
103632
  };
103522
103633
 
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){
103634
+ },{"./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
103635
  // Copyright 2015 Joyent, Inc.
103525
103636
 
103526
103637
  var Key = require('./key');
@@ -103562,7 +103673,7 @@ module.exports = {
103562
103673
  CertificateParseError: errs.CertificateParseError
103563
103674
  };
103564
103675
 
103565
- },{"./certificate":643,"./errors":646,"./fingerprint":647,"./identity":660,"./key":662,"./private-key":663,"./signature":664}],662:[function(require,module,exports){
103676
+ },{"./certificate":645,"./errors":648,"./fingerprint":649,"./identity":662,"./key":664,"./private-key":665,"./signature":666}],664:[function(require,module,exports){
103566
103677
  (function (Buffer){(function (){
103567
103678
  // Copyright 2018 Joyent, Inc.
103568
103679
 
@@ -103860,7 +103971,7 @@ Key._oldVersionDetect = function (obj) {
103860
103971
  };
103861
103972
 
103862
103973
  }).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){
103974
+ },{"../../../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
103975
  // Copyright 2017 Joyent, Inc.
103865
103976
 
103866
103977
  module.exports = PrivateKey;
@@ -104109,7 +104220,7 @@ PrivateKey._oldVersionDetect = function (obj) {
104109
104220
  return ([1, 0]);
104110
104221
  };
104111
104222
 
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){
104223
+ },{"./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
104224
  // Copyright 2015 Joyent, Inc.
104114
104225
 
104115
104226
  module.exports = Signature;
@@ -104425,7 +104536,7 @@ Signature._oldVersionDetect = function (obj) {
104425
104536
  return ([1, 0]);
104426
104537
  };
104427
104538
 
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){
104539
+ },{"./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
104540
  // Copyright 2015 Joyent, Inc.
104430
104541
 
104431
104542
  module.exports = SSHBuffer;
@@ -104576,7 +104687,7 @@ SSHBuffer.prototype.write = function (buf) {
104576
104687
  this._offset += buf.length;
104577
104688
  };
104578
104689
 
104579
- },{"assert-plus":558,"safer-buffer":641}],666:[function(require,module,exports){
104690
+ },{"assert-plus":560,"safer-buffer":643}],668:[function(require,module,exports){
104580
104691
  // Copyright 2015 Joyent, Inc.
104581
104692
 
104582
104693
  module.exports = {
@@ -104982,7 +105093,7 @@ function opensshCipherInfo(cipher) {
104982
105093
  return (inf);
104983
105094
  }
104984
105095
 
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){
105096
+ },{"./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
105097
  /*!
104987
105098
  * Copyright (c) 2015, Salesforce.com, Inc.
104988
105099
  * All rights reserved.
@@ -106466,7 +106577,7 @@ exports.permuteDomain = require('./permuteDomain').permuteDomain;
106466
106577
  exports.permutePath = permutePath;
106467
106578
  exports.canonicalDomain = canonicalDomain;
106468
106579
 
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){
106580
+ },{"./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
106581
  /*!
106471
106582
  * Copyright (c) 2015, Salesforce.com, Inc.
106472
106583
  * All rights reserved.
@@ -106649,7 +106760,7 @@ MemoryCookieStore.prototype.getAllCookies = function(cb) {
106649
106760
  cb(null, cookies);
106650
106761
  };
106651
106762
 
106652
- },{"./pathMatch":669,"./permuteDomain":670,"./store":672,"util":400}],669:[function(require,module,exports){
106763
+ },{"./pathMatch":671,"./permuteDomain":672,"./store":674,"util":400}],671:[function(require,module,exports){
106653
106764
  /*!
106654
106765
  * Copyright (c) 2015, Salesforce.com, Inc.
106655
106766
  * All rights reserved.
@@ -106712,7 +106823,7 @@ function pathMatch (reqPath, cookiePath) {
106712
106823
 
106713
106824
  exports.pathMatch = pathMatch;
106714
106825
 
106715
- },{}],670:[function(require,module,exports){
106826
+ },{}],672:[function(require,module,exports){
106716
106827
  /*!
106717
106828
  * Copyright (c) 2015, Salesforce.com, Inc.
106718
106829
  * All rights reserved.
@@ -106770,7 +106881,7 @@ function permuteDomain (domain) {
106770
106881
 
106771
106882
  exports.permuteDomain = permuteDomain;
106772
106883
 
106773
- },{"./pubsuffix-psl":671}],671:[function(require,module,exports){
106884
+ },{"./pubsuffix-psl":673}],673:[function(require,module,exports){
106774
106885
  /*!
106775
106886
  * Copyright (c) 2018, Salesforce.com, Inc.
106776
106887
  * All rights reserved.
@@ -106810,7 +106921,7 @@ function getPublicSuffix(domain) {
106810
106921
 
106811
106922
  exports.getPublicSuffix = getPublicSuffix;
106812
106923
 
106813
- },{"psl":618}],672:[function(require,module,exports){
106924
+ },{"psl":620}],674:[function(require,module,exports){
106814
106925
  /*!
106815
106926
  * Copyright (c) 2015, Salesforce.com, Inc.
106816
106927
  * All rights reserved.
@@ -106887,11 +106998,11 @@ Store.prototype.getAllCookies = function(cb) {
106887
106998
  throw new Error('getAllCookies is not implemented (therefore jar cannot be serialized)');
106888
106999
  };
106889
107000
 
106890
- },{}],673:[function(require,module,exports){
107001
+ },{}],675:[function(require,module,exports){
106891
107002
  // generated by genversion
106892
107003
  module.exports = '2.5.0'
106893
107004
 
106894
- },{}],674:[function(require,module,exports){
107005
+ },{}],676:[function(require,module,exports){
106895
107006
  (function (process){(function (){
106896
107007
  'use strict'
106897
107008
 
@@ -107139,7 +107250,7 @@ if (process.env.NODE_DEBUG && /\btunnel\b/.test(process.env.NODE_DEBUG)) {
107139
107250
  exports.debug = debug // for test
107140
107251
 
107141
107252
  }).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){
107253
+ },{"_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
107254
  (function(nacl) {
107144
107255
  'use strict';
107145
107256
 
@@ -109529,7 +109640,7 @@ nacl.setPRNG = function(fn) {
109529
109640
 
109530
109641
  })(typeof module !== 'undefined' && module.exports ? module.exports : (self.nacl = self.nacl || {}));
109531
109642
 
109532
- },{"crypto":179}],676:[function(require,module,exports){
109643
+ },{"crypto":179}],678:[function(require,module,exports){
109533
109644
  /** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */
109534
109645
  (function (global, factory) {
109535
109646
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
@@ -110974,7 +111085,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
110974
111085
  })));
110975
111086
 
110976
111087
 
110977
- },{}],677:[function(require,module,exports){
111088
+ },{}],679:[function(require,module,exports){
110978
111089
  var v1 = require('./v1');
110979
111090
  var v4 = require('./v4');
110980
111091
 
@@ -110984,7 +111095,7 @@ uuid.v4 = v4;
110984
111095
 
110985
111096
  module.exports = uuid;
110986
111097
 
110987
- },{"./v1":680,"./v4":681}],678:[function(require,module,exports){
111098
+ },{"./v1":682,"./v4":683}],680:[function(require,module,exports){
110988
111099
  /**
110989
111100
  * Convert array of 16 byte values to UUID string format of the form:
110990
111101
  * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
@@ -111009,7 +111120,7 @@ function bytesToUuid(buf, offset) {
111009
111120
 
111010
111121
  module.exports = bytesToUuid;
111011
111122
 
111012
- },{}],679:[function(require,module,exports){
111123
+ },{}],681:[function(require,module,exports){
111013
111124
  (function (global){(function (){
111014
111125
  // Unique ID creation requires a high quality random # generator. In the
111015
111126
  // browser this is a little complicated due to unknown quality of Math.random()
@@ -111046,7 +111157,7 @@ if (!rng) {
111046
111157
  module.exports = rng;
111047
111158
 
111048
111159
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
111049
- },{}],680:[function(require,module,exports){
111160
+ },{}],682:[function(require,module,exports){
111050
111161
  var rng = require('./lib/rng');
111051
111162
  var bytesToUuid = require('./lib/bytesToUuid');
111052
111163
 
@@ -111148,7 +111259,7 @@ function v1(options, buf, offset) {
111148
111259
 
111149
111260
  module.exports = v1;
111150
111261
 
111151
- },{"./lib/bytesToUuid":678,"./lib/rng":679}],681:[function(require,module,exports){
111262
+ },{"./lib/bytesToUuid":680,"./lib/rng":681}],683:[function(require,module,exports){
111152
111263
  var rng = require('./lib/rng');
111153
111264
  var bytesToUuid = require('./lib/bytesToUuid');
111154
111265
 
@@ -111179,7 +111290,7 @@ function v4(options, buf, offset) {
111179
111290
 
111180
111291
  module.exports = v4;
111181
111292
 
111182
- },{"./lib/bytesToUuid":678,"./lib/rng":679}],682:[function(require,module,exports){
111293
+ },{"./lib/bytesToUuid":680,"./lib/rng":681}],684:[function(require,module,exports){
111183
111294
  /*
111184
111295
  * verror.js: richer JavaScript errors
111185
111296
  */
@@ -111632,4 +111743,4 @@ WError.prototype.cause = function we_cause(c)
111632
111743
  return (this.jse_cause);
111633
111744
  };
111634
111745
 
111635
- },{"assert-plus":558,"core-util-is":565,"extsprintf":571,"util":400}]},{},[403]);
111746
+ },{"assert-plus":560,"core-util-is":567,"extsprintf":573,"util":400}]},{},[403]);