monkey-front-core 0.0.88 → 0.0.89

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.
@@ -1799,7 +1799,7 @@ class MonkeyEcxCommonsService {
1799
1799
  this.__onDoSearch$ = new BehaviorSubject({});
1800
1800
  this.__tokenCredentials = null;
1801
1801
  this.__schedule = null;
1802
- this.callbackPagination = () => {
1802
+ this.__callbackPagination = () => {
1803
1803
  // eslint-disable-next-line no-console
1804
1804
  return console.error('Method callbackPagination needs to be declared');
1805
1805
  };
@@ -1958,7 +1958,7 @@ class MonkeyEcxCommonsService {
1958
1958
  this.geti18n(service, keys || '');
1959
1959
  }
1960
1960
  if (otherArgs?.callbackPagination) {
1961
- this.callbackPagination = otherArgs.callbackPagination;
1961
+ this.__callbackPagination = otherArgs.callbackPagination;
1962
1962
  }
1963
1963
  if (otherArgs?.feature) {
1964
1964
  const { flag, service } = otherArgs.feature;
@@ -2015,8 +2015,8 @@ class MonkeyEcxCommonsService {
2015
2015
  ...this.__page,
2016
2016
  },
2017
2017
  }).nextPage();
2018
- if (hasMorePages && this.callbackPagination) {
2019
- this.callbackPagination();
2018
+ if (hasMorePages && this.__callbackPagination) {
2019
+ this.__callbackPagination();
2020
2020
  }
2021
2021
  }
2022
2022
  }