o11y 252.4.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.
- package/dist/modules/o11y/client/client.js +4 -4
- package/dist/modules/o11y/client/client.js.map +1 -1
- package/dist/modules/o11y/client/interfaces-private/WebVitalsData.d.ts +9 -0
- package/dist/modules/o11y/client/version.d.ts +2 -1
- package/dist/modules/o11y/client/web_vitals/WebVitals.d.ts +3 -1
- package/dist/modules/o11y/collectors/interfaces-private/WebVitalsData.d.ts +9 -0
- package/dist/modules/o11y/collectors/version.d.ts +2 -1
- package/dist/modules/o11y/collectors/web_vitals/WebVitals.d.ts +3 -1
- package/dist/modules/o11y/core_envelope/core_envelope.js +1 -1
- package/dist/modules/o11y/core_envelope/core_envelope.js.map +1 -1
- package/dist/modules/o11y/core_envelope/interfaces-private/WebVitalsData.d.ts +9 -0
- package/dist/modules/o11y/core_envelope/version.d.ts +2 -1
- package/dist/modules/o11y/core_envelope/web_vitals/WebVitals.d.ts +3 -1
- package/dist/modules/o11y/shared/interfaces-private/WebVitalsData.d.ts +9 -0
- package/dist/modules/o11y/shared/version.d.ts +2 -1
- package/dist/modules/o11y/shared/web_vitals/WebVitals.d.ts +3 -1
- package/dist/modules/o11y/simple_collector/interfaces-private/WebVitalsData.d.ts +9 -0
- package/dist/modules/o11y/simple_collector/version.d.ts +2 -1
- package/dist/modules/o11y/simple_collector/web_vitals/WebVitals.d.ts +3 -1
- package/dist/modules/o11y/web_vitals/interfaces-private/WebVitalsData.d.ts +9 -0
- package/dist/modules/o11y/web_vitals/version.d.ts +2 -1
- package/dist/modules/o11y/web_vitals/web_vitals/WebVitals.d.ts +3 -1
- package/dist/modules/o11y/web_vitals/web_vitals.js +34 -14
- package/dist/modules/o11y/web_vitals/web_vitals.js.map +1 -1
- package/package.json +3 -3
|
@@ -755,20 +755,20 @@ class Tracing {
|
|
|
755
755
|
}
|
|
756
756
|
}
|
|
757
757
|
}
|
|
758
|
-
Tracing._originalXhr.prototype.open = function (method, url,
|
|
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.
|
|
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.
|
|
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.
|
|
2657
|
+
const version = '252.6.0';
|
|
2658
2658
|
|
|
2659
2659
|
const idleDetector = new IdleDetectorImpl({
|
|
2660
2660
|
logThreshold: 300,
|