http-request-manager 18.15.2 → 18.15.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.15.
|
|
3
|
+
"version": "18.15.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",
|
|
@@ -501,6 +501,7 @@ declare class DbService extends Dexie {
|
|
|
501
501
|
}
|
|
502
502
|
|
|
503
503
|
declare class DatabaseManagerService extends DbService {
|
|
504
|
+
private localStorageManager;
|
|
504
505
|
constructor();
|
|
505
506
|
getDatabaseTables(): Observable<any[]>;
|
|
506
507
|
databaseExists(): Observable<boolean>;
|
|
@@ -522,6 +523,7 @@ declare class DatabaseManagerService extends DbService {
|
|
|
522
523
|
deleteTableRecord<T>(table: string, id: number): Observable<number | null>;
|
|
523
524
|
deleteTableRecords(table: string, ids: number[]): Observable<number[]>;
|
|
524
525
|
clearTable(table: string): Observable<never[]>;
|
|
526
|
+
clearDatabase(): void;
|
|
525
527
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatabaseManagerService, never>;
|
|
526
528
|
static ɵprov: i0.ɵɵInjectableDeclaration<DatabaseManagerService>;
|
|
527
529
|
}
|
|
@@ -638,7 +640,7 @@ declare class HTTPManagerStateService<T extends {
|
|
|
638
640
|
private percentage;
|
|
639
641
|
percentage$: Observable<number>;
|
|
640
642
|
private hasDatabase;
|
|
641
|
-
streamedResponse:
|
|
643
|
+
streamedResponse: any[];
|
|
642
644
|
private maxRetries;
|
|
643
645
|
private retryDelay;
|
|
644
646
|
private shouldRetry;
|
|
@@ -646,6 +648,7 @@ declare class HTTPManagerStateService<T extends {
|
|
|
646
648
|
private databaseOptions?;
|
|
647
649
|
private readonly volatileHeaders;
|
|
648
650
|
private requestSignatureCache;
|
|
651
|
+
private _requestCachePaths;
|
|
649
652
|
private wsRetryAttempts;
|
|
650
653
|
wsRetryAttempts$: Observable<number>;
|
|
651
654
|
private wsNextRetry;
|
|
@@ -825,7 +828,6 @@ declare class HTTPManagerStateService<T extends {
|
|
|
825
828
|
private getEffectiveParams;
|
|
826
829
|
private buildRequestSignature;
|
|
827
830
|
private buildSchemaSignature;
|
|
828
|
-
private getCachedRequestSignature;
|
|
829
831
|
private setCachedRequestSignature;
|
|
830
832
|
private getRequestCacheMetadata;
|
|
831
833
|
private getStoredSchemaSignature;
|
|
@@ -921,6 +923,9 @@ declare class WebSocketManagerService {
|
|
|
921
923
|
private static isConnecting;
|
|
922
924
|
private static connectionInitialized;
|
|
923
925
|
private static lastOptions;
|
|
926
|
+
private static lastJwtToken;
|
|
927
|
+
private static retryCount;
|
|
928
|
+
private static jwtInvalidClose;
|
|
924
929
|
private static messages;
|
|
925
930
|
messages$: Observable<any>;
|
|
926
931
|
private static connectionStatus;
|
|
@@ -2524,6 +2529,7 @@ declare class RequestManagerStateDemoComponent implements OnInit {
|
|
|
2524
2529
|
adapter?: Function;
|
|
2525
2530
|
mapper?: Function;
|
|
2526
2531
|
stateManagerDemoService: StateManagerDemoService;
|
|
2532
|
+
databaseManagerService: DatabaseManagerService;
|
|
2527
2533
|
displayedColumns: string[];
|
|
2528
2534
|
getColumnsFromData(data: any[]): string[];
|
|
2529
2535
|
updateDisplayedColumns(data: any[]): void;
|
|
@@ -2645,6 +2651,7 @@ declare class RequestManagerStateDemoComponent implements OnInit {
|
|
|
2645
2651
|
private buildDemoRequestOptions;
|
|
2646
2652
|
onSetStateOptions(): void;
|
|
2647
2653
|
onClearRecords(): void;
|
|
2654
|
+
deleteDatabase(): void;
|
|
2648
2655
|
onGetRequest(): void;
|
|
2649
2656
|
onCreateRequest(): void;
|
|
2650
2657
|
onUpdateRequest(): void;
|
|
Binary file
|