cemiar-epic-service-common 1.0.118 → 1.0.119

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.
@@ -17,6 +17,21 @@ export interface EmployeeCommission {
17
17
  IssuingLocationValue: ItemsValue;
18
18
  ProfitCenterValue: ItemsValue;
19
19
  LineOfBusinessValue: LineOfBusinessValue;
20
+ DateBasedValue: DateBasedValue;
21
+ }
22
+ export interface DateBasedValue {
23
+ DateBasedCommissionsValue: DateBasedCommissionsValue[];
24
+ }
25
+ export interface DateBasedCommissionsValue {
26
+ CommissionAmount: number;
27
+ CommissionPercent: number;
28
+ CommissionTypeCode: string;
29
+ DateBasedCommissionID: number;
30
+ Flag: number;
31
+ OpenRangeFrom: boolean;
32
+ OpenRangeTo: boolean;
33
+ RangeFrom: number;
34
+ RangeTo: number;
20
35
  }
21
36
  export interface CompanyCommission {
22
37
  AgreementValue: CommissionAgreement;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cemiar-epic-service-common",
3
- "version": "1.0.118",
3
+ "version": "1.0.119",
4
4
  "description": "Cemiar package to handle epic service",
5
5
  "engines": {
6
6
  "npm": ">=9.5.1",