http-request-manager 18.16.1 → 18.16.3
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.3",
|
|
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",
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
"crypto-js": "^4.2.0",
|
|
23
23
|
"dexie": "^4.0.11",
|
|
24
24
|
"file-downloader-action": "^18.0.0",
|
|
25
|
+
"node-sql-parser": "~5.4.0",
|
|
25
26
|
"rxjs": "~7.8.0",
|
|
26
27
|
"toast-message-display": "^18.0.7"
|
|
27
28
|
},
|
|
28
29
|
"dependencies": {
|
|
29
|
-
"node-sql-parser": "~5.4.0",
|
|
30
30
|
"tslib": "^2.3.0"
|
|
31
31
|
},
|
|
32
32
|
"sideEffects": false,
|
|
@@ -47,4 +47,4 @@
|
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
49
|
"type": "module"
|
|
50
|
-
}
|
|
50
|
+
}
|
|
@@ -698,6 +698,7 @@ declare class HTTPManagerStateService<T extends {
|
|
|
698
698
|
connectionStatus$: Observable<boolean>;
|
|
699
699
|
wsRetryCount$: Observable<number>;
|
|
700
700
|
wsMaxRetries$: Observable<number>;
|
|
701
|
+
connectionError$: Observable<string | null>;
|
|
701
702
|
constructor(apiOptions: ApiRequest, dataType: DataType | undefined, database?: DatabaseStorage);
|
|
702
703
|
/**
|
|
703
704
|
* Add appropriate prefix to a channel name if not already present
|
|
@@ -953,6 +954,8 @@ declare class WebSocketManagerService {
|
|
|
953
954
|
messages$: Observable<any>;
|
|
954
955
|
private static connectionStatus;
|
|
955
956
|
connectionStatus$: Observable<boolean>;
|
|
957
|
+
private static connectionError;
|
|
958
|
+
connectionError$: Observable<string | null>;
|
|
956
959
|
private static isSubscribed;
|
|
957
960
|
private static subscribedChannels;
|
|
958
961
|
subscribedChannels$: Observable<Set<string>>;
|
|
@@ -1546,6 +1549,7 @@ declare class HTTPManagerService<T> extends RequestService {
|
|
|
1546
1549
|
subscribedChannels$: Observable<Set<string>>;
|
|
1547
1550
|
retryCount$: Observable<number>;
|
|
1548
1551
|
maxRetries$: Observable<number>;
|
|
1552
|
+
connectionError$: Observable<string | null>;
|
|
1549
1553
|
private countdown;
|
|
1550
1554
|
countdown$: Observable<number>;
|
|
1551
1555
|
private error;
|
|
@@ -3412,6 +3416,7 @@ declare class RequestManagerWsDemoComponent implements OnInit {
|
|
|
3412
3416
|
retryCount$: rxjs.Observable<number>;
|
|
3413
3417
|
maxRetries$: rxjs.Observable<number>;
|
|
3414
3418
|
connectionStatus$: rxjs.Observable<boolean>;
|
|
3419
|
+
connectionError$: rxjs.Observable<string | null>;
|
|
3415
3420
|
data$: rxjs.Observable<any>;
|
|
3416
3421
|
isPending$: rxjs.Observable<boolean>;
|
|
3417
3422
|
ngOnInit(): void;
|
|
Binary file
|