@automateinc/fleet-types 1.0.64-dev.8a52f47 → 1.0.65-dev.cad0a50

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";
@@ -17,5 +17,7 @@ export interface IScheduleDraft {
17
17
 
18
18
  generatedById?: string;
19
19
 
20
+ verified: boolean;
21
+
20
22
  metadata?: any;
21
23
  }
@@ -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
@@ -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.64-dev.8a52f47"
55
+ "version": "1.0.65-dev.cad0a50"
56
56
  }