@elderbyte/ngx-starter 15.4.0 → 15.4.2

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.
@@ -5444,7 +5444,7 @@ class RestClient extends DataSourceBase {
5444
5444
  * *
5445
5445
  **************************************************************************/
5446
5446
  constructor(restEndpoint, http, config) {
5447
- super(config.idField);
5447
+ super(new InternalRestClientConfig(config).idField);
5448
5448
  this.restEndpoint = restEndpoint;
5449
5449
  this.http = http;
5450
5450
  /***************************************************************************
@@ -5453,7 +5453,7 @@ class RestClient extends DataSourceBase {
5453
5453
  * *
5454
5454
  **************************************************************************/
5455
5455
  this._logger = LoggerFactory.getLogger(this.constructor.name);
5456
- this.config = config;
5456
+ this.config = new InternalRestClientConfig(config);
5457
5457
  }
5458
5458
  /***************************************************************************
5459
5459
  * *
@@ -5574,7 +5574,7 @@ class RestClientList extends RestClient {
5574
5574
  * *
5575
5575
  **************************************************************************/
5576
5576
  constructor(restEndpoint, http, config) {
5577
- super(restEndpoint, http, new InternalRestClientConfig(config));
5577
+ super(restEndpoint, http, config);
5578
5578
  }
5579
5579
  /***************************************************************************
5580
5580
  * *
@@ -5608,7 +5608,7 @@ class RestClientPaged extends RestClient {
5608
5608
  * *
5609
5609
  **************************************************************************/
5610
5610
  constructor(restEndpoint, http, config) {
5611
- super(restEndpoint, http, new InternalRestClientConfig(config));
5611
+ super(restEndpoint, http, config);
5612
5612
  }
5613
5613
  /***************************************************************************
5614
5614
  * *
@@ -5653,7 +5653,7 @@ class RestClientContinuable extends RestClient {
5653
5653
  * *
5654
5654
  **************************************************************************/
5655
5655
  constructor(restEndpoint, http, config) {
5656
- super(restEndpoint, http, new InternalRestClientConfig(config));
5656
+ super(restEndpoint, http, config);
5657
5657
  }
5658
5658
  /***************************************************************************
5659
5659
  * *