@automateinc/fleet-types 1.0.77-dev.5920545 → 1.0.77-dev.8fce67e
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.
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { IGender } from "./gender";
|
|
2
|
+
|
|
3
|
+
export interface IClientQuotationPositionVersion {
|
|
4
|
+
id: string;
|
|
5
|
+
createdAt: string;
|
|
6
|
+
updatedAt: string;
|
|
7
|
+
|
|
8
|
+
siteDraftId: string;
|
|
9
|
+
positionId?: string | null;
|
|
10
|
+
positionVersionId?: string | null;
|
|
11
|
+
|
|
12
|
+
name: string;
|
|
13
|
+
status:
|
|
14
|
+
| "UNVERIFIED"
|
|
15
|
+
| "PENDING_VERIFICATION"
|
|
16
|
+
| "VERIFIED"
|
|
17
|
+
| "REJECTED"
|
|
18
|
+
| "CHANGES_NEEDED";
|
|
19
|
+
reason?: string | null;
|
|
20
|
+
|
|
21
|
+
coversSaturday: boolean;
|
|
22
|
+
coversSunday: boolean;
|
|
23
|
+
coversMonday: boolean;
|
|
24
|
+
coversTuesday: boolean;
|
|
25
|
+
coversWednesday: boolean;
|
|
26
|
+
coversThursday: boolean;
|
|
27
|
+
coversFriday: boolean;
|
|
28
|
+
|
|
29
|
+
dailyHours: number;
|
|
30
|
+
dailyCoverage: string;
|
|
31
|
+
gender?: IGender | null;
|
|
32
|
+
|
|
33
|
+
metadata?: any;
|
|
34
|
+
}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -66,6 +66,8 @@ export * from "./client-field-category";
|
|
|
66
66
|
export * from "./client-field-value";
|
|
67
67
|
export * from "./client-quotation";
|
|
68
68
|
export * from "./client-quotation-line";
|
|
69
|
+
export * from "./client-quotation-position-version";
|
|
70
|
+
export * from "./client-quotation-site-draft";
|
|
69
71
|
export * from "./client-request";
|
|
70
72
|
export * from "./client-request-action";
|
|
71
73
|
export * from "./client-request-action-execution";
|
|
@@ -3,7 +3,7 @@ export interface IPositionVersion {
|
|
|
3
3
|
updatedAt: Date;
|
|
4
4
|
createdAt: Date;
|
|
5
5
|
|
|
6
|
-
status: "UNVERIFIED" | "PENDING_VERIFICATION" | "VERIFIED" | "REJECTED"
|
|
6
|
+
status: "UNVERIFIED" | "PENDING_VERIFICATION" | "VERIFIED" | "REJECTED";
|
|
7
7
|
version: number;
|
|
8
8
|
coversSaturday: boolean;
|
|
9
9
|
coversSunday: boolean;
|
|
@@ -16,8 +16,6 @@ export interface IPositionVersion {
|
|
|
16
16
|
dailyCoverage: string;
|
|
17
17
|
weeklyCoverage: string;
|
|
18
18
|
|
|
19
|
-
reason?: string;
|
|
20
|
-
|
|
21
19
|
positionId: string;
|
|
22
20
|
activePositionId: string;
|
|
23
21
|
metadata?: any;
|
package/package.json
CHANGED