http-request-manager 18.16.18 → 18.16.23
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.16.
|
|
3
|
+
"version": "18.16.23",
|
|
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",
|
|
@@ -2594,6 +2594,7 @@ declare class StateManagerDemoService extends HTTPManagerStateService<any> {
|
|
|
2594
2594
|
updateClient(data: ClientInfo$1): void;
|
|
2595
2595
|
deleteClient(data: ClientInfo$1): void;
|
|
2596
2596
|
streamRequest(options?: RequestOptions): void;
|
|
2597
|
+
sendWsMessage(channel: string, method: string, path: (string | number)[]): void;
|
|
2597
2598
|
static ɵfac: i0.ɵɵFactoryDeclaration<StateManagerDemoService, never>;
|
|
2598
2599
|
static ɵprov: i0.ɵɵInjectableDeclaration<StateManagerDemoService>;
|
|
2599
2600
|
}
|
|
@@ -2669,6 +2670,11 @@ declare class RequestManagerStateDemoComponent implements OnInit {
|
|
|
2669
2670
|
requestType: string;
|
|
2670
2671
|
prompts: string[];
|
|
2671
2672
|
AIType: number;
|
|
2673
|
+
wsMessageForm: _angular_forms.FormGroup<{
|
|
2674
|
+
channel: _angular_forms.FormControl<string | null>;
|
|
2675
|
+
method: _angular_forms.FormControl<string | null>;
|
|
2676
|
+
path: _angular_forms.FormControl<string | null>;
|
|
2677
|
+
}>;
|
|
2672
2678
|
get dataObservable$(): BehaviorSubject<any> | BehaviorSubject<null> | BehaviorSubject<{
|
|
2673
2679
|
response: string;
|
|
2674
2680
|
}[]>;
|
|
@@ -2757,6 +2763,7 @@ declare class RequestManagerStateDemoComponent implements OnInit {
|
|
|
2757
2763
|
errorHandling(err: any, type: string): void;
|
|
2758
2764
|
onSelectAIType(type: number): void;
|
|
2759
2765
|
onClearHistory(): void;
|
|
2766
|
+
onSendWsMessage(): void;
|
|
2760
2767
|
static ɵfac: i0.ɵɵFactoryDeclaration<RequestManagerStateDemoComponent, never>;
|
|
2761
2768
|
static ɵcmp: i0.ɵɵComponentDeclaration<RequestManagerStateDemoComponent, "app-request-manager-state-demo", never, { "server": { "alias": "server"; "required": false; }; "adapter": { "alias": "adapter"; "required": false; }; "mapper": { "alias": "mapper"; "required": false; }; }, {}, never, never, false, never>;
|
|
2762
2769
|
}
|
|
Binary file
|