@salesforce/webapp-template-app-react-sample-b2x-experimental 1.67.0 → 1.68.0
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/CHANGELOG.md +16 -0
- package/dist/force-app/main/default/data/Agent__c.json +79 -0
- package/dist/force-app/main/default/data/Application__c.json +115 -6
- package/dist/force-app/main/default/data/Contact.json +44 -0
- package/dist/force-app/main/default/data/Maintenance_Request__c.json +258 -334
- package/dist/force-app/main/default/data/Maintenance_Worker__c.json +135 -155
- package/dist/force-app/main/default/data/Notification__c.json +214 -0
- package/dist/force-app/main/default/data/Property__c.json +436 -311
- package/dist/force-app/main/default/data/Tenant__c.json +90 -9348
- package/dist/force-app/main/default/data/data-plan.json +42 -18
- package/dist/force-app/main/default/layouts/Application__c-Application Layout.layout-meta.xml +58 -0
- package/dist/force-app/main/default/layouts/Maintenance_Request__c-Maintenance Request Layout.layout-meta.xml +13 -28
- package/dist/force-app/main/default/layouts/Maintenance_Worker__c-Maintenance Worker Layout.layout-meta.xml +11 -24
- package/dist/force-app/main/default/layouts/Property__c-Property Layout.layout-meta.xml +23 -60
- package/dist/force-app/main/default/layouts/Tenant__c-Tenant Layout.layout-meta.xml +10 -23
- package/dist/force-app/main/default/objects/Agent__c/Agent__c.object-meta.xml +66 -0
- package/dist/force-app/main/default/objects/Agent__c/fields/Agent_Type__c.field-meta.xml +37 -0
- package/dist/force-app/main/default/objects/Agent__c/fields/Availability__c.field-meta.xml +37 -0
- package/dist/force-app/main/default/objects/{Tenant__c/fields/Emergency_Contact__c.field-meta.xml → Agent__c/fields/Emergency_Alt__c.field-meta.xml} +4 -5
- package/dist/force-app/main/default/objects/Agent__c/fields/Language__c.field-meta.xml +42 -0
- package/dist/force-app/main/default/objects/{Property__c/fields/Purchase_Date__c.field-meta.xml → Agent__c/fields/License_Expiry__c.field-meta.xml} +4 -3
- package/dist/force-app/main/default/objects/Agent__c/fields/License_Number__c.field-meta.xml +14 -0
- package/dist/force-app/main/default/objects/Agent__c/fields/Office_Location__c.field-meta.xml +42 -0
- package/dist/force-app/main/default/objects/Agent__c/fields/Territory__c.field-meta.xml +42 -0
- package/dist/force-app/main/default/objects/Application__c/Application__c.object-meta.xml +4 -4
- package/dist/force-app/main/default/objects/Application__c/fields/Employment__c.field-meta.xml +10 -0
- package/dist/force-app/main/default/objects/Application__c/fields/Property__c.field-meta.xml +4 -2
- package/dist/force-app/main/default/objects/Application__c/fields/References__c.field-meta.xml +4 -5
- package/dist/force-app/main/default/objects/Application__c/fields/Start_Date__c.field-meta.xml +3 -4
- package/dist/force-app/main/default/objects/Application__c/fields/Status__c.field-meta.xml +3 -2
- package/dist/force-app/main/default/objects/Application__c/fields/User__c.field-meta.xml +5 -3
- package/dist/force-app/main/default/objects/Maintenance_Request__c/Maintenance_Request__c.object-meta.xml +4 -4
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Actual_Cost__c.field-meta.xml +3 -2
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/{Scheduled_Date__c.field-meta.xml → Completed__c.field-meta.xml} +4 -3
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Description__c.field-meta.xml +3 -3
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/{Estimated_Cost__c.field-meta.xml → Est_Cost__c.field-meta.xml} +4 -3
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Priority__c.field-meta.xml +11 -10
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Property__c.field-meta.xml +3 -2
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/{Completed_Date__c.field-meta.xml → Scheduled__c.field-meta.xml} +4 -3
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Status__c.field-meta.xml +3 -2
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Tenant_Home__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Type__c.field-meta.xml +4 -23
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/{Tenant__c.field-meta.xml → User__c.field-meta.xml} +4 -2
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/Maintenance_Worker__c.object-meta.xml +3 -2
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Certifications__c.field-meta.xml +4 -3
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Employment_Type__c.field-meta.xml +6 -5
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Hourly_Rate__c.field-meta.xml +3 -2
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/{Active__c.field-meta.xml → IsActive__c.field-meta.xml} +3 -2
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Location__c.field-meta.xml +5 -2
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Phone__c.field-meta.xml +2 -1
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Rating__c.field-meta.xml +4 -3
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/{Specialty__c.field-meta.xml → Type__c.field-meta.xml} +17 -11
- package/dist/force-app/main/default/objects/Notification__c/Notification__c.object-meta.xml +67 -0
- package/dist/force-app/main/default/objects/{Property__c/fields/Furnished__c.field-meta.xml → Notification__c/fields/Is_Read__c.field-meta.xml} +4 -4
- package/dist/force-app/main/default/objects/Notification__c/fields/Message__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Notification__c/fields/Priority__c.field-meta.xml +36 -0
- package/dist/force-app/main/default/objects/Notification__c/fields/Related_Object_Type__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/Notification__c/fields/Related_Record_Id__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/{Maintenance_Request__c → Notification__c}/fields/Title__c.field-meta.xml +3 -3
- package/dist/force-app/main/default/objects/Notification__c/fields/Type__c.field-meta.xml +36 -0
- package/dist/force-app/main/default/objects/{Property__c/fields/Property_Manager__c.field-meta.xml → Notification__c/fields/User__c.field-meta.xml} +6 -5
- package/dist/force-app/main/default/objects/Property__c/Property__c.object-meta.xml +5 -4
- package/dist/force-app/main/default/objects/Property__c/fields/Address__c.field-meta.xml +6 -3
- package/dist/force-app/main/default/objects/Property__c/fields/{Property_Owner__c.field-meta.xml → Agent__c.field-meta.xml} +6 -5
- package/dist/force-app/main/default/objects/Property__c/fields/Available_Date__c.field-meta.xml +2 -1
- package/dist/force-app/main/default/objects/Property__c/fields/Bathrooms__c.field-meta.xml +3 -2
- package/dist/force-app/main/default/objects/Property__c/fields/Bedrooms__c.field-meta.xml +3 -2
- package/dist/force-app/main/default/objects/Property__c/fields/{HOA_Fee__c.field-meta.xml → Deposit__c.field-meta.xml} +5 -4
- package/dist/force-app/main/default/objects/Property__c/fields/Description__c.field-meta.xml +3 -2
- package/dist/force-app/main/default/objects/Property__c/fields/Features__c.field-meta.xml +7 -6
- package/dist/force-app/main/default/objects/Property__c/fields/Hero_Image__c.field-meta.xml +3 -2
- package/dist/force-app/main/default/objects/Property__c/fields/Lease_Term__c.field-meta.xml +5 -3
- package/dist/force-app/main/default/objects/Property__c/fields/Monthly_Rent__c.field-meta.xml +4 -3
- package/dist/force-app/main/default/objects/Property__c/fields/{Total_Units__c.field-meta.xml → Parking__c.field-meta.xml} +5 -4
- package/dist/force-app/main/default/objects/Property__c/fields/Pet_Friendly__c.field-meta.xml +2 -1
- package/dist/force-app/main/default/objects/Property__c/fields/{Square_Footage__c.field-meta.xml → Sq_Ft__c.field-meta.xml} +4 -3
- package/dist/force-app/main/default/objects/Property__c/fields/Status__c.field-meta.xml +37 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Tour_URL__c.field-meta.xml +2 -1
- package/dist/force-app/main/default/objects/Property__c/fields/{Property_Type__c.field-meta.xml → Type__c.field-meta.xml} +6 -15
- package/dist/force-app/main/default/objects/Property__c/fields/{Utilities_Included__c.field-meta.xml → Utilities__c.field-meta.xml} +6 -20
- package/dist/force-app/main/default/objects/Property__c/fields/Year_Built__c.field-meta.xml +2 -1
- package/dist/force-app/main/default/objects/Tenant__c/Tenant__c.object-meta.xml +6 -4
- package/dist/force-app/main/default/objects/Tenant__c/fields/{Lease_End_Date__c.field-meta.xml → End_Date__c.field-meta.xml} +3 -2
- package/dist/force-app/main/default/objects/Tenant__c/fields/{Lease_Property__c.field-meta.xml → Property__c.field-meta.xml} +5 -3
- package/dist/force-app/main/default/objects/Tenant__c/fields/{Lease_Start_Date__c.field-meta.xml → Start_Date__c.field-meta.xml} +3 -2
- package/dist/force-app/main/default/objects/Tenant__c/fields/Status__c.field-meta.xml +3 -2
- package/dist/force-app/main/default/objects/Tenant__c/fields/User_Status__c.field-meta.xml +6 -5
- package/dist/force-app/main/default/objects/Tenant__c/fields/User__c.field-meta.xml +3 -1
- package/dist/force-app/main/default/permissionsets/Property_Management_Access.permissionset-meta.xml +225 -184
- package/dist/force-app/main/default/webapplications/appreactsampleb2x/package.json +3 -3
- package/dist/package.json +1 -1
- package/package.json +1 -1
- package/dist/force-app/main/default/applications/Property_Management.app-meta.xml +0 -29
- package/dist/force-app/main/default/objects/Application__c/fields/Employment_Info__c.field-meta.xml +0 -11
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Assigned_Worker__c.field-meta.xml +0 -14
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Date_Requested__c.field-meta.xml +0 -11
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Photo_URL__c.field-meta.xml +0 -10
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Tenant_Present__c.field-meta.xml +0 -10
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Email__c.field-meta.xml +0 -10
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Profile_Picture_URL__c.field-meta.xml +0 -10
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Years_Experience__c.field-meta.xml +0 -13
- package/dist/force-app/main/default/objects/Property__c/fields/Parking_Spaces__c.field-meta.xml +0 -13
- package/dist/force-app/main/default/objects/Property__c/fields/Property_Address__c.field-meta.xml +0 -10
- package/dist/force-app/main/default/objects/Property__c/fields/Property_Management_Company__c.field-meta.xml +0 -16
- package/dist/force-app/main/default/objects/Property__c/fields/Property_Status__c.field-meta.xml +0 -61
- package/dist/force-app/main/default/objects/Property__c/fields/Property_Tax_Annual__c.field-meta.xml +0 -12
- package/dist/force-app/main/default/objects/Property__c/fields/Property_Value__c.field-meta.xml +0 -12
- package/dist/force-app/main/default/objects/Property__c/fields/Purchase_Price__c.field-meta.xml +0 -12
- package/dist/force-app/main/default/objects/Property__c/validationRules/Property_Value_Range.validationRule-meta.xml +0 -11
- package/dist/force-app/main/default/objects/Tenant__c/fields/Email__c.field-meta.xml +0 -11
- package/dist/force-app/main/default/objects/Tenant__c/fields/Emergency_Contact_Phone__c.field-meta.xml +0 -10
- package/dist/force-app/main/default/objects/Tenant__c/fields/Phone__c.field-meta.xml +0 -10
- package/dist/force-app/main/default/tabs/Application__c.tab-meta.xml +0 -7
- package/dist/force-app/main/default/tabs/KPI_Snapshot__c.tab-meta.xml +0 -7
- package/dist/force-app/main/default/tabs/Lease__c.tab-meta.xml +0 -7
- package/dist/force-app/main/default/tabs/Maintenance_Request__c.tab-meta.xml +0 -7
- package/dist/force-app/main/default/tabs/Maintenance_Worker__c.tab-meta.xml +0 -6
- package/dist/force-app/main/default/tabs/Payment__c.tab-meta.xml +0 -7
- package/dist/force-app/main/default/tabs/Property_Owner__c.tab-meta.xml +0 -7
- package/dist/force-app/main/default/tabs/Property_Sale__c.tab-meta.xml +0 -7
- package/dist/force-app/main/default/tabs/Property__c.tab-meta.xml +0 -7
- package/dist/force-app/main/default/tabs/Tenant__c.tab-meta.xml +0 -7
|
@@ -7,14 +7,13 @@
|
|
|
7
7
|
},
|
|
8
8
|
"Name": "Marcus Jones",
|
|
9
9
|
"Phone__c": "(555) 123-4567",
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"Years_Experience__c": 8,
|
|
13
|
-
"Active__c": true,
|
|
14
|
-
"Rating__c": 4,
|
|
15
|
-
"Hourly_Rate__c": 45.0,
|
|
10
|
+
"Type__c": "Plumbing",
|
|
11
|
+
"IsActive__c": true,
|
|
16
12
|
"Employment_Type__c": "Internal Employee",
|
|
17
|
-
"
|
|
13
|
+
"Hourly_Rate__c": 45.0,
|
|
14
|
+
"Rating__c": 4.8,
|
|
15
|
+
"Certifications__c": "Licensed Plumber, Backflow Certification",
|
|
16
|
+
"Location__c": "Downtown"
|
|
18
17
|
},
|
|
19
18
|
{
|
|
20
19
|
"attributes": {
|
|
@@ -23,14 +22,13 @@
|
|
|
23
22
|
},
|
|
24
23
|
"Name": "Alberto Flores",
|
|
25
24
|
"Phone__c": "(555) 234-5678",
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"Active__c": true,
|
|
30
|
-
"Rating__c": 5,
|
|
25
|
+
"Type__c": "Electrical",
|
|
26
|
+
"IsActive__c": true,
|
|
27
|
+
"Employment_Type__c": "Internal Employee",
|
|
31
28
|
"Hourly_Rate__c": 50.0,
|
|
32
|
-
"
|
|
33
|
-
"
|
|
29
|
+
"Rating__c": 4.9,
|
|
30
|
+
"Certifications__c": "Master Electrician, NEC Certified",
|
|
31
|
+
"Location__c": "Midtown"
|
|
34
32
|
},
|
|
35
33
|
{
|
|
36
34
|
"attributes": {
|
|
@@ -39,14 +37,13 @@
|
|
|
39
37
|
},
|
|
40
38
|
"Name": "Robert Knox",
|
|
41
39
|
"Phone__c": "(555) 345-6789",
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"Rating__c": 5,
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"Profile_Picture_URL__c": "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=150&h=150&fit=crop&crop=face"
|
|
40
|
+
"Type__c": "HVAC (Heating & Cooling)",
|
|
41
|
+
"IsActive__c": true,
|
|
42
|
+
"Employment_Type__c": "Internal Employee",
|
|
43
|
+
"Hourly_Rate__c": 55.0,
|
|
44
|
+
"Rating__c": 5.0,
|
|
45
|
+
"Certifications__c": "EPA Universal Certification, NATE Certified",
|
|
46
|
+
"Location__c": "Uptown"
|
|
50
47
|
},
|
|
51
48
|
{
|
|
52
49
|
"attributes": {
|
|
@@ -55,14 +52,13 @@
|
|
|
55
52
|
},
|
|
56
53
|
"Name": "Diana Chen",
|
|
57
54
|
"Phone__c": "(555) 456-7890",
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"Rating__c":
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"Profile_Picture_URL__c": "https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=150&h=150&fit=crop&crop=face"
|
|
55
|
+
"Type__c": "General Carpentry",
|
|
56
|
+
"IsActive__c": true,
|
|
57
|
+
"Employment_Type__c": "Contractor",
|
|
58
|
+
"Hourly_Rate__c": 38.0,
|
|
59
|
+
"Rating__c": 4.6,
|
|
60
|
+
"Certifications__c": "Carpentry Certification",
|
|
61
|
+
"Location__c": "Westside"
|
|
66
62
|
},
|
|
67
63
|
{
|
|
68
64
|
"attributes": {
|
|
@@ -71,14 +67,13 @@
|
|
|
71
67
|
},
|
|
72
68
|
"Name": "Tony Rodriguez",
|
|
73
69
|
"Phone__c": "(555) 567-8901",
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"Rating__c": 4,
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"Profile_Picture_URL__c": "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=150&h=150&fit=crop&crop=face"
|
|
70
|
+
"Type__c": "Appliance Repair",
|
|
71
|
+
"IsActive__c": true,
|
|
72
|
+
"Employment_Type__c": "Internal Employee",
|
|
73
|
+
"Hourly_Rate__c": 42.0,
|
|
74
|
+
"Rating__c": 4.7,
|
|
75
|
+
"Certifications__c": "Appliance Service Technician Certification",
|
|
76
|
+
"Location__c": "Eastside"
|
|
82
77
|
},
|
|
83
78
|
{
|
|
84
79
|
"attributes": {
|
|
@@ -87,14 +82,13 @@
|
|
|
87
82
|
},
|
|
88
83
|
"Name": "Sarah Mitchell",
|
|
89
84
|
"Phone__c": "(555) 678-9012",
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"Rating__c":
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"Profile_Picture_URL__c": "https://images.unsplash.com/photo-1494790108755-2616c0763c55?w=150&h=150&fit=crop&crop=face"
|
|
85
|
+
"Type__c": "General Carpentry",
|
|
86
|
+
"IsActive__c": true,
|
|
87
|
+
"Employment_Type__c": "Internal Employee",
|
|
88
|
+
"Hourly_Rate__c": 40.0,
|
|
89
|
+
"Rating__c": 4.8,
|
|
90
|
+
"Certifications__c": "Master Carpenter, OSHA 30",
|
|
91
|
+
"Location__c": "Downtown"
|
|
98
92
|
},
|
|
99
93
|
{
|
|
100
94
|
"attributes": {
|
|
@@ -103,14 +97,13 @@
|
|
|
103
97
|
},
|
|
104
98
|
"Name": "Carlos Gutierrez",
|
|
105
99
|
"Phone__c": "(555) 789-0123",
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
"Rating__c":
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"Profile_Picture_URL__c": "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=150&h=150&fit=crop&crop=face"
|
|
100
|
+
"Type__c": "General Carpentry",
|
|
101
|
+
"IsActive__c": true,
|
|
102
|
+
"Employment_Type__c": "Third-Party Vendor",
|
|
103
|
+
"Hourly_Rate__c": 35.0,
|
|
104
|
+
"Rating__c": 4.5,
|
|
105
|
+
"Certifications__c": "Basic Carpentry",
|
|
106
|
+
"Location__c": "Midtown"
|
|
114
107
|
},
|
|
115
108
|
{
|
|
116
109
|
"attributes": {
|
|
@@ -119,14 +112,13 @@
|
|
|
119
112
|
},
|
|
120
113
|
"Name": "Jessica Wong",
|
|
121
114
|
"Phone__c": "(555) 890-1234",
|
|
122
|
-
"
|
|
123
|
-
"
|
|
124
|
-
"Years_Experience__c": 5,
|
|
125
|
-
"Active__c": true,
|
|
126
|
-
"Rating__c": 5,
|
|
127
|
-
"Hourly_Rate__c": 70.0,
|
|
115
|
+
"Type__c": "Landscaping / Grounds",
|
|
116
|
+
"IsActive__c": true,
|
|
128
117
|
"Employment_Type__c": "Contractor",
|
|
129
|
-
"
|
|
118
|
+
"Hourly_Rate__c": 28.0,
|
|
119
|
+
"Rating__c": 4.4,
|
|
120
|
+
"Certifications__c": "Landscape Maintenance Certification",
|
|
121
|
+
"Location__c": "Uptown"
|
|
130
122
|
},
|
|
131
123
|
{
|
|
132
124
|
"attributes": {
|
|
@@ -135,14 +127,13 @@
|
|
|
135
127
|
},
|
|
136
128
|
"Name": "Mike Johnson",
|
|
137
129
|
"Phone__c": "(555) 901-2345",
|
|
138
|
-
"
|
|
139
|
-
"
|
|
140
|
-
"
|
|
141
|
-
"
|
|
142
|
-
"Rating__c":
|
|
143
|
-
"
|
|
144
|
-
"
|
|
145
|
-
"Profile_Picture_URL__c": "https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?w=150&h=150&fit=crop&crop=face"
|
|
130
|
+
"Type__c": "General Carpentry",
|
|
131
|
+
"IsActive__c": true,
|
|
132
|
+
"Employment_Type__c": "Internal Employee",
|
|
133
|
+
"Hourly_Rate__c": 43.0,
|
|
134
|
+
"Rating__c": 4.9,
|
|
135
|
+
"Certifications__c": "Carpentry & Flooring Specialist",
|
|
136
|
+
"Location__c": "Westside"
|
|
146
137
|
},
|
|
147
138
|
{
|
|
148
139
|
"attributes": {
|
|
@@ -151,14 +142,13 @@
|
|
|
151
142
|
},
|
|
152
143
|
"Name": "Lisa Thompson",
|
|
153
144
|
"Phone__c": "(555) 012-3456",
|
|
154
|
-
"
|
|
155
|
-
"
|
|
156
|
-
"
|
|
157
|
-
"
|
|
158
|
-
"Rating__c": 4,
|
|
159
|
-
"
|
|
160
|
-
"
|
|
161
|
-
"Profile_Picture_URL__c": "https://images.unsplash.com/photo-1494790108755-2616c0763c55?w=150&h=150&fit=crop&crop=face"
|
|
145
|
+
"Type__c": "Janitorial / Cleaning",
|
|
146
|
+
"IsActive__c": true,
|
|
147
|
+
"Employment_Type__c": "Contractor",
|
|
148
|
+
"Hourly_Rate__c": 22.0,
|
|
149
|
+
"Rating__c": 4.7,
|
|
150
|
+
"Certifications__c": "Professional Cleaning Certification",
|
|
151
|
+
"Location__c": "Eastside"
|
|
162
152
|
},
|
|
163
153
|
{
|
|
164
154
|
"attributes": {
|
|
@@ -167,14 +157,13 @@
|
|
|
167
157
|
},
|
|
168
158
|
"Name": "David Martinez",
|
|
169
159
|
"Phone__c": "(555) 123-4568",
|
|
170
|
-
"
|
|
171
|
-
"
|
|
172
|
-
"
|
|
173
|
-
"
|
|
174
|
-
"Rating__c":
|
|
175
|
-
"
|
|
176
|
-
"
|
|
177
|
-
"Profile_Picture_URL__c": "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=150&h=150&fit=crop&crop=face"
|
|
160
|
+
"Type__c": "General Carpentry",
|
|
161
|
+
"IsActive__c": true,
|
|
162
|
+
"Employment_Type__c": "Internal Employee",
|
|
163
|
+
"Hourly_Rate__c": 48.0,
|
|
164
|
+
"Rating__c": 4.8,
|
|
165
|
+
"Certifications__c": "Roofing & General Carpentry",
|
|
166
|
+
"Location__c": "Downtown"
|
|
178
167
|
},
|
|
179
168
|
{
|
|
180
169
|
"attributes": {
|
|
@@ -183,14 +172,13 @@
|
|
|
183
172
|
},
|
|
184
173
|
"Name": "Angela Davis",
|
|
185
174
|
"Phone__c": "(555) 234-5679",
|
|
186
|
-
"
|
|
187
|
-
"
|
|
188
|
-
"
|
|
189
|
-
"
|
|
190
|
-
"Rating__c":
|
|
191
|
-
"
|
|
192
|
-
"
|
|
193
|
-
"Profile_Picture_URL__c": "https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=150&h=150&fit=crop&crop=face"
|
|
175
|
+
"Type__c": "Electrical",
|
|
176
|
+
"IsActive__c": true,
|
|
177
|
+
"Employment_Type__c": "Contractor",
|
|
178
|
+
"Hourly_Rate__c": 47.0,
|
|
179
|
+
"Rating__c": 4.6,
|
|
180
|
+
"Certifications__c": "Licensed Electrician, Security Systems",
|
|
181
|
+
"Location__c": "Midtown"
|
|
194
182
|
},
|
|
195
183
|
{
|
|
196
184
|
"attributes": {
|
|
@@ -199,14 +187,13 @@
|
|
|
199
187
|
},
|
|
200
188
|
"Name": "James Wilson",
|
|
201
189
|
"Phone__c": "(555) 345-6780",
|
|
202
|
-
"
|
|
203
|
-
"
|
|
204
|
-
"
|
|
205
|
-
"
|
|
206
|
-
"Rating__c":
|
|
207
|
-
"
|
|
208
|
-
"
|
|
209
|
-
"Profile_Picture_URL__c": "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=150&h=150&fit=crop&crop=face"
|
|
190
|
+
"Type__c": "General Carpentry",
|
|
191
|
+
"IsActive__c": true,
|
|
192
|
+
"Employment_Type__c": "Third-Party Vendor",
|
|
193
|
+
"Hourly_Rate__c": 36.0,
|
|
194
|
+
"Rating__c": 4.5,
|
|
195
|
+
"Certifications__c": "Locksmith Certification",
|
|
196
|
+
"Location__c": "Uptown"
|
|
210
197
|
},
|
|
211
198
|
{
|
|
212
199
|
"attributes": {
|
|
@@ -215,14 +202,13 @@
|
|
|
215
202
|
},
|
|
216
203
|
"Name": "Maria Garcia",
|
|
217
204
|
"Phone__c": "(555) 456-7891",
|
|
218
|
-
"
|
|
219
|
-
"
|
|
220
|
-
"
|
|
221
|
-
"
|
|
222
|
-
"Rating__c": 4,
|
|
223
|
-
"
|
|
224
|
-
"
|
|
225
|
-
"Profile_Picture_URL__c": "https://images.unsplash.com/photo-1494790108755-2616c0763c55?w=150&h=150&fit=crop&crop=face"
|
|
205
|
+
"Type__c": "General Carpentry",
|
|
206
|
+
"IsActive__c": true,
|
|
207
|
+
"Employment_Type__c": "Internal Employee",
|
|
208
|
+
"Hourly_Rate__c": 39.0,
|
|
209
|
+
"Rating__c": 4.7,
|
|
210
|
+
"Certifications__c": "Tile & Carpentry Specialist",
|
|
211
|
+
"Location__c": "Westside"
|
|
226
212
|
},
|
|
227
213
|
{
|
|
228
214
|
"attributes": {
|
|
@@ -231,14 +217,13 @@
|
|
|
231
217
|
},
|
|
232
218
|
"Name": "Kevin Brown",
|
|
233
219
|
"Phone__c": "(555) 567-8902",
|
|
234
|
-
"
|
|
235
|
-
"
|
|
236
|
-
"
|
|
237
|
-
"
|
|
238
|
-
"Rating__c":
|
|
239
|
-
"
|
|
240
|
-
"
|
|
241
|
-
"Profile_Picture_URL__c": "https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?w=150&h=150&fit=crop&crop=face"
|
|
220
|
+
"Type__c": "General Carpentry",
|
|
221
|
+
"IsActive__c": true,
|
|
222
|
+
"Employment_Type__c": "Internal Employee",
|
|
223
|
+
"Hourly_Rate__c": 41.0,
|
|
224
|
+
"Rating__c": 4.8,
|
|
225
|
+
"Certifications__c": "Window & Door Installation",
|
|
226
|
+
"Location__c": "Eastside"
|
|
242
227
|
},
|
|
243
228
|
{
|
|
244
229
|
"attributes": {
|
|
@@ -247,14 +232,13 @@
|
|
|
247
232
|
},
|
|
248
233
|
"Name": "Patricia Lee",
|
|
249
234
|
"Phone__c": "(555) 678-9013",
|
|
250
|
-
"
|
|
251
|
-
"
|
|
252
|
-
"
|
|
253
|
-
"
|
|
254
|
-
"Rating__c":
|
|
255
|
-
"
|
|
256
|
-
"
|
|
257
|
-
"Profile_Picture_URL__c": "https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=150&h=150&fit=crop&crop=face"
|
|
235
|
+
"Type__c": "Pest Control",
|
|
236
|
+
"IsActive__c": true,
|
|
237
|
+
"Employment_Type__c": "Third-Party Vendor",
|
|
238
|
+
"Hourly_Rate__c": 32.0,
|
|
239
|
+
"Rating__c": 4.6,
|
|
240
|
+
"Certifications__c": "Licensed Pest Control Operator",
|
|
241
|
+
"Location__c": "Downtown"
|
|
258
242
|
},
|
|
259
243
|
{
|
|
260
244
|
"attributes": {
|
|
@@ -263,14 +247,13 @@
|
|
|
263
247
|
},
|
|
264
248
|
"Name": "Steven Adams",
|
|
265
249
|
"Phone__c": "(555) 789-0124",
|
|
266
|
-
"
|
|
267
|
-
"
|
|
268
|
-
"
|
|
269
|
-
"
|
|
270
|
-
"Rating__c":
|
|
271
|
-
"
|
|
272
|
-
"
|
|
273
|
-
"Profile_Picture_URL__c": "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=150&h=150&fit=crop&crop=face"
|
|
250
|
+
"Type__c": "General Carpentry",
|
|
251
|
+
"IsActive__c": true,
|
|
252
|
+
"Employment_Type__c": "Internal Employee",
|
|
253
|
+
"Hourly_Rate__c": 52.0,
|
|
254
|
+
"Rating__c": 4.9,
|
|
255
|
+
"Certifications__c": "Elevator Maintenance Certification",
|
|
256
|
+
"Location__c": "Midtown"
|
|
274
257
|
},
|
|
275
258
|
{
|
|
276
259
|
"attributes": {
|
|
@@ -279,14 +262,13 @@
|
|
|
279
262
|
},
|
|
280
263
|
"Name": "Nicole White",
|
|
281
264
|
"Phone__c": "(555) 890-1235",
|
|
282
|
-
"
|
|
283
|
-
"
|
|
284
|
-
"
|
|
285
|
-
"
|
|
286
|
-
"Rating__c":
|
|
287
|
-
"
|
|
288
|
-
"
|
|
289
|
-
"Profile_Picture_URL__c": "https://images.unsplash.com/photo-1494790108755-2616c0763c55?w=150&h=150&fit=crop&crop=face"
|
|
265
|
+
"Type__c": "General Carpentry",
|
|
266
|
+
"IsActive__c": true,
|
|
267
|
+
"Employment_Type__c": "Contractor",
|
|
268
|
+
"Hourly_Rate__c": 34.0,
|
|
269
|
+
"Rating__c": 4.5,
|
|
270
|
+
"Certifications__c": "Pool Maintenance Certification",
|
|
271
|
+
"Location__c": "Uptown"
|
|
290
272
|
},
|
|
291
273
|
{
|
|
292
274
|
"attributes": {
|
|
@@ -295,14 +277,13 @@
|
|
|
295
277
|
},
|
|
296
278
|
"Name": "Christopher Taylor",
|
|
297
279
|
"Phone__c": "(555) 901-2346",
|
|
298
|
-
"
|
|
299
|
-
"
|
|
300
|
-
"Years_Experience__c": 8,
|
|
301
|
-
"Active__c": true,
|
|
302
|
-
"Rating__c": 4,
|
|
303
|
-
"Hourly_Rate__c": 50.0,
|
|
280
|
+
"Type__c": "General Carpentry",
|
|
281
|
+
"IsActive__c": true,
|
|
304
282
|
"Employment_Type__c": "Internal Employee",
|
|
305
|
-
"
|
|
283
|
+
"Hourly_Rate__c": 40.0,
|
|
284
|
+
"Rating__c": 4.7,
|
|
285
|
+
"Certifications__c": "Drywall & Finishing Specialist",
|
|
286
|
+
"Location__c": "Westside"
|
|
306
287
|
},
|
|
307
288
|
{
|
|
308
289
|
"attributes": {
|
|
@@ -311,14 +292,13 @@
|
|
|
311
292
|
},
|
|
312
293
|
"Name": "Amanda Moore",
|
|
313
294
|
"Phone__c": "(555) 012-3457",
|
|
314
|
-
"
|
|
315
|
-
"
|
|
316
|
-
"Years_Experience__c": 4,
|
|
317
|
-
"Active__c": true,
|
|
318
|
-
"Rating__c": 5,
|
|
319
|
-
"Hourly_Rate__c": 35.0,
|
|
295
|
+
"Type__c": "Landscaping / Grounds",
|
|
296
|
+
"IsActive__c": true,
|
|
320
297
|
"Employment_Type__c": "Contractor",
|
|
321
|
-
"
|
|
298
|
+
"Hourly_Rate__c": 26.0,
|
|
299
|
+
"Rating__c": 4.4,
|
|
300
|
+
"Certifications__c": "Irrigation Systems Certification",
|
|
301
|
+
"Location__c": "Eastside"
|
|
322
302
|
}
|
|
323
303
|
]
|
|
324
304
|
}
|
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
{
|
|
2
|
+
"records": [
|
|
3
|
+
{
|
|
4
|
+
"attributes": {
|
|
5
|
+
"type": "Notification__c",
|
|
6
|
+
"referenceId": "NotificationRef1"
|
|
7
|
+
},
|
|
8
|
+
"User__c": null,
|
|
9
|
+
"Title__c": "Maintenance Request Completed",
|
|
10
|
+
"Message__c": "Your maintenance request for kitchen faucet leak has been completed. The plumber replaced the faucet cartridge and tested for leaks.",
|
|
11
|
+
"Type__c": "Maintenance_Request",
|
|
12
|
+
"Priority__c": "Low",
|
|
13
|
+
"Is_Read__c": true,
|
|
14
|
+
"Related_Record_Id__c": null,
|
|
15
|
+
"Related_Object_Type__c": "Maintenance_Request__c"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"attributes": {
|
|
19
|
+
"type": "Notification__c",
|
|
20
|
+
"referenceId": "NotificationRef2"
|
|
21
|
+
},
|
|
22
|
+
"User__c": null,
|
|
23
|
+
"Title__c": "Application Status Update",
|
|
24
|
+
"Message__c": "Your rental application for 555 Oak Street has been moved to background check status. We will notify you once the process is complete.",
|
|
25
|
+
"Type__c": "Application",
|
|
26
|
+
"Priority__c": "Normal",
|
|
27
|
+
"Is_Read__c": false,
|
|
28
|
+
"Related_Record_Id__c": null,
|
|
29
|
+
"Related_Object_Type__c": "Application__c"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"attributes": {
|
|
33
|
+
"type": "Notification__c",
|
|
34
|
+
"referenceId": "NotificationRef3"
|
|
35
|
+
},
|
|
36
|
+
"User__c": null,
|
|
37
|
+
"Title__c": "Application Approved",
|
|
38
|
+
"Message__c": "Congratulations! Your rental application for 555 Oak Street has been approved. Please review and sign your lease agreement within 48 hours.",
|
|
39
|
+
"Type__c": "Application",
|
|
40
|
+
"Priority__c": "High",
|
|
41
|
+
"Is_Read__c": true,
|
|
42
|
+
"Related_Record_Id__c": null,
|
|
43
|
+
"Related_Object_Type__c": "Application__c"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"attributes": {
|
|
47
|
+
"type": "Notification__c",
|
|
48
|
+
"referenceId": "NotificationRef4"
|
|
49
|
+
},
|
|
50
|
+
"User__c": null,
|
|
51
|
+
"Title__c": "Maintenance Request Update",
|
|
52
|
+
"Message__c": "Your maintenance request for HVAC not cooling has been assigned to technician Sarah Mitchell. Expected completion: within 24 hours.",
|
|
53
|
+
"Type__c": "Maintenance_Request",
|
|
54
|
+
"Priority__c": "High",
|
|
55
|
+
"Is_Read__c": false,
|
|
56
|
+
"Related_Record_Id__c": null,
|
|
57
|
+
"Related_Object_Type__c": "Maintenance_Request__c"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"attributes": {
|
|
61
|
+
"type": "Notification__c",
|
|
62
|
+
"referenceId": "NotificationRef5"
|
|
63
|
+
},
|
|
64
|
+
"User__c": null,
|
|
65
|
+
"Title__c": "System Maintenance Scheduled",
|
|
66
|
+
"Message__c": "Our online portal will be undergoing scheduled maintenance on Sunday, December 1st from 2:00 AM to 6:00 AM EST. Services will be temporarily unavailable.",
|
|
67
|
+
"Type__c": "System",
|
|
68
|
+
"Priority__c": "Low",
|
|
69
|
+
"Is_Read__c": false,
|
|
70
|
+
"Related_Record_Id__c": null,
|
|
71
|
+
"Related_Object_Type__c": null
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"attributes": {
|
|
75
|
+
"type": "Notification__c",
|
|
76
|
+
"referenceId": "NotificationRef6"
|
|
77
|
+
},
|
|
78
|
+
"User__c": null,
|
|
79
|
+
"Title__c": "Urgent: Water Leak Reported",
|
|
80
|
+
"Message__c": "A water leak has been reported in your building. Maintenance staff is on-site addressing the issue. Please avoid using water in Unit 4B until further notice.",
|
|
81
|
+
"Type__c": "Maintenance_Request",
|
|
82
|
+
"Priority__c": "Urgent",
|
|
83
|
+
"Is_Read__c": true,
|
|
84
|
+
"Related_Record_Id__c": null,
|
|
85
|
+
"Related_Object_Type__c": "Maintenance_Request__c"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"attributes": {
|
|
89
|
+
"type": "Notification__c",
|
|
90
|
+
"referenceId": "NotificationRef7"
|
|
91
|
+
},
|
|
92
|
+
"User__c": null,
|
|
93
|
+
"Title__c": "Application Under Review",
|
|
94
|
+
"Message__c": "Your rental application for 321 Pine Avenue is currently under review. We are conducting background checks and will notify you within 5 business days.",
|
|
95
|
+
"Type__c": "Application",
|
|
96
|
+
"Priority__c": "Normal",
|
|
97
|
+
"Is_Read__c": false,
|
|
98
|
+
"Related_Record_Id__c": null,
|
|
99
|
+
"Related_Object_Type__c": "Application__c"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"attributes": {
|
|
103
|
+
"type": "Notification__c",
|
|
104
|
+
"referenceId": "NotificationRef8"
|
|
105
|
+
},
|
|
106
|
+
"User__c": null,
|
|
107
|
+
"Title__c": "Worker Assigned to Your Request",
|
|
108
|
+
"Message__c": "Your maintenance request for HVAC not cooling has been assigned to technician Sarah Mitchell. Expected completion: November 30, 2024.",
|
|
109
|
+
"Type__c": "Worker_Assignment",
|
|
110
|
+
"Priority__c": "Normal",
|
|
111
|
+
"Is_Read__c": true,
|
|
112
|
+
"Related_Record_Id__c": null,
|
|
113
|
+
"Related_Object_Type__c": "Maintenance_Request__c"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"attributes": {
|
|
117
|
+
"type": "Notification__c",
|
|
118
|
+
"referenceId": "NotificationRef9"
|
|
119
|
+
},
|
|
120
|
+
"User__c": null,
|
|
121
|
+
"Title__c": "Application Documents Required",
|
|
122
|
+
"Message__c": "Your rental application is incomplete. Please upload proof of income and two recent pay stubs to proceed with your application.",
|
|
123
|
+
"Type__c": "Application",
|
|
124
|
+
"Priority__c": "High",
|
|
125
|
+
"Is_Read__c": false,
|
|
126
|
+
"Related_Record_Id__c": null,
|
|
127
|
+
"Related_Object_Type__c": "Application__c"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"attributes": {
|
|
131
|
+
"type": "Notification__c",
|
|
132
|
+
"referenceId": "NotificationRef10"
|
|
133
|
+
},
|
|
134
|
+
"User__c": null,
|
|
135
|
+
"Title__c": "Maintenance Request Received",
|
|
136
|
+
"Message__c": "We have received your maintenance request for dishwasher not draining. Our team will review and assign a technician within 24 hours.",
|
|
137
|
+
"Type__c": "Maintenance_Request",
|
|
138
|
+
"Priority__c": "Low",
|
|
139
|
+
"Is_Read__c": true,
|
|
140
|
+
"Related_Record_Id__c": null,
|
|
141
|
+
"Related_Object_Type__c": "Maintenance_Request__c"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"attributes": {
|
|
145
|
+
"type": "Notification__c",
|
|
146
|
+
"referenceId": "NotificationRef11"
|
|
147
|
+
},
|
|
148
|
+
"User__c": null,
|
|
149
|
+
"Title__c": "Property Inspection Notice",
|
|
150
|
+
"Message__c": "This is a notice that a routine property inspection will be conducted on December 5th between 10:00 AM and 2:00 PM. Please ensure access to the property.",
|
|
151
|
+
"Type__c": "System",
|
|
152
|
+
"Priority__c": "Normal",
|
|
153
|
+
"Is_Read__c": false,
|
|
154
|
+
"Related_Record_Id__c": null,
|
|
155
|
+
"Related_Object_Type__c": null
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"attributes": {
|
|
159
|
+
"type": "Notification__c",
|
|
160
|
+
"referenceId": "NotificationRef12"
|
|
161
|
+
},
|
|
162
|
+
"User__c": null,
|
|
163
|
+
"Title__c": "Application Decision",
|
|
164
|
+
"Message__c": "We regret to inform you that your application for 123 Elm Street has not been approved at this time. You may reapply after 90 days.",
|
|
165
|
+
"Type__c": "Application",
|
|
166
|
+
"Priority__c": "Normal",
|
|
167
|
+
"Is_Read__c": true,
|
|
168
|
+
"Related_Record_Id__c": null,
|
|
169
|
+
"Related_Object_Type__c": "Application__c"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"attributes": {
|
|
173
|
+
"type": "Notification__c",
|
|
174
|
+
"referenceId": "NotificationRef13"
|
|
175
|
+
},
|
|
176
|
+
"User__c": null,
|
|
177
|
+
"Title__c": "Emergency Maintenance Alert",
|
|
178
|
+
"Message__c": "Emergency: Gas leak reported in building. Please evacuate immediately. Do not use any electrical switches or open flames. Call 911 and property management.",
|
|
179
|
+
"Type__c": "Maintenance_Request",
|
|
180
|
+
"Priority__c": "Urgent",
|
|
181
|
+
"Is_Read__c": true,
|
|
182
|
+
"Related_Record_Id__c": null,
|
|
183
|
+
"Related_Object_Type__c": "Maintenance_Request__c"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"attributes": {
|
|
187
|
+
"type": "Notification__c",
|
|
188
|
+
"referenceId": "NotificationRef14"
|
|
189
|
+
},
|
|
190
|
+
"User__c": null,
|
|
191
|
+
"Title__c": "Portal Message Received",
|
|
192
|
+
"Message__c": "Your property manager has sent you a message regarding your recent maintenance request. Please log in to the portal to view the full message.",
|
|
193
|
+
"Type__c": "System",
|
|
194
|
+
"Priority__c": "Low",
|
|
195
|
+
"Is_Read__c": false,
|
|
196
|
+
"Related_Record_Id__c": null,
|
|
197
|
+
"Related_Object_Type__c": null
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"attributes": {
|
|
201
|
+
"type": "Notification__c",
|
|
202
|
+
"referenceId": "NotificationRef15"
|
|
203
|
+
},
|
|
204
|
+
"User__c": null,
|
|
205
|
+
"Title__c": "Maintenance Schedule Confirmed",
|
|
206
|
+
"Message__c": "Your maintenance appointment has been scheduled for tomorrow at 10:00 AM. Technician will arrive with all necessary tools and parts.",
|
|
207
|
+
"Type__c": "Worker_Assignment",
|
|
208
|
+
"Priority__c": "High",
|
|
209
|
+
"Is_Read__c": false,
|
|
210
|
+
"Related_Record_Id__c": null,
|
|
211
|
+
"Related_Object_Type__c": "Maintenance_Request__c"
|
|
212
|
+
}
|
|
213
|
+
]
|
|
214
|
+
}
|