@microsoft/applicationinsights-properties-js 2.8.0-beta.2203-09 → 2.8.0-beta.2203-10

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 (32) hide show
  1. package/browser/applicationinsights-properties-js.integrity.json +9 -9
  2. package/browser/applicationinsights-properties-js.js +11 -5
  3. package/browser/applicationinsights-properties-js.js.map +1 -1
  4. package/browser/applicationinsights-properties-js.min.js +2 -2
  5. package/browser/applicationinsights-properties-js.min.js.map +1 -1
  6. package/dist/applicationinsights-properties-js.d.ts +1 -1
  7. package/dist/applicationinsights-properties-js.js +11 -5
  8. package/dist/applicationinsights-properties-js.js.map +1 -1
  9. package/dist/applicationinsights-properties-js.min.js +2 -2
  10. package/dist/applicationinsights-properties-js.min.js.map +1 -1
  11. package/dist/applicationinsights-properties-js.rollup.d.ts +1 -1
  12. package/dist-esm/Context/Application.js +1 -1
  13. package/dist-esm/Context/Device.js +1 -1
  14. package/dist-esm/Context/Internal.js +2 -2
  15. package/dist-esm/Context/Internal.js.map +1 -1
  16. package/dist-esm/Context/Location.js +1 -1
  17. package/dist-esm/Context/Session.js +1 -1
  18. package/dist-esm/Context/TelemetryTrace.js +1 -1
  19. package/dist-esm/Context/User.js +1 -1
  20. package/dist-esm/Context/User.js.map +1 -1
  21. package/dist-esm/Interfaces/IPropTelemetryContext.js +1 -1
  22. package/dist-esm/Interfaces/ITelemetryConfig.js +1 -1
  23. package/dist-esm/PropertiesPlugin.js +1 -1
  24. package/dist-esm/TelemetryContext.js +1 -1
  25. package/dist-esm/applicationinsights-properties-js.js +1 -1
  26. package/package.json +3 -3
  27. package/src/Context/Internal.ts +1 -1
  28. package/src/Context/Session.ts +2 -2
  29. package/src/Context/User.ts +1 -1
  30. package/src/PropertiesPlugin.ts +1 -1
  31. package/src/TelemetryContext.ts +1 -1
  32. package/types/Context/User.d.ts +5 -5
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Microsoft Application Insights properties plugin, 2.8.0-beta.2203-09
2
+ * Microsoft Application Insights properties plugin, 2.8.0-beta.2203-10
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 - Properties Plugin, 2.8.0-beta.2203-09
2
+ * Application Insights JavaScript SDK - Properties Plugin, 2.8.0-beta.2203-10
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) { d.__proto__ = 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 __() { this.constructor = d; }
82
+ function __() {
83
+ this.constructor = d;
84
+ }
81
85
  d[strShimPrototype] = b === null ? objCreateFn(b) : (__[strShimPrototype] = b[strShimPrototype], new __());
82
86
  }
83
87
 
@@ -1249,7 +1253,9 @@
1249
1253
  var context = {
1250
1254
  _next: _moveNext,
1251
1255
  ctx: {
1252
- core: function () { return core; },
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-09";
2603
+ var Version = "2.8.0-beta.2203-10";
2598
2604
  var Internal = /** @class */ (function () {
2599
2605
  function Internal(config) {
2600
2606
  this.sdkVersion = (config.sdkExtension && config.sdkExtension() ? config.sdkExtension() + "_" : "") + "javascript:" + Version;