scheduler-node-models 1.2.104 → 1.2.105
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/package.json
CHANGED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
export interface NewSiteForecast {
|
|
2
|
+
team: string;
|
|
3
|
+
site: string;
|
|
4
|
+
name: string;
|
|
5
|
+
start: Date;
|
|
6
|
+
end: Date;
|
|
7
|
+
company: string;
|
|
8
|
+
sortFirst: boolean;
|
|
9
|
+
}
|
|
10
|
+
export interface UpdateSiteForecast {
|
|
11
|
+
team: string;
|
|
12
|
+
site: string;
|
|
13
|
+
forecast: number;
|
|
14
|
+
field: string;
|
|
15
|
+
value: string;
|
|
16
|
+
}
|
|
17
|
+
export interface NewSiteForecastChargeNumber {
|
|
18
|
+
team: string;
|
|
19
|
+
site: string;
|
|
20
|
+
forecast: number;
|
|
21
|
+
chargeNumber: string;
|
|
22
|
+
extension: string;
|
|
23
|
+
location: string;
|
|
24
|
+
minimum: number;
|
|
25
|
+
vacantName: string;
|
|
26
|
+
hoursPerEmployee: number;
|
|
27
|
+
start: Date;
|
|
28
|
+
end: Date;
|
|
29
|
+
}
|
|
30
|
+
export interface UpdateSiteForecastChargeNumber {
|
|
31
|
+
team: string;
|
|
32
|
+
site: string;
|
|
33
|
+
forecast: number;
|
|
34
|
+
chargeNumber: string;
|
|
35
|
+
extension: string;
|
|
36
|
+
field: string;
|
|
37
|
+
value: string;
|
|
38
|
+
}
|
|
39
|
+
export interface NewSiteCofSReport {
|
|
40
|
+
team: string;
|
|
41
|
+
site: string;
|
|
42
|
+
name: string;
|
|
43
|
+
shortname: string;
|
|
44
|
+
unit: string;
|
|
45
|
+
start: Date;
|
|
46
|
+
end: Date;
|
|
47
|
+
}
|
|
48
|
+
export interface NewSiteCofSReportSection {
|
|
49
|
+
team: string;
|
|
50
|
+
site: string;
|
|
51
|
+
reportid: number;
|
|
52
|
+
label: string;
|
|
53
|
+
company: string;
|
|
54
|
+
signature: string;
|
|
55
|
+
showunit: boolean;
|
|
56
|
+
}
|
|
57
|
+
export interface UpdateSiteCofSReport {
|
|
58
|
+
team: string;
|
|
59
|
+
site: string;
|
|
60
|
+
reportid: number;
|
|
61
|
+
sectionid?: number;
|
|
62
|
+
field: string;
|
|
63
|
+
value: string;
|
|
64
|
+
}
|