@automateinc/fleet-types 1.0.47 → 1.0.48-dev.eb9957e
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/attendance-patrol-point.d.ts +1 -1
- package/dist/types/attendance-patrol.d.ts +1 -1
- package/dist/types/cluster-patrol-point.d.ts +17 -0
- package/dist/types/cluster-patrol.d.ts +12 -0
- package/dist/types/index.d.ts +4 -2
- package/dist/types/{position-patrol-point.d.ts → patrol-point.d.ts} +1 -1
- package/dist/types/{position-patrol.d.ts → patrol.d.ts} +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export interface IClusterPatrolPoint {
|
|
2
|
+
id: string;
|
|
3
|
+
createdAt: string;
|
|
4
|
+
updatedAt?: string;
|
|
5
|
+
|
|
6
|
+
notes?: string;
|
|
7
|
+
status: "PENDING" | "COMPLETED" | "SKIPPED" | "ON_HOLD";
|
|
8
|
+
order: number;
|
|
9
|
+
|
|
10
|
+
patrolPointId: string;
|
|
11
|
+
clusterPatrolId: string;
|
|
12
|
+
fileId?: string;
|
|
13
|
+
reportId?: string;
|
|
14
|
+
|
|
15
|
+
patrolId: string;
|
|
16
|
+
metadata?: any;
|
|
17
|
+
}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -160,11 +160,13 @@ export * from "./leave-event";
|
|
|
160
160
|
export * from "./leave";
|
|
161
161
|
export * from "./company-file";
|
|
162
162
|
export * from "./employee-label-assignment";
|
|
163
|
-
export * from "./
|
|
164
|
-
export * from "./
|
|
163
|
+
export * from "./patrol";
|
|
164
|
+
export * from "./patrol-point";
|
|
165
165
|
export * from "./attendance-patrol";
|
|
166
166
|
export * from "./attendance-patrol-point";
|
|
167
167
|
export * from "./position-template";
|
|
168
168
|
export * from "./position-template-item";
|
|
169
169
|
export * from "./day-of-week";
|
|
170
170
|
export * from "./client-contract";
|
|
171
|
+
export * from "./cluster-patrol";
|
|
172
|
+
export * from "./cluster-patrol-point";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export interface
|
|
1
|
+
export interface IPatrol {
|
|
2
2
|
id: string;
|
|
3
3
|
createdAt: string;
|
|
4
4
|
updatedAt?: string;
|
|
@@ -8,6 +8,6 @@ export interface IPositionPatrol {
|
|
|
8
8
|
flow: "SEQUENTIAL" | "RANDOM";
|
|
9
9
|
frequency: number;
|
|
10
10
|
|
|
11
|
-
positionId
|
|
11
|
+
positionId?: string;
|
|
12
12
|
metadata?: any;
|
|
13
13
|
}
|
package/package.json
CHANGED