http-request-manager 18.7.16 → 18.7.17

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.7.16",
3
+ "version": "18.7.17",
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",
@@ -1259,6 +1259,10 @@ declare class RequestManagerStateDemoComponent implements OnInit {
1259
1259
  mapper?: Function;
1260
1260
  stateManagerDemoService: StateManagerDemoService;
1261
1261
  displayedColumns: string[];
1262
+ getColumnsFromData(data: any[]): string[];
1263
+ updateDisplayedColumns(data: any[]): void;
1264
+ isObject(value: any): boolean;
1265
+ getDataLength(data: any): number;
1262
1266
  selectedRecord$?: Observable<ClientInfo$1 | null>;
1263
1267
  fb: FormBuilder;
1264
1268
  streamTypes: {
@@ -1380,8 +1384,12 @@ declare class RequestManagerDemoComponent implements OnInit {
1380
1384
  adapter?: Function;
1381
1385
  mapper?: Function;
1382
1386
  displayedColumns: string[];
1387
+ getColumnsFromData(data: any[]): string[];
1388
+ updateDisplayedColumns(data: any[]): void;
1389
+ isObject(value: any): boolean;
1383
1390
  private fb;
1384
1391
  private toastMessage;
1392
+ questionControl: _angular_forms.FormControl<string | null>;
1385
1393
  httpManagerService: HTTPManagerService<any>;
1386
1394
  isPending$: Observable<boolean>;
1387
1395
  countdown$: Observable<number>;
@@ -1395,8 +1403,8 @@ declare class RequestManagerDemoComponent implements OnInit {
1395
1403
  POST$?: Observable<any>;
1396
1404
  PUT$?: Observable<any>;
1397
1405
  DELETE$?: Observable<any>;
1398
- STREAM_AI$?: Observable<any>;
1399
1406
  STREAM$?: Observable<any>;
1407
+ STREAM_AI$?: Observable<any>;
1400
1408
  requestParams: {
1401
1409
  GET: ApiRequest;
1402
1410
  POST: ApiRequest;
@@ -1411,7 +1419,6 @@ declare class RequestManagerDemoComponent implements OnInit {
1411
1419
  streamType: string;
1412
1420
  failedState: any;
1413
1421
  pollingState: any;
1414
- questionControl: _angular_forms.FormControl<string | null>;
1415
1422
  downloadRequest: ApiRequest;
1416
1423
  sampleClientData: {
1417
1424
  id: number;
Binary file