@automateinc/fleet-types 1.0.62 → 1.0.64-dev.259da72

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.
@@ -171,3 +171,4 @@ export * from "./vehicle-status";
171
171
  export * from "./vendor";
172
172
  export * from "./vendor-contact";
173
173
  export * from "./zone";
174
+ export * from "./zone-supervisor";
@@ -1,5 +1,3 @@
1
- import { IFile } from ".";
2
-
3
1
  export interface IUser {
4
2
  id: string;
5
3
  email: string;
@@ -9,9 +7,6 @@ export interface IUser {
9
7
  firstName: string;
10
8
  lastName: string;
11
9
  folderKey: string;
12
- profilePicture?: IFile;
13
- teamRole: string;
14
- signature?: IFile;
15
10
  name: string;
16
11
  teamId: string;
17
12
  createdAt: string;
@@ -0,0 +1,11 @@
1
+ export interface IZoneSupervisor {
2
+ id: string;
3
+ createdAt: string;
4
+ updatedAt: string;
5
+
6
+ zoneId: string;
7
+ userId: string;
8
+ employeeGroupId: string;
9
+
10
+ metadata?: any;
11
+ }
package/package.json CHANGED
@@ -23,7 +23,7 @@
23
23
  "@tanstack/react-query": "^4.36.1",
24
24
  "axios": "^1.7.9",
25
25
  "husky": "^9.1.7",
26
- "react": "^18.3.1",
26
+ "react": "*",
27
27
  "typescript": "5.1.6"
28
28
  },
29
29
  "homepage": "https://github.com/automateinc/fleet-types#readme",
@@ -52,5 +52,5 @@
52
52
  "test": "echo \"Error: no test specified\" && exit 1"
53
53
  },
54
54
  "types": "dist/types/index.d.ts",
55
- "version": "1.0.62"
55
+ "version": "1.0.64-dev.259da72"
56
56
  }