http-request-manager 18.16.4 → 18.16.6

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.4",
3
+ "version": "18.16.6",
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",
@@ -1,7 +1,7 @@
1
1
  import * as rxjs from 'rxjs';
2
2
  import { Observable, Subscription, BehaviorSubject, OperatorFunction } from 'rxjs';
3
3
  import * as i0 from '@angular/core';
4
- import { InjectionToken, OnDestroy, Injector, DestroyRef, OnInit, EventEmitter, ModuleWithProviders } from '@angular/core';
4
+ import { InjectionToken, OnDestroy, Injector, DestroyRef, OnInit, OnChanges, SimpleChanges, EventEmitter, ModuleWithProviders } from '@angular/core';
5
5
  import { ComponentStore } from '@ngrx/component-store';
6
6
  import { HttpClient, HttpHeaders, HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from '@angular/common/http';
7
7
  import * as http_request_manager from 'http-request-manager';
@@ -843,6 +843,7 @@ declare class HTTPManagerStateService<T extends {
843
843
  private normalizeObject;
844
844
  private filterHeaders;
845
845
  private resolvePath;
846
+ private stripBasePathPrefix;
846
847
  private getEffectiveParams;
847
848
  private buildRequestSignature;
848
849
  private buildSchemaSignature;
@@ -3407,7 +3408,7 @@ declare class NotificationServiceDemo {
3407
3408
  static ɵprov: i0.ɵɵInjectableDeclaration<NotificationServiceDemo>;
3408
3409
  }
3409
3410
 
3410
- declare class RequestManagerWsDemoComponent implements OnInit {
3411
+ declare class RequestManagerWsDemoComponent implements OnInit, OnChanges {
3411
3412
  httpManagerService: HTTPManagerService<any>;
3412
3413
  stateService: StateServiceDemo;
3413
3414
  fb: FormBuilder;
@@ -3425,6 +3426,7 @@ declare class RequestManagerWsDemoComponent implements OnInit {
3425
3426
  data$: rxjs.Observable<any>;
3426
3427
  isPending$: rxjs.Observable<boolean>;
3427
3428
  ngOnInit(): void;
3429
+ ngOnChanges(changes: SimpleChanges): void;
3428
3430
  static ɵfac: i0.ɵɵFactoryDeclaration<RequestManagerWsDemoComponent, never>;
3429
3431
  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>;
3430
3432
  }
@@ -3513,7 +3515,7 @@ declare class StateDataRequestService extends HTTPManagerStateService<any> {
3513
3515
  static ɵprov: i0.ɵɵInjectableDeclaration<StateDataRequestService>;
3514
3516
  }
3515
3517
 
3516
- declare class WsDataControlComponent implements OnInit {
3518
+ declare class WsDataControlComponent implements OnInit, OnChanges {
3517
3519
  server: string;
3518
3520
  wsServer: string;
3519
3521
  jwtToken: string;
@@ -3526,7 +3528,9 @@ declare class WsDataControlComponent implements OnInit {
3526
3528
  userAction$: rxjs.Observable<any>;
3527
3529
  data$: rxjs.Observable<any>;
3528
3530
  isUser: (user: any, userItem: any) => boolean;
3531
+ getUserLabel: (user: any) => any;
3529
3532
  ngOnInit(): void;
3533
+ ngOnChanges(changes: SimpleChanges): void;
3530
3534
  onGetData(): void;
3531
3535
  onAddData(): void;
3532
3536
  onUpdateData(data: any[]): void;
Binary file