@automateinc/fleet-types 1.0.54-dev.aff7938 → 1.0.54-dev.fb0fb16

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.
@@ -12,6 +12,7 @@ export interface IContract {
12
12
  monthlyDaysOff: number;
13
13
  contractDuration: number;
14
14
  overtimeRate: number;
15
+ commissionRate: number;
15
16
  contractualAllowancesProvided: boolean;
16
17
  paymentType: "TRANSFER" | "CASH" | "CHECK" | "UNPAID" | "FORSA" | "OTHER";
17
18
  metadata?: any;
@@ -1,5 +1,3 @@
1
- import { IEmployee } from ".";
2
-
3
1
  export interface ISchedule {
4
2
  id: string;
5
3
  createdAt: string;
@@ -8,7 +6,6 @@ export interface ISchedule {
8
6
  dayOfWeek: "SATURDAY" | "SUNDAY" | "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY";
9
7
  shiftId?: string;
10
8
 
11
- employee: IEmployee;
12
9
  employeeId?: string;
13
10
  metadata?: any;
14
11
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@automateinc/fleet-types",
3
3
  "private": false,
4
- "version": "1.0.54-dev.aff7938",
4
+ "version": "1.0.54-dev.fb0fb16",
5
5
  "description": "Reusable TypeScript types and interfaces for Fleet API.",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/types/index.d.ts",
@@ -32,7 +32,6 @@
32
32
  "eslint": "^8.18.0",
33
33
  "husky": "^9.1.7",
34
34
  "prettier": "^2.7.1",
35
- "react": "^18.3.1",
36
35
  "typescript": "5.1.6"
37
36
  },
38
37
  "lint-staged": {
@@ -51,6 +50,7 @@
51
50
  "mime-db": "^1.52.0",
52
51
  "mime-types": "^2.1.35",
53
52
  "proxy-from-env": "^1.1.0",
53
+ "react": "^18.3.1",
54
54
  "use-sync-external-store": "^1.4.0"
55
55
  },
56
56
  "bugs": {