@microsoft/applicationinsights-properties-js 2.8.0-beta.2203-09 → 2.8.0-beta.2203-12
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-properties-js.integrity.json +9 -9
- package/browser/applicationinsights-properties-js.js +12 -6
- package/browser/applicationinsights-properties-js.js.map +1 -1
- package/browser/applicationinsights-properties-js.min.js +2 -2
- package/browser/applicationinsights-properties-js.min.js.map +1 -1
- package/dist/applicationinsights-properties-js.api.json +1 -1
- package/dist/applicationinsights-properties-js.d.ts +1 -1
- package/dist/applicationinsights-properties-js.js +12 -6
- package/dist/applicationinsights-properties-js.js.map +1 -1
- package/dist/applicationinsights-properties-js.min.js +2 -2
- package/dist/applicationinsights-properties-js.min.js.map +1 -1
- package/dist/applicationinsights-properties-js.rollup.d.ts +1 -1
- package/dist-esm/Context/Application.js +1 -1
- package/dist-esm/Context/Device.js +1 -1
- package/dist-esm/Context/Internal.js +2 -2
- package/dist-esm/Context/Internal.js.map +1 -1
- package/dist-esm/Context/Location.js +1 -1
- package/dist-esm/Context/Session.js +1 -1
- package/dist-esm/Context/TelemetryTrace.js +1 -1
- package/dist-esm/Context/User.js +1 -1
- package/dist-esm/Context/User.js.map +1 -1
- package/dist-esm/Interfaces/IPropTelemetryContext.js +1 -1
- package/dist-esm/Interfaces/ITelemetryConfig.js +1 -1
- package/dist-esm/PropertiesPlugin.js +1 -1
- package/dist-esm/TelemetryContext.js +1 -1
- package/dist-esm/applicationinsights-properties-js.js +1 -1
- package/package.json +4 -4
- package/src/Context/Internal.ts +1 -1
- package/src/Context/Session.ts +2 -2
- package/src/Context/User.ts +1 -1
- package/src/PropertiesPlugin.ts +1 -1
- package/src/TelemetryContext.ts +1 -1
- package/types/Context/User.d.ts +5 -5
- package/types/tsdoc-metadata.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Application Insights JavaScript SDK - Properties Plugin, 2.8.0-beta.2203-
|
|
2
|
+
* Application Insights JavaScript SDK - Properties Plugin, 2.8.0-beta.2203-12
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*/
|
|
5
5
|
(function (global, factory) {
|
|
@@ -62,7 +62,9 @@
|
|
|
62
62
|
(getGlobal() || {})["Reflect"];
|
|
63
63
|
var extendStaticsFn = function (d, b) {
|
|
64
64
|
extendStaticsFn = ObjClass["setPrototypeOf"] ||
|
|
65
|
-
({ __proto__: [] } instanceof Array && function (d, b) {
|
|
65
|
+
({ __proto__: [] } instanceof Array && function (d, b) {
|
|
66
|
+
d.__proto__ = b;
|
|
67
|
+
}) ||
|
|
66
68
|
function (d, b) {
|
|
67
69
|
for (var p in b) {
|
|
68
70
|
if (b[strShimHasOwnProperty](p)) {
|
|
@@ -77,7 +79,9 @@
|
|
|
77
79
|
throwTypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
78
80
|
}
|
|
79
81
|
extendStaticsFn(d, b);
|
|
80
|
-
function __() {
|
|
82
|
+
function __() {
|
|
83
|
+
this.constructor = d;
|
|
84
|
+
}
|
|
81
85
|
d[strShimPrototype] = b === null ? objCreateFn(b) : (__[strShimPrototype] = b[strShimPrototype], new __());
|
|
82
86
|
}
|
|
83
87
|
|
|
@@ -1151,7 +1155,7 @@
|
|
|
1151
1155
|
}
|
|
1152
1156
|
|
|
1153
1157
|
var _objDefineProperty = ObjDefineProperty;
|
|
1154
|
-
var version = "2.
|
|
1158
|
+
var version = "2.8.0-beta.2203-12";
|
|
1155
1159
|
var instanceName = "." + newId(6);
|
|
1156
1160
|
var _dataUid = 0;
|
|
1157
1161
|
function _createAccessor(target, prop, value) {
|
|
@@ -1249,7 +1253,9 @@
|
|
|
1249
1253
|
var context = {
|
|
1250
1254
|
_next: _moveNext,
|
|
1251
1255
|
ctx: {
|
|
1252
|
-
core: function () {
|
|
1256
|
+
core: function () {
|
|
1257
|
+
return core;
|
|
1258
|
+
},
|
|
1253
1259
|
diagLog: function () {
|
|
1254
1260
|
return safeGetLogger(core, config);
|
|
1255
1261
|
},
|
|
@@ -2594,7 +2600,7 @@
|
|
|
2594
2600
|
return Device;
|
|
2595
2601
|
}());
|
|
2596
2602
|
|
|
2597
|
-
var Version = "2.8.0-beta.2203-
|
|
2603
|
+
var Version = "2.8.0-beta.2203-12";
|
|
2598
2604
|
var Internal = /** @class */ (function () {
|
|
2599
2605
|
function Internal(config) {
|
|
2600
2606
|
this.sdkVersion = (config.sdkExtension && config.sdkExtension() ? config.sdkExtension() + "_" : "") + "javascript:" + Version;
|