law-common 9.1.2-beta.1 → 9.1.2

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.
@@ -2,4 +2,4 @@ export declare const timesheetViewThreshold = "timesheetViewThreshold";
2
2
  export declare const timesheetThreshold = "timesheetThreshold";
3
3
  export declare const timesheetEnterThreshold = "timesheetEnterThreshold";
4
4
  export declare const timesheetMinimumTotalDuration = 15;
5
- export declare const leaveImplicitDays: string[];
5
+ export declare const reimbursementPaymentProcessorPermissionName = "REIMBURSEMENT_PAYMENT_PROCESSOR";
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.leaveImplicitDays = exports.timesheetMinimumTotalDuration = exports.timesheetEnterThreshold = exports.timesheetThreshold = exports.timesheetViewThreshold = void 0;
3
+ exports.reimbursementPaymentProcessorPermissionName = exports.timesheetMinimumTotalDuration = exports.timesheetEnterThreshold = exports.timesheetThreshold = exports.timesheetViewThreshold = void 0;
4
4
  exports.timesheetViewThreshold = "timesheetViewThreshold";
5
5
  exports.timesheetThreshold = "timesheetThreshold";
6
6
  exports.timesheetEnterThreshold = "timesheetEnterThreshold";
7
7
  exports.timesheetMinimumTotalDuration = 15;
8
- exports.leaveImplicitDays = ["Saturday", "Sunday"];
8
+ exports.reimbursementPaymentProcessorPermissionName = "REIMBURSEMENT_PAYMENT_PROCESSOR";
@@ -65,4 +65,3 @@ export * from "./interface/country.entity.interface";
65
65
  export * from "./enums/billing_invoice_type.enum";
66
66
  export * from "./interface/billing_timesheet.entity.interface";
67
67
  export * from "./interface/intermediary_bank.entity.interface";
68
- export * from "./enums/leave-type.enum";
@@ -82,4 +82,3 @@ __exportStar(require("./interface/country.entity.interface"), exports);
82
82
  __exportStar(require("./enums/billing_invoice_type.enum"), exports);
83
83
  __exportStar(require("./interface/billing_timesheet.entity.interface"), exports);
84
84
  __exportStar(require("./interface/intermediary_bank.entity.interface"), exports);
85
- __exportStar(require("./enums/leave-type.enum"), exports);
@@ -1,4 +1,3 @@
1
- import { LeaveTypeEnum } from "../enums/leave-type.enum";
2
1
  import { LeaveStatusEnum } from "../enums/leave.status.enum";
3
2
  import { IAuditColumnEntity } from "./audit-column.entity.interface";
4
3
  import { IEntityFilterData } from "./entity.utils.interface";
@@ -8,7 +7,6 @@ export interface ILeaveEntity extends IAuditColumnEntity {
8
7
  fromDate: string;
9
8
  toDate: string;
10
9
  reason: string;
11
- type: LeaveTypeEnum;
12
10
  status: LeaveStatusEnum;
13
11
  remark?: string;
14
12
  }
@@ -1,6 +1,8 @@
1
1
  import { IAuditColumnEntity } from "./audit-column.entity.interface";
2
+ import { IEntityFilterData } from "./entity.utils.interface";
2
3
  export interface IRolePermissionMappingEntity extends IAuditColumnEntity {
3
4
  id: number;
4
5
  roleId: number;
5
6
  permissionId: number;
6
7
  }
8
+ export type IRolePermissionMappingEntityFilterData = IEntityFilterData<IRolePermissionMappingEntity>;
@@ -1,4 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- // export type IRolePermissionMappingEntityFilterData =
4
- // IEntityFilterData<IRolePermissionMappingEntity>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "law-common",
3
- "version": "9.1.2-beta.1",
3
+ "version": "9.1.2",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -1,8 +0,0 @@
1
- export declare enum LeaveTypeEnum {
2
- FIRST = "first",
3
- SECOND = "second",
4
- FULL = "full",
5
- FULL_FIRST = "full_first",
6
- SECOND_FULL = "second_full",
7
- SECOND_FIRST = "second_first"
8
- }
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.LeaveTypeEnum = void 0;
4
- var LeaveTypeEnum;
5
- (function (LeaveTypeEnum) {
6
- LeaveTypeEnum["FIRST"] = "first";
7
- LeaveTypeEnum["SECOND"] = "second";
8
- LeaveTypeEnum["FULL"] = "full";
9
- LeaveTypeEnum["FULL_FIRST"] = "full_first";
10
- LeaveTypeEnum["SECOND_FULL"] = "second_full";
11
- LeaveTypeEnum["SECOND_FIRST"] = "second_first";
12
- })(LeaveTypeEnum || (exports.LeaveTypeEnum = LeaveTypeEnum = {}));