hvp-shared 6.63.0 → 6.64.0

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.
@@ -74,6 +74,7 @@ export interface AdminEmploymentResponse extends EmploymentViewResponse {
74
74
  concept: string;
75
75
  amount: number;
76
76
  }>;
77
+ averageDailyHoursWorked?: number;
77
78
  averageCommissionsPerScheduledHour?: number;
78
79
  averageOrdinaryIncomePerScheduledHour?: number;
79
80
  trainingSupport?: number;
@@ -14,6 +14,7 @@ export declare enum PayrollItemCategory {
14
14
  OVERTIME = "OVERTIME",
15
15
  HOLIDAY_PAY = "HOLIDAY_PAY",
16
16
  YEAR_END_BONUS = "YEAR_END_BONUS",
17
+ VACATION_PAY = "VACATION_PAY",
17
18
  VACATION_BONUS = "VACATION_BONUS",
18
19
  PROFIT_SHARING = "PROFIT_SHARING",
19
20
  SUBSIDY = "SUBSIDY",
@@ -125,6 +126,7 @@ export interface PayrollV2 {
125
126
  readonly periodEndDate?: string;
126
127
  readonly payrollStatus?: PayrollStatus;
127
128
  readonly daysPaid?: number;
129
+ readonly isNominal?: boolean;
128
130
  readonly perceptions: PayrollItem[];
129
131
  readonly deductions: PayrollItem[];
130
132
  readonly otherPayments: PayrollItem[];
@@ -20,6 +20,7 @@ var PayrollItemCategory;
20
20
  PayrollItemCategory["OVERTIME"] = "OVERTIME";
21
21
  PayrollItemCategory["HOLIDAY_PAY"] = "HOLIDAY_PAY";
22
22
  PayrollItemCategory["YEAR_END_BONUS"] = "YEAR_END_BONUS";
23
+ PayrollItemCategory["VACATION_PAY"] = "VACATION_PAY";
23
24
  PayrollItemCategory["VACATION_BONUS"] = "VACATION_BONUS";
24
25
  PayrollItemCategory["PROFIT_SHARING"] = "PROFIT_SHARING";
25
26
  PayrollItemCategory["SUBSIDY"] = "SUBSIDY";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hvp-shared",
3
- "version": "6.63.0",
3
+ "version": "6.64.0",
4
4
  "description": "Shared types and utilities for HVP backend and frontend",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",