http-request-manager 18.5.12 → 18.5.14
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.5.
|
|
3
|
+
"version": "18.5.14",
|
|
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",
|
|
@@ -906,6 +906,7 @@ declare class HttpRequestServicesDemoComponent implements OnInit {
|
|
|
906
906
|
server: string;
|
|
907
907
|
user?: UserData;
|
|
908
908
|
path: string[];
|
|
909
|
+
wsChannel: string;
|
|
909
910
|
adapter?: Function;
|
|
910
911
|
mapper?: Function;
|
|
911
912
|
requestTypes: ({
|
|
@@ -933,7 +934,7 @@ declare class HttpRequestServicesDemoComponent implements OnInit {
|
|
|
933
934
|
ngOnInit(): void;
|
|
934
935
|
onSelected(type: number): void;
|
|
935
936
|
static ɵfac: i0.ɵɵFactoryDeclaration<HttpRequestServicesDemoComponent, never>;
|
|
936
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HttpRequestServicesDemoComponent, "app-http-request-services-demo", never, { "wsServer": { "alias": "wsServer"; "required": false; }; "jwtToken": { "alias": "jwtToken"; "required": false; }; "server": { "alias": "server"; "required": false; }; "user": { "alias": "user"; "required": false; }; "path": { "alias": "path"; "required": false; }; "adapter": { "alias": "adapter"; "required": false; }; "mapper": { "alias": "mapper"; "required": false; }; }, {}, never, never, false, never>;
|
|
937
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HttpRequestServicesDemoComponent, "app-http-request-services-demo", never, { "wsServer": { "alias": "wsServer"; "required": false; }; "jwtToken": { "alias": "jwtToken"; "required": false; }; "server": { "alias": "server"; "required": false; }; "user": { "alias": "user"; "required": false; }; "path": { "alias": "path"; "required": false; }; "wsChannel": { "alias": "wsChannel"; "required": false; }; "adapter": { "alias": "adapter"; "required": false; }; "mapper": { "alias": "mapper"; "required": false; }; }, {}, never, never, false, never>;
|
|
937
938
|
}
|
|
938
939
|
|
|
939
940
|
interface ClientInfoInterface$1 {
|
|
@@ -1467,6 +1468,7 @@ declare class RequestManagerWsDemoComponent implements OnInit {
|
|
|
1467
1468
|
jwtToken: string;
|
|
1468
1469
|
user: any;
|
|
1469
1470
|
path: string[];
|
|
1471
|
+
wsChannel: string;
|
|
1470
1472
|
user$: Observable<WSUser | null>;
|
|
1471
1473
|
attempts$: Observable<number>;
|
|
1472
1474
|
nextRetry$: Observable<number>;
|
|
@@ -1475,7 +1477,7 @@ declare class RequestManagerWsDemoComponent implements OnInit {
|
|
|
1475
1477
|
isPending$: Observable<boolean>;
|
|
1476
1478
|
ngOnInit(): void;
|
|
1477
1479
|
static ɵfac: i0.ɵɵFactoryDeclaration<RequestManagerWsDemoComponent, never>;
|
|
1478
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RequestManagerWsDemoComponent, "app-request-manager-ws-demo", never, { "server": { "alias": "server"; "required": false; }; "wsServer": { "alias": "wsServer"; "required": false; }; "jwtToken": { "alias": "jwtToken"; "required": false; }; "user": { "alias": "user"; "required": false; }; "path": { "alias": "path"; "required": false; }; }, {}, never, never, false, never>;
|
|
1480
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RequestManagerWsDemoComponent, "app-request-manager-ws-demo", never, { "server": { "alias": "server"; "required": false; }; "wsServer": { "alias": "wsServer"; "required": false; }; "jwtToken": { "alias": "jwtToken"; "required": false; }; "user": { "alias": "user"; "required": false; }; "path": { "alias": "path"; "required": false; }; "wsChannel": { "alias": "wsChannel"; "required": false; }; }, {}, never, never, false, never>;
|
|
1479
1481
|
}
|
|
1480
1482
|
|
|
1481
1483
|
declare class SettingsStateService extends StoreStateManagerService {
|
|
@@ -1544,8 +1546,9 @@ declare class StateDataRequestService extends HTTPManagerStateService<any> {
|
|
|
1544
1546
|
attempts$: rxjs.Observable<number>;
|
|
1545
1547
|
nextRetry$: rxjs.Observable<number>;
|
|
1546
1548
|
path: string[];
|
|
1549
|
+
wsChannel: string;
|
|
1547
1550
|
constructor();
|
|
1548
|
-
updateConnection(server: string, wsServer: string, jwtToken: string, user: any, path?: string[]): void;
|
|
1551
|
+
updateConnection(server: string, wsServer: string, jwtToken: string, user: any, path?: string[], wsChannel?: string): void;
|
|
1549
1552
|
addData(): void;
|
|
1550
1553
|
sendMessage(data: ChannelMessage): void;
|
|
1551
1554
|
getData(): void;
|
|
@@ -1561,6 +1564,7 @@ declare class WsDataControlComponent implements OnInit {
|
|
|
1561
1564
|
jwtToken: string;
|
|
1562
1565
|
user: any;
|
|
1563
1566
|
path: string[];
|
|
1567
|
+
wsChannel: string;
|
|
1564
1568
|
stateDataRequestService: StateDataRequestService;
|
|
1565
1569
|
user$: rxjs.Observable<http_request_manager.WSUser | null>;
|
|
1566
1570
|
users$: rxjs.Observable<any[]>;
|
|
@@ -1573,7 +1577,7 @@ declare class WsDataControlComponent implements OnInit {
|
|
|
1573
1577
|
onUpdateData(data: any[]): void;
|
|
1574
1578
|
onRemoveData(data: any): void;
|
|
1575
1579
|
static ɵfac: i0.ɵɵFactoryDeclaration<WsDataControlComponent, never>;
|
|
1576
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WsDataControlComponent, "app-ws-data-control", never, { "server": { "alias": "server"; "required": false; }; "wsServer": { "alias": "wsServer"; "required": false; }; "jwtToken": { "alias": "jwtToken"; "required": false; }; "user": { "alias": "user"; "required": false; }; "path": { "alias": "path"; "required": false; }; }, {}, never, never, false, never>;
|
|
1580
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WsDataControlComponent, "app-ws-data-control", never, { "server": { "alias": "server"; "required": false; }; "wsServer": { "alias": "wsServer"; "required": false; }; "jwtToken": { "alias": "jwtToken"; "required": false; }; "user": { "alias": "user"; "required": false; }; "path": { "alias": "path"; "required": false; }; "wsChannel": { "alias": "wsChannel"; "required": false; }; }, {}, never, never, false, never>;
|
|
1577
1581
|
}
|
|
1578
1582
|
|
|
1579
1583
|
declare class WsMessagingComponent implements OnInit {
|
|
Binary file
|