@microsoft/applicationinsights-common 2.7.5-nightly.2203-01 → 2.7.5-nightly.2204-03

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 (187) hide show
  1. package/browser/applicationinsights-common.integrity.json +9 -9
  2. package/browser/applicationinsights-common.js +852 -243
  3. package/browser/applicationinsights-common.js.map +1 -1
  4. package/browser/applicationinsights-common.min.js +2 -2
  5. package/browser/applicationinsights-common.min.js.map +1 -1
  6. package/dist/applicationinsights-common.api.json +172 -62
  7. package/dist/applicationinsights-common.api.md +21 -8
  8. package/dist/applicationinsights-common.d.ts +33 -12
  9. package/dist/applicationinsights-common.js +852 -243
  10. package/dist/applicationinsights-common.js.map +1 -1
  11. package/dist/applicationinsights-common.min.js +2 -2
  12. package/dist/applicationinsights-common.min.js.map +1 -1
  13. package/dist/applicationinsights-common.rollup.d.ts +33 -12
  14. package/dist-esm/ConnectionStringParser.js +1 -1
  15. package/dist-esm/Constants.js +1 -1
  16. package/dist-esm/DomHelperFuncs.js +1 -1
  17. package/dist-esm/Enums.js +11 -24
  18. package/dist-esm/Enums.js.map +1 -1
  19. package/dist-esm/HelperFuncs.js +7 -6
  20. package/dist-esm/HelperFuncs.js.map +1 -1
  21. package/dist-esm/Interfaces/ConnectionString.js +1 -1
  22. package/dist-esm/Interfaces/Context/IApplication.js +1 -1
  23. package/dist-esm/Interfaces/Context/IDevice.js +1 -1
  24. package/dist-esm/Interfaces/Context/IInternal.js +1 -1
  25. package/dist-esm/Interfaces/Context/ILocation.js +1 -1
  26. package/dist-esm/Interfaces/Context/IOperatingSystem.js +1 -1
  27. package/dist-esm/Interfaces/Context/ISample.js +1 -1
  28. package/dist-esm/Interfaces/Context/ISession.js +1 -1
  29. package/dist-esm/Interfaces/Context/ITelemetryTrace.js +1 -1
  30. package/dist-esm/Interfaces/Context/IUser.js +1 -1
  31. package/dist-esm/Interfaces/Context/IWeb.js +1 -1
  32. package/dist-esm/Interfaces/Contracts/AvailabilityData.js +52 -0
  33. package/dist-esm/Interfaces/Contracts/AvailabilityData.js.map +1 -0
  34. package/dist-esm/Interfaces/Contracts/ContextTagKeys.js +89 -0
  35. package/dist-esm/Interfaces/Contracts/ContextTagKeys.js.map +1 -0
  36. package/dist-esm/Interfaces/Contracts/DataPointType.js +8 -0
  37. package/dist-esm/Interfaces/Contracts/DataPointType.js.map +1 -0
  38. package/dist-esm/Interfaces/Contracts/DependencyKind.js +8 -0
  39. package/dist-esm/Interfaces/Contracts/DependencyKind.js.map +1 -0
  40. package/dist-esm/Interfaces/Contracts/DependencySourceType.js +8 -0
  41. package/dist-esm/Interfaces/Contracts/DependencySourceType.js.map +1 -0
  42. package/dist-esm/Interfaces/Contracts/Generated/AvailabilityData.js +1 -1
  43. package/dist-esm/Interfaces/Contracts/Generated/Base.js +1 -1
  44. package/dist-esm/Interfaces/Contracts/Generated/ContextTagKeys.js +1 -1
  45. package/dist-esm/Interfaces/Contracts/Generated/Data.js +1 -1
  46. package/dist-esm/Interfaces/Contracts/Generated/DataPoint.js +1 -1
  47. package/dist-esm/Interfaces/Contracts/Generated/DataPointType.js +1 -1
  48. package/dist-esm/Interfaces/Contracts/Generated/DependencyKind.js +1 -1
  49. package/dist-esm/Interfaces/Contracts/Generated/DependencySourceType.js +1 -1
  50. package/dist-esm/Interfaces/Contracts/Generated/Domain.js +1 -1
  51. package/dist-esm/Interfaces/Contracts/Generated/Envelope.js +1 -1
  52. package/dist-esm/Interfaces/Contracts/Generated/EventData.js +1 -1
  53. package/dist-esm/Interfaces/Contracts/Generated/ExceptionData.js +1 -1
  54. package/dist-esm/Interfaces/Contracts/Generated/ExceptionDetails.js +1 -1
  55. package/dist-esm/Interfaces/Contracts/Generated/MessageData.js +1 -1
  56. package/dist-esm/Interfaces/Contracts/Generated/MetricData.js +1 -1
  57. package/dist-esm/Interfaces/Contracts/Generated/PageViewData.js +1 -1
  58. package/dist-esm/Interfaces/Contracts/Generated/PageViewPerfData.js +1 -1
  59. package/dist-esm/Interfaces/Contracts/Generated/RemoteDependencyData.js +1 -1
  60. package/dist-esm/Interfaces/Contracts/Generated/RequestData.js +1 -1
  61. package/dist-esm/Interfaces/Contracts/Generated/SeverityLevel.js +1 -1
  62. package/dist-esm/Interfaces/Contracts/Generated/StackFrame.js +1 -1
  63. package/dist-esm/Interfaces/Contracts/IBase.js +8 -0
  64. package/dist-esm/Interfaces/Contracts/IBase.js.map +1 -0
  65. package/dist-esm/Interfaces/Contracts/IData.js +8 -0
  66. package/dist-esm/Interfaces/Contracts/IData.js.map +1 -0
  67. package/dist-esm/Interfaces/Contracts/IDataPoint.js +6 -0
  68. package/dist-esm/Interfaces/Contracts/IDataPoint.js.map +1 -0
  69. package/dist-esm/Interfaces/Contracts/IDomain.js +8 -0
  70. package/dist-esm/Interfaces/Contracts/IDomain.js.map +1 -0
  71. package/dist-esm/Interfaces/Contracts/IEnvelope.js +46 -0
  72. package/dist-esm/Interfaces/Contracts/IEnvelope.js.map +1 -0
  73. package/dist-esm/Interfaces/Contracts/IEventData.js +8 -0
  74. package/dist-esm/Interfaces/Contracts/IEventData.js.map +1 -0
  75. package/dist-esm/Interfaces/Contracts/IExceptionData.js +8 -0
  76. package/dist-esm/Interfaces/Contracts/IExceptionData.js.map +1 -0
  77. package/dist-esm/Interfaces/Contracts/IExceptionDetails.js +8 -0
  78. package/dist-esm/Interfaces/Contracts/IExceptionDetails.js.map +1 -0
  79. package/dist-esm/Interfaces/Contracts/IMessageData.js +8 -0
  80. package/dist-esm/Interfaces/Contracts/IMessageData.js.map +1 -0
  81. package/dist-esm/Interfaces/Contracts/IMetricData.js +8 -0
  82. package/dist-esm/Interfaces/Contracts/IMetricData.js.map +1 -0
  83. package/dist-esm/Interfaces/Contracts/IPageViewData.js +8 -0
  84. package/dist-esm/Interfaces/Contracts/IPageViewData.js.map +1 -0
  85. package/dist-esm/Interfaces/Contracts/IPageViewPerfData.js +8 -0
  86. package/dist-esm/Interfaces/Contracts/IPageViewPerfData.js.map +1 -0
  87. package/dist-esm/Interfaces/Contracts/IRemoteDependencyData.js +8 -0
  88. package/dist-esm/Interfaces/Contracts/IRemoteDependencyData.js.map +1 -0
  89. package/dist-esm/Interfaces/Contracts/IStackFrame.js +8 -0
  90. package/dist-esm/Interfaces/Contracts/IStackFrame.js.map +1 -0
  91. package/dist-esm/Interfaces/Contracts/RequestData.js +46 -0
  92. package/dist-esm/Interfaces/Contracts/RequestData.js.map +1 -0
  93. package/dist-esm/Interfaces/Contracts/SeverityLevel.js +19 -0
  94. package/dist-esm/Interfaces/Contracts/SeverityLevel.js.map +1 -0
  95. package/dist-esm/Interfaces/IAppInsights.js +1 -1
  96. package/dist-esm/Interfaces/IChannelControlsAI.js +1 -1
  97. package/dist-esm/Interfaces/IConfig.js +1 -1
  98. package/dist-esm/Interfaces/ICorrelationConfig.js +1 -1
  99. package/dist-esm/Interfaces/IDependencyTelemetry.js +1 -1
  100. package/dist-esm/Interfaces/IEventTelemetry.js +1 -1
  101. package/dist-esm/Interfaces/IExceptionTelemetry.js +1 -1
  102. package/dist-esm/Interfaces/IMetricTelemetry.js +1 -1
  103. package/dist-esm/Interfaces/IPageViewPerformanceTelemetry.js +1 -1
  104. package/dist-esm/Interfaces/IPageViewTelemetry.js +1 -1
  105. package/dist-esm/Interfaces/IPartC.js +1 -1
  106. package/dist-esm/Interfaces/IPropertiesPlugin.js +1 -1
  107. package/dist-esm/Interfaces/IRequestContext.js +1 -1
  108. package/dist-esm/Interfaces/ITelemetryContext.js +1 -1
  109. package/dist-esm/Interfaces/ITraceTelemetry.js +1 -1
  110. package/dist-esm/Interfaces/PartAExtensions.js +1 -1
  111. package/dist-esm/Interfaces/Telemetry/IEnvelope.js +1 -1
  112. package/dist-esm/Interfaces/Telemetry/ISerializable.js +1 -1
  113. package/dist-esm/RequestResponseHeaders.js +1 -1
  114. package/dist-esm/StorageHelperFuncs.js +27 -12
  115. package/dist-esm/StorageHelperFuncs.js.map +1 -1
  116. package/dist-esm/Telemetry/Common/Base.js +1 -1
  117. package/dist-esm/Telemetry/Common/Data.js +1 -1
  118. package/dist-esm/Telemetry/Common/DataPoint.js +1 -1
  119. package/dist-esm/Telemetry/Common/DataSanitizer.js +8 -8
  120. package/dist-esm/Telemetry/Common/DataSanitizer.js.map +1 -1
  121. package/dist-esm/Telemetry/Common/Envelope.js +1 -1
  122. package/dist-esm/Telemetry/Event.js +1 -1
  123. package/dist-esm/Telemetry/Exception.js +1 -1
  124. package/dist-esm/Telemetry/Metric.js +1 -1
  125. package/dist-esm/Telemetry/PageView.js +1 -1
  126. package/dist-esm/Telemetry/PageViewPerformance.js +1 -1
  127. package/dist-esm/Telemetry/RemoteDependencyData.js +1 -1
  128. package/dist-esm/Telemetry/Trace.js +1 -1
  129. package/dist-esm/TelemetryItemCreator.js +1 -1
  130. package/dist-esm/UrlHelperFuncs.js +1 -1
  131. package/dist-esm/Util.js +1 -1
  132. package/dist-esm/applicationinsights-common.js +2 -2
  133. package/dist-esm/applicationinsights-common.js.map +1 -1
  134. package/package.json +3 -3
  135. package/src/Enums.ts +19 -3
  136. package/src/HelperFuncs.ts +7 -5
  137. package/src/Interfaces/Contracts/AvailabilityData.ts +57 -0
  138. package/src/Interfaces/Contracts/ContextTagKeys.ts +299 -0
  139. package/src/Interfaces/Contracts/DataPointType.ts +10 -0
  140. package/src/Interfaces/Contracts/DependencyKind.ts +11 -0
  141. package/src/Interfaces/Contracts/DependencySourceType.ts +11 -0
  142. package/src/Interfaces/Contracts/IBase.ts +13 -0
  143. package/src/Interfaces/Contracts/IData.ts +19 -0
  144. package/src/Interfaces/Contracts/IDataPoint.ts +44 -0
  145. package/src/Interfaces/Contracts/IDomain.ts +8 -0
  146. package/src/Interfaces/Contracts/IEnvelope.ts +50 -0
  147. package/src/Interfaces/Contracts/IEventData.ts +30 -0
  148. package/src/Interfaces/Contracts/IExceptionData.ts +37 -0
  149. package/src/Interfaces/Contracts/IExceptionDetails.ts +45 -0
  150. package/src/Interfaces/Contracts/IMessageData.ts +36 -0
  151. package/src/Interfaces/Contracts/IMetricData.ts +31 -0
  152. package/src/Interfaces/Contracts/IPageViewData.ts +26 -0
  153. package/src/Interfaces/Contracts/IPageViewPerfData.ts +35 -0
  154. package/src/Interfaces/Contracts/IRemoteDependencyData.ts +65 -0
  155. package/src/Interfaces/Contracts/IStackFrame.ts +33 -0
  156. package/src/Interfaces/Contracts/RequestData.ts +50 -0
  157. package/src/Interfaces/Contracts/SeverityLevel.ts +15 -0
  158. package/src/StorageHelperFuncs.ts +34 -17
  159. package/src/Telemetry/Common/DataSanitizer.ts +13 -13
  160. package/src/Telemetry/Exception.ts +27 -15
  161. package/src/TelemetryItemCreator.ts +1 -1
  162. package/src/applicationinsights-common.ts +2 -2
  163. package/types/Enums.d.ts +13 -2
  164. package/types/Interfaces/Contracts/AvailabilityData.d.ts +0 -0
  165. package/types/Interfaces/Contracts/ContextTagKeys.d.ts +175 -0
  166. package/types/Interfaces/Contracts/DataPointType.d.ts +7 -0
  167. package/types/Interfaces/Contracts/DependencyKind.d.ts +8 -0
  168. package/types/Interfaces/Contracts/DependencySourceType.d.ts +8 -0
  169. package/types/Interfaces/Contracts/IBase.d.ts +9 -0
  170. package/types/Interfaces/Contracts/IData.d.ts +14 -0
  171. package/types/Interfaces/Contracts/IDataPoint.d.ts +34 -0
  172. package/types/Interfaces/Contracts/IDomain.d.ts +5 -0
  173. package/types/Interfaces/Contracts/IEnvelope.d.ts +0 -0
  174. package/types/Interfaces/Contracts/IEventData.d.ts +22 -0
  175. package/types/Interfaces/Contracts/IExceptionData.d.ts +28 -0
  176. package/types/Interfaces/Contracts/IExceptionDetails.d.ts +34 -0
  177. package/types/Interfaces/Contracts/IMessageData.d.ts +27 -0
  178. package/types/Interfaces/Contracts/IMetricData.d.ts +23 -0
  179. package/types/Interfaces/Contracts/IPageViewData.d.ts +18 -0
  180. package/types/Interfaces/Contracts/IPageViewPerfData.d.ts +26 -0
  181. package/types/Interfaces/Contracts/IRemoteDependencyData.d.ts +50 -0
  182. package/types/Interfaces/Contracts/IStackFrame.d.ts +25 -0
  183. package/types/Interfaces/Contracts/RequestData.d.ts +0 -0
  184. package/types/Interfaces/Contracts/SeverityLevel.d.ts +10 -0
  185. package/types/StorageHelperFuncs.d.ts +14 -2
  186. package/types/applicationinsights-common.d.ts +2 -2
  187. package/types/tsdoc-metadata.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Microsoft Application Insights Common JavaScript Library, 2.7.5-nightly.2203-01
