@microsoft/1ds-post-js 4.3.0-nightly3.2406-09 → 4.3.0

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 (47) hide show
  1. package/bundle/es5/{ms.post-4.3.0-nightly3.2406-09.gbl.js → ms.post-4.3.0.gbl.js} +9 -9
  2. package/bundle/es5/ms.post-4.3.0.gbl.js.map +1 -0
  3. package/bundle/es5/ms.post-4.3.0.gbl.min.js +7 -0
  4. package/bundle/es5/ms.post-4.3.0.gbl.min.js.map +1 -0
  5. package/bundle/es5/ms.post-4.3.0.integrity.json +46 -0
  6. package/bundle/es5/{ms.post-4.3.0-nightly3.2406-09.js → ms.post-4.3.0.js} +9 -9
  7. package/bundle/es5/ms.post-4.3.0.js.map +1 -0
  8. package/bundle/es5/ms.post-4.3.0.min.js +7 -0
  9. package/bundle/es5/ms.post-4.3.0.min.js.map +1 -0
  10. package/bundle/es5/ms.post.gbl.js +8 -8
  11. package/bundle/es5/ms.post.gbl.js.map +1 -1
  12. package/bundle/es5/ms.post.gbl.min.js +2 -2
  13. package/bundle/es5/ms.post.gbl.min.js.map +1 -1
  14. package/bundle/es5/ms.post.integrity.json +17 -17
  15. package/bundle/es5/ms.post.js +8 -8
  16. package/bundle/es5/ms.post.js.map +1 -1
  17. package/bundle/es5/ms.post.min.js +2 -2
  18. package/bundle/es5/ms.post.min.js.map +1 -1
  19. package/dist/es5/ms.post.js +6 -6
  20. package/dist/es5/ms.post.js.map +1 -1
  21. package/dist/es5/ms.post.min.js +2 -2
  22. package/dist/es5/ms.post.min.js.map +1 -1
  23. package/dist-es5/BatchNotificationActions.js +1 -1
  24. package/dist-es5/ClockSkewManager.js +1 -1
  25. package/dist-es5/DataModels.js +1 -1
  26. package/dist-es5/EventBatch.js +1 -1
  27. package/dist-es5/HttpManager.js +1 -1
  28. package/dist-es5/Index.js +1 -1
  29. package/dist-es5/InternalConstants.js +1 -1
  30. package/dist-es5/KillSwitch.js +1 -1
  31. package/dist-es5/PostChannel.js +2 -2
  32. package/dist-es5/PostChannel.js.map +1 -1
  33. package/dist-es5/RetryPolicy.js +1 -1
  34. package/dist-es5/Serializer.js +1 -1
  35. package/dist-es5/TimeoutOverrideWrapper.js +1 -1
  36. package/dist-es5/__DynamicConstants.js +1 -1
  37. package/dist-es5/typings/XDomainRequest.js +1 -1
  38. package/package.json +63 -66
  39. package/types/1ds-post-js.d.ts +1 -1
  40. package/types/1ds-post-js.namespaced.d.ts +3 -3
  41. package/bundle/es5/ms.post-4.3.0-nightly3.2406-09.gbl.js.map +0 -1
  42. package/bundle/es5/ms.post-4.3.0-nightly3.2406-09.gbl.min.js +0 -7
  43. package/bundle/es5/ms.post-4.3.0-nightly3.2406-09.gbl.min.js.map +0 -1
  44. package/bundle/es5/ms.post-4.3.0-nightly3.2406-09.integrity.json +0 -46
  45. package/bundle/es5/ms.post-4.3.0-nightly3.2406-09.js.map +0 -1
  46. package/bundle/es5/ms.post-4.3.0-nightly3.2406-09.min.js +0 -7
  47. package/bundle/es5/ms.post-4.3.0-nightly3.2406-09.min.js.map +0 -1
@@ -1,5 +1,5 @@
1
1
  /*
2
- * 1DS JS SDK Post Channel, 4.3.0-nightly3.2406-09
2
+ * 1DS JS SDK Post Channel, 4.3.0
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
- * 1DS JS SDK Post Channel, 4.3.0-nightly3.2406-09
2
+ * 1DS JS SDK Post Channel, 4.3.0
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  *
5
5
  * Microsoft Application Insights Team
@@ -2528,14 +2528,14 @@ declare namespace oneDS {
2528
2528
 
2529
2529
  /**
2530
2530
  * This defines the handler function for when a promise is rejected.
2531
- * @param value This is the value passed as part of resolving the Promise
2531
+ * @param value - This is the value passed as part of resolving the Promise
2532
2532
  * @return This may return a value, another Promise or void. @see {@link IPromise.then} for how the value is handled.
2533
2533
  */
2534
2534
  type RejectedPromiseHandler<T = never> = (((reason: any) => T | IPromise<T> | PromiseLike<T>) | undefined | null);
2535
2535
 
2536
2536
  /**
2537
2537
  * This defines the handler function for when a promise is resolved.
2538
- * @param value This is the value passed as part of resolving the Promise
2538
+ * @param value - This is the value passed as part of resolving the Promise
2539
2539
  * @return This may return a value, another Promise or void. @see {@link IPromise.then} for how the value is handled.
2540
2540
  */
2541
2541
  type ResolvedPromiseHandler<T, TResult1 = T> = (((value: T) => TResult1 | IPromise<TResult1> | PromiseLike<TResult1>) | undefined | null);