@microsoft/applicationinsights-dependencies-js 3.4.0-nightlybeta3.2505-20 → 3.4.0-nightlybeta3.2505-36
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 +15 -15
- 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 +17 -17
- 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 +17 -17
- 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 +15 -15
- 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 +22 -3
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.4.0-nightlybeta3.2505-
|
|
3
|
+
"version": "3.4.0-nightlybeta3.2505-36",
|
|
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.4.0-nightlybeta3.2505-
|
|
61
|
-
"@microsoft/applicationinsights-common": "3.4.0-nightlybeta3.2505-
|
|
60
|
+
"@microsoft/applicationinsights-core-js": "3.4.0-nightlybeta3.2505-36",
|
|
61
|
+
"@microsoft/applicationinsights-common": "3.4.0-nightlybeta3.2505-36",
|
|
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.4.0-nightlybeta3.2505-
|
|
2
|
+
* Microsoft Application Insights XHR dependencies plugin, 3.4.0-nightlybeta3.2505-36
|
|
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.4.0-nightlybeta3.2505-
|
|
2
|
+
* Microsoft Application Insights XHR dependencies plugin, 3.4.0-nightlybeta3.2505-36
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*
|
|
5
5
|
* Microsoft Application Insights Team
|
|
@@ -1200,13 +1200,32 @@ declare namespace ApplicationInsights {
|
|
|
1200
1200
|
/**
|
|
1201
1201
|
* [Optional] An array of the page unload events that you would like to be ignored, special note there must be at least one valid unload
|
|
1202
1202
|
* event hooked, if you list all or the runtime environment only supports a listed "disabled" event it will still be hooked, if required by the SDK.
|
|
1203
|
-
* Unload events include "beforeunload", "unload", "visibilitychange" (with 'hidden' state) and "pagehide"
|
|
1203
|
+
* Unload events include "beforeunload", "unload", "visibilitychange" (with 'hidden' state) and "pagehide".
|
|
1204
|
+
*
|
|
1205
|
+
* This can be used to avoid jQuery 3.7.1+ deprecation warnings and Chrome warnings about the unload event:
|
|
1206
|
+
* @example
|
|
1207
|
+
* ```javascript
|
|
1208
|
+
* {
|
|
1209
|
+
* disablePageUnloadEvents: ["unload"]
|
|
1210
|
+
* }
|
|
1211
|
+
* ```
|
|
1212
|
+
*
|
|
1213
|
+
* For more details, see the [Page Unload Events documentation](https://microsoft.github.io/ApplicationInsights-JS/docs/PageUnloadEvents.html).
|
|
1204
1214
|
*/
|
|
1205
1215
|
disablePageUnloadEvents?: string[];
|
|
1206
1216
|
/**
|
|
1207
1217
|
* [Optional] An array of page show events that you would like to be ignored, special note there must be at lease one valid show event
|
|
1208
1218
|
* hooked, if you list all or the runtime environment only supports a listed (disabled) event it will STILL be hooked, if required by the SDK.
|
|
1209
|
-
* Page Show events include "pageshow" and "visibilitychange" (with 'visible' state)
|
|
1219
|
+
* Page Show events include "pageshow" and "visibilitychange" (with 'visible' state).
|
|
1220
|
+
*
|
|
1221
|
+
* @example
|
|
1222
|
+
* ```javascript
|
|
1223
|
+
* {
|
|
1224
|
+
* disablePageShowEvents: ["pageshow"]
|
|
1225
|
+
* }
|
|
1226
|
+
* ```
|
|
1227
|
+
*
|
|
1228
|
+
* For more details, see the [Page Unload Events documentation](https://microsoft.github.io/ApplicationInsights-JS/docs/PageUnloadEvents.html).
|
|
1210
1229
|
*/
|
|
1211
1230
|
disablePageShowEvents?: string[];
|
|
1212
1231
|
/**
|