2
+ * Microsoft Application Insights Common JavaScript Library, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  *
5
5
  * Microsoft Application Insights Team
@@ -212,7 +212,23 @@ export declare const DEFAULT_BREEZE_ENDPOINT = "https://dc.services.visualstudio
212
212
  */
213
213
  export declare const DisabledPropertyName: string;
214
214
 
215
- export declare enum DistributedTracingModes {
215
+ export declare const DistributedTracingModes: {
216
+ AI: number;
217
+ AI_AND_W3C: number;
218
+ W3C: number;
219
+ };
220
+
221
+ export declare type DistributedTracingModes = number | eDistributedTracingModes;
222
+
223
+ /**
224
+ * The abstract common base of all domains.
225
+ */
226
+ declare interface Domain {
227
+ }
228
+
229
+ export declare function dsPadNumber(num: number): string;
230
+
231
+ export declare const enum eDistributedTracingModes {
216
232
  /**
217
233
  * (Default) Send Application Insights correlation headers
218
234
  */
@@ -227,14 +243,6 @@ export declare enum DistributedTracingModes {
227
243
  W3C = 2
228
244
  }
229
245
 
230
- /**
231
- * The abstract common base of all domains.
232
- */
233
- declare interface Domain {
234
- }
235
-
236
- export declare function dsPadNumber(num: number): string;
237
-
238
246
  export declare class Envelope extends Envelope_2 implements IEnvelope {
239
247
  /**
240
248
  * The data contract for serializing this object.
@@ -2326,12 +2334,25 @@ export declare function urlParseUrl(url: string): HTMLAnchorElement;
2326
2334
 
2327
2335
  export declare const Util: IUtil;
2328
2336
 
2329
- export declare function utlCanUseLocalStorage(): boolean;
2337
+ /**
2338
+ * Returns whether LocalStorage can be used, if the reset parameter is passed a true this will override
2339
+ * any previous disable calls.
2340
+ * @param reset - Should the usage be reset and determined only based on whether LocalStorage is available
2341
+ */
2342
+ export declare function utlCanUseLocalStorage(reset?: boolean): boolean;
2330
2343
 
2331
- export declare function utlCanUseSessionStorage(): boolean;
2344
+ export declare function utlCanUseSessionStorage(reset?: boolean): boolean;
2332
2345
 
2346
+ /**
2347
+ * Disables the global SDK usage of local or session storage if available
2348
+ */
2333
2349
  export declare function utlDisableStorage(): void;
2334
2350
 
2351
+ /**
2352
+ * Re-enables the global SDK usage of local or session storage if available
2353
+ */
2354
+ export declare function utlEnableStorage(): void;
2355
+
2335
2356
  export declare function utlGetLocalStorage(logger: IDiagnosticLogger, name: string): string;
2336
2357
 
2337
2358
  export declare function utlGetSessionStorage(logger: IDiagnosticLogger, name: string): string;
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
package/dist-esm/Enums.js CHANGED
@@ -1,30 +1,17 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
6
6
 
7
- /**
8
- * Type of storage to differentiate between local storage and session storage
9
- */
10
- export var StorageType;
11
- (function (StorageType) {
12
- StorageType[StorageType["LocalStorage"] = 0] = "LocalStorage";
13
- StorageType[StorageType["SessionStorage"] = 1] = "SessionStorage";
14
- })(StorageType || (StorageType = {}));
15
- export var DistributedTracingModes;
16
- (function (DistributedTracingModes) {
17
- /**
18
- * (Default) Send Application Insights correlation headers
19
- */
20
- DistributedTracingModes[DistributedTracingModes["AI"] = 0] = "AI";
21
- /**
22
- * Send both W3C Trace Context headers and back-compatibility Application Insights headers
23
- */
24
- DistributedTracingModes[DistributedTracingModes["AI_AND_W3C"] = 1] = "AI_AND_W3C";
25
- /**
26
- * Send W3C Trace Context headers
27
- */
28
- DistributedTracingModes[DistributedTracingModes["W3C"] = 2] = "W3C";
29
- })(DistributedTracingModes || (DistributedTracingModes = {}));
7
+ import { createEnumStyle } from "@microsoft/applicationinsights-core-js";
8
+ export var StorageType = createEnumStyle({
9
+ LocalStorage: 0 /* LocalStorage */,
10
+ SessionStorage: 1 /* SessionStorage */
11
+ });
12
+ export var DistributedTracingModes = createEnumStyle({
13
+ AI: 0 /* AI */,
14
+ AI_AND_W3C: 1 /* AI_AND_W3C */,
15
+ W3C: 2 /* W3C */
16
+ });
30
17
  //# sourceMappingURL=Enums.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Enums.js.map","sources":["Enums.js"],"sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n/**\r\n * Type of storage to differentiate between local storage and session storage\r\n */\r\nexport var StorageType;\r\n(function (StorageType) {\r\n StorageType[StorageType[\"LocalStorage\"] = 0] = \"LocalStorage\";\r\n StorageType[StorageType[\"SessionStorage\"] = 1] = \"SessionStorage\";\r\n})(StorageType || (StorageType = {}));\r\nexport var DistributedTracingModes;\r\n(function (DistributedTracingModes) {\r\n /**\r\n * (Default) Send Application Insights correlation headers\r\n */\r\n DistributedTracingModes[DistributedTracingModes[\"AI\"] = 0] = \"AI\";\r\n /**\r\n * Send both W3C Trace Context headers and back-compatibility Application Insights headers\r\n */\r\n DistributedTracingModes[DistributedTracingModes[\"AI_AND_W3C\"] = 1] = \"AI_AND_W3C\";\r\n /**\r\n * Send W3C Trace Context headers\r\n */\r\n DistributedTracingModes[DistributedTracingModes[\"W3C\"] = 2] = \"W3C\";\r\n})(DistributedTracingModes || (DistributedTracingModes = {}));\r\n//# sourceMappingURL=Enums.js.map"],"names":[],"mappings":";;;;AAA4D;AAC1B;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA"}
1
+ {"version":3,"file":"Enums.js.map","sources":["Enums.js"],"sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nimport { createEnumStyle } from \"@microsoft/applicationinsights-core-js\";\r\nexport var StorageType = createEnumStyle({\r\n LocalStorage: 0 /* LocalStorage */,\r\n SessionStorage: 1 /* SessionStorage */\r\n});\r\nexport var DistributedTracingModes = createEnumStyle({\r\n AI: 0 /* AI */,\r\n AI_AND_W3C: 1 /* AI_AND_W3C */,\r\n W3C: 2 /* W3C */\r\n});\r\n//# sourceMappingURL=Enums.js.map"],"names":[],"mappings":";;;;AAA4D;AAC1B;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA"}
@@ -1,10 +1,11 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
6
6
 
7
7
  import { arrForEach, isString } from "@microsoft/applicationinsights-core-js";
8
+ var strEmpty = "";
8
9
  export function stringToBoolOrDefault(str, defaultValue) {
9
10
  if (defaultValue === void 0) { defaultValue = false; }
10
11
  if (str === undefined || str === null) {
@@ -20,16 +21,16 @@ export function msToTimeSpan(totalms) {
20
21
  totalms = 0;
21
22
  }
22
23
  totalms = Math.round(totalms);
23
- var ms = "" + totalms % 1000;
24
- var sec = "" + Math.floor(totalms / 1000) % 60;
25
- var min = "" + Math.floor(totalms / (1000 * 60)) % 60;
26
- var hour = "" + Math.floor(totalms / (1000 * 60 * 60)) % 24;
24
+ var ms = strEmpty + totalms % 1000;
25
+ var sec = strEmpty + Math.floor(totalms / 1000) % 60;
26
+ var min = strEmpty + Math.floor(totalms / (1000 * 60)) % 60;
27
+ var hour = strEmpty + Math.floor(totalms / (1000 * 60 * 60)) % 24;
27
28
  var days = Math.floor(totalms / (1000 * 60 * 60 * 24));
28
29
  ms = ms.length === 1 ? "00" + ms : ms.length === 2 ? "0" + ms : ms;
29
30
  sec = sec.length < 2 ? "0" + sec : sec;
30
31
  min = min.length < 2 ? "0" + min : min;
31
32
  hour = hour.length < 2 ? "0" + hour : hour;
32
- return (days > 0 ? days + "." : "") + hour + ":" + min + ":" + sec + "." + ms;
33
+ return (days > 0 ? days + "." : strEmpty) + hour + ":" + min + ":" + sec + "." + ms;
33
34
  }
34
35
  export function getExtensionByName(extensions, identifier) {
35
36
  var extension = null;
@@ -1 +1 @@
1
- {"version":3,"file":"HelperFuncs.js.map","sources":["HelperFuncs.js"],"sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nimport { arrForEach, isString } from \"@microsoft/applicationinsights-core-js\";\r\nexport function stringToBoolOrDefault(str, defaultValue) {\r\n if (defaultValue === void 0) { defaultValue = false; }\r\n if (str === undefined || str === null) {\r\n return defaultValue;\r\n }\r\n return str.toString().toLowerCase() === \"true\";\r\n}\r\n/**\r\n * Convert ms to c# time span format\r\n */\r\nexport function msToTimeSpan(totalms) {\r\n if (isNaN(totalms) || totalms < 0) {\r\n totalms = 0;\r\n }\r\n totalms = Math.round(totalms);\r\n var ms = \"\" + totalms % 1000;\r\n var sec = \"\" + Math.floor(totalms / 1000) % 60;\r\n var min = \"\" + Math.floor(totalms / (1000 * 60)) % 60;\r\n var hour = \"\" + Math.floor(totalms / (1000 * 60 * 60)) % 24;\r\n var days = Math.floor(totalms / (1000 * 60 * 60 * 24));\r\n ms = ms.length === 1 ? \"00\" + ms : ms.length === 2 ? \"0\" + ms : ms;\r\n sec = sec.length < 2 ? \"0\" + sec : sec;\r\n min = min.length < 2 ? \"0\" + min : min;\r\n hour = hour.length < 2 ? \"0\" + hour : hour;\r\n return (days > 0 ? days + \".\" : \"\") + hour + \":\" + min + \":\" + sec + \".\" + ms;\r\n}\r\nexport function getExtensionByName(extensions, identifier) {\r\n var extension = null;\r\n arrForEach(extensions, function (value) {\r\n if (value.identifier === identifier) {\r\n extension = value;\r\n return -1;\r\n }\r\n });\r\n return extension;\r\n}\r\nexport function isCrossOriginError(message, url, lineNumber, columnNumber, error) {\r\n return !error && isString(message) && (message === \"Script error.\" || message === \"Script error\");\r\n}\r\n//# sourceMappingURL=HelperFuncs.js.map"],"names":[],"mappings":";;;;AAA4D;AAC1B;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA"}
1
+ {"version":3,"file":"HelperFuncs.js.map","sources":["HelperFuncs.js"],"sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nimport { arrForEach, isString } from \"@microsoft/applicationinsights-core-js\";\r\nvar strEmpty = \"\";\r\nexport function stringToBoolOrDefault(str, defaultValue) {\r\n if (defaultValue === void 0) { defaultValue = false; }\r\n if (str === undefined || str === null) {\r\n return defaultValue;\r\n }\r\n return str.toString().toLowerCase() === \"true\";\r\n}\r\n/**\r\n * Convert ms to c# time span format\r\n */\r\nexport function msToTimeSpan(totalms) {\r\n if (isNaN(totalms) || totalms < 0) {\r\n totalms = 0;\r\n }\r\n totalms = Math.round(totalms);\r\n var ms = strEmpty + totalms % 1000;\r\n var sec = strEmpty + Math.floor(totalms / 1000) % 60;\r\n var min = strEmpty + Math.floor(totalms / (1000 * 60)) % 60;\r\n var hour = strEmpty + Math.floor(totalms / (1000 * 60 * 60)) % 24;\r\n var days = Math.floor(totalms / (1000 * 60 * 60 * 24));\r\n ms = ms.length === 1 ? \"00\" + ms : ms.length === 2 ? \"0\" + ms : ms;\r\n sec = sec.length < 2 ? \"0\" + sec : sec;\r\n min = min.length < 2 ? \"0\" + min : min;\r\n hour = hour.length < 2 ? \"0\" + hour : hour;\r\n return (days > 0 ? days + \".\" : strEmpty) + hour + \":\" + min + \":\" + sec + \".\" + ms;\r\n}\r\nexport function getExtensionByName(extensions, identifier) {\r\n var extension = null;\r\n arrForEach(extensions, function (value) {\r\n if (value.identifier === identifier) {\r\n extension = value;\r\n return -1;\r\n }\r\n });\r\n return extension;\r\n}\r\nexport function isCrossOriginError(message, url, lineNumber, columnNumber, error) {\r\n return !error && isString(message) && (message === \"Script error.\" || message === \"Script error\");\r\n}\r\n//# sourceMappingURL=HelperFuncs.js.map"],"names":[],"mappings":";;;;AAA4D;AAC1B;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA"}
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
  export {};
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -0,0 +1,52 @@
1
+ /*
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
+ * Copyright (c) Microsoft and contributors. All rights reserved.
4
+ */
5
+ "use strict";
6
+ //
7
+ //
8
+ // // THIS FILE WAS AUTOGENERATED
9
+ // import { Domain } from "./Domain";
10
+ // "use strict";
11
+ // /**
12
+ // * Instances of AvailabilityData represent the result of executing an availability test.
13
+ // */
14
+ // export class AvailabilityData implements Domain {
15
+ // /**
16
+ // * Schema version
17
+ // */
18
+ // public ver: number = 2;
19
+ // /**
20
+ // * Identifier of a test run. Use it to correlate steps of test run and telemetry generated by the service.
21
+ // */
22
+ // public id: string;
23
+ // /**
24
+ // * Name of the test that these availability results represent.
25
+ // */
26
+ // public name: string;
27
+ // /**
28
+ // * Duration in format: DD.HH:MM:SS.MMMMMM. Must be less than 1000 days.
29
+ // */
30
+ // public duration: string;
31
+ // /**
32
+ // * Success flag.
33
+ // */
34
+ // public success: boolean;
35
+ // /**
36
+ // * Name of the location where the test was run from.
37
+ // */
38
+ // public runLocation: string;
39
+ // /**
40
+ // * Diagnostic message for the result.
41
+ // */
42
+ // public message: string;
43
+ // /**
44
+ // * Collection of custom properties.
45
+ // */
46
+ // public properties: any = {};
47
+ // /**
48
+ // * Collection of custom measurements.
49
+ // */
50
+ // public measurements: any = {};
51
+ // }
52
+ //# sourceMappingURL=AvailabilityData.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AvailabilityData.js.map","sources":["AvailabilityData.js"],"sourcesContent":["\"use strict\";\r\n// // Copyright (c) Microsoft Corporation. All rights reserved.\r\n// // Licensed under the MIT License.\r\n// // THIS FILE WAS AUTOGENERATED\r\n// import { Domain } from \"./Domain\";\r\n// \"use strict\";\r\n// /**\r\n// * Instances of AvailabilityData represent the result of executing an availability test.\r\n// */\r\n// export class AvailabilityData implements Domain {\r\n// /**\r\n// * Schema version\r\n// */\r\n// public ver: number = 2;\r\n// /**\r\n// * Identifier of a test run. Use it to correlate steps of test run and telemetry generated by the service.\r\n// */\r\n// public id: string;\r\n// /**\r\n// * Name of the test that these availability results represent.\r\n// */\r\n// public name: string;\r\n// /**\r\n// * Duration in format: DD.HH:MM:SS.MMMMMM. Must be less than 1000 days.\r\n// */\r\n// public duration: string;\r\n// /**\r\n// * Success flag.\r\n// */\r\n// public success: boolean;\r\n// /**\r\n// * Name of the location where the test was run from.\r\n// */\r\n// public runLocation: string;\r\n// /**\r\n// * Diagnostic message for the result.\r\n// */\r\n// public message: string;\r\n// /**\r\n// * Collection of custom properties.\r\n// */\r\n// public properties: any = {};\r\n// /**\r\n// * Collection of custom measurements.\r\n// */\r\n// public measurements: any = {};\r\n// }\r\n//# sourceMappingURL=AvailabilityData.js.map"],"names":[],"mappings":";;;;AAAA;AACA,GAA+D;AAC/D,GAAqC;AACrC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA"}
@@ -0,0 +1,89 @@
1
+ /*
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
+ * Copyright (c) Microsoft and contributors. All rights reserved.
4
+ */
5
+
6
+
7
+ import { __extendsFn as __extends } from "@microsoft/applicationinsights-shims";
8
+ import { createClassFromInterface } from "@microsoft/applicationinsights-core-js";
9
+ function _aiNameFunc(baseName) {
10
+ var aiName = "ai." + baseName + ".";
11
+ return function (name) {
12
+ return aiName + name;
13
+ };
14
+ }
15
+ var _aiApplication = _aiNameFunc("application");
16
+ var _aiDevice = _aiNameFunc("device");
17
+ var _aiLocation = _aiNameFunc("location");
18
+ var _aiOperation = _aiNameFunc("operation");
19
+ var _aiSession = _aiNameFunc("session");
20
+ var _aiUser = _aiNameFunc("user");
21
+ var _aiCloud = _aiNameFunc("cloud");
22
+ var _aiInternal = _aiNameFunc("internal");
23
+ var ContextTagKeys = /** @class */ (function (_super) {
24
+ __extends(ContextTagKeys, _super);
25
+ function ContextTagKeys() {
26
+ return _super.call(this) || this;
27
+ }
28
+ return ContextTagKeys;
29
+ }(createClassFromInterface({
30
+ applicationVersion: _aiApplication("ver"),
31
+ applicationBuild: _aiApplication("build"),
32
+ applicationTypeId: _aiApplication("typeId"),
33
+ applicationId: _aiApplication("applicationId"),
34
+ applicationLayer: _aiApplication("layer"),
35
+ deviceId: _aiDevice("id"),
36
+ deviceIp: _aiDevice("ip"),
37
+ deviceLanguage: _aiDevice("language"),
38
+ deviceLocale: _aiDevice("locale"),
39
+ deviceModel: _aiDevice("model"),
40
+ deviceFriendlyName: _aiDevice("friendlyName"),
41
+ deviceNetwork: _aiDevice("network"),
42
+ deviceNetworkName: _aiDevice("networkName"),
43
+ deviceOEMName: _aiDevice("oemName"),
44
+ deviceOS: _aiDevice("os"),
45
+ deviceOSVersion: _aiDevice("osVersion"),
46
+ deviceRoleInstance: _aiDevice("roleInstance"),
47
+ deviceRoleName: _aiDevice("roleName"),
48
+ deviceScreenResolution: _aiDevice("screenResolution"),
49
+ deviceType: _aiDevice("type"),
50
+ deviceMachineName: _aiDevice("machineName"),
51
+ deviceVMName: _aiDevice("vmName"),
52
+ deviceBrowser: _aiDevice("browser"),
53
+ deviceBrowserVersion: _aiDevice("browserVersion"),
54
+ locationIp: _aiLocation("ip"),
55
+ locationCountry: _aiLocation("country"),
56
+ locationProvince: _aiLocation("province"),
57
+ locationCity: _aiLocation("city"),
58
+ operationId: _aiOperation("id"),
59
+ operationName: _aiOperation("name"),
60
+ operationParentId: _aiOperation("parentId"),
61
+ operationRootId: _aiOperation("rootId"),
62
+ operationSyntheticSource: _aiOperation("syntheticSource"),
63
+ operationCorrelationVector: _aiOperation("correlationVector"),
64
+ sessionId: _aiSession("id"),
65
+ sessionIsFirst: _aiSession("isFirst"),
66
+ sessionIsNew: _aiSession("isNew"),
67
+ userAccountAcquisitionDate: _aiUser("accountAcquisitionDate"),
68
+ userAccountId: _aiUser("accountId"),
69
+ userAgent: _aiUser("userAgent"),
70
+ userId: _aiUser("id"),
71
+ userStoreRegion: _aiUser("storeRegion"),
72
+ userAuthUserId: _aiUser("authUserId"),
73
+ userAnonymousUserAcquisitionDate: _aiUser("anonUserAcquisitionDate"),
74
+ userAuthenticatedUserAcquisitionDate: _aiUser("authUserAcquisitionDate"),
75
+ cloudName: _aiCloud("name"),
76
+ cloudRole: _aiCloud("role"),
77
+ cloudRoleVer: _aiCloud("roleVer"),
78
+ cloudRoleInstance: _aiCloud("roleInstance"),
79
+ cloudEnvironment: _aiCloud("environment"),
80
+ cloudLocation: _aiCloud("location"),
81
+ cloudDeploymentUnit: _aiCloud("deploymentUnit"),
82
+ internalNodeName: _aiInternal("nodeName"),
83
+ internalSdkVersion: _aiInternal("sdkVersion"),
84
+ internalAgentVersion: _aiInternal("agentVersion"),
85
+ internalSnippet: _aiInternal("snippet"),
86
+ internalSdkSrc: _aiInternal("sdkSrc")
87
+ })));
88
+ export { ContextTagKeys };
89
+ //# sourceMappingURL=ContextTagKeys.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ContextTagKeys.js.map","sources":["ContextTagKeys.js"],"sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nimport { __extends } from \"tslib\";\r\nimport { createClassFromInterface } from \"@microsoft/applicationinsights-core-js\";\r\nfunction _aiNameFunc(baseName) {\r\n var aiName = \"ai.\" + baseName + \".\";\r\n return function (name) {\r\n return aiName + name;\r\n };\r\n}\r\nvar _aiApplication = _aiNameFunc(\"application\");\r\nvar _aiDevice = _aiNameFunc(\"device\");\r\nvar _aiLocation = _aiNameFunc(\"location\");\r\nvar _aiOperation = _aiNameFunc(\"operation\");\r\nvar _aiSession = _aiNameFunc(\"session\");\r\nvar _aiUser = _aiNameFunc(\"user\");\r\nvar _aiCloud = _aiNameFunc(\"cloud\");\r\nvar _aiInternal = _aiNameFunc(\"internal\");\r\nvar ContextTagKeys = /** @class */ (function (_super) {\r\n __extends(ContextTagKeys, _super);\r\n function ContextTagKeys() {\r\n return _super.call(this) || this;\r\n }\r\n return ContextTagKeys;\r\n}(createClassFromInterface({\r\n applicationVersion: _aiApplication(\"ver\"),\r\n applicationBuild: _aiApplication(\"build\"),\r\n applicationTypeId: _aiApplication(\"typeId\"),\r\n applicationId: _aiApplication(\"applicationId\"),\r\n applicationLayer: _aiApplication(\"layer\"),\r\n deviceId: _aiDevice(\"id\"),\r\n deviceIp: _aiDevice(\"ip\"),\r\n deviceLanguage: _aiDevice(\"language\"),\r\n deviceLocale: _aiDevice(\"locale\"),\r\n deviceModel: _aiDevice(\"model\"),\r\n deviceFriendlyName: _aiDevice(\"friendlyName\"),\r\n deviceNetwork: _aiDevice(\"network\"),\r\n deviceNetworkName: _aiDevice(\"networkName\"),\r\n deviceOEMName: _aiDevice(\"oemName\"),\r\n deviceOS: _aiDevice(\"os\"),\r\n deviceOSVersion: _aiDevice(\"osVersion\"),\r\n deviceRoleInstance: _aiDevice(\"roleInstance\"),\r\n deviceRoleName: _aiDevice(\"roleName\"),\r\n deviceScreenResolution: _aiDevice(\"screenResolution\"),\r\n deviceType: _aiDevice(\"type\"),\r\n deviceMachineName: _aiDevice(\"machineName\"),\r\n deviceVMName: _aiDevice(\"vmName\"),\r\n deviceBrowser: _aiDevice(\"browser\"),\r\n deviceBrowserVersion: _aiDevice(\"browserVersion\"),\r\n locationIp: _aiLocation(\"ip\"),\r\n locationCountry: _aiLocation(\"country\"),\r\n locationProvince: _aiLocation(\"province\"),\r\n locationCity: _aiLocation(\"city\"),\r\n operationId: _aiOperation(\"id\"),\r\n operationName: _aiOperation(\"name\"),\r\n operationParentId: _aiOperation(\"parentId\"),\r\n operationRootId: _aiOperation(\"rootId\"),\r\n operationSyntheticSource: _aiOperation(\"syntheticSource\"),\r\n operationCorrelationVector: _aiOperation(\"correlationVector\"),\r\n sessionId: _aiSession(\"id\"),\r\n sessionIsFirst: _aiSession(\"isFirst\"),\r\n sessionIsNew: _aiSession(\"isNew\"),\r\n userAccountAcquisitionDate: _aiUser(\"accountAcquisitionDate\"),\r\n userAccountId: _aiUser(\"accountId\"),\r\n userAgent: _aiUser(\"userAgent\"),\r\n userId: _aiUser(\"id\"),\r\n userStoreRegion: _aiUser(\"storeRegion\"),\r\n userAuthUserId: _aiUser(\"authUserId\"),\r\n userAnonymousUserAcquisitionDate: _aiUser(\"anonUserAcquisitionDate\"),\r\n userAuthenticatedUserAcquisitionDate: _aiUser(\"authUserAcquisitionDate\"),\r\n cloudName: _aiCloud(\"name\"),\r\n cloudRole: _aiCloud(\"role\"),\r\n cloudRoleVer: _aiCloud(\"roleVer\"),\r\n cloudRoleInstance: _aiCloud(\"roleInstance\"),\r\n cloudEnvironment: _aiCloud(\"environment\"),\r\n cloudLocation: _aiCloud(\"location\"),\r\n cloudDeploymentUnit: _aiCloud(\"deploymentUnit\"),\r\n internalNodeName: _aiInternal(\"nodeName\"),\r\n internalSdkVersion: _aiInternal(\"sdkVersion\"),\r\n internalAgentVersion: _aiInternal(\"agentVersion\"),\r\n internalSnippet: _aiInternal(\"snippet\"),\r\n internalSdkSrc: _aiInternal(\"sdkSrc\")\r\n})));\r\nexport { ContextTagKeys };\r\n//# sourceMappingURL=ContextTagKeys.js.map"],"names":[],"mappings":";;;;AAA4D;AAC1B;AAClC,gFAAkC;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA"}
@@ -0,0 +1,8 @@
1
+ /*
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
+ * Copyright (c) Microsoft and contributors. All rights reserved.
4
+ */
5
+
6
+
7
+ export {};
8
+ //# sourceMappingURL=DataPointType.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DataPointType.js.map","sources":["DataPointType.js"],"sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nexport {};\r\n//# sourceMappingURL=DataPointType.js.map"],"names":[],"mappings":";;;;AAA4D;AAC1B;AAClC;AACA"}
@@ -0,0 +1,8 @@
1
+ /*
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
+ * Copyright (c) Microsoft and contributors. All rights reserved.
4
+ */
5
+
6
+
7
+ export {};
8
+ //# sourceMappingURL=DependencyKind.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DependencyKind.js.map","sources":["DependencyKind.js"],"sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nexport {};\r\n//# sourceMappingURL=DependencyKind.js.map"],"names":[],"mappings":";;;;AAA4D;AAC1B;AAClC;AACA"}
@@ -0,0 +1,8 @@
1
+ /*
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
+ * Copyright (c) Microsoft and contributors. All rights reserved.
4
+ */
5
+
6
+
7
+ export {};
8
+ //# sourceMappingURL=DependencySourceType.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DependencySourceType.js.map","sources":["DependencySourceType.js"],"sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nexport {};\r\n//# sourceMappingURL=DependencySourceType.js.map"],"names":[],"mappings":";;;;AAA4D;AAC1B;AAClC;AACA"}
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
  "use strict";
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2203-01
2
+ * Application Insights JavaScript SDK - Common, 2.7.5-nightly.2204-03
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5