http-request-manager 18.13.36 → 18.13.38
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.38",
|
|
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",
|
|
@@ -127,7 +127,7 @@ declare class SymmetricalEncryptionService {
|
|
|
127
127
|
constructor();
|
|
128
128
|
generateCipherKey(): string;
|
|
129
129
|
encrypt(str: any, key?: string): string | undefined;
|
|
130
|
-
decrypt(str: string, key?: string): string | null
|
|
130
|
+
decrypt(str: string, key?: string): string | null;
|
|
131
131
|
createSignature(url: string, len?: number): string;
|
|
132
132
|
normalizeURL(url: string): string;
|
|
133
133
|
generateSignature(url: string): string;
|
|
@@ -515,6 +515,7 @@ declare class DatabaseManagerService extends DbService {
|
|
|
515
515
|
getTableRecord(table: string, id: number): Observable<any>;
|
|
516
516
|
createTableRecord(table: string, record: any): Observable<any>;
|
|
517
517
|
createTableRecords(table: string, records: any[]): Observable<any[]>;
|
|
518
|
+
private inferSchemaFromRecords;
|
|
518
519
|
private isMissingObjectStoreError;
|
|
519
520
|
updateTableRecord(table: string, record: any): Observable<any>;
|
|
520
521
|
updateTableRecords(table: string, records: any[]): Observable<any[]>;
|
|
@@ -1951,6 +1952,7 @@ declare class LocalStorageManagerService extends ComponentStore<State> implement
|
|
|
1951
1952
|
* Returns true if data appears corrupted
|
|
1952
1953
|
*/
|
|
1953
1954
|
checkForCorruptedData(): boolean;
|
|
1955
|
+
private tryParseSettingsArray;
|
|
1954
1956
|
static ɵfac: i0.ɵɵFactoryDeclaration<LocalStorageManagerService, [{ optional: true; }]>;
|
|
1955
1957
|
static ɵprov: i0.ɵɵInjectableDeclaration<LocalStorageManagerService>;
|
|
1956
1958
|
}
|
|
@@ -2001,6 +2003,7 @@ declare class LocalStorageSignalsManagerService {
|
|
|
2001
2003
|
private isObjectOrArray;
|
|
2002
2004
|
private isString;
|
|
2003
2005
|
private validStoreName;
|
|
2006
|
+
private tryParseSettingsArray;
|
|
2004
2007
|
static ɵfac: i0.ɵɵFactoryDeclaration<LocalStorageSignalsManagerService, [{ optional: true; }]>;
|
|
2005
2008
|
static ɵprov: i0.ɵɵInjectableDeclaration<LocalStorageSignalsManagerService>;
|
|
2006
2009
|
}
|
|
Binary file
|