pusher-js 7.2.0 → 7.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 (35) hide show
  1. package/.github/dependabot.yml +14 -0
  2. package/CHANGELOG.md +4 -0
  3. package/dist/node/pusher.js +2 -2
  4. package/dist/node/pusher.js.map +1 -1
  5. package/dist/react-native/pusher.js +2 -2
  6. package/dist/react-native/pusher.js.map +1 -1
  7. package/dist/web/pusher-with-encryption.js +2 -2
  8. package/dist/web/pusher-with-encryption.js.map +1 -1
  9. package/dist/web/pusher-with-encryption.min.js +2 -2
  10. package/dist/web/pusher-with-encryption.min.js.map +1 -1
  11. package/dist/web/pusher.js +2 -2
  12. package/dist/web/pusher.js.map +1 -1
  13. package/dist/web/pusher.min.js +2 -2
  14. package/dist/web/pusher.min.js.map +1 -1
  15. package/dist/worker/pusher-with-encryption.worker.js +2 -2
  16. package/dist/worker/pusher-with-encryption.worker.js.map +1 -1
  17. package/dist/worker/pusher-with-encryption.worker.min.js +2 -2
  18. package/dist/worker/pusher-with-encryption.worker.min.js.map +1 -1
  19. package/dist/worker/pusher.worker.js +2 -2
  20. package/dist/worker/pusher.worker.js.map +1 -1
  21. package/dist/worker/pusher.worker.min.js +2 -2
  22. package/dist/worker/pusher.worker.min.js.map +1 -1
  23. package/index.d.ts +19 -10
  24. package/package.json +2 -2
  25. package/react-native/index.d.ts +18 -4
  26. package/src/core/auth/options.ts +8 -1
  27. package/src/core/config.ts +3 -6
  28. package/src/core/defaults.ts +4 -5
  29. package/src/core/options.ts +4 -5
  30. package/types/src/core/auth/options.d.ts +3 -1
  31. package/types/src/core/defaults.d.ts +3 -3
  32. package/types/src/core/options.d.ts +3 -3
  33. package/with-encryption/index.d.ts +18 -4
  34. package/worker/index.d.ts +18 -4
  35. package/worker/with-encryption/index.d.ts +18 -4
@@ -0,0 +1,14 @@
1
+ # To get started with Dependabot version updates, you'll need to specify which
2
+ # package ecosystems to update and where the package manifests are located.
3
+ # Please see the documentation for all configuration options:
4
+ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5
+
6
+ version: 2
7
+ updates:
8
+ - package-ecosystem: "npm"
9
+ directory: "/" # Location of package manifests
10
+ schedule:
11
+ interval: "weekly"
12
+ # Always increase the version requirement
13
+ # to match the new version.
14
+ versioning-strategy: increase
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 7.3.0
4
+
5
+ * [FIXED] Restore previously exported types
6
+
3
7
  ## 7.2.0
4
8
 
5
9
  * [ADDED] Add support for subscription_count event
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Pusher JavaScript Library v7.2.0
2
+ * Pusher JavaScript Library v7.3.0
3
3
  * https://pusher.com/
4
4
  *
5
5
  * Copyright 2020, Pusher
@@ -7487,7 +7487,7 @@ function safeJSONStringify(source) {
7487
7487
 
7488
7488
  // CONCATENATED MODULE: ./src/core/defaults.ts
7489
7489
  var Defaults = {
7490
- VERSION: "7.2.0",
7490
+ VERSION: "7.3.0",
7491
7491
  PROTOCOL: 7,
7492
7492
  wsPort: 80,
7493
7493
  wssPort: 443,