npm_microservice 1.0.34 → 1.0.36

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/dist/service.js CHANGED
@@ -1811,6 +1811,11 @@ var require_ClassScheduleService = __commonJS({
1811
1811
  this.service = "students-practice";
1812
1812
  return this.request("get", url, { params: filter });
1813
1813
  }
1814
+ async studentTracking(filter = {}) {
1815
+ let url = CONFIG_ROUTER_SERVICE.BASE_URL + "/lms/students-tracking";
1816
+ this.service = "students-tracking";
1817
+ return this.request("get", url, { params: filter });
1818
+ }
1814
1819
  };
1815
1820
  module2.exports = ClassScheduleService;
1816
1821
  }
@@ -442,5 +442,10 @@ var ClassScheduleService = class extends BaseService {
442
442
  this.service = "students-practice";
443
443
  return this.request("get", url, { params: filter });
444
444
  }
445
+ async studentTracking(filter = {}) {
446
+ let url = CONFIG_ROUTER_SERVICE.BASE_URL + "/lms/students-tracking";
447
+ this.service = "students-tracking";
448
+ return this.request("get", url, { params: filter });
449
+ }
445
450
  };
446
451
  module.exports = ClassScheduleService;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npm_microservice",
3
- "version": "1.0.34",
3
+ "version": "1.0.36",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "exports": {