monkey-front-core 0.0.42 → 0.0.43
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.
- package/esm2020/lib/core/services/commons/monkeyecx-commons.service.mjs +1 -4
- package/esm2020/lib/core/services/error/monkeyecx-error-handling.service.mjs +2 -4
- package/fesm2015/monkey-front-core.mjs +1 -6
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +1 -6
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/monkey-front-core-0.0.43.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.42.tgz +0 -0
|
@@ -1865,10 +1865,7 @@ class MonkeyEcxCommonsService {
|
|
|
1865
1865
|
return new MonkeyEcxRequestPagedHandling(url, __requestPaged || {}).getRequestWithPagedParams();
|
|
1866
1866
|
}
|
|
1867
1867
|
clear(clearData) {
|
|
1868
|
-
console.log('----> clear');
|
|
1869
1868
|
if (clearData) {
|
|
1870
|
-
console.log('veio clear data');
|
|
1871
|
-
console.log(this.__data);
|
|
1872
1869
|
this.__data = null;
|
|
1873
1870
|
this.__requestPaged = null;
|
|
1874
1871
|
this.__params = null;
|
|
@@ -3257,8 +3254,6 @@ class MonkeyEcxErrorHandlingService {
|
|
|
3257
3254
|
console.log(error);
|
|
3258
3255
|
if (error instanceof HttpErrorResponse) {
|
|
3259
3256
|
const sCredentials = handlingService?.getMonkeyEcxServiceCredentials() || {};
|
|
3260
|
-
console.log('sCredentials');
|
|
3261
|
-
console.log(sCredentials);
|
|
3262
3257
|
if (MonkeyEcxUtils.persistNullEmptyUndefined(type) && type === 'refresh_token') {
|
|
3263
3258
|
httpErrorHandlingService.handleErrorRefreshToken(error, sCredentials);
|
|
3264
3259
|
}
|
|
@@ -3275,7 +3270,7 @@ MonkeyEcxErrorHandlingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion:
|
|
|
3275
3270
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxErrorHandlingService, decorators: [{
|
|
3276
3271
|
type: Injectable,
|
|
3277
3272
|
args: [{
|
|
3278
|
-
providedIn: 'root'
|
|
3273
|
+
providedIn: 'root',
|
|
3279
3274
|
}]
|
|
3280
3275
|
}], ctorParameters: function () { return [{ type: i0.Injector }]; } });
|
|
3281
3276
|
|