@salesforce/webapp-template-app-react-b2e-experimental 1.35.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/LICENSE.txt +82 -0
- package/dist/.a4drules/build-validation.md +81 -0
- package/dist/.a4drules/code-quality.md +150 -0
- package/dist/.a4drules/graphql/tools/knowledge/lds-explore-graphql-schema.md +227 -0
- package/dist/.a4drules/graphql/tools/knowledge/lds-generate-graphql-mutationquery.md +212 -0
- package/dist/.a4drules/graphql/tools/knowledge/lds-generate-graphql-readquery.md +185 -0
- package/dist/.a4drules/graphql/tools/knowledge/lds-guide-graphql.md +205 -0
- package/dist/.a4drules/graphql/tools/schemas/shared.graphqls +1150 -0
- package/dist/.a4drules/graphql.md +408 -0
- package/dist/.a4drules/images.md +13 -0
- package/dist/.a4drules/react.md +361 -0
- package/dist/.a4drules/react_image_processing.md +45 -0
- package/dist/.a4drules/skills/install-feature/SKILL.md +67 -0
- package/dist/.a4drules/skills/install-feature/scripts/copy-feature-assets.sh +36 -0
- package/dist/.a4drules/typescript.md +224 -0
- package/dist/.forceignore +15 -0
- package/dist/.husky/pre-commit +4 -0
- package/dist/.prettierignore +11 -0
- package/dist/.prettierrc +17 -0
- package/dist/CHANGELOG.md +479 -0
- package/dist/README.md +18 -0
- package/dist/config/project-scratch-def.json +13 -0
- package/dist/force-app/main/default/applications/Property_Management.app-meta.xml +26 -0
- package/dist/force-app/main/default/data/Application__c.json +124 -0
- package/dist/force-app/main/default/data/Maintenance_Request__c.json +514 -0
- package/dist/force-app/main/default/data/Maintenance_Worker__c.json +304 -0
- package/dist/force-app/main/default/data/Notification__c.json +214 -0
- package/dist/force-app/main/default/data/Property__c.json +654 -0
- package/dist/force-app/main/default/data/Tenant__c.json +184 -0
- package/dist/force-app/main/default/data/data-plan.json +38 -0
- package/dist/force-app/main/default/objects/Application__c/Application__c.object-meta.xml +67 -0
- 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 +15 -0
- package/dist/force-app/main/default/objects/Application__c/fields/References__c.field-meta.xml +10 -0
- package/dist/force-app/main/default/objects/Application__c/fields/Start_Date__c.field-meta.xml +9 -0
- package/dist/force-app/main/default/objects/Application__c/fields/Status__c.field-meta.xml +42 -0
- package/dist/force-app/main/default/objects/Application__c/fields/User__c.field-meta.xml +15 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/Maintenance_Request__c.object-meta.xml +67 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Actual_Cost__c.field-meta.xml +13 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Completed__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Description__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Est_Cost__c.field-meta.xml +13 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Priority__c.field-meta.xml +32 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Property__c.field-meta.xml +15 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Scheduled__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Status__c.field-meta.xml +42 -0
- 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 +42 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/User__c.field-meta.xml +15 -0
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/Maintenance_Worker__c.object-meta.xml +66 -0
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Certifications__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Employment_Type__c.field-meta.xml +32 -0
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Hourly_Rate__c.field-meta.xml +13 -0
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/IsActive__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Location__c.field-meta.xml +13 -0
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Phone__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Rating__c.field-meta.xml +14 -0
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Type__c.field-meta.xml +57 -0
- package/dist/force-app/main/default/objects/Notification__c/Notification__c.object-meta.xml +67 -0
- package/dist/force-app/main/default/objects/Notification__c/fields/Is_Read__c.field-meta.xml +10 -0
- 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/Notification__c/fields/Title__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/Notification__c/fields/Type__c.field-meta.xml +36 -0
- package/dist/force-app/main/default/objects/Notification__c/fields/User__c.field-meta.xml +14 -0
- package/dist/force-app/main/default/objects/Property__c/Property__c.object-meta.xml +66 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Address__c.field-meta.xml +13 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Agent__c.field-meta.xml +15 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Available_Date__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Bathrooms__c.field-meta.xml +14 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Bedrooms__c.field-meta.xml +14 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Deposit__c.field-meta.xml +13 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Description__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Features__c.field-meta.xml +38 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Hero_Image__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Lease_Term__c.field-meta.xml +14 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Monthly_Rent__c.field-meta.xml +13 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Parking__c.field-meta.xml +14 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Pet_Friendly__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Sq_Ft__c.field-meta.xml +14 -0
- 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 +11 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Type__c.field-meta.xml +37 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Utilities__c.field-meta.xml +38 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Year_Built__c.field-meta.xml +14 -0
- package/dist/force-app/main/default/objects/Tenant__c/Tenant__c.object-meta.xml +67 -0
- package/dist/force-app/main/default/objects/Tenant__c/fields/End_Date__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Tenant__c/fields/Property__c.field-meta.xml +15 -0
- package/dist/force-app/main/default/objects/Tenant__c/fields/Start_Date__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Tenant__c/fields/Status__c.field-meta.xml +37 -0
- package/dist/force-app/main/default/objects/Tenant__c/fields/User_Status__c.field-meta.xml +42 -0
- package/dist/force-app/main/default/objects/Tenant__c/fields/User__c.field-meta.xml +15 -0
- package/dist/force-app/main/default/permissionsets/Property_Management_Access.permissionset-meta.xml +453 -0
- package/dist/force-app/main/default/tabs/Application__c.tab-meta.xml +6 -0
- package/dist/force-app/main/default/tabs/Maintenance_Request__c.tab-meta.xml +7 -0
- package/dist/force-app/main/default/tabs/Maintenance_Worker__c.tab-meta.xml +6 -0
- package/dist/force-app/main/default/tabs/Notification__c.tab-meta.xml +6 -0
- package/dist/force-app/main/default/tabs/Property__c.tab-meta.xml +7 -0
- package/dist/force-app/main/default/tabs/Tenant__c.tab-meta.xml +7 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/.prettierignore +9 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/.prettierrc +11 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/appreactb2e.webapplication-meta.xml +7 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/build/vite.config.d.ts +2 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/build/vite.config.js +76 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/e2e/app.spec.ts +24 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/eslint.config.js +113 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/index.html +13 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/package-lock.json +7157 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/package.json +45 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/playwright.config.ts +24 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/scripts/rewrite-e2e-assets.mjs +23 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/src/api/graphql-operations-types.ts +127 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/src/api/utils/query/highRevenueAccountsQuery.graphql +29 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/src/app.tsx +22 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/src/appLayout.tsx +29 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/src/assets/icons/book.svg +3 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/src/assets/icons/copy.svg +4 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/src/assets/icons/rocket.svg +3 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/src/assets/icons/star.svg +3 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/src/assets/images/codey-1.png +0 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/src/assets/images/codey-2.png +0 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/src/assets/images/codey-3.png +0 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/src/assets/images/vibe-codey.svg +194 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/src/pages/About.tsx +12 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/src/pages/Home.tsx +12 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/src/pages/NotFound.tsx +18 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/src/routes.tsx +28 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/src/styles/global.css +13 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/tsconfig.json +36 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/tsconfig.node.json +13 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/vite-env.d.ts +1 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/vite.config.ts +85 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/vitest-env.d.ts +2 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/vitest.config.ts +11 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/vitest.setup.ts +1 -0
- package/dist/force-app/main/default/webapplications/appreactb2e/webapplication.json +7 -0
- package/dist/jest.config.js +6 -0
- package/dist/package.json +37 -0
- package/dist/scripts/apex/hello.apex +10 -0
- package/dist/scripts/soql/account.soql +6 -0
- package/dist/sfdx-project.json +12 -0
- package/package.json +34 -0
|
@@ -0,0 +1,304 @@
|
|
|
1
|
+
{
|
|
2
|
+
"records": [
|
|
3
|
+
{
|
|
4
|
+
"attributes": {
|
|
5
|
+
"type": "Maintenance_Worker__c",
|
|
6
|
+
"referenceId": "WorkerRef1"
|
|
7
|
+
},
|
|
8
|
+
"Name": "Marcus Jones",
|
|
9
|
+
"Phone__c": "(555) 123-4567",
|
|
10
|
+
"Type__c": "Plumbing",
|
|
11
|
+
"IsActive__c": true,
|
|
12
|
+
"Employment_Type__c": "Internal Employee",
|
|
13
|
+
"Hourly_Rate__c": 45.0,
|
|
14
|
+
"Rating__c": 4.8,
|
|
15
|
+
"Certifications__c": "Licensed Plumber, Backflow Certification",
|
|
16
|
+
"Location__c": "Downtown"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"attributes": {
|
|
20
|
+
"type": "Maintenance_Worker__c",
|
|
21
|
+
"referenceId": "WorkerRef2"
|
|
22
|
+
},
|
|
23
|
+
"Name": "Alberto Flores",
|
|
24
|
+
"Phone__c": "(555) 234-5678",
|
|
25
|
+
"Type__c": "Electrical",
|
|
26
|
+
"IsActive__c": true,
|
|
27
|
+
"Employment_Type__c": "Internal Employee",
|
|
28
|
+
"Hourly_Rate__c": 50.0,
|
|
29
|
+
"Rating__c": 4.9,
|
|
30
|
+
"Certifications__c": "Master Electrician, NEC Certified",
|
|
31
|
+
"Location__c": "Midtown"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"attributes": {
|
|
35
|
+
"type": "Maintenance_Worker__c",
|
|
36
|
+
"referenceId": "WorkerRef3"
|
|
37
|
+
},
|
|
38
|
+
"Name": "Robert Knox",
|
|
39
|
+
"Phone__c": "(555) 345-6789",
|
|
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"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"attributes": {
|
|
50
|
+
"type": "Maintenance_Worker__c",
|
|
51
|
+
"referenceId": "WorkerRef4"
|
|
52
|
+
},
|
|
53
|
+
"Name": "Diana Chen",
|
|
54
|
+
"Phone__c": "(555) 456-7890",
|
|
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"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"attributes": {
|
|
65
|
+
"type": "Maintenance_Worker__c",
|
|
66
|
+
"referenceId": "WorkerRef5"
|
|
67
|
+
},
|
|
68
|
+
"Name": "Tony Rodriguez",
|
|
69
|
+
"Phone__c": "(555) 567-8901",
|
|
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"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"attributes": {
|
|
80
|
+
"type": "Maintenance_Worker__c",
|
|
81
|
+
"referenceId": "WorkerRef6"
|
|
82
|
+
},
|
|
83
|
+
"Name": "Sarah Mitchell",
|
|
84
|
+
"Phone__c": "(555) 678-9012",
|
|
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"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"attributes": {
|
|
95
|
+
"type": "Maintenance_Worker__c",
|
|
96
|
+
"referenceId": "WorkerRef7"
|
|
97
|
+
},
|
|
98
|
+
"Name": "Carlos Gutierrez",
|
|
99
|
+
"Phone__c": "(555) 789-0123",
|
|
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"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"attributes": {
|
|
110
|
+
"type": "Maintenance_Worker__c",
|
|
111
|
+
"referenceId": "WorkerRef8"
|
|
112
|
+
},
|
|
113
|
+
"Name": "Jessica Wong",
|
|
114
|
+
"Phone__c": "(555) 890-1234",
|
|
115
|
+
"Type__c": "Landscaping / Grounds",
|
|
116
|
+
"IsActive__c": true,
|
|
117
|
+
"Employment_Type__c": "Contractor",
|
|
118
|
+
"Hourly_Rate__c": 28.0,
|
|
119
|
+
"Rating__c": 4.4,
|
|
120
|
+
"Certifications__c": "Landscape Maintenance Certification",
|
|
121
|
+
"Location__c": "Uptown"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"attributes": {
|
|
125
|
+
"type": "Maintenance_Worker__c",
|
|
126
|
+
"referenceId": "WorkerRef9"
|
|
127
|
+
},
|
|
128
|
+
"Name": "Mike Johnson",
|
|
129
|
+
"Phone__c": "(555) 901-2345",
|
|
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"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"attributes": {
|
|
140
|
+
"type": "Maintenance_Worker__c",
|
|
141
|
+
"referenceId": "WorkerRef10"
|
|
142
|
+
},
|
|
143
|
+
"Name": "Lisa Thompson",
|
|
144
|
+
"Phone__c": "(555) 012-3456",
|
|
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"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"attributes": {
|
|
155
|
+
"type": "Maintenance_Worker__c",
|
|
156
|
+
"referenceId": "WorkerRef11"
|
|
157
|
+
},
|
|
158
|
+
"Name": "David Martinez",
|
|
159
|
+
"Phone__c": "(555) 123-4568",
|
|
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"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"attributes": {
|
|
170
|
+
"type": "Maintenance_Worker__c",
|
|
171
|
+
"referenceId": "WorkerRef12"
|
|
172
|
+
},
|
|
173
|
+
"Name": "Angela Davis",
|
|
174
|
+
"Phone__c": "(555) 234-5679",
|
|
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"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"attributes": {
|
|
185
|
+
"type": "Maintenance_Worker__c",
|
|
186
|
+
"referenceId": "WorkerRef13"
|
|
187
|
+
},
|
|
188
|
+
"Name": "James Wilson",
|
|
189
|
+
"Phone__c": "(555) 345-6780",
|
|
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"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"attributes": {
|
|
200
|
+
"type": "Maintenance_Worker__c",
|
|
201
|
+
"referenceId": "WorkerRef14"
|
|
202
|
+
},
|
|
203
|
+
"Name": "Maria Garcia",
|
|
204
|
+
"Phone__c": "(555) 456-7891",
|
|
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"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"attributes": {
|
|
215
|
+
"type": "Maintenance_Worker__c",
|
|
216
|
+
"referenceId": "WorkerRef15"
|
|
217
|
+
},
|
|
218
|
+
"Name": "Kevin Brown",
|
|
219
|
+
"Phone__c": "(555) 567-8902",
|
|
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"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"attributes": {
|
|
230
|
+
"type": "Maintenance_Worker__c",
|
|
231
|
+
"referenceId": "WorkerRef16"
|
|
232
|
+
},
|
|
233
|
+
"Name": "Patricia Lee",
|
|
234
|
+
"Phone__c": "(555) 678-9013",
|
|
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"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"attributes": {
|
|
245
|
+
"type": "Maintenance_Worker__c",
|
|
246
|
+
"referenceId": "WorkerRef17"
|
|
247
|
+
},
|
|
248
|
+
"Name": "Steven Adams",
|
|
249
|
+
"Phone__c": "(555) 789-0124",
|
|
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"
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"attributes": {
|
|
260
|
+
"type": "Maintenance_Worker__c",
|
|
261
|
+
"referenceId": "WorkerRef18"
|
|
262
|
+
},
|
|
263
|
+
"Name": "Nicole White",
|
|
264
|
+
"Phone__c": "(555) 890-1235",
|
|
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"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"attributes": {
|
|
275
|
+
"type": "Maintenance_Worker__c",
|
|
276
|
+
"referenceId": "WorkerRef19"
|
|
277
|
+
},
|
|
278
|
+
"Name": "Christopher Taylor",
|
|
279
|
+
"Phone__c": "(555) 901-2346",
|
|
280
|
+
"Type__c": "General Carpentry",
|
|
281
|
+
"IsActive__c": true,
|
|
282
|
+
"Employment_Type__c": "Internal Employee",
|
|
283
|
+
"Hourly_Rate__c": 40.0,
|
|
284
|
+
"Rating__c": 4.7,
|
|
285
|
+
"Certifications__c": "Drywall & Finishing Specialist",
|
|
286
|
+
"Location__c": "Westside"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"attributes": {
|
|
290
|
+
"type": "Maintenance_Worker__c",
|
|
291
|
+
"referenceId": "WorkerRef20"
|
|
292
|
+
},
|
|
293
|
+
"Name": "Amanda Moore",
|
|
294
|
+
"Phone__c": "(555) 012-3457",
|
|
295
|
+
"Type__c": "Landscaping / Grounds",
|
|
296
|
+
"IsActive__c": true,
|
|
297
|
+
"Employment_Type__c": "Contractor",
|
|
298
|
+
"Hourly_Rate__c": 26.0,
|
|
299
|
+
"Rating__c": 4.4,
|
|
300
|
+
"Certifications__c": "Irrigation Systems Certification",
|
|
301
|
+
"Location__c": "Eastside"
|
|
302
|
+
}
|
|
303
|
+
]
|
|
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
|
+
}
|