@salesforce/webapp-template-app-react-sample-b2e-experimental 1.64.0 → 1.66.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 +10 -10
- package/dist/force-app/main/default/data/Contact.json +44 -0
- package/dist/force-app/main/default/data/Maintenance_Request__c.json +30 -30
- package/dist/force-app/main/default/data/Property__c.json +25 -25
- package/dist/force-app/main/default/data/data-plan.json +13 -1
- 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/Agent__c/fields/Emergency_Alt__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Agent__c/fields/Language__c.field-meta.xml +42 -0
- package/dist/force-app/main/default/objects/Agent__c/fields/License_Expiry__c.field-meta.xml +11 -0
- 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/Maintenance_Request__c/fields/User__c.field-meta.xml +1 -1
- package/dist/force-app/main/default/objects/Property__c/fields/Agent__c.field-meta.xml +1 -1
- package/dist/force-app/main/default/permissionsets/Property_Management_Access.permissionset-meta.xml +53 -25
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/package-lock.json +18307 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/package.json +9 -7
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/api/applications.ts +142 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/api/dashboard.ts +1 -2
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/api/maintenance.ts +63 -6
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/api/properties.ts +1 -2
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/appLayout.tsx +4 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/components/AgentforceConversationClient.tsx +127 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/components/ApplicationDetailsModal.tsx +150 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/components/ApplicationsTable.tsx +105 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/components/MaintenanceDetailsModal.tsx +191 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/components/PropertyDetailsModal.tsx +274 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/components/StatusBadge.tsx +17 -17
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/components/TopBar.tsx +37 -7
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/components/VerticalNav.tsx +1 -5
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/index.ts +6 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/lib/types.ts +6 -2
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/pages/Applications.tsx +129 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/pages/Home.tsx +28 -13
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/pages/Maintenance.tsx +95 -62
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/pages/Properties.tsx +22 -2
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/pages/TestAccPage.tsx +19 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/routes.tsx +12 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/types/conversation.ts +21 -0
- package/dist/package.json +1 -1
- package/package.json +2 -4
- package/dist/force-app/main/default/applications/Property_Management.app-meta.xml +0 -26
- package/dist/force-app/main/default/tabs/Application__c.tab-meta.xml +0 -6
- 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/Notification__c.tab-meta.xml +0 -6
- 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
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/api/utils.ts +0 -4
package/dist/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.66.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.65.0...v1.66.0) (2026-03-03)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [1.65.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.64.0...v1.65.0) (2026-03-03)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [1.64.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.63.0...v1.64.0) (2026-03-03)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"records": [
|
|
3
|
+
{
|
|
4
|
+
"attributes": {
|
|
5
|
+
"type": "Agent__c",
|
|
6
|
+
"referenceId": "AgentRef1"
|
|
7
|
+
},
|
|
8
|
+
"Name": "Michael Anderson",
|
|
9
|
+
"License_Number__c": "CA-RE-2024-001",
|
|
10
|
+
"License_Expiry__c": "2026-06-30",
|
|
11
|
+
"Agent_Type__c": "Residential",
|
|
12
|
+
"Territory__c": "Downtown",
|
|
13
|
+
"Emergency_Alt__c": "(555) 100-2002",
|
|
14
|
+
"Language__c": "English",
|
|
15
|
+
"Availability__c": "On-Duty",
|
|
16
|
+
"Office_Location__c": "Downtown Branch"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"attributes": {
|
|
20
|
+
"type": "Agent__c",
|
|
21
|
+
"referenceId": "AgentRef2"
|
|
22
|
+
},
|
|
23
|
+
"Name": "Patricia Lee",
|
|
24
|
+
"License_Number__c": "CA-RE-2024-002",
|
|
25
|
+
"License_Expiry__c": "2025-12-31",
|
|
26
|
+
"Agent_Type__c": "Commercial",
|
|
27
|
+
"Territory__c": "North District",
|
|
28
|
+
"Emergency_Alt__c": "(555) 200-3002",
|
|
29
|
+
"Language__c": "English",
|
|
30
|
+
"Availability__c": "On-Duty",
|
|
31
|
+
"Office_Location__c": "North Branch"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"attributes": {
|
|
35
|
+
"type": "Agent__c",
|
|
36
|
+
"referenceId": "AgentRef3"
|
|
37
|
+
},
|
|
38
|
+
"Name": "Carlos Martinez",
|
|
39
|
+
"License_Number__c": "CA-RE-2024-003",
|
|
40
|
+
"License_Expiry__c": "2026-03-15",
|
|
41
|
+
"Agent_Type__c": "Residential",
|
|
42
|
+
"Territory__c": "South District",
|
|
43
|
+
"Emergency_Alt__c": "(555) 300-4002",
|
|
44
|
+
"Language__c": "Spanish",
|
|
45
|
+
"Availability__c": "On-Duty",
|
|
46
|
+
"Office_Location__c": "South Branch"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"attributes": {
|
|
50
|
+
"type": "Agent__c",
|
|
51
|
+
"referenceId": "AgentRef4"
|
|
52
|
+
},
|
|
53
|
+
"Name": "Amanda Wong",
|
|
54
|
+
"License_Number__c": "CA-RE-2024-004",
|
|
55
|
+
"License_Expiry__c": "2025-09-30",
|
|
56
|
+
"Agent_Type__c": "Residential",
|
|
57
|
+
"Territory__c": "West District",
|
|
58
|
+
"Emergency_Alt__c": "(555) 400-5002",
|
|
59
|
+
"Language__c": "Mandarin",
|
|
60
|
+
"Availability__c": "On-Call",
|
|
61
|
+
"Office_Location__c": "Main Office"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"attributes": {
|
|
65
|
+
"type": "Agent__c",
|
|
66
|
+
"referenceId": "AgentRef5"
|
|
67
|
+
},
|
|
68
|
+
"Name": "David Robinson",
|
|
69
|
+
"License_Number__c": "CA-RE-2024-005",
|
|
70
|
+
"License_Expiry__c": "2026-11-30",
|
|
71
|
+
"Agent_Type__c": "Short-term",
|
|
72
|
+
"Territory__c": "East District",
|
|
73
|
+
"Emergency_Alt__c": "(555) 500-6002",
|
|
74
|
+
"Language__c": "English",
|
|
75
|
+
"Availability__c": "On-Duty",
|
|
76
|
+
"Office_Location__c": "Main Office"
|
|
77
|
+
}
|
|
78
|
+
]
|
|
79
|
+
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"referenceId": "ApplicationRef1"
|
|
7
7
|
},
|
|
8
8
|
"Property__c": "@PropertyRef5",
|
|
9
|
-
"User__c":
|
|
9
|
+
"User__c": "@ContactRef1",
|
|
10
10
|
"Status__c": "Submitted",
|
|
11
11
|
"Start_Date__c": "2024-12-01",
|
|
12
12
|
"Employment__c": "TechCorp Inc. - Senior Software Engineer - $95,000/year",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"referenceId": "ApplicationRef2"
|
|
19
19
|
},
|
|
20
20
|
"Property__c": "@PropertyRef8",
|
|
21
|
-
"User__c":
|
|
21
|
+
"User__c": "@ContactRef2",
|
|
22
22
|
"Status__c": "Background Check",
|
|
23
23
|
"Start_Date__c": "2024-12-15",
|
|
24
24
|
"Employment__c": "City Hospital - Registered Nurse - $72,000/year",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"referenceId": "ApplicationRef3"
|
|
31
31
|
},
|
|
32
32
|
"Property__c": "@PropertyRef12",
|
|
33
|
-
"User__c":
|
|
33
|
+
"User__c": "@ContactRef3",
|
|
34
34
|
"Status__c": "Approved",
|
|
35
35
|
"Start_Date__c": "2024-11-01",
|
|
36
36
|
"Employment__c": "Global Consulting LLC - Management Consultant - $110,000/year",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"referenceId": "ApplicationRef4"
|
|
43
43
|
},
|
|
44
44
|
"Property__c": "@PropertyRef5",
|
|
45
|
-
"User__c":
|
|
45
|
+
"User__c": "@ContactRef3",
|
|
46
46
|
"Status__c": "Rejected",
|
|
47
47
|
"Start_Date__c": "2024-12-01",
|
|
48
48
|
"Employment__c": "Retail Store - Assistant Manager - $32,000/year",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"referenceId": "ApplicationRef5"
|
|
55
55
|
},
|
|
56
56
|
"Property__c": "@PropertyRef16",
|
|
57
|
-
"User__c":
|
|
57
|
+
"User__c": "@ContactRef3",
|
|
58
58
|
"Status__c": "Draft",
|
|
59
59
|
"Start_Date__c": "2025-01-15",
|
|
60
60
|
"Employment__c": "University - Graduate Student - $18,000/year stipend",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"referenceId": "ApplicationRef6"
|
|
67
67
|
},
|
|
68
68
|
"Property__c": "@PropertyRef20",
|
|
69
|
-
"User__c":
|
|
69
|
+
"User__c": "@ContactRef3",
|
|
70
70
|
"Status__c": "Submitted",
|
|
71
71
|
"Start_Date__c": "2025-01-01",
|
|
72
72
|
"Employment__c": "Local Business - Marketing Coordinator - $48,000/year (Co-signer: Parent, $85,000/year)",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"referenceId": "ApplicationRef7"
|
|
79
79
|
},
|
|
80
80
|
"Property__c": "@PropertyRef8",
|
|
81
|
-
"User__c":
|
|
81
|
+
"User__c": "@ContactRef3",
|
|
82
82
|
"Status__c": "Background Check",
|
|
83
83
|
"Start_Date__c": "2024-12-20",
|
|
84
84
|
"Employment__c": "Finance Corp - Financial Analyst - $78,000/year",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"referenceId": "ApplicationRef8"
|
|
91
91
|
},
|
|
92
92
|
"Property__c": "@PropertyRef3",
|
|
93
|
-
"User__c":
|
|
93
|
+
"User__c": "@ContactRef3",
|
|
94
94
|
"Status__c": "Approved",
|
|
95
95
|
"Start_Date__c": "2024-10-01",
|
|
96
96
|
"Employment__c": "Design Studio - UX Designer - $68,000/year",
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"referenceId": "ApplicationRef9"
|
|
103
103
|
},
|
|
104
104
|
"Property__c": "@PropertyRef12",
|
|
105
|
-
"User__c":
|
|
105
|
+
"User__c": "@ContactRef3",
|
|
106
106
|
"Status__c": "Rejected",
|
|
107
107
|
"Start_Date__c": "2024-10-25",
|
|
108
108
|
"Employment__c": "Various part-time positions - $25,000/year",
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"referenceId": "ApplicationRef10"
|
|
115
115
|
},
|
|
116
116
|
"Property__c": "@PropertyRef5",
|
|
117
|
-
"User__c":
|
|
117
|
+
"User__c": "@ContactRef3",
|
|
118
118
|
"Status__c": "Submitted",
|
|
119
119
|
"Start_Date__c": "2024-12-10",
|
|
120
120
|
"Employment__c": "Teaching - High School Teacher - $55,000/year",
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"records": [
|
|
3
|
+
{
|
|
4
|
+
"attributes": {
|
|
5
|
+
"type": "Contact",
|
|
6
|
+
"referenceId": "ContactRef1"
|
|
7
|
+
},
|
|
8
|
+
"FirstName": "Jennifer",
|
|
9
|
+
"LastName": "Anderson",
|
|
10
|
+
"Email": "jennifer.anderson@example.com",
|
|
11
|
+
"Phone": "(555) 123-4567"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"attributes": {
|
|
15
|
+
"type": "Contact",
|
|
16
|
+
"referenceId": "ContactRef2"
|
|
17
|
+
},
|
|
18
|
+
"FirstName": "David",
|
|
19
|
+
"LastName": "Rodriguez",
|
|
20
|
+
"Email": "david.rodriguez@example.com",
|
|
21
|
+
"Phone": "(555) 234-5678"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"attributes": {
|
|
25
|
+
"type": "Contact",
|
|
26
|
+
"referenceId": "ContactRef3"
|
|
27
|
+
},
|
|
28
|
+
"FirstName": "Maria",
|
|
29
|
+
"LastName": "Garcia",
|
|
30
|
+
"Email": "maria.garcia@example.com",
|
|
31
|
+
"Phone": "(555) 345-6789"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"attributes": {
|
|
35
|
+
"type": "Contact",
|
|
36
|
+
"referenceId": "ContactRef4"
|
|
37
|
+
},
|
|
38
|
+
"FirstName": "James",
|
|
39
|
+
"LastName": "Brown",
|
|
40
|
+
"Email": "james.brown@example.com",
|
|
41
|
+
"Phone": "(555) 456-7890"
|
|
42
|
+
}
|
|
43
|
+
]
|
|
44
|
+
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"referenceId": "MaintenanceRef1"
|
|
7
7
|
},
|
|
8
8
|
"Property__c": "@PropertyRef1",
|
|
9
|
-
"User__c":
|
|
9
|
+
"User__c": "@TenantRef1",
|
|
10
10
|
"Description__c": "Kitchen faucet has been dripping constantly for the past week. Water pressure seems low and cartridge may need replacement.",
|
|
11
11
|
"Type__c": "Plumbing",
|
|
12
12
|
"Priority__c": "Standard",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"referenceId": "MaintenanceRef2"
|
|
24
24
|
},
|
|
25
25
|
"Property__c": "@PropertyRef2",
|
|
26
|
-
"User__c":
|
|
26
|
+
"User__c": "@TenantRef2",
|
|
27
27
|
"Description__c": "Main bedroom electrical outlet stopped working. No power to the entire wall. Possible circuit breaker issue.",
|
|
28
28
|
"Type__c": "Electrical",
|
|
29
29
|
"Priority__c": "High (Same Day)",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"referenceId": "MaintenanceRef3"
|
|
41
41
|
},
|
|
42
42
|
"Property__c": "@PropertyRef3",
|
|
43
|
-
"User__c":
|
|
43
|
+
"User__c": "@TenantRef3",
|
|
44
44
|
"Description__c": "Air conditioning unit is making loud grinding noises when running. May need bearing replacement or refrigerant check.",
|
|
45
45
|
"Type__c": "HVAC",
|
|
46
46
|
"Priority__c": "High (Same Day)",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"referenceId": "MaintenanceRef4"
|
|
58
58
|
},
|
|
59
59
|
"Property__c": "@PropertyRef4",
|
|
60
|
-
"User__c":
|
|
60
|
+
"User__c": "@TenantRef14",
|
|
61
61
|
"Description__c": "Pre-lease general maintenance inspection and cleaning before new tenant move-in. Check all fixtures and systems.",
|
|
62
62
|
"Type__c": "Plumbing",
|
|
63
63
|
"Priority__c": "Standard",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"referenceId": "MaintenanceRef5"
|
|
75
75
|
},
|
|
76
76
|
"Property__c": "@PropertyRef5",
|
|
77
|
-
"User__c":
|
|
77
|
+
"User__c": "@TenantRef1",
|
|
78
78
|
"Description__c": "Kitchen dishwasher is not draining properly. Water pools at the bottom after wash cycles complete.",
|
|
79
79
|
"Type__c": "Appliance",
|
|
80
80
|
"Priority__c": "Standard",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"referenceId": "MaintenanceRef6"
|
|
92
92
|
},
|
|
93
93
|
"Property__c": "@PropertyRef6",
|
|
94
|
-
"User__c":
|
|
94
|
+
"User__c": "@TenantRef1",
|
|
95
95
|
"Description__c": "Master bedroom sliding closet door has come off its track and won't close properly. Track appears damaged.",
|
|
96
96
|
"Type__c": "Appliance",
|
|
97
97
|
"Priority__c": "Standard",
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"referenceId": "MaintenanceRef7"
|
|
109
109
|
},
|
|
110
110
|
"Property__c": "@PropertyRef7",
|
|
111
|
-
"User__c":
|
|
111
|
+
"User__c": "@TenantRef4",
|
|
112
112
|
"Description__c": "Front entrance and window frames need touch-up painting due to weather damage and peeling paint.",
|
|
113
113
|
"Type__c": "Plumbing",
|
|
114
114
|
"Priority__c": "Standard",
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
"referenceId": "MaintenanceRef8"
|
|
126
126
|
},
|
|
127
127
|
"Property__c": "@PropertyRef8",
|
|
128
|
-
"User__c":
|
|
128
|
+
"User__c": "@TenantRef2",
|
|
129
129
|
"Description__c": "Backyard sprinkler system has multiple broken heads and the timer is not working properly.",
|
|
130
130
|
"Type__c": "Plumbing",
|
|
131
131
|
"Priority__c": "Standard",
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
"referenceId": "MaintenanceRef9"
|
|
143
143
|
},
|
|
144
144
|
"Property__c": "@PropertyRef9",
|
|
145
|
-
"User__c":
|
|
145
|
+
"User__c": "@TenantRef9",
|
|
146
146
|
"Description__c": "Living room hardwood floors have several deep scratches that need sanding and refinishing.",
|
|
147
147
|
"Type__c": "Appliance",
|
|
148
148
|
"Priority__c": "Standard",
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
"referenceId": "MaintenanceRef10"
|
|
160
160
|
},
|
|
161
161
|
"Property__c": "@PropertyRef10",
|
|
162
|
-
"User__c":
|
|
162
|
+
"User__c": "@TenantRef15",
|
|
163
163
|
"Description__c": "Post-tenant move-out deep cleaning including carpets, windows, appliances, and all surfaces.",
|
|
164
164
|
"Type__c": "Appliance",
|
|
165
165
|
"Priority__c": "High (Same Day)",
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
"referenceId": "MaintenanceRef11"
|
|
177
177
|
},
|
|
178
178
|
"Property__c": "@PropertyRef11",
|
|
179
|
-
"User__c":
|
|
179
|
+
"User__c": "@TenantRef8",
|
|
180
180
|
"Description__c": "Annual roof inspection revealed loose tiles that need securing and replacement before winter season.",
|
|
181
181
|
"Type__c": "Plumbing",
|
|
182
182
|
"Priority__c": "High (Same Day)",
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
"referenceId": "MaintenanceRef12"
|
|
194
194
|
},
|
|
195
195
|
"Property__c": "@PropertyRef12",
|
|
196
|
-
"User__c":
|
|
196
|
+
"User__c": "@TenantRef3",
|
|
197
197
|
"Description__c": "Office security system needs software update and two exterior cameras need replacement.",
|
|
198
198
|
"Type__c": "Electrical",
|
|
199
199
|
"Priority__c": "Standard",
|
|
@@ -210,7 +210,7 @@
|
|
|
210
210
|
"referenceId": "MaintenanceRef13"
|
|
211
211
|
},
|
|
212
212
|
"Property__c": "@PropertyRef13",
|
|
213
|
-
"User__c":
|
|
213
|
+
"User__c": "@TenantRef7",
|
|
214
214
|
"Description__c": "Main entrance lock is sticking and needs replacement for new tenant security and smooth operation.",
|
|
215
215
|
"Type__c": "Appliance",
|
|
216
216
|
"Priority__c": "High (Same Day)",
|
|
@@ -227,7 +227,7 @@
|
|
|
227
227
|
"referenceId": "MaintenanceRef14"
|
|
228
228
|
},
|
|
229
229
|
"Property__c": "@PropertyRef14",
|
|
230
|
-
"User__c":
|
|
230
|
+
"User__c": "@TenantRef5",
|
|
231
231
|
"Description__c": "Master bathroom shower has several cracked tiles that need removal and replacement to prevent water damage.",
|
|
232
232
|
"Type__c": "Plumbing",
|
|
233
233
|
"Priority__c": "Standard",
|
|
@@ -244,7 +244,7 @@
|
|
|
244
244
|
"referenceId": "MaintenanceRef15"
|
|
245
245
|
},
|
|
246
246
|
"Property__c": "@PropertyRef15",
|
|
247
|
-
"User__c":
|
|
247
|
+
"User__c": "@TenantRef5",
|
|
248
248
|
"Description__c": "Two bedroom windows have torn screens that need full replacement for insect protection.",
|
|
249
249
|
"Type__c": "Appliance",
|
|
250
250
|
"Priority__c": "Standard",
|
|
@@ -261,7 +261,7 @@
|
|
|
261
261
|
"referenceId": "MaintenanceRef16"
|
|
262
262
|
},
|
|
263
263
|
"Property__c": "@PropertyRef16",
|
|
264
|
-
"User__c":
|
|
264
|
+
"User__c": "@TenantRef4",
|
|
265
265
|
"Description__c": "Quarterly pest control treatment for common areas and all vacant units throughout the building.",
|
|
266
266
|
"Type__c": "Pest",
|
|
267
267
|
"Priority__c": "Standard",
|
|
@@ -278,7 +278,7 @@
|
|
|
278
278
|
"referenceId": "MaintenanceRef17"
|
|
279
279
|
},
|
|
280
280
|
"Property__c": "@PropertyRef17",
|
|
281
|
-
"User__c":
|
|
281
|
+
"User__c": "@TenantRef6",
|
|
282
282
|
"Description__c": "Monthly elevator maintenance and safety inspection as required by local building code regulations.",
|
|
283
283
|
"Type__c": "Electrical",
|
|
284
284
|
"Priority__c": "High (Same Day)",
|
|
@@ -295,7 +295,7 @@
|
|
|
295
295
|
"referenceId": "MaintenanceRef18"
|
|
296
296
|
},
|
|
297
297
|
"Property__c": "@PropertyRef18",
|
|
298
|
-
"User__c":
|
|
298
|
+
"User__c": "@TenantRef6",
|
|
299
299
|
"Description__c": "Weekly pool maintenance service including chemical balancing, filter cleaning, and water testing.",
|
|
300
300
|
"Type__c": "Plumbing",
|
|
301
301
|
"Priority__c": "Standard",
|
|
@@ -312,7 +312,7 @@
|
|
|
312
312
|
"referenceId": "MaintenanceRef19"
|
|
313
313
|
},
|
|
314
314
|
"Property__c": "@PropertyRef19",
|
|
315
|
-
"User__c":
|
|
315
|
+
"User__c": "@TenantRef10",
|
|
316
316
|
"Description__c": "Living room has a large hole in the drywall that needs patching, sanding, and repainting to match existing color.",
|
|
317
317
|
"Type__c": "Appliance",
|
|
318
318
|
"Priority__c": "Standard",
|
|
@@ -329,7 +329,7 @@
|
|
|
329
329
|
"referenceId": "MaintenanceRef20"
|
|
330
330
|
},
|
|
331
331
|
"Property__c": "@PropertyRef20",
|
|
332
|
-
"User__c":
|
|
332
|
+
"User__c": "@TenantRef2",
|
|
333
333
|
"Description__c": "Prepare garden irrigation system for winter season by draining lines to prevent freeze damage.",
|
|
334
334
|
"Type__c": "Plumbing",
|
|
335
335
|
"Priority__c": "Standard",
|
|
@@ -346,7 +346,7 @@
|
|
|
346
346
|
"referenceId": "MaintenanceRef21"
|
|
347
347
|
},
|
|
348
348
|
"Property__c": "@PropertyRef21",
|
|
349
|
-
"User__c":
|
|
349
|
+
"User__c": "@TenantRef11",
|
|
350
350
|
"Description__c": "Kitchen garbage disposal is jammed and making unusual grinding noises when turned on. Possible foreign object.",
|
|
351
351
|
"Type__c": "Plumbing",
|
|
352
352
|
"Priority__c": "Standard",
|
|
@@ -363,7 +363,7 @@
|
|
|
363
363
|
"referenceId": "MaintenanceRef22"
|
|
364
364
|
},
|
|
365
365
|
"Property__c": "@PropertyRef22",
|
|
366
|
-
"User__c":
|
|
366
|
+
"User__c": "@TenantRef10",
|
|
367
367
|
"Description__c": "Annual electrical panel inspection and circuit breaker testing to ensure electrical safety compliance.",
|
|
368
368
|
"Type__c": "Electrical",
|
|
369
369
|
"Priority__c": "High (Same Day)",
|
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
"referenceId": "MaintenanceRef23"
|
|
381
381
|
},
|
|
382
382
|
"Property__c": "@PropertyRef23",
|
|
383
|
-
"User__c":
|
|
383
|
+
"User__c": "@TenantRef11",
|
|
384
384
|
"Description__c": "Monthly HVAC filter replacement for office building common areas and all air handling units.",
|
|
385
385
|
"Type__c": "HVAC",
|
|
386
386
|
"Priority__c": "Standard",
|
|
@@ -397,7 +397,7 @@
|
|
|
397
397
|
"referenceId": "MaintenanceRef24"
|
|
398
398
|
},
|
|
399
399
|
"Property__c": "@PropertyRef24",
|
|
400
|
-
"User__c":
|
|
400
|
+
"User__c": "@TenantRef9",
|
|
401
401
|
"Description__c": "Annual gutter cleaning and downspout inspection before winter season to prevent water damage.",
|
|
402
402
|
"Type__c": "Plumbing",
|
|
403
403
|
"Priority__c": "Standard",
|
|
@@ -414,7 +414,7 @@
|
|
|
414
414
|
"referenceId": "MaintenanceRef25"
|
|
415
415
|
},
|
|
416
416
|
"Property__c": "@PropertyRef25",
|
|
417
|
-
"User__c":
|
|
417
|
+
"User__c": "@TenantRef15",
|
|
418
418
|
"Description__c": "Install new washer and dryer units in laundry room for incoming tenant. Connect water, drain, and electrical.",
|
|
419
419
|
"Type__c": "Appliance",
|
|
420
420
|
"Priority__c": "High (Same Day)",
|
|
@@ -431,7 +431,7 @@
|
|
|
431
431
|
"referenceId": "MaintenanceRef26"
|
|
432
432
|
},
|
|
433
433
|
"Property__c": "@PropertyRef1",
|
|
434
|
-
"User__c":
|
|
434
|
+
"User__c": "@TenantRef1",
|
|
435
435
|
"Description__c": "Kitchen cabinet door hinge is loose causing door to hang crooked and not close properly.",
|
|
436
436
|
"Type__c": "Appliance",
|
|
437
437
|
"Priority__c": "Standard",
|
|
@@ -448,7 +448,7 @@
|
|
|
448
448
|
"referenceId": "MaintenanceRef27"
|
|
449
449
|
},
|
|
450
450
|
"Property__c": "@PropertyRef2",
|
|
451
|
-
"User__c":
|
|
451
|
+
"User__c": "@TenantRef2",
|
|
452
452
|
"Description__c": "Living room wall has scuff marks and multiple nail holes that need spackling and touch-up painting.",
|
|
453
453
|
"Type__c": "Appliance",
|
|
454
454
|
"Priority__c": "Standard",
|
|
@@ -465,7 +465,7 @@
|
|
|
465
465
|
"referenceId": "MaintenanceRef28"
|
|
466
466
|
},
|
|
467
467
|
"Property__c": "@PropertyRef3",
|
|
468
|
-
"User__c":
|
|
468
|
+
"User__c": "@TenantRef3",
|
|
469
469
|
"Description__c": "Monthly balcony garden maintenance and plant care service including watering and fertilizing.",
|
|
470
470
|
"Type__c": "Plumbing",
|
|
471
471
|
"Priority__c": "Standard",
|
|
@@ -482,7 +482,7 @@
|
|
|
482
482
|
"referenceId": "MaintenanceRef29"
|
|
483
483
|
},
|
|
484
484
|
"Property__c": "@PropertyRef5",
|
|
485
|
-
"User__c":
|
|
485
|
+
"User__c": "@TenantRef1",
|
|
486
486
|
"Description__c": "Bedroom laminate flooring has a warped plank from water damage that needs removal and replacement.",
|
|
487
487
|
"Type__c": "Appliance",
|
|
488
488
|
"Priority__c": "Standard",
|
|
@@ -499,7 +499,7 @@
|
|
|
499
499
|
"referenceId": "MaintenanceRef30"
|
|
500
500
|
},
|
|
501
501
|
"Property__c": "@PropertyRef6",
|
|
502
|
-
"User__c":
|
|
502
|
+
"User__c": "@TenantRef1",
|
|
503
503
|
"Description__c": "Annual carpet deep cleaning using steam cleaning method for all carpeted areas throughout the unit.",
|
|
504
504
|
"Type__c": "Appliance",
|
|
505
505
|
"Priority__c": "Standard",
|