http-request-manager 18.13.12 → 18.13.14
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.13.
|
|
3
|
+
"version": "18.13.14",
|
|
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",
|
|
@@ -537,9 +537,9 @@ declare class QueryParamsTrackerOptionsModel implements QueryParamsTrackerOption
|
|
|
537
537
|
|
|
538
538
|
type QueryParamsTrackerOptions = QueryParamsTrackerOptionsInterface;
|
|
539
539
|
declare class QueryParamsTrackerService {
|
|
540
|
+
private readonly localStorageManager;
|
|
540
541
|
private state;
|
|
541
542
|
private stateRestored;
|
|
542
|
-
private readonly localStorageManager;
|
|
543
543
|
clearTracking(resetSessionInit?: boolean): void;
|
|
544
544
|
checkRequestOptions(requestOptions?: any[], options?: QueryParamsTrackerOptions): boolean;
|
|
545
545
|
matchesPath(requestOptions?: any[], expectedPathOptions?: any[]): boolean;
|
|
@@ -558,6 +558,7 @@ declare class QueryParamsTrackerService {
|
|
|
558
558
|
private ensureStateRestored;
|
|
559
559
|
private initializeTrackingForSession;
|
|
560
560
|
private restoreState;
|
|
561
|
+
private tryHydrateStateFromPersistedStore;
|
|
561
562
|
private persistState;
|
|
562
563
|
private stringifyQuery;
|
|
563
564
|
private isTrackerState;
|
|
@@ -1927,6 +1928,7 @@ declare class LocalStorageManagerService extends ComponentStore<State> implement
|
|
|
1927
1928
|
readonly settings$: rxjs.Observable<StorageOption[]>;
|
|
1928
1929
|
readonly setting$: (store: string) => rxjs.Observable<StorageOption | null>;
|
|
1929
1930
|
getStoreSync(storeName: string): any;
|
|
1931
|
+
getPersistedStoreSync(storeName: string): any;
|
|
1930
1932
|
persistence$: rxjs.Subscription;
|
|
1931
1933
|
startTimer(): void;
|
|
1932
1934
|
private updateState;
|
|
Binary file
|