@platform-modules/foreign-ministry 1.1.19 → 1.1.20

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.
@@ -3,7 +3,8 @@ export declare enum AttendanceStatus {
3
3
  PRESENT = "PRESENT",
4
4
  ABSENT = "ABSENT",
5
5
  LEAVE = "LEAVE",
6
- HALF_DAY = "HALF_DAY"
6
+ HALF_DAY = "HALF_DAY",
7
+ REGULARISED = "REGULARISED"
7
8
  }
8
9
  export declare class AttendanceDetails extends BaseModel {
9
10
  user_id: string;
@@ -19,6 +19,7 @@ var AttendanceStatus;
19
19
  AttendanceStatus["ABSENT"] = "ABSENT";
20
20
  AttendanceStatus["LEAVE"] = "LEAVE";
21
21
  AttendanceStatus["HALF_DAY"] = "HALF_DAY";
22
+ AttendanceStatus["REGULARISED"] = "REGULARISED";
22
23
  })(AttendanceStatus || (exports.AttendanceStatus = AttendanceStatus = {}));
23
24
  let AttendanceDetails = class AttendanceDetails extends BaseModel_1.BaseModel {
24
25
  constructor(user_id, shift_id, attendance_date, check_in_time, check_out_time, first_half_status, second_half_status, attendance_status, excess_hours) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/foreign-ministry",
3
- "version": "1.1.19",
3
+ "version": "1.1.20",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -7,6 +7,7 @@ export enum AttendanceStatus {
7
7
  ABSENT = 'ABSENT',
8
8
  LEAVE = 'LEAVE',
9
9
  HALF_DAY = 'HALF_DAY',
10
+ REGULARISED = 'REGULARISED',
10
11
  }
11
12
 
12
13
  @Entity({ name: 'attendance_details' })