monkey-front-core 0.0.44 → 0.0.45
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/decorators/monkeyecx-decorators.mjs +3 -5
- package/fesm2015/monkey-front-core.mjs +1 -3
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +2 -4
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/monkey-front-core-0.0.45.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.44.tgz +0 -0
|
@@ -1401,8 +1401,6 @@ function MonkeyEcxCoreService(params) {
|
|
|
1401
1401
|
const method = propertyDescriptor.value;
|
|
1402
1402
|
propertyDescriptor.value = function (...args) {
|
|
1403
1403
|
const context = this;
|
|
1404
|
-
console.log('context');
|
|
1405
|
-
console.log(context);
|
|
1406
1404
|
if (hasMonkeyEcxServiceAndHandlingProperties(context)) {
|
|
1407
1405
|
context?.monkeyecxService?.monkeyecxHandlingService?.clearAll();
|
|
1408
1406
|
context?.monkeyecxService?.monkeyecxHandlingService?.setMonkeyEcxServiceCredentials(params);
|
|
@@ -1427,7 +1425,7 @@ function MonkeyEcxCoreServicePaged(params) {
|
|
|
1427
1425
|
context?.monkeyecxService?.monkeyecxHandlingService?.clearAll();
|
|
1428
1426
|
context?.monkeyecxService?.monkeyecxHandlingService?.setMonkeyEcxServiceCredentials({
|
|
1429
1427
|
...params,
|
|
1430
|
-
...(requestPaged || null)
|
|
1428
|
+
...(requestPaged || null),
|
|
1431
1429
|
});
|
|
1432
1430
|
}
|
|
1433
1431
|
const result = method.apply(context, args);
|
|
@@ -1448,7 +1446,7 @@ function MonkeyEcxCoreServiceQueue(name, description, params) {
|
|
|
1448
1446
|
}
|
|
1449
1447
|
context?.monkeyecxService.monkeyecxHandlingService.setMonkeyEcxRequestQueue(buildQueuePropertys({
|
|
1450
1448
|
name,
|
|
1451
|
-
description
|
|
1449
|
+
description,
|
|
1452
1450
|
}));
|
|
1453
1451
|
}
|
|
1454
1452
|
const result = method.apply(context, args);
|