pusher-js 8.1.0 → 8.2.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.
- package/CHANGELOG.md +4 -0
- package/dist/node/pusher.js +2 -3
- package/dist/node/pusher.js.map +1 -1
- package/dist/react-native/pusher.js +2 -2
- package/dist/react-native/pusher.js.map +1 -1
- package/dist/web/pusher-with-encryption.js +2 -3
- package/dist/web/pusher-with-encryption.js.map +1 -1
- package/dist/web/pusher-with-encryption.min.js +2 -2
- package/dist/web/pusher-with-encryption.min.js.map +1 -1
- package/dist/web/pusher.js +2 -3
- package/dist/web/pusher.js.map +1 -1
- package/dist/web/pusher.min.js +2 -2
- package/dist/web/pusher.min.js.map +1 -1
- package/dist/worker/pusher-with-encryption.worker.js +2 -3
- package/dist/worker/pusher-with-encryption.worker.js.map +1 -1
- package/dist/worker/pusher-with-encryption.worker.min.js +2 -2
- package/dist/worker/pusher-with-encryption.worker.min.js.map +1 -1
- package/dist/worker/pusher.worker.js +2 -3
- package/dist/worker/pusher.worker.js.map +1 -1
- package/dist/worker/pusher.worker.min.js +2 -2
- package/dist/worker/pusher.worker.min.js.map +1 -1
- package/package.json +1 -1
- package/src/runtimes/isomorphic/default_strategy.ts +0 -1
- package/src/runtimes/web/default_strategy.ts +0 -1
package/dist/web/pusher.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Pusher JavaScript Library v8.
|
|
2
|
+
* Pusher JavaScript Library v8.2.0
|
|
3
3
|
* https://pusher.com/
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2020, Pusher
|
|
@@ -591,7 +591,7 @@ var ScriptReceivers = new ScriptReceiverFactory('_pusher_script_', 'Pusher.Scrip
|
|
|
591
591
|
|
|
592
592
|
// CONCATENATED MODULE: ./src/core/defaults.ts
|
|
593
593
|
var Defaults = {
|
|
594
|
-
VERSION: "8.
|
|
594
|
+
VERSION: "8.2.0",
|
|
595
595
|
PROTOCOL: 7,
|
|
596
596
|
wsPort: 80,
|
|
597
597
|
wssPort: 443,
|
|
@@ -3173,7 +3173,6 @@ var getDefaultStrategy = function (config, baseOptions, defineTransport) {
|
|
|
3173
3173
|
timeoutLimit: 60000
|
|
3174
3174
|
};
|
|
3175
3175
|
var ws_manager = new transport_manager_TransportManager({
|
|
3176
|
-
lives: 2,
|
|
3177
3176
|
minPingDelay: 10000,
|
|
3178
3177
|
maxPingDelay: config.activityTimeout
|
|
3179
3178
|
});
|