@microsoft/applicationinsights-dependencies-js 3.1.3-nightly3.240329-01 → 3.1.3-nightly3.2404-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/es5/applicationinsights-dependencies-js.cjs.js +1 -1
- package/browser/es5/applicationinsights-dependencies-js.cjs.js.map +1 -1
- package/browser/es5/applicationinsights-dependencies-js.cjs.min.js +1 -1
- package/browser/es5/applicationinsights-dependencies-js.cjs.min.js.map +1 -1
- package/browser/es5/applicationinsights-dependencies-js.gbl.js +3 -3
- 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 +3 -3
- 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 +1 -1
- package/dist/es5/applicationinsights-dependencies-js.js.map +1 -1
- package/dist/es5/applicationinsights-dependencies-js.min.js +1 -1
- 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 +1 -28
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.1.3-nightly3.
|
|
3
|
+
"version": "3.1.3-nightly3.2404-12",
|
|
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.1.3-nightly3.
|
|
61
|
-
"@microsoft/applicationinsights-common": "3.1.3-nightly3.
|
|
60
|
+
"@microsoft/applicationinsights-core-js": "3.1.3-nightly3.2404-12",
|
|
61
|
+
"@microsoft/applicationinsights-common": "3.1.3-nightly3.2404-12",
|
|
62
62
|
"@nevware21/ts-utils": ">= 0.11.0 < 2.x",
|
|
63
63
|
"@nevware21/ts-async": ">= 0.3.0 < 2.x"
|
|
64
64
|
},
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Microsoft Application Insights XHR dependencies plugin, 3.1.3-nightly3.
|
|
2
|
+
* Microsoft Application Insights XHR dependencies plugin, 3.1.3-nightly3.2404-12
|
|
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.1.3-nightly3.
|
|
2
|
+
* Microsoft Application Insights XHR dependencies plugin, 3.1.3-nightly3.2404-12
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*
|
|
5
5
|
* Microsoft Application Insights Team
|
|
@@ -2201,33 +2201,6 @@ declare namespace ApplicationInsights {
|
|
|
2201
2201
|
* ```
|
|
2202
2202
|
*/
|
|
2203
2203
|
finally(onfinally?: FinallyPromiseHandler): IPromise<T>;
|
|
2204
|
-
/**
|
|
2205
|
-
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
2206
|
-
* resolved value cannot be modified from the callback.
|
|
2207
|
-
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
2208
|
-
* @returns A Promise for the completion of the callback.
|
|
2209
|
-
* @example
|
|
2210
|
-
* ```ts
|
|
2211
|
-
* function doFunction() {
|
|
2212
|
-
* return createPromise((resolve, reject) => {
|
|
2213
|
-
* if (Math.random() > 0.5) {
|
|
2214
|
-
* resolve('Function has completed');
|
|
2215
|
-
* } else {
|
|
2216
|
-
* reject(new Error('Function failed to process'));
|
|
2217
|
-
* }
|
|
2218
|
-
* });
|
|
2219
|
-
* }
|
|
2220
|
-
*
|
|
2221
|
-
* doFunction().then((data) => {
|
|
2222
|
-
* console.log(data);
|
|
2223
|
-
* }).catch((err) => {
|
|
2224
|
-
* console.error(err);
|
|
2225
|
-
* }).finally(() => {
|
|
2226
|
-
* console.log('Function processing completed');
|
|
2227
|
-
* });
|
|
2228
|
-
* ```
|
|
2229
|
-
*/
|
|
2230
|
-
finally(onFinally?: FinallyPromiseHandler): Promise<T>;
|
|
2231
2204
|
}
|
|
2232
2205
|
|
|
2233
2206
|
interface IRequestContext {
|