@microsoft/applicationinsights-dependencies-js 3.3.5-nightly3.2412-07 → 3.3.5-nightly3.2412-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.
- 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 +13 -13
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.5-nightly3.2412-
|
|
3
|
+
"version": "3.3.5-nightly3.2412-10",
|
|
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",
|
|
@@ -58,8 +58,8 @@
|
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"@microsoft/dynamicproto-js": "^2.0.3",
|
|
60
60
|
"@microsoft/applicationinsights-shims": "3.0.1",
|
|
61
|
-
"@microsoft/applicationinsights-core-js": "3.3.5-nightly3.2412-
|
|
62
|
-
"@microsoft/applicationinsights-common": "3.3.5-nightly3.2412-
|
|
61
|
+
"@microsoft/applicationinsights-core-js": "3.3.5-nightly3.2412-10",
|
|
62
|
+
"@microsoft/applicationinsights-common": "3.3.5-nightly3.2412-10",
|
|
63
63
|
"@nevware21/ts-utils": ">= 0.11.3 < 2.x",
|
|
64
64
|
"@nevware21/ts-async": ">= 0.5.2 < 2.x"
|
|
65
65
|
},
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Microsoft Application Insights XHR dependencies plugin, 3.3.5-nightly3.2412-
|
|
2
|
+
* Microsoft Application Insights XHR dependencies plugin, 3.3.5-nightly3.2412-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
|
-
* Microsoft Application Insights XHR dependencies plugin, 3.3.5-nightly3.2412-
|
|
2
|
+
* Microsoft Application Insights XHR dependencies plugin, 3.3.5-nightly3.2412-10
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*
|
|
5
5
|
* Microsoft Application Insights Team
|
|
@@ -2173,8 +2173,8 @@ declare namespace ApplicationInsights {
|
|
|
2173
2173
|
state?: string;
|
|
2174
2174
|
/**
|
|
2175
2175
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
2176
|
-
* @param onResolved The callback to execute when the Promise is resolved.
|
|
2177
|
-
* @param onRejected The callback to execute when the Promise is rejected.
|
|
2176
|
+
* @param onResolved - The callback to execute when the Promise is resolved.
|
|
2177
|
+
* @param onRejected - The callback to execute when the Promise is rejected.
|
|
2178
2178
|
* @returns A Promise for the completion of which ever callback is executed.
|
|
2179
2179
|
* @example
|
|
2180
2180
|
* ```ts
|
|
@@ -2191,8 +2191,8 @@ declare namespace ApplicationInsights {
|
|
|
2191
2191
|
then<TResult1 = T, TResult2 = never>(onResolved?: ResolvedPromiseHandler<T, TResult1>, onRejected?: RejectedPromiseHandler<TResult2>): IPromise<TResult1 | TResult2>;
|
|
2192
2192
|
/**
|
|
2193
2193
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
2194
|
-
* @param onResolved The callback to execute when the Promise is resolved.
|
|
2195
|
-
* @param onRejected The callback to execute when the Promise is rejected.
|
|
2194
|
+
* @param onResolved - The callback to execute when the Promise is resolved.
|
|
2195
|
+
* @param onRejected - The callback to execute when the Promise is rejected.
|
|
2196
2196
|
* @returns A Promise for the completion of which ever callback is executed.
|
|
2197
2197
|
* @example
|
|
2198
2198
|
* ```ts
|
|
@@ -2209,8 +2209,8 @@ declare namespace ApplicationInsights {
|
|
|
2209
2209
|
then<TResult1 = T, TResult2 = never>(onResolved?: ResolvedPromiseHandler<T, TResult1>, onRejected?: RejectedPromiseHandler<TResult2>): PromiseLike<TResult1 | TResult2>;
|
|
2210
2210
|
/**
|
|
2211
2211
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
2212
|
-
* @param onResolved The callback to execute when the Promise is resolved.
|
|
2213
|
-
* @param onRejected The callback to execute when the Promise is rejected.
|
|
2212
|
+
* @param onResolved - The callback to execute when the Promise is resolved.
|
|
2213
|
+
* @param onRejected - The callback to execute when the Promise is rejected.
|
|
2214
2214
|
* @returns A Promise for the completion of which ever callback is executed.
|
|
2215
2215
|
* @example
|
|
2216
2216
|
* ```ts
|
|
@@ -2227,7 +2227,7 @@ declare namespace ApplicationInsights {
|
|
|
2227
2227
|
then<TResult1 = T, TResult2 = never>(onResolved?: ResolvedPromiseHandler<T, TResult1>, onRejected?: RejectedPromiseHandler<TResult2>): Promise<TResult1 | TResult2>;
|
|
2228
2228
|
/**
|
|
2229
2229
|
* Attaches a callback for only the rejection of the Promise.
|
|
2230
|
-
* @param onRejected The callback to execute when the Promise is rejected.
|
|
2230
|
+
* @param onRejected - The callback to execute when the Promise is rejected.
|
|
2231
2231
|
* @returns A Promise for the completion of the callback.
|
|
2232
2232
|
* @example
|
|
2233
2233
|
* ```ts
|
|
@@ -2244,7 +2244,7 @@ declare namespace ApplicationInsights {
|
|
|
2244
2244
|
catch<TResult = never>(onRejected?: ((reason: any) => TResult | IPromise<TResult>) | undefined | null): IPromise<T | TResult>;
|
|
2245
2245
|
/**
|
|
2246
2246
|
* Attaches a callback for only the rejection of the Promise.
|
|
2247
|
-
* @param onRejected The callback to execute when the Promise is rejected.
|
|
2247
|
+
* @param onRejected - The callback to execute when the Promise is rejected.
|
|
2248
2248
|
* @returns A Promise for the completion of the callback.
|
|
2249
2249
|
* @example
|
|
2250
2250
|
* ```ts
|
|
@@ -2261,7 +2261,7 @@ declare namespace ApplicationInsights {
|
|
|
2261
2261
|
catch<TResult = never>(onRejected?: ((reason: any) => TResult | IPromise<TResult>) | undefined | null): PromiseLike<T | TResult>;
|
|
2262
2262
|
/**
|
|
2263
2263
|
* Attaches a callback for only the rejection of the Promise.
|
|
2264
|
-
* @param onRejected The callback to execute when the Promise is rejected.
|
|
2264
|
+
* @param onRejected - The callback to execute when the Promise is rejected.
|
|
2265
2265
|
* @returns A Promise for the completion of the callback.
|
|
2266
2266
|
* @example
|
|
2267
2267
|
* ```ts
|
|
@@ -2279,7 +2279,7 @@ declare namespace ApplicationInsights {
|
|
|
2279
2279
|
/**
|
|
2280
2280
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
2281
2281
|
* resolved value cannot be modified from the callback.
|
|
2282
|
-
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
2282
|
+
* @param onfinally - The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
2283
2283
|
* @returns A Promise for the completion of the callback.
|
|
2284
2284
|
* @example
|
|
2285
2285
|
* ```ts
|
|
@@ -2715,14 +2715,14 @@ declare namespace ApplicationInsights {
|
|
|
2715
2715
|
/**
|
|
2716
2716
|
* This defines the handler function for when a promise is rejected.
|
|
2717
2717
|
* @param value - This is the value passed as part of resolving the Promise
|
|
2718
|
-
* @return This may return a value, another Promise or void. @see {@link IPromise.then} for how the value is handled.
|
|
2718
|
+
* @return This may return a value, another Promise or void. @see {@link https://nevware21.github.io/ts-async/typedoc/interfaces/IPromise.html#then | IPromise.then} for how the value is handled.
|
|
2719
2719
|
*/
|
|
2720
2720
|
type RejectedPromiseHandler<T = never> = (((reason: any) => T | IPromise<T> | PromiseLike<T>) | undefined | null);
|
|
2721
2721
|
|
|
2722
2722
|
/**
|
|
2723
2723
|
* This defines the handler function for when a promise is resolved.
|
|
2724
2724
|
* @param value - This is the value passed as part of resolving the Promise
|
|
2725
|
-
* @return This may return a value, another Promise or void. @see {@link IPromise.then} for how the value is handled.
|
|
2725
|
+
* @return This may return a value, another Promise or void. @see {@link https://nevware21.github.io/ts-async/typedoc/interfaces/IPromise.html#then | IPromise.then} for how the value is handled.
|
|
2726
2726
|
*/
|
|
2727
2727
|
type ResolvedPromiseHandler<T, TResult1 = T> = (((value: T) => TResult1 | IPromise<TResult1> | PromiseLike<TResult1>) | undefined | null);
|
|
2728
2728
|
|