http-request-manager 18.15.1 → 18.15.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.15.
|
|
3
|
+
"version": "18.15.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",
|
|
@@ -522,6 +522,7 @@ declare class DatabaseManagerService extends DbService {
|
|
|
522
522
|
deleteTableRecord<T>(table: string, id: number): Observable<number | null>;
|
|
523
523
|
deleteTableRecords(table: string, ids: number[]): Observable<number[]>;
|
|
524
524
|
clearTable(table: string): Observable<never[]>;
|
|
525
|
+
clearDatabase(): Observable<boolean>;
|
|
525
526
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatabaseManagerService, never>;
|
|
526
527
|
static ɵprov: i0.ɵɵInjectableDeclaration<DatabaseManagerService>;
|
|
527
528
|
}
|
|
@@ -921,6 +922,10 @@ declare class WebSocketManagerService {
|
|
|
921
922
|
private static isConnecting;
|
|
922
923
|
private static connectionInitialized;
|
|
923
924
|
private static lastOptions;
|
|
925
|
+
private static lastJwtToken;
|
|
926
|
+
private static retryCount;
|
|
927
|
+
private static readonly MAX_RETRIES;
|
|
928
|
+
private static jwtInvalidClose;
|
|
924
929
|
private static messages;
|
|
925
930
|
messages$: Observable<any>;
|
|
926
931
|
private static connectionStatus;
|
|
@@ -2645,6 +2650,7 @@ declare class RequestManagerStateDemoComponent implements OnInit {
|
|
|
2645
2650
|
private buildDemoRequestOptions;
|
|
2646
2651
|
onSetStateOptions(): void;
|
|
2647
2652
|
onClearRecords(): void;
|
|
2653
|
+
deleteTable(): void;
|
|
2648
2654
|
onGetRequest(): void;
|
|
2649
2655
|
onCreateRequest(): void;
|
|
2650
2656
|
onUpdateRequest(): void;
|
|
Binary file
|