@microsoft/applicationinsights-properties-js 2.7.3-nightly.2201-01 → 2.7.3-nightly.2201-02
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 +2 -2
- 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 +2 -2
- 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/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 +3 -3
- package/src/Context/Internal.ts +1 -1
- package/src/Context/Session.ts +2 -2
- package/src/Context/User.ts +1 -1
- package/types/tsdoc-metadata.json +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Application Insights JavaScript SDK - Properties Plugin, 2.7.3-nightly.2201-
|
|
2
|
+
* Application Insights JavaScript SDK - Properties Plugin, 2.7.3-nightly.2201-02
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var Version = "2.7.3-nightly.2201-
|
|
7
|
+
var Version = "2.7.3-nightly.2201-02";
|
|
8
8
|
var Internal = /** @class */ (function () {
|
|
9
9
|
/**
|
|
10
10
|
* Constructs a new instance of the internal telemetry data class.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Internal.js.map","sources":["Internal.js"],"sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nvar Version = \"2.7.3-nightly.2201-
|
|
1
|
+
{"version":3,"file":"Internal.js.map","sources":["Internal.js"],"sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nvar Version = \"2.7.3-nightly.2201-02\";\r\nvar Internal = /** @class */ (function () {\r\n /**\r\n * Constructs a new instance of the internal telemetry data class.\r\n */\r\n function Internal(config) {\r\n this.sdkVersion = (config.sdkExtension && config.sdkExtension() ? config.sdkExtension() + \"_\" : \"\") + \"javascript:\" + Version;\r\n }\r\n return Internal;\r\n}());\r\nexport { Internal };\r\n//# sourceMappingURL=Internal.js.map"],"names":[],"mappings":";;;;AAA4D;AAC1B;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA"}
|
package/dist-esm/Context/User.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/applicationinsights-properties-js",
|
|
3
|
-
"version": "2.7.3-nightly.2201-
|
|
3
|
+
"version": "2.7.3-nightly.2201-02",
|
|
4
4
|
"description": "Microsoft Application Insights properties (Part A) plugin",
|
|
5
5
|
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
|
|
6
6
|
"author": "Microsoft Application Insights Team",
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"@microsoft/dynamicproto-js": "^1.1.4",
|
|
53
53
|
"@microsoft/applicationinsights-shims": "2.0.0",
|
|
54
|
-
"@microsoft/applicationinsights-core-js": "2.7.3-nightly.2201-
|
|
55
|
-
"@microsoft/applicationinsights-common": "2.7.3-nightly.2201-
|
|
54
|
+
"@microsoft/applicationinsights-core-js": "2.7.3-nightly.2201-02",
|
|
55
|
+
"@microsoft/applicationinsights-common": "2.7.3-nightly.2201-02"
|
|
56
56
|
},
|
|
57
57
|
"license": "MIT",
|
|
58
58
|
"publishConfig": {
|
package/src/Context/Internal.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import { IInternal } from "@microsoft/applicationinsights-common";
|
|
5
5
|
import { ITelemetryConfig } from "../Interfaces/ITelemetryConfig";
|
|
6
6
|
|
|
7
|
-
const Version = "2.7.3-nightly.2201-
|
|
7
|
+
const Version = "2.7.3-nightly.2201-02";
|
|
8
8
|
|
|
9
9
|
export class Internal implements IInternal {
|
|
10
10
|
|
package/src/Context/Session.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import dynamicProto from "@microsoft/dynamicproto-js";
|
|
5
5
|
import { ISession, utlCanUseLocalStorage, utlGetLocalStorage, utlSetLocalStorage } from "@microsoft/applicationinsights-common";
|
|
6
6
|
import {
|
|
7
|
-
IDiagnosticLogger, _InternalMessageId, LoggingSeverity,
|
|
7
|
+
IDiagnosticLogger, _InternalMessageId, LoggingSeverity, IAppInsightsCore, ICookieMgr, safeGetCookieMgr, isFunction,
|
|
8
8
|
newId, dumpObj, getExceptionName, dateNow, safeGetLogger
|
|
9
9
|
} from "@microsoft/applicationinsights-core-js";
|
|
10
10
|
|
|
@@ -211,7 +211,7 @@ export class _SessionManager {
|
|
|
211
211
|
|
|
212
212
|
function _setCookie(session: ISession, nowMs: number) {
|
|
213
213
|
let acq = session.acquisitionDate;
|
|
214
|
-
session.renewalDate = nowMs
|
|
214
|
+
session.renewalDate = nowMs;
|
|
215
215
|
|
|
216
216
|
let config = _self.config;
|
|
217
217
|
let renewalPeriodMs = config.sessionRenewalMs();
|
package/src/Context/User.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
import dynamicProto from "@microsoft/dynamicproto-js";
|
|
5
5
|
import { ITelemetryConfig } from "../Interfaces/ITelemetryConfig";
|
|
6
|
-
import { utlRemoveStorage, IUserContext
|
|
6
|
+
import { utlRemoveStorage, IUserContext } from "@microsoft/applicationinsights-common";
|
|
7
7
|
import { _InternalMessageId, LoggingSeverity, IAppInsightsCore, ICookieMgr, safeGetCookieMgr, safeGetLogger, newId, toISOString } from "@microsoft/applicationinsights-core-js";
|
|
8
8
|
|
|
9
9
|
|