@microsoft/applicationinsights-analytics-js 2.7.1-nightly.202110-16 → 2.7.1-nightly.202110-20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/browser/applicationinsights-analytics-js.integrity.json +9 -9
- package/browser/applicationinsights-analytics-js.js +5 -4
- package/browser/applicationinsights-analytics-js.js.map +1 -1
- package/browser/applicationinsights-analytics-js.min.js +2 -2
- package/browser/applicationinsights-analytics-js.min.js.map +1 -1
- package/dist/applicationinsights-analytics-js.api.json +1 -1
- package/dist/applicationinsights-analytics-js.d.ts +1 -1
- package/dist/applicationinsights-analytics-js.js +5 -4
- package/dist/applicationinsights-analytics-js.js.map +1 -1
- package/dist/applicationinsights-analytics-js.min.js +2 -2
- package/dist/applicationinsights-analytics-js.min.js.map +1 -1
- package/dist/applicationinsights-analytics-js.rollup.d.ts +1 -1
- package/dist-esm/JavaScriptSDK/ApplicationInsights.js +2 -2
- package/dist-esm/JavaScriptSDK/ApplicationInsights.js.map +1 -1
- package/dist-esm/JavaScriptSDK/Telemetry/PageViewManager.js +1 -1
- package/dist-esm/JavaScriptSDK/Telemetry/PageViewPerformanceManager.js +1 -1
- package/dist-esm/JavaScriptSDK/Telemetry/PageVisitTimeManager.js +1 -1
- package/dist-esm/JavaScriptSDK.Interfaces/ITelemetryConfig.js +1 -1
- package/dist-esm/applicationinsights-analytics-js.js +1 -1
- package/package.json +5 -5
- package/src/JavaScriptSDK/ApplicationInsights.ts +1 -1
- package/types/tsdoc-metadata.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Microsoft Application Insights JavaScript SDK - Web Analytics, 2.7.1-nightly.202110-
|
|
2
|
+
* Microsoft Application Insights JavaScript SDK - Web Analytics, 2.7.1-nightly.202110-20
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*
|
|
5
5
|
* Microsoft Application Insights Team
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Application Insights JavaScript SDK - Web Analytics, 2.7.1-nightly.202110-
|
|
2
|
+
* Application Insights JavaScript SDK - Web Analytics, 2.7.1-nightly.202110-20
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*/
|
|
5
5
|
(function (global, factory) {
|
|
@@ -727,7 +727,7 @@
|
|
|
727
727
|
if (!!theConsole) {
|
|
728
728
|
var logFunc = "log";
|
|
729
729
|
if (theConsole[func]) {
|
|
730
|
-
logFunc =
|
|
730
|
+
logFunc = func;
|
|
731
731
|
}
|
|
732
732
|
if (isFunction(theConsole[logFunc])) {
|
|
733
733
|
theConsole[logFunc](message);
|
|
@@ -2411,7 +2411,7 @@
|
|
|
2411
2411
|
|
|
2412
2412
|
var Metric = /** @class */ (function (_super) {
|
|
2413
2413
|
__extendsFn(Metric, _super);
|
|
2414
|
-
function Metric(logger, name, value, count, min, max, properties, measurements) {
|
|
2414
|
+
function Metric(logger, name, value, count, min, max, stdDev, properties, measurements) {
|
|
2415
2415
|
var _this = _super.call(this) || this;
|
|
2416
2416
|
_this.aiDataContract = {
|
|
2417
2417
|
ver: 1 ,
|
|
@@ -2424,6 +2424,7 @@
|
|
|
2424
2424
|
dataPoint.min = isNaN(min) || min === null ? undefined : min;
|
|
2425
2425
|
dataPoint.name = dataSanitizeString(logger, name) || strNotSpecified;
|
|
2426
2426
|
dataPoint.value = value;
|
|
2427
|
+
dataPoint.stdDev = isNaN(stdDev) || stdDev === null ? undefined : stdDev;
|
|
2427
2428
|
_this.metrics = [dataPoint];
|
|
2428
2429
|
_this.properties = dataSanitizeProperties(logger, properties);
|
|
2429
2430
|
_this.measurements = dataSanitizeMeasurements(logger, measurements);
|
|
@@ -3406,7 +3407,7 @@
|
|
|
3406
3407
|
config.disableFlushOnUnload = stringToBoolOrDefault(config.disableFlushOnUnload, config.disableFlushOnBeforeUnload);
|
|
3407
3408
|
return config;
|
|
3408
3409
|
};
|
|
3409
|
-
ApplicationInsights.Version = "2.7.1-nightly.202110-
|
|
3410
|
+
ApplicationInsights.Version = "2.7.1-nightly.202110-20";
|
|
3410
3411
|
return ApplicationInsights;
|
|
3411
3412
|
}(BaseTelemetryPlugin));
|
|
3412
3413
|
var Timing = /** @class */ (function () {
|