@stemy/ngx-utils 13.5.0 → 13.5.1

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.
@@ -2349,7 +2349,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
2349
2349
  }], ctorParameters: function () { return [{ type: UniversalService }]; } });
2350
2350
 
2351
2351
  class BaseHttpService {
2352
- constructor(client, storage, language, toaster, configs, request = null) {
2352
+ constructor(injector, client, storage, language, toaster, configs, request = null) {
2353
+ this.injector = injector;
2353
2354
  this.client = client;
2354
2355
  this.storage = storage;
2355
2356
  this.language = language;
@@ -2611,11 +2612,14 @@ class BaseHttpService {
2611
2612
  }
2612
2613
  }
2613
2614
  BaseHttpService.failedRequests = [];
2614
- BaseHttpService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: BaseHttpService, deps: [{ token: BaseHttpClient }, { token: StorageService }, { token: LANGUAGE_SERVICE }, { token: TOASTER_SERVICE }, { token: CONFIG_SERVICE }, { token: EXPRESS_REQUEST, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2615
+ BaseHttpService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: BaseHttpService, deps: [{ token: Injector }, { token: BaseHttpClient }, { token: StorageService }, { token: LANGUAGE_SERVICE }, { token: TOASTER_SERVICE }, { token: CONFIG_SERVICE }, { token: EXPRESS_REQUEST, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2615
2616
  BaseHttpService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: BaseHttpService });
2616
2617
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: BaseHttpService, decorators: [{
2617
2618
  type: Injectable
2618
- }], ctorParameters: function () { return [{ type: BaseHttpClient, decorators: [{
2619
+ }], ctorParameters: function () { return [{ type: i0.Injector, decorators: [{
2620
+ type: Inject,
2621
+ args: [Injector]
2622
+ }] }, { type: BaseHttpClient, decorators: [{
2619
2623
  type: Inject,
2620
2624
  args: [BaseHttpClient]
2621
2625
  }] }, { type: StorageService, decorators: [{