@automateinc/fleet-types 1.0.50 → 1.0.51-dev.058b541
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/index.d.ts +2 -4
- package/dist/types/{patrol-point.d.ts → position-patrol-point.d.ts} +1 -1
- package/dist/types/{patrol.d.ts → position-patrol.d.ts} +2 -6
- package/dist/types/recruitment-other-information.d.ts +0 -1
- package/dist/types/request-category.d.ts +2 -0
- package/package.json +1 -1
- package/dist/types/cluster-patrol-point.d.ts +0 -17
- package/dist/types/cluster-patrol.d.ts +0 -12
package/dist/types/index.d.ts
CHANGED
|
@@ -160,13 +160,11 @@ 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 "./patrol";
|
|
164
|
-
export * from "./patrol-point";
|
|
163
|
+
export * from "./position-patrol";
|
|
164
|
+
export * from "./position-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,6 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export interface IPatrol {
|
|
1
|
+
export interface IPositionPatrol {
|
|
4
2
|
id: string;
|
|
5
3
|
createdAt: string;
|
|
6
4
|
updatedAt?: string;
|
|
@@ -9,9 +7,7 @@ export interface IPatrol {
|
|
|
9
7
|
description?: string;
|
|
10
8
|
flow: "SEQUENTIAL" | "RANDOM";
|
|
11
9
|
frequency: number;
|
|
12
|
-
days: IDayOfWeek[];
|
|
13
10
|
|
|
14
|
-
positionId
|
|
15
|
-
regionId: string;
|
|
11
|
+
positionId: string;
|
|
16
12
|
metadata?: any;
|
|
17
13
|
}
|
package/package.json
CHANGED
|
@@ -1,17 +0,0 @@
|
|
|
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
|
-
}
|