@automateinc/fleet-types 1.0.81 → 1.0.82
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/client-quotation-position-version.d.ts +2 -7
- package/dist/types/client-quotation-site-draft.d.ts +1 -1
- package/dist/types/client-status-check-requirement-condition-group.d.ts +1 -1
- package/dist/types/client-status-check-requirement-condition.d.ts +1 -1
- package/dist/types/contract-cost.d.ts +7 -7
- package/dist/types/contract-snapshot-allowance.d.ts +1 -1
- package/dist/types/contract-snapshot-benefit.d.ts +1 -1
- package/dist/types/contract-snapshot-cost.d.ts +1 -1
- package/dist/types/contract-snapshot-deduction.d.ts +1 -1
- package/dist/types/contract-snapshot.d.ts +1 -1
- package/dist/types/employee-group-cost.d.ts +1 -1
- package/dist/types/employee-group-snapshot-cost.d.ts +1 -1
- package/dist/types/employee-group-snapshot.d.ts +1 -1
- package/dist/types/shift.d.ts +1 -1
- package/package.json +1 -1
|
@@ -10,12 +10,7 @@ export interface IClientQuotationPositionVersion {
|
|
|
10
10
|
positionVersionId?: string | null;
|
|
11
11
|
|
|
12
12
|
name: string;
|
|
13
|
-
status:
|
|
14
|
-
| "UNVERIFIED"
|
|
15
|
-
| "PENDING_VERIFICATION"
|
|
16
|
-
| "VERIFIED"
|
|
17
|
-
| "REJECTED"
|
|
18
|
-
| "CHANGES_NEEDED";
|
|
13
|
+
status: "UNVERIFIED" | "PENDING_VERIFICATION" | "VERIFIED" | "REJECTED" | "CHANGES_NEEDED";
|
|
19
14
|
reason?: string | null;
|
|
20
15
|
|
|
21
16
|
coversSaturday: boolean;
|
|
@@ -31,4 +26,4 @@ export interface IClientQuotationPositionVersion {
|
|
|
31
26
|
gender?: IGender | null;
|
|
32
27
|
|
|
33
28
|
metadata?: any;
|
|
34
|
-
}
|
|
29
|
+
}
|
|
@@ -3,15 +3,15 @@ export interface IContractCost {
|
|
|
3
3
|
createdAt: string;
|
|
4
4
|
updatedAt: string;
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
name: string;
|
|
7
|
+
value: number;
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
recurrence: "ONE_TIME" | "RECURRING";
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
duration?: number;
|
|
12
|
+
durationType?: "DAY" | "WEEK" | "MONTH" | "YEAR";
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
contractId: string;
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
metadata?: any;
|
|
17
17
|
}
|
package/dist/types/shift.d.ts
CHANGED
package/package.json
CHANGED