http-request-manager 18.13.9 → 18.13.12
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.12",
|
|
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",
|
|
@@ -488,6 +488,7 @@ declare class DbService extends Dexie {
|
|
|
488
488
|
value: string | number;
|
|
489
489
|
}, data: any): Promise<boolean>;
|
|
490
490
|
protected createTable(tableName: string, schema: string): Promise<void>;
|
|
491
|
+
private _doCreateTable;
|
|
491
492
|
protected DBOpened(): Promise<boolean>;
|
|
492
493
|
private getCurrentSchema;
|
|
493
494
|
protected cleanTableName(str: string): string;
|
|
@@ -1925,6 +1926,7 @@ declare class LocalStorageManagerService extends ComponentStore<State> implement
|
|
|
1925
1926
|
readonly store$: (store: string) => rxjs.Observable<any>;
|
|
1926
1927
|
readonly settings$: rxjs.Observable<StorageOption[]>;
|
|
1927
1928
|
readonly setting$: (store: string) => rxjs.Observable<StorageOption | null>;
|
|
1929
|
+
getStoreSync(storeName: string): any;
|
|
1928
1930
|
persistence$: rxjs.Subscription;
|
|
1929
1931
|
startTimer(): void;
|
|
1930
1932
|
private updateState;
|
|
Binary file
|