http-request-manager 18.16.2 → 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,8 +696,10 @@ 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>;
|
|
702
|
+
connectionError$: Observable<string | null>;
|
|
701
703
|
constructor(apiOptions: ApiRequest, dataType: DataType | undefined, database?: DatabaseStorage);
|
|
702
704
|
/**
|
|
703
705
|
* Add appropriate prefix to a channel name if not already present
|
|
@@ -936,8 +938,10 @@ declare class WebsocketService {
|
|
|
936
938
|
*/
|
|
937
939
|
declare class WebSocketManagerService {
|
|
938
940
|
private static socket;
|
|
939
|
-
private static
|
|
941
|
+
private static isConnectingSubject;
|
|
942
|
+
isConnecting$: Observable<boolean>;
|
|
940
943
|
private static connectionInitialized;
|
|
944
|
+
private static shouldRetry;
|
|
941
945
|
private static lastOptions;
|
|
942
946
|
private static lastJwtToken;
|
|
943
947
|
private static retryCount;
|
|
@@ -953,6 +957,8 @@ declare class WebSocketManagerService {
|
|
|
953
957
|
messages$: Observable<any>;
|
|
954
958
|
private static connectionStatus;
|
|
955
959
|
connectionStatus$: Observable<boolean>;
|
|
960
|
+
private static connectionError;
|
|
961
|
+
connectionError$: Observable<string | null>;
|
|
956
962
|
private static isSubscribed;
|
|
957
963
|
private static subscribedChannels;
|
|
958
964
|
subscribedChannels$: Observable<Set<string>>;
|
|
@@ -1544,8 +1550,10 @@ declare class HTTPManagerService<T> extends RequestService {
|
|
|
1544
1550
|
connectionStatus$: Observable<boolean>;
|
|
1545
1551
|
messages$: Observable<any>;
|
|
1546
1552
|
subscribedChannels$: Observable<Set<string>>;
|
|
1553
|
+
isConnecting$: Observable<boolean>;
|
|
1547
1554
|
retryCount$: Observable<number>;
|
|
1548
1555
|
maxRetries$: Observable<number>;
|
|
1556
|
+
connectionError$: Observable<string | null>;
|
|
1549
1557
|
private countdown;
|
|
1550
1558
|
countdown$: Observable<number>;
|
|
1551
1559
|
private error;
|
|
@@ -3412,6 +3420,8 @@ declare class RequestManagerWsDemoComponent implements OnInit {
|
|
|
3412
3420
|
retryCount$: rxjs.Observable<number>;
|
|
3413
3421
|
maxRetries$: rxjs.Observable<number>;
|
|
3414
3422
|
connectionStatus$: rxjs.Observable<boolean>;
|
|
3423
|
+
isConnecting$: rxjs.Observable<boolean>;
|
|
3424
|
+
connectionError$: rxjs.Observable<string | null>;
|
|
3415
3425
|
data$: rxjs.Observable<any>;
|
|
3416
3426
|
isPending$: rxjs.Observable<boolean>;
|
|
3417
3427
|
ngOnInit(): void;
|
|
Binary file
|