scheduler-node-models 1.2.120 → 1.2.121

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scheduler-node-models",
3
- "version": "1.2.120",
3
+ "version": "1.2.121",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "files": [
@@ -19,6 +19,7 @@ export declare class Workday implements IWorkday {
19
19
  workcenter: string;
20
20
  code: string;
21
21
  hours: number;
22
+ date?: Date;
22
23
  constructor(wd?: IWorkday);
23
24
  /**
24
25
  * This function is used to sort two workday objects based on the workday's identifier.
@@ -13,6 +13,7 @@ class Workday {
13
13
  workcenter;
14
14
  code;
15
15
  hours;
16
+ date;
16
17
  constructor(wd) {
17
18
  this.id = (wd) ? wd.id : 0;
18
19
  this.workcenter = (wd) ? wd.workcenter : '';