@microsoft/applicationinsights-dependencies-js 3.3.10-nightly3.2507-01 → 3.3.10-nightly3.2507-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.
- package/browser/es5/applicationinsights-dependencies-js.cjs.js +2 -2
- package/browser/es5/applicationinsights-dependencies-js.cjs.js.map +1 -1
- package/browser/es5/applicationinsights-dependencies-js.cjs.min.js +2 -2
- package/browser/es5/applicationinsights-dependencies-js.cjs.min.js.map +1 -1
- package/browser/es5/applicationinsights-dependencies-js.gbl.js +4 -4
- package/browser/es5/applicationinsights-dependencies-js.gbl.js.map +1 -1
- package/browser/es5/applicationinsights-dependencies-js.gbl.min.js +2 -2
- package/browser/es5/applicationinsights-dependencies-js.gbl.min.js.map +1 -1
- package/browser/es5/applicationinsights-dependencies-js.integrity.json +25 -25
- package/browser/es5/applicationinsights-dependencies-js.js +4 -4
- package/browser/es5/applicationinsights-dependencies-js.js.map +1 -1
- package/browser/es5/applicationinsights-dependencies-js.min.js +2 -2
- package/browser/es5/applicationinsights-dependencies-js.min.js.map +1 -1
- package/dist/es5/applicationinsights-dependencies-js.js +2 -2
- package/dist/es5/applicationinsights-dependencies-js.js.map +1 -1
- package/dist/es5/applicationinsights-dependencies-js.min.js +2 -2
- package/dist/es5/applicationinsights-dependencies-js.min.js.map +1 -1
- package/dist-es5/DependencyInitializer.js +1 -1
- package/dist-es5/DependencyListener.js +1 -1
- package/dist-es5/InternalConstants.js +1 -1
- package/dist-es5/__DynamicConstants.js +1 -1
- package/dist-es5/ajax.js +1 -1
- package/dist-es5/ajaxRecord.js +1 -1
- package/dist-es5/ajaxUtils.js +1 -1
- package/dist-es5/applicationinsights-dependencies-js.js +1 -1
- package/package.json +3 -3
- package/types/applicationinsights-dependencies-js.d.ts +1 -1
- package/types/applicationinsights-dependencies-js.namespaced.d.ts +8 -4
package/dist-es5/ajax.js
CHANGED
package/dist-es5/ajaxRecord.js
CHANGED
package/dist-es5/ajaxUtils.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/applicationinsights-dependencies-js",
|
|
3
|
-
"version": "3.3.10-nightly3.2507-
|
|
3
|
+
"version": "3.3.10-nightly3.2507-03",
|
|
4
4
|
"description": "Microsoft Application Insights XHR dependencies plugin",
|
|
5
5
|
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
|
|
6
6
|
"author": "Microsoft Application Insights Team",
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"@microsoft/dynamicproto-js": "^2.0.3",
|
|
59
59
|
"@microsoft/applicationinsights-shims": "3.0.1",
|
|
60
|
-
"@microsoft/applicationinsights-core-js": "3.3.10-nightly3.2507-
|
|
61
|
-
"@microsoft/applicationinsights-common": "3.3.10-nightly3.2507-
|
|
60
|
+
"@microsoft/applicationinsights-core-js": "3.3.10-nightly3.2507-03",
|
|
61
|
+
"@microsoft/applicationinsights-common": "3.3.10-nightly3.2507-03",
|
|
62
62
|
"@nevware21/ts-utils": ">= 0.11.8 < 2.x",
|
|
63
63
|
"@nevware21/ts-async": ">= 0.5.4 < 2.x"
|
|
64
64
|
},
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Microsoft Application Insights XHR dependencies plugin, 3.3.10-nightly3.2507-
|
|
2
|
+
* Microsoft Application Insights XHR dependencies plugin, 3.3.10-nightly3.2507-03
|
|
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
|
-
* Microsoft Application Insights XHR dependencies plugin, 3.3.10-nightly3.2507-
|
|
2
|
+
* Microsoft Application Insights XHR dependencies plugin, 3.3.10-nightly3.2507-03
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*
|
|
5
5
|
* Microsoft Application Insights Team
|
|
@@ -129,9 +129,12 @@ declare namespace ApplicationInsights {
|
|
|
129
129
|
*/
|
|
130
130
|
processNext: (env: ITelemetryItem, itemCtx: IProcessTelemetryContext) => void;
|
|
131
131
|
/**
|
|
132
|
-
* Set next extension for telemetry processing
|
|
132
|
+
* Set next extension for telemetry processing, this is now optional as plugins should use the
|
|
133
|
+
* processNext() function of the passed IProcessTelemetryContext instead. It is being kept for
|
|
134
|
+
* now for backward compatibility only.
|
|
135
|
+
* @deprecated - Use processNext() function of the passed IProcessTelemetryContext instead
|
|
133
136
|
*/
|
|
134
|
-
setNextPlugin
|
|
137
|
+
setNextPlugin?: (next: ITelemetryPlugin | ITelemetryPluginChain) => void;
|
|
135
138
|
/**
|
|
136
139
|
* Returns the current diagnostic logger that can be used to log issues, if no logger is currently
|
|
137
140
|
* assigned a new default one will be created and returned.
|
|
@@ -2490,9 +2493,10 @@ declare namespace ApplicationInsights {
|
|
|
2490
2493
|
*/
|
|
2491
2494
|
interface ITelemetryPlugin extends ITelemetryProcessor, IPlugin {
|
|
2492
2495
|
/**
|
|
2493
|
-
* Set next extension for telemetry processing, this is
|
|
2496
|
+
* Set next extension for telemetry processing, this is now optional as plugins should use the
|
|
2494
2497
|
* processNext() function of the passed IProcessTelemetryContext instead. It is being kept for
|
|
2495
2498
|
* now for backward compatibility only.
|
|
2499
|
+
* @deprecated - Use processNext() function of the passed IProcessTelemetryContext instead
|
|
2496
2500
|
*/
|
|
2497
2501
|
setNextPlugin?: (next: ITelemetryPlugin | ITelemetryPluginChain) => void;
|
|
2498
2502
|
/**
|