tnx-shared 5.1.487 → 5.1.488
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/bundles/tnx-shared.umd.js +5 -0
- package/bundles/tnx-shared.umd.js.map +1 -1
- package/bundles/tnx-shared.umd.min.js +1 -1
- package/bundles/tnx-shared.umd.min.js.map +1 -1
- package/esm2015/services/base.service.js +5 -1
- package/fesm2015/tnx-shared.js +4 -0
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
- package/services/base.service.d.ts +1 -0
- package/services/base.service.d.ts.map +1 -1
- package/tnx-shared.metadata.json +1 -1
|
@@ -8061,6 +8061,11 @@
|
|
|
8061
8061
|
};
|
|
8062
8062
|
return this.defaultPost(url, gridInfo);
|
|
8063
8063
|
};
|
|
8064
|
+
BaseService.prototype.countByFilter = function (filters) {
|
|
8065
|
+
if (filters === void 0) { filters = []; }
|
|
8066
|
+
var url = this.serviceUri + "/CountByFilter";
|
|
8067
|
+
return this.defaultPost(url, filters);
|
|
8068
|
+
};
|
|
8064
8069
|
BaseService.prototype.getLastDetailByFilter = function (filters, sorts) {
|
|
8065
8070
|
if (filters === void 0) { filters = []; }
|
|
8066
8071
|
if (sorts === void 0) { sorts = []; }
|