@homeworksenergy/utility-service 1.0.10 → 1.0.13
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/index.js +25 -11
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -14,7 +14,7 @@ const STATES = {
|
|
|
14
14
|
};
|
|
15
15
|
|
|
16
16
|
const BUSINESSES = {
|
|
17
|
-
'00': '
|
|
17
|
+
'00': 'HEA',
|
|
18
18
|
'01': 'HVAC Sales',
|
|
19
19
|
'02': 'HVAC Service',
|
|
20
20
|
'03': 'HVAC Walkthrough',
|
|
@@ -24,7 +24,14 @@ const BUSINESSES = {
|
|
|
24
24
|
};
|
|
25
25
|
|
|
26
26
|
const EVENT_TYPES = {
|
|
27
|
-
'00': {
|
|
27
|
+
'00': {
|
|
28
|
+
'00': 'HEA Visit',
|
|
29
|
+
'01': 'Multi Family HEA Visit',
|
|
30
|
+
'02': 'VEA Visit',
|
|
31
|
+
'03': 'VEA QC Visit',
|
|
32
|
+
'04': 'Return (Duration 1 Hour)',
|
|
33
|
+
'05': 'Return (Duration 2 Hour)',
|
|
34
|
+
},
|
|
28
35
|
'01': { '00': 'Sales Visit', '01': 'DHW Call', '02': 'Return Visit' },
|
|
29
36
|
'02': {
|
|
30
37
|
'00': 'Service Visit',
|
|
@@ -41,7 +48,7 @@ const EVENT_TYPES = {
|
|
|
41
48
|
'01': 'Gas Furnace',
|
|
42
49
|
'02': 'Gas Furnace/AC',
|
|
43
50
|
'03': 'Gas/DHW',
|
|
44
|
-
'04': 'Gas
|
|
51
|
+
'04': 'Gas FHW Boiler',
|
|
45
52
|
'05': 'Gas/Combination Boiler',
|
|
46
53
|
'06': 'Air Handler/Heat Pump',
|
|
47
54
|
'07': 'Ductless Mini Split',
|
|
@@ -50,16 +57,23 @@ const EVENT_TYPES = {
|
|
|
50
57
|
10: 'Oil FHW Boiler',
|
|
51
58
|
11: 'Oil DHW',
|
|
52
59
|
12: 'Electric DHW',
|
|
60
|
+
13: 'A/C Only',
|
|
61
|
+
14: 'Gas Steam Boiler',
|
|
62
|
+
15: 'Oil Steam Boiler',
|
|
63
|
+
16: 'Gas Space Heater',
|
|
64
|
+
17: 'Gas Furnace & HP',
|
|
65
|
+
18: 'Direct Vent Space Heater',
|
|
66
|
+
19: 'Heated Bath Fan',
|
|
67
|
+
20: 'Electric Baseboard',
|
|
53
68
|
},
|
|
54
69
|
'05': {
|
|
55
|
-
'00': '
|
|
56
|
-
'01': '
|
|
57
|
-
'02': '
|
|
58
|
-
'03': '
|
|
59
|
-
'04': '
|
|
60
|
-
'05': '
|
|
61
|
-
'06': '
|
|
62
|
-
'07': 'WX Manager QC Visit',
|
|
70
|
+
'00': 'Insulation Install',
|
|
71
|
+
'01': 'Insulation Callback',
|
|
72
|
+
'02': 'Insulation Internal Callback',
|
|
73
|
+
'03': 'Insulation Truck Service',
|
|
74
|
+
'04': 'Insulation Finish',
|
|
75
|
+
'05': 'Insulation Manager Visit',
|
|
76
|
+
'06': 'Insulation Manager QC Visit',
|
|
63
77
|
},
|
|
64
78
|
99: { 99: 'Custom Block' },
|
|
65
79
|
};
|