http-request-manager 18.15.3 → 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,7 +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[]>;
|
|
525
|
-
clearDatabase():
|
|
526
|
+
clearDatabase(): void;
|
|
526
527
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatabaseManagerService, never>;
|
|
527
528
|
static ɵprov: i0.ɵɵInjectableDeclaration<DatabaseManagerService>;
|
|
528
529
|
}
|
|
@@ -639,7 +640,7 @@ declare class HTTPManagerStateService<T extends {
|
|
|
639
640
|
private percentage;
|
|
640
641
|
percentage$: Observable<number>;
|
|
641
642
|
private hasDatabase;
|
|
642
|
-
streamedResponse:
|
|
643
|
+
streamedResponse: any[];
|
|
643
644
|
private maxRetries;
|
|
644
645
|
private retryDelay;
|
|
645
646
|
private shouldRetry;
|
|
@@ -647,6 +648,7 @@ declare class HTTPManagerStateService<T extends {
|
|
|
647
648
|
private databaseOptions?;
|
|
648
649
|
private readonly volatileHeaders;
|
|
649
650
|
private requestSignatureCache;
|
|
651
|
+
private _requestCachePaths;
|
|
650
652
|
private wsRetryAttempts;
|
|
651
653
|
wsRetryAttempts$: Observable<number>;
|
|
652
654
|
private wsNextRetry;
|
|
@@ -826,7 +828,6 @@ declare class HTTPManagerStateService<T extends {
|
|
|
826
828
|
private getEffectiveParams;
|
|
827
829
|
private buildRequestSignature;
|
|
828
830
|
private buildSchemaSignature;
|
|
829
|
-
private getCachedRequestSignature;
|
|
830
831
|
private setCachedRequestSignature;
|
|
831
832
|
private getRequestCacheMetadata;
|
|
832
833
|
private getStoredSchemaSignature;
|
|
@@ -924,7 +925,6 @@ declare class WebSocketManagerService {
|
|
|
924
925
|
private static lastOptions;
|
|
925
926
|
private static lastJwtToken;
|
|
926
927
|
private static retryCount;
|
|
927
|
-
private static readonly MAX_RETRIES;
|
|
928
928
|
private static jwtInvalidClose;
|
|
929
929
|
private static messages;
|
|
930
930
|
messages$: Observable<any>;
|
|
@@ -2529,6 +2529,7 @@ declare class RequestManagerStateDemoComponent implements OnInit {
|
|
|
2529
2529
|
adapter?: Function;
|
|
2530
2530
|
mapper?: Function;
|
|
2531
2531
|
stateManagerDemoService: StateManagerDemoService;
|
|
2532
|
+
databaseManagerService: DatabaseManagerService;
|
|
2532
2533
|
displayedColumns: string[];
|
|
2533
2534
|
getColumnsFromData(data: any[]): string[];
|
|
2534
2535
|
updateDisplayedColumns(data: any[]): void;
|
|
@@ -2650,7 +2651,7 @@ declare class RequestManagerStateDemoComponent implements OnInit {
|
|
|
2650
2651
|
private buildDemoRequestOptions;
|
|
2651
2652
|
onSetStateOptions(): void;
|
|
2652
2653
|
onClearRecords(): void;
|
|
2653
|
-
|
|
2654
|
+
deleteDatabase(): void;
|
|
2654
2655
|
onGetRequest(): void;
|
|
2655
2656
|
onCreateRequest(): void;
|
|
2656
2657
|
onUpdateRequest(): void;
|
|
Binary file
|