@automateinc/fleet-types 1.0.92 → 1.0.94-dev.5978801
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/dist/types/employee-group.d.ts +2 -0
- package/dist/types/employee-monthly-pay-review-event.d.ts +21 -0
- package/dist/types/employee-monthly-pay-review-field.d.ts +13 -0
- package/dist/types/employee-monthly-pay-review.d.ts +15 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/models.d.ts +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export type EmployeeMonthlyPayReviewEventType =
|
|
2
|
+
| "VERIFIED"
|
|
3
|
+
| "DISPUTED"
|
|
4
|
+
| "ADDITIONAL_INFO_REQUESTED"
|
|
5
|
+
| "ADDITIONAL_INFO_PROVIDED"
|
|
6
|
+
| "RESOLVED";
|
|
7
|
+
|
|
8
|
+
export interface IEmployeeMonthlyPayReviewEvent {
|
|
9
|
+
id: string;
|
|
10
|
+
createdAt: string;
|
|
11
|
+
updatedAt?: string;
|
|
12
|
+
|
|
13
|
+
type: EmployeeMonthlyPayReviewEventType;
|
|
14
|
+
|
|
15
|
+
reviewId: string;
|
|
16
|
+
reason?: string;
|
|
17
|
+
supportingDocumentsRequired?: boolean;
|
|
18
|
+
|
|
19
|
+
userId?: string;
|
|
20
|
+
employeeId?: string;
|
|
21
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export interface IEmployeeMonthlyPayReviewField {
|
|
2
|
+
id: string;
|
|
3
|
+
createdAt: string;
|
|
4
|
+
updatedAt?: string;
|
|
5
|
+
|
|
6
|
+
reviewId: string;
|
|
7
|
+
mobileFieldId: string;
|
|
8
|
+
payrollFieldId: string;
|
|
9
|
+
title: string;
|
|
10
|
+
format?: string;
|
|
11
|
+
postfix?: string;
|
|
12
|
+
value?: unknown;
|
|
13
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export type EmployeeMonthlyPayReviewStatus = "VERIFIED" | "DISPUTE_PENDING" | "ADDITIONAL_INFO_REQUESTED" | "RESOLVED";
|
|
2
|
+
|
|
3
|
+
export interface IEmployeeMonthlyPayReview {
|
|
4
|
+
id: string;
|
|
5
|
+
createdAt: string;
|
|
6
|
+
updatedAt?: string;
|
|
7
|
+
|
|
8
|
+
status: EmployeeMonthlyPayReviewStatus;
|
|
9
|
+
|
|
10
|
+
monthlyPayId: string;
|
|
11
|
+
additionalInfoDocumentsRequired: boolean;
|
|
12
|
+
|
|
13
|
+
lastHandledById?: string;
|
|
14
|
+
lastHandledAt?: string;
|
|
15
|
+
}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -120,6 +120,9 @@ export * from "./employee-group-snapshot-cost";
|
|
|
120
120
|
export * from "./employee-label";
|
|
121
121
|
export * from "./employee-label-assignment";
|
|
122
122
|
export * from "./employee-monthly-payroll";
|
|
123
|
+
export * from "./employee-monthly-pay-review";
|
|
124
|
+
export * from "./employee-monthly-pay-review-event";
|
|
125
|
+
export * from "./employee-monthly-pay-review-field";
|
|
123
126
|
export * from "./employee-status";
|
|
124
127
|
export * from "./file";
|
|
125
128
|
export * from "./gender";
|
package/dist/types/models.d.ts
CHANGED
|
@@ -106,6 +106,9 @@ export type IModel =
|
|
|
106
106
|
| "paymentCycleDocument"
|
|
107
107
|
| "paymentCycle"
|
|
108
108
|
| "employeeMonthlyPay"
|
|
109
|
+
| "employeeMonthlyPayReview"
|
|
110
|
+
| "employeeMonthlyPayReviewEvent"
|
|
111
|
+
| "employeeMonthlyPayReviewField"
|
|
109
112
|
| "payrollConfig"
|
|
110
113
|
| "vendor"
|
|
111
114
|
| "vendorContact"
|
package/package.json
CHANGED