o11y 252.5.0 → 252.6.0

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.
@@ -755,20 +755,20 @@ class Tracing {
755
755
  }
756
756
  }
757
757
  }
758
- Tracing._originalXhr.prototype.open = function (method, url, async, username, password) {
758
+ Tracing._originalXhr.prototype.open = function (method, url, __async, __username, __password) {
759
759
  this._o11y = {
760
760
  method,
761
761
  url: url === null || url === void 0 ? void 0 : url.toString()
762
762
  };
763
763
  this._o11y.absoluteUrl = utility.tryGetAbsoluteUrl(this._o11y.url);
764
- Tracing._originalXhrOpen.call(this, method, url, async, username, password);
764
+ Tracing._originalXhrOpen.apply(this, arguments);
765
765
  };
766
766
  Tracing._originalXhr.prototype.setRequestHeader = function (name, value) {
767
767
  var _a;
768
768
  if (((_a = name === null || name === void 0 ? void 0 : name.toLowerCase) === null || _a === void 0 ? void 0 : _a.call(name)) === headerRequestId.toLowerCase()) {
769
769
  this._o11y.requestId = value;
770
770
  }
771
- Tracing._originalXhrSetRequestHeader.call(this, name, value);
771
+ Tracing._originalXhrSetRequestHeader.apply(this, arguments);
772
772
  };
773
773
  Tracing._originalXhr.prototype.send = function (...args) {
774
774
  let activity;
@@ -2654,7 +2654,7 @@ class ConsoleCollector {
2654
2654
  }
2655
2655
  }
2656
2656
 
2657
- const version = '252.5.0';
2657
+ const version = '252.6.0';
2658
2658
 
2659
2659
  const idleDetector = new IdleDetectorImpl({
2660
2660
  logThreshold: 300,