@@ -270,12 +270,11 @@ return /******/ (function(modules) { // webpackBootstrap
270
270
var db = setup . db ;
271
271
272
272
273
- var config = new _config2 . default ( { setup : setup , db : db } ) ;
273
+ var config = this . _config = new _config2 . default ( { setup : setup , db : db } ) ;
274
274
var crypto = new _index2 . default ( { config : config } ) ;
275
275
var networking = new _networking2 . default ( { config : config , crypto : crypto , sendBeacon : sendBeacon } ) ;
276
276
277
277
var modules = { config : config , networking : networking , crypto : crypto } ;
278
-
279
278
var listenerManager = new _listener_manager2 . default ( ) ;
280
279
281
280
var timeEndpoint = _endpoint2 . default . bind ( this , modules , timeEndpointConfig ) ;
@@ -285,7 +284,10 @@ return /******/ (function(modules) { // webpackBootstrap
285
284
var subscribeEndpoint = _endpoint2 . default . bind ( this , modules , subscribeEndpointConfig ) ;
286
285
287
286
288
- var subscriptionManager = new _subscription_manager2 . default ( { timeEndpoint : timeEndpoint , leaveEndpoint : leaveEndpoint , heartbeatEndpoint : heartbeatEndpoint , setStateEndpoint : setStateEndpoint , subscribeEndpoint : subscribeEndpoint ,
287
+ var subscriptionManager = new _subscription_manager2 . default ( {
288
+ timeEndpoint : timeEndpoint ,
289
+ leaveEndpoint : leaveEndpoint , heartbeatEndpoint : heartbeatEndpoint , setStateEndpoint : setStateEndpoint ,
290
+ subscribeEndpoint : subscribeEndpoint ,
289
291
config : modules . config ,
290
292
listenerManager : listenerManager
291
293
} ) ;
@@ -3947,7 +3949,7 @@ return /******/ (function(modules) { // webpackBootstrap
3947
3949
callInstance = networking . GET ( outgoingParams , _networkingParams , onResponse ) ;
3948
3950
}
3949
3951
3950
- if ( endpoint . getOperation === 'PNSubscribeOperation' ) {
3952
+ if ( endpoint . getOperation ( ) === 'PNSubscribeOperation' ) {
3951
3953
return callInstance ;
3952
3954
}
3953
3955
} ;
@@ -5073,6 +5075,7 @@ return /******/ (function(modules) { // webpackBootstrap
5073
5075
exports . validateParams = validateParams ;
5074
5076
exports . getURL = getURL ;
5075
5077
exports . getRequestTimeout = getRequestTimeout ;
5078
+ exports . isAuthSupported = isAuthSupported ;
5076
5079
exports . prepareParams = prepareParams ;
5077
5080
exports . handleResponse = handleResponse ;
5078
5081
@@ -5101,6 +5104,10 @@ return /******/ (function(modules) { // webpackBootstrap
5101
5104
return config . getTransactionTimeout ( ) ;
5102
5105
}
5103
5106
5107
+ function isAuthSupported ( ) {
5108
+ return false ;
5109
+ }
5110
+
5104
5111
function prepareParams ( modules , incomingParams ) {
5105
5112
var channel = incomingParams . channel ;
5106
5113
var channelGroup = incomingParams . channelGroup ;
@@ -5145,6 +5152,7 @@ return /******/ (function(modules) { // webpackBootstrap
5145
5152
exports . validateParams = validateParams ;
5146
5153
exports . getURL = getURL ;
5147
5154
exports . getRequestTimeout = getRequestTimeout ;
5155
+ exports . isAuthSupported = isAuthSupported ;
5148
5156
exports . prepareParams = prepareParams ;
5149
5157
exports . handleResponse = handleResponse ;
5150
5158
@@ -5173,6 +5181,10 @@ return /******/ (function(modules) { // webpackBootstrap
5173
5181
return config . getTransactionTimeout ( ) ;
5174
5182
}
5175
5183
5184
+ function isAuthSupported ( ) {
5185
+ return false ;
5186
+ }
5187
+
5176
5188
function prepareParams ( modules , incomingParams ) {
5177
5189
var _incomingParams$chann = incomingParams . channels ;
5178
5190
var channels = _incomingParams$chann === undefined ? [ ] : _incomingParams$chann ;
0 commit comments