http-request-manager 18.16.3 → 18.16.4
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.
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "http-request-manager",
|
|
3
|
-
"version": "18.16.
|
|
3
|
+
"version": "18.16.4",
|
|
4
4
|
"homepage": "https://wavecoders.ca",
|
|
5
5
|
"author": "Mike Bonifacio <wavecoders@gmail.com> (http://wavecoders@gmail.com/)",
|
|
6
6
|
"description": "This is an Angular Module containing Components/Services using Material",
|
|
@@ -696,6 +696,7 @@ declare class HTTPManagerStateService<T extends {
|
|
|
696
696
|
private ownSessionId;
|
|
697
697
|
wsOptions: WSOptions;
|
|
698
698
|
connectionStatus$: Observable<boolean>;
|
|
699
|
+
isConnecting$: Observable<boolean>;
|
|
699
700
|
wsRetryCount$: Observable<number>;
|
|
700
701
|
wsMaxRetries$: Observable<number>;
|
|
701
702
|
connectionError$: Observable<string | null>;
|
|
@@ -937,8 +938,10 @@ declare class WebsocketService {
|
|
|
937
938
|
*/
|
|
938
939
|
declare class WebSocketManagerService {
|
|
939
940
|
private static socket;
|
|
940
|
-
private static
|
|
941
|
+
private static isConnectingSubject;
|
|
942
|
+
isConnecting$: Observable<boolean>;
|
|
941
943
|
private static connectionInitialized;
|
|
944
|
+
private static shouldRetry;
|
|
942
945
|
private static lastOptions;
|
|
943
946
|
private static lastJwtToken;
|
|
944
947
|
private static retryCount;
|
|
@@ -1547,6 +1550,7 @@ declare class HTTPManagerService<T> extends RequestService {
|
|
|
1547
1550
|
connectionStatus$: Observable<boolean>;
|
|
1548
1551
|
messages$: Observable<any>;
|
|
1549
1552
|
subscribedChannels$: Observable<Set<string>>;
|
|
1553
|
+
isConnecting$: Observable<boolean>;
|
|
1550
1554
|
retryCount$: Observable<number>;
|
|
1551
1555
|
maxRetries$: Observable<number>;
|
|
1552
1556
|
connectionError$: Observable<string | null>;
|
|
@@ -3416,6 +3420,7 @@ declare class RequestManagerWsDemoComponent implements OnInit {
|
|
|
3416
3420
|
retryCount$: rxjs.Observable<number>;
|
|
3417
3421
|
maxRetries$: rxjs.Observable<number>;
|
|
3418
3422
|
connectionStatus$: rxjs.Observable<boolean>;
|
|
3423
|
+
isConnecting$: rxjs.Observable<boolean>;
|
|
3419
3424
|
connectionError$: rxjs.Observable<string | null>;
|
|
3420
3425
|
data$: rxjs.Observable<any>;
|
|
3421
3426
|
isPending$: rxjs.Observable<boolean>;
|
|
Binary file
|