@microsoft/1ds-core-js 4.3.9-nightly3.2505-31 → 4.3.9-nightly3.2505-33

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.
Files changed (37) hide show
  1. package/README.md +2 -2
  2. package/bundle/es5/{ms.core-4.3.9-nightly3.2505-31.gbl.js → ms.core-4.3.9-nightly3.2505-33.gbl.js} +6 -6
  3. package/bundle/es5/{ms.core-4.3.9-nightly3.2505-31.gbl.js.map → ms.core-4.3.9-nightly3.2505-33.gbl.js.map} +1 -1
  4. package/bundle/es5/{ms.core-4.3.9-nightly3.2505-31.gbl.min.js → ms.core-4.3.9-nightly3.2505-33.gbl.min.js} +3 -3
  5. package/bundle/es5/{ms.core-4.3.9-nightly3.2505-31.gbl.min.js.map → ms.core-4.3.9-nightly3.2505-33.gbl.min.js.map} +1 -1
  6. package/bundle/es5/ms.core-4.3.9-nightly3.2505-33.integrity.json +46 -0
  7. package/bundle/es5/{ms.core-4.3.9-nightly3.2505-31.js → ms.core-4.3.9-nightly3.2505-33.js} +6 -6
  8. package/bundle/es5/{ms.core-4.3.9-nightly3.2505-31.js.map → ms.core-4.3.9-nightly3.2505-33.js.map} +1 -1
  9. package/bundle/es5/{ms.core-4.3.9-nightly3.2505-31.min.js → ms.core-4.3.9-nightly3.2505-33.min.js} +3 -3
  10. package/bundle/es5/{ms.core-4.3.9-nightly3.2505-31.min.js.map → ms.core-4.3.9-nightly3.2505-33.min.js.map} +1 -1
  11. package/bundle/es5/ms.core.gbl.js +5 -5
  12. package/bundle/es5/ms.core.gbl.js.map +1 -1
  13. package/bundle/es5/ms.core.gbl.min.js +2 -2
  14. package/bundle/es5/ms.core.gbl.min.js.map +1 -1
  15. package/bundle/es5/ms.core.integrity.json +17 -17
  16. package/bundle/es5/ms.core.js +5 -5
  17. package/bundle/es5/ms.core.js.map +1 -1
  18. package/bundle/es5/ms.core.min.js +2 -2
  19. package/bundle/es5/ms.core.min.js.map +1 -1
  20. package/dist/es5/ms.core.js +3 -3
  21. package/dist/es5/ms.core.js.map +1 -1
  22. package/dist/es5/ms.core.min.js +2 -2
  23. package/dist/es5/ms.core.min.js.map +1 -1
  24. package/dist-es5/AppInsightsCore.js +1 -1
  25. package/dist-es5/BaseCore.js +1 -1
  26. package/dist-es5/DataModels.js +1 -1
  27. package/dist-es5/Enums.js +1 -1
  28. package/dist-es5/Index.js +1 -1
  29. package/dist-es5/InternalConstants.js +1 -1
  30. package/dist-es5/Utils.js +2 -2
  31. package/dist-es5/Utils.js.map +1 -1
  32. package/dist-es5/ValueSanitizer.js +1 -1
  33. package/dist-es5/__DynamicConstants.js +1 -1
  34. package/package.json +2 -2
  35. package/types/1ds-core-js.d.ts +2 -2
  36. package/types/1ds-core-js.namespaced.d.ts +23 -4
  37. package/bundle/es5/ms.core-4.3.9-nightly3.2505-31.integrity.json +0 -46
package/README.md CHANGED
@@ -52,8 +52,8 @@ appInsightsCore.initialize(coreConfig, []);
52
52
  | idLength | [Optional] Identifies the default length used to generate new random session and user id's. Defaults to 22, previous default value was 5 (v2.4.2 or less), if you need to keep the previous maximum length you should set this value to 5. | number<br />Default: 22
53
53
  | disableEventTimings | [Optional] Disables additional internal event timings that are added during processing of events, the timings are not sent as part telemetry items to the server. | boolean<br/>Default: false
54
54
  | enableCompoundKey | [Optional] Enables support for objects with compound keys which indirectly represent an object where the "key" of the object contains a "." as part of it's name.<br />Example: <code>event: { "somedata.embeddedvalue": 123 } </code> | boolean<br />Default: false
55
- | disablePageUnloadEvents | [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 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.<br /> Unload events include "beforeunload", "unload", "visibilitychange" (with 'hidden' state) and "pagehide"| string[]<br />Default: not specified
56
- | disablePageShowEvents | [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 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.<br/> Page Show events include "pageshow" and "visibilitychange" (with 'visible' state)| string[]<br /> Default: not specified
55
+ | [disablePageUnloadEvents](https://microsoft.github.io/ApplicationInsights-JS/webSdk/1ds-core-js/interfaces/IConfiguration.html#disablePageUnloadEvents) | [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 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.<br /> Unload events include "beforeunload", "unload", "visibilitychange" (with 'hidden' state) and "pagehide". See [Page Unload Events documentation](https://microsoft.github.io/ApplicationInsights-JS/docs/PageUnloadEvents.html) for details.| string[]<br />Default: not specified
56
+ | [disablePageShowEvents](https://microsoft.github.io/ApplicationInsights-JS/webSdk/1ds-core-js/interfaces/IConfiguration.html#disablePageShowEvents) | [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 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.<br/> Page Show events include "pageshow" and "visibilitychange" (with 'visible' state). See [Page Unload Events documentation](https://microsoft.github.io/ApplicationInsights-JS/docs/PageUnloadEvents.html) for details.| string[]<br /> Default: not specified
57
57
 
58
58
  ### [IPropertyStorageOverride](https://microsoft.github.io/ApplicationInsights-JS/webSdk/1ds-core-js/interfaces/IPropertyStorageOverride.html)
59
59
 
@@ -1,12 +1,12 @@
1
1
  /*!
2
- * 1DS JS SDK Core, 4.3.9-nightly3.2505-31
2
+ * 1DS JS SDK Core, 4.3.9-nightly3.2505-33
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  * (Microsoft Internal Only)
5
5
  */
6
6
  (function (global, factory) {
7
7
  var undef = "undefined";
8
- var nsKey, key, nm, theExports = {}, modName = "es5_ms_core_4_3_9_nightly3_2505_31", msMod="__ms$mod__";
9
- var mods={}, modDetail=mods[modName]={}, ver="4.3.9-nightly3.2505-31";
8
+ var nsKey, key, nm, theExports = {}, modName = "es5_ms_core_4_3_9_nightly3_2505_33", msMod="__ms$mod__";
9
+ var mods={}, modDetail=mods[modName]={}, ver="4.3.9-nightly3.2505-33";
10
10
  // Versioned namespace "oneDS4"
11
11
  var exportNs=global, nsKey="oneDS4", exportNs=exportNs[nsKey]=(exportNs[nsKey]||{});
12
12
  // Global namespace "oneDS"
@@ -2435,7 +2435,7 @@ function newId(maxLength) {
2435
2435
  return result;
2436
2436
  }
2437
2437
 
2438
- var version = '3.3.9-nightly3.2505-31';
2438
+ var version = '3.3.9-nightly3.2505-33';
2439
2439
  var instanceName = "." + newId(6);
2440
2440
  var _dataUid = 0;
2441
2441
  function _canAcceptData(target) {
@@ -6606,7 +6606,7 @@ var _DYN_RM_FIELD_SANITIZER = "rmFieldSanitizer";
6606
6606
  var _DYN_CAN_HANDLE = "canHandle";
6607
6607
 
6608
6608
  var _a;
6609
- var Version = '4.3.9-nightly3.2505-31';
6609
+ var Version = '4.3.9-nightly3.2505-33';
6610
6610
  var FullVersionString = "1DS-Web-JS-" + Version;
6611
6611
  var ObjHasOwnProperty = ObjProto$1.hasOwnProperty;
6612
6612
  var strDisabledPropertyName = "Microsoft_ApplicationInsights_BypassAjaxInstrumentation";
@@ -7363,4 +7363,4 @@ exports.toISOString = toISOString;
7363
7363
  exports.useXDomainRequest = useXDomainRequest;
7364
7364
 
7365
7365
  }));
7366
- //# sourceMappingURL=ms.core-4.3.9-nightly3.2505-31.gbl.js.map
7366
+ //# sourceMappingURL=ms.core-4.3.9-nightly3.2505-33.gbl.js.map