mod-build 3.6.97 → 3.6.98

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-build",
3
- "version": "3.6.97",
3
+ "version": "3.6.98",
4
4
  "description": "Share components for S3 sites.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -0,0 +1,80 @@
1
+ const contractorTrades = [
2
+ {
3
+ name: 'Bathrooms',
4
+ value: 'Bathroom'
5
+ },
6
+ {
7
+ name: 'Cabinets',
8
+ value: 'Cabinets'
9
+ },
10
+ {
11
+ name: 'Door',
12
+ value: 'Door'
13
+ },
14
+ {
15
+ name: 'Flooring',
16
+ value: 'Flooring'
17
+ },
18
+ {
19
+ name: 'Gutters',
20
+ value: 'Gutters'
21
+ },
22
+ {
23
+ name: 'HVAC',
24
+ value: 'Heating/Cooling'
25
+ },
26
+ {
27
+ name: 'Home Security',
28
+ value: 'Home Security'
29
+ },
30
+ {
31
+ name: 'Home Warranty',
32
+ value: 'Home Warranty'
33
+ },
34
+ {
35
+ name: 'Hot Tubs',
36
+ value: 'Additions'
37
+ },
38
+ {
39
+ name: 'Medical Alerts',
40
+ value: 'Medical Alerts'
41
+ },
42
+ {
43
+ name: 'Plumbing',
44
+ value: 'Plumbing'
45
+ },
46
+ {
47
+ name: 'Roofing',
48
+ value: 'Roofing'
49
+ },
50
+ {
51
+ name: 'Siding',
52
+ value: 'Siding'
53
+ },
54
+ {
55
+ name: 'Solar',
56
+ value: 'Solar'
57
+ },
58
+ {
59
+ name: 'Stair Lifts',
60
+ value: 'Stair Lifts'
61
+ },
62
+ {
63
+ name: 'Tree Services',
64
+ value: 'Tree Services'
65
+ },
66
+ {
67
+ name: 'Walk In Tubs',
68
+ value: 'Walk In Tubs'
69
+ },
70
+ {
71
+ name: 'Water Filtration & Treatment Systems',
72
+ value: 'Water Filtration'
73
+ },
74
+ {
75
+ name: 'Windows',
76
+ value: 'Windows'
77
+ }
78
+ ];
79
+
80
+ module.exports = contractorTrades;
@@ -311,6 +311,7 @@ modForm.formatContractorDataForModApi = function(formData, currentStep) {
311
311
  multipleTrades: formData.multipleTrades ? 1 : 0,
312
312
  contractorNetwork: formData.contractorNetwork ? 1 : 0,
313
313
  companyName: formData.companyName,
314
+ howDidYouHearAboutUs: formData.howDidYouHearAboutUs,
314
315
  phone: formData.homePhone,
315
316
  email: formData.email,
316
317
  bbdId: formData.bbdId,