http-request-manager 22.0.6 → 22.0.13
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": "22.0.
|
|
3
|
+
"version": "22.0.13",
|
|
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",
|
|
@@ -371,11 +371,13 @@ declare class NotificationMessage implements NotificationMessageInterface {
|
|
|
371
371
|
interface DatabaseStorageInterface {
|
|
372
372
|
table: string;
|
|
373
373
|
expiresIn: string;
|
|
374
|
+
deltaSync?: boolean;
|
|
374
375
|
}
|
|
375
376
|
declare class DatabaseStorage implements DatabaseStorageInterface {
|
|
376
377
|
table: string;
|
|
377
378
|
expiresIn: '';
|
|
378
|
-
|
|
379
|
+
deltaSync: boolean;
|
|
380
|
+
constructor(table: string | undefined, expiresIn: '', deltaSync?: boolean);
|
|
379
381
|
static adapt(item?: any): any;
|
|
380
382
|
}
|
|
381
383
|
|
|
@@ -740,6 +742,7 @@ declare class HTTPManagerStateService<T extends {
|
|
|
740
742
|
readonly data$: Observable<T | T[] | null>;
|
|
741
743
|
readonly selectRecord$: (id: number) => Observable<T | T[] | null>;
|
|
742
744
|
private readonly setData$;
|
|
745
|
+
private readonly mergeDeltaData$;
|
|
743
746
|
private updateArrayState;
|
|
744
747
|
private readonly addData$;
|
|
745
748
|
private readonly deleteData$;
|
|
@@ -2801,14 +2804,14 @@ declare class RequestManagerStateDemoComponent implements OnInit {
|
|
|
2801
2804
|
failedState: any;
|
|
2802
2805
|
pollingState: any;
|
|
2803
2806
|
DBState: any;
|
|
2804
|
-
questionControl:
|
|
2807
|
+
questionControl: FormControl<string | null>;
|
|
2805
2808
|
requestType: string;
|
|
2806
2809
|
prompts: string[];
|
|
2807
2810
|
AIType: number;
|
|
2808
2811
|
wsMessageForm: _angular_forms.FormGroup<{
|
|
2809
|
-
channel:
|
|
2810
|
-
method:
|
|
2811
|
-
path:
|
|
2812
|
+
channel: FormControl<string | null>;
|
|
2813
|
+
method: FormControl<string | null>;
|
|
2814
|
+
path: FormControl<string | null>;
|
|
2812
2815
|
}>;
|
|
2813
2816
|
get dataObservable$(): BehaviorSubject<any> | BehaviorSubject<null> | BehaviorSubject<{
|
|
2814
2817
|
response: string;
|
|
@@ -2825,23 +2828,24 @@ declare class RequestManagerStateDemoComponent implements OnInit {
|
|
|
2825
2828
|
icon: string;
|
|
2826
2829
|
imageFile: string;
|
|
2827
2830
|
};
|
|
2828
|
-
selectedRecord:
|
|
2831
|
+
selectedRecord: FormControl<null>;
|
|
2829
2832
|
requestForm: _angular_forms.FormGroup<{
|
|
2830
|
-
datatype:
|
|
2831
|
-
path:
|
|
2832
|
-
headers: FormArray<
|
|
2833
|
-
adapter:
|
|
2834
|
-
mapper:
|
|
2833
|
+
datatype: FormControl<string | null>;
|
|
2834
|
+
path: FormControl<string | null>;
|
|
2835
|
+
headers: FormArray<FormControl<unknown>>;
|
|
2836
|
+
adapter: FormControl<null>;
|
|
2837
|
+
mapper: FormControl<null>;
|
|
2835
2838
|
retry: _angular_forms.FormGroup<{
|
|
2836
|
-
times:
|
|
2837
|
-
delay:
|
|
2839
|
+
times: FormControl<number | null>;
|
|
2840
|
+
delay: FormControl<number | null>;
|
|
2838
2841
|
}>;
|
|
2839
|
-
polling:
|
|
2842
|
+
polling: FormControl<number | null>;
|
|
2840
2843
|
database: _angular_forms.FormGroup<{
|
|
2841
|
-
table:
|
|
2842
|
-
expiresIn:
|
|
2843
|
-
ignoreQueryParams:
|
|
2844
|
-
queryParamsExpiresIn:
|
|
2844
|
+
table: FormControl<string | null>;
|
|
2845
|
+
expiresIn: FormControl<string | null>;
|
|
2846
|
+
ignoreQueryParams: FormControl<string | null>;
|
|
2847
|
+
queryParamsExpiresIn: FormControl<string | null>;
|
|
2848
|
+
deltaSync: FormControl<boolean | null>;
|
|
2845
2849
|
}>;
|
|
2846
2850
|
}>;
|
|
2847
2851
|
get hasChanged(): boolean;
|
|
@@ -2851,7 +2855,9 @@ declare class RequestManagerStateDemoComponent implements OnInit {
|
|
|
2851
2855
|
expiresIn: string | null;
|
|
2852
2856
|
ignoreQueryParams: string | null;
|
|
2853
2857
|
queryParamsExpiresIn: string | null;
|
|
2858
|
+
deltaSync: boolean | null;
|
|
2854
2859
|
} | undefined;
|
|
2860
|
+
get deltaSyncControl(): FormControl;
|
|
2855
2861
|
get retry(): {
|
|
2856
2862
|
times: number | null;
|
|
2857
2863
|
delay: number | null;
|
|
Binary file
|