http-request-manager 18.7.16 → 18.7.19
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.
|
|
3
|
+
"version": "18.7.19",
|
|
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",
|
|
@@ -6,6 +6,7 @@ import { ComponentStore } from '@ngrx/component-store';
|
|
|
6
6
|
import { HttpClient, HttpHeaders, HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from '@angular/common/http';
|
|
7
7
|
import * as i16 from 'toast-message-display';
|
|
8
8
|
import { ToastMessageDisplayService } from 'toast-message-display';
|
|
9
|
+
export { ToastColors, ToastDisplay, ToastMessageDisplayModule, ToastMessageDisplayService } from 'toast-message-display';
|
|
9
10
|
import Dexie, { Table } from 'dexie';
|
|
10
11
|
import * as i33 from '@ngx-translate/core';
|
|
11
12
|
import { TranslateService } from '@ngx-translate/core';
|
|
@@ -1259,6 +1260,10 @@ declare class RequestManagerStateDemoComponent implements OnInit {
|
|
|
1259
1260
|
mapper?: Function;
|
|
1260
1261
|
stateManagerDemoService: StateManagerDemoService;
|
|
1261
1262
|
displayedColumns: string[];
|
|
1263
|
+
getColumnsFromData(data: any[]): string[];
|
|
1264
|
+
updateDisplayedColumns(data: any[]): void;
|
|
1265
|
+
isObject(value: any): boolean;
|
|
1266
|
+
getDataLength(data: any): number;
|
|
1262
1267
|
selectedRecord$?: Observable<ClientInfo$1 | null>;
|
|
1263
1268
|
fb: FormBuilder;
|
|
1264
1269
|
streamTypes: {
|
|
@@ -1380,8 +1385,12 @@ declare class RequestManagerDemoComponent implements OnInit {
|
|
|
1380
1385
|
adapter?: Function;
|
|
1381
1386
|
mapper?: Function;
|
|
1382
1387
|
displayedColumns: string[];
|
|
1388
|
+
getColumnsFromData(data: any[]): string[];
|
|
1389
|
+
updateDisplayedColumns(data: any[]): void;
|
|
1390
|
+
isObject(value: any): boolean;
|
|
1383
1391
|
private fb;
|
|
1384
1392
|
private toastMessage;
|
|
1393
|
+
questionControl: _angular_forms.FormControl<string | null>;
|
|
1385
1394
|
httpManagerService: HTTPManagerService<any>;
|
|
1386
1395
|
isPending$: Observable<boolean>;
|
|
1387
1396
|
countdown$: Observable<number>;
|
|
@@ -1395,8 +1404,8 @@ declare class RequestManagerDemoComponent implements OnInit {
|
|
|
1395
1404
|
POST$?: Observable<any>;
|
|
1396
1405
|
PUT$?: Observable<any>;
|
|
1397
1406
|
DELETE$?: Observable<any>;
|
|
1398
|
-
STREAM_AI$?: Observable<any>;
|
|
1399
1407
|
STREAM$?: Observable<any>;
|
|
1408
|
+
STREAM_AI$?: Observable<any>;
|
|
1400
1409
|
requestParams: {
|
|
1401
1410
|
GET: ApiRequest;
|
|
1402
1411
|
POST: ApiRequest;
|
|
@@ -1411,7 +1420,6 @@ declare class RequestManagerDemoComponent implements OnInit {
|
|
|
1411
1420
|
streamType: string;
|
|
1412
1421
|
failedState: any;
|
|
1413
1422
|
pollingState: any;
|
|
1414
|
-
questionControl: _angular_forms.FormControl<string | null>;
|
|
1415
1423
|
downloadRequest: ApiRequest;
|
|
1416
1424
|
sampleClientData: {
|
|
1417
1425
|
id: number;
|
|
Binary file
|