http-request-manager 18.13.16 → 18.13.18
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.18",
|
|
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;
|
|
541
540
|
private state;
|
|
542
541
|
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;
|
|
@@ -549,7 +549,6 @@ declare class QueryParamsTrackerService {
|
|
|
549
549
|
private parsePathSegment;
|
|
550
550
|
private safeDecode;
|
|
551
551
|
private normalizePath;
|
|
552
|
-
private extractPathFromSegment;
|
|
553
552
|
private normalizeParamKey;
|
|
554
553
|
private normalizeParamValue;
|
|
555
554
|
private buildExpiryEpoch;
|
|
@@ -559,9 +558,6 @@ declare class QueryParamsTrackerService {
|
|
|
559
558
|
private ensureStateRestored;
|
|
560
559
|
private initializeTrackingForSession;
|
|
561
560
|
private restoreState;
|
|
562
|
-
private tryHydrateStateFromPersistedStore;
|
|
563
|
-
private getTrackerStateFromRawStorage;
|
|
564
|
-
private safeParseRawStorage;
|
|
565
561
|
private persistState;
|
|
566
562
|
private stringifyQuery;
|
|
567
563
|
private isTrackerState;
|
|
@@ -860,7 +856,6 @@ declare class HTTPManagerStateService<T extends {
|
|
|
860
856
|
* Does not re-fetch from API - leaves state empty for manual refresh
|
|
861
857
|
*/
|
|
862
858
|
clearDatabase(): void;
|
|
863
|
-
clearTable(tableName: string): void;
|
|
864
859
|
private isEmpty;
|
|
865
860
|
private updateRequestOptions;
|
|
866
861
|
private buildQueryTrackerOptions;
|
|
@@ -1930,8 +1925,6 @@ declare class LocalStorageManagerService extends ComponentStore<State> implement
|
|
|
1930
1925
|
readonly store$: (store: string) => rxjs.Observable<any>;
|
|
1931
1926
|
readonly settings$: rxjs.Observable<StorageOption[]>;
|
|
1932
1927
|
readonly setting$: (store: string) => rxjs.Observable<StorageOption | null>;
|
|
1933
|
-
getStoreSync(storeName: string): any;
|
|
1934
|
-
getPersistedStoreSync(storeName: string): any;
|
|
1935
1928
|
persistence$: rxjs.Subscription;
|
|
1936
1929
|
startTimer(): void;
|
|
1937
1930
|
private updateState;
|
|
@@ -2220,14 +2213,12 @@ interface PathTrackerStateInterface {
|
|
|
2220
2213
|
baselineQuery?: NormalizedQueryParams;
|
|
2221
2214
|
consumedValuesByKey: Record<string, QueryValue[]>;
|
|
2222
2215
|
watchExpiresAt?: number;
|
|
2223
|
-
trackedAt?: number;
|
|
2224
2216
|
}
|
|
2225
2217
|
declare class PathTrackerStateModel implements PathTrackerStateInterface {
|
|
2226
2218
|
baselineQuery?: NormalizedQueryParams | undefined;
|
|
2227
2219
|
consumedValuesByKey: Record<string, QueryValue[]>;
|
|
2228
2220
|
watchExpiresAt?: number | undefined;
|
|
2229
|
-
|
|
2230
|
-
constructor(baselineQuery?: NormalizedQueryParams | undefined, consumedValuesByKey?: Record<string, QueryValue[]>, watchExpiresAt?: number | undefined, trackedAt?: number | undefined);
|
|
2221
|
+
constructor(baselineQuery?: NormalizedQueryParams | undefined, consumedValuesByKey?: Record<string, QueryValue[]>, watchExpiresAt?: number | undefined);
|
|
2231
2222
|
static adapt(item?: any): PathTrackerStateModel;
|
|
2232
2223
|
}
|
|
2233
2224
|
|
|
Binary file
|