scheduler-services 1.3.95 → 1.3.96

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.
Files changed (2) hide show
  1. package/buildInitial.js +1 -1
  2. package/package.json +1 -1
package/buildInitial.js CHANGED
@@ -203,7 +203,7 @@ class BuildInitial {
203
203
  });
204
204
  await Promise.allSettled(requestPromises);
205
205
  sql = `SELECT * FROM employeeLeaves WHERE employeeid IN ( ${this.employeeList} ) `
206
- + "ORDER BY employeeid, startdate;";
206
+ + "ORDER BY employeeid, leavedate;";
207
207
  results = await conn.query(sql);
208
208
  const leavePromises = results.map(async (row) => {
209
209
  const empID = `${row.employeeid}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scheduler-services",
3
- "version": "1.3.95",
3
+ "version": "1.3.96",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "files": [