@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,184 @@
|
|
|
1
|
+
{
|
|
2
|
+
"records": [
|
|
3
|
+
{
|
|
4
|
+
"attributes": {
|
|
5
|
+
"type": "Tenant__c",
|
|
6
|
+
"referenceId": "TenantRef1"
|
|
7
|
+
},
|
|
8
|
+
"User__c": null,
|
|
9
|
+
"User_Status__c": "Tenant",
|
|
10
|
+
"Property__c": "@PropertyRef1",
|
|
11
|
+
"Start_Date__c": "2024-01-15",
|
|
12
|
+
"End_Date__c": "2025-01-14",
|
|
13
|
+
"Status__c": "Active"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"attributes": {
|
|
17
|
+
"type": "Tenant__c",
|
|
18
|
+
"referenceId": "TenantRef2"
|
|
19
|
+
},
|
|
20
|
+
"User__c": null,
|
|
21
|
+
"User_Status__c": "Tenant",
|
|
22
|
+
"Property__c": "@PropertyRef2",
|
|
23
|
+
"Start_Date__c": "2023-06-01",
|
|
24
|
+
"End_Date__c": "2025-05-31",
|
|
25
|
+
"Status__c": "Active"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"attributes": {
|
|
29
|
+
"type": "Tenant__c",
|
|
30
|
+
"referenceId": "TenantRef3"
|
|
31
|
+
},
|
|
32
|
+
"User__c": null,
|
|
33
|
+
"User_Status__c": "Tenant",
|
|
34
|
+
"Property__c": "@PropertyRef3",
|
|
35
|
+
"Start_Date__c": "2024-03-01",
|
|
36
|
+
"End_Date__c": "2025-02-28",
|
|
37
|
+
"Status__c": "Active"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"attributes": {
|
|
41
|
+
"type": "Tenant__c",
|
|
42
|
+
"referenceId": "TenantRef4"
|
|
43
|
+
},
|
|
44
|
+
"User__c": null,
|
|
45
|
+
"User_Status__c": "Tenant",
|
|
46
|
+
"Property__c": "@PropertyRef7",
|
|
47
|
+
"Start_Date__c": "2023-09-01",
|
|
48
|
+
"End_Date__c": "2024-08-31",
|
|
49
|
+
"Status__c": "Active"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"attributes": {
|
|
53
|
+
"type": "Tenant__c",
|
|
54
|
+
"referenceId": "TenantRef5"
|
|
55
|
+
},
|
|
56
|
+
"User__c": null,
|
|
57
|
+
"User_Status__c": "Tenant",
|
|
58
|
+
"Property__c": "@PropertyRef14",
|
|
59
|
+
"Start_Date__c": "2024-02-01",
|
|
60
|
+
"End_Date__c": "2025-01-31",
|
|
61
|
+
"Status__c": "Active"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"attributes": {
|
|
65
|
+
"type": "Tenant__c",
|
|
66
|
+
"referenceId": "TenantRef6"
|
|
67
|
+
},
|
|
68
|
+
"User__c": null,
|
|
69
|
+
"User_Status__c": "Tenant",
|
|
70
|
+
"Property__c": "@PropertyRef18",
|
|
71
|
+
"Start_Date__c": "2023-11-01",
|
|
72
|
+
"End_Date__c": "2024-10-31",
|
|
73
|
+
"Status__c": "Active"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"attributes": {
|
|
77
|
+
"type": "Tenant__c",
|
|
78
|
+
"referenceId": "TenantRef7"
|
|
79
|
+
},
|
|
80
|
+
"User__c": null,
|
|
81
|
+
"User_Status__c": "Tenant",
|
|
82
|
+
"Property__c": "@PropertyRef13",
|
|
83
|
+
"Start_Date__c": "2024-05-01",
|
|
84
|
+
"End_Date__c": "2025-04-30",
|
|
85
|
+
"Status__c": "Active"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"attributes": {
|
|
89
|
+
"type": "Tenant__c",
|
|
90
|
+
"referenceId": "TenantRef8"
|
|
91
|
+
},
|
|
92
|
+
"User__c": null,
|
|
93
|
+
"User_Status__c": "Tenant",
|
|
94
|
+
"Property__c": "@PropertyRef11",
|
|
95
|
+
"Start_Date__c": "2022-06-01",
|
|
96
|
+
"End_Date__c": "2025-05-31",
|
|
97
|
+
"Status__c": "Active"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"attributes": {
|
|
101
|
+
"type": "Tenant__c",
|
|
102
|
+
"referenceId": "TenantRef9"
|
|
103
|
+
},
|
|
104
|
+
"User__c": null,
|
|
105
|
+
"User_Status__c": "Tenant",
|
|
106
|
+
"Property__c": "@PropertyRef24",
|
|
107
|
+
"Start_Date__c": "2024-04-01",
|
|
108
|
+
"End_Date__c": "2025-03-31",
|
|
109
|
+
"Status__c": "Active"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"attributes": {
|
|
113
|
+
"type": "Tenant__c",
|
|
114
|
+
"referenceId": "TenantRef10"
|
|
115
|
+
},
|
|
116
|
+
"User__c": null,
|
|
117
|
+
"User_Status__c": "Tenant",
|
|
118
|
+
"Property__c": "@PropertyRef22",
|
|
119
|
+
"Start_Date__c": "2023-01-01",
|
|
120
|
+
"End_Date__c": "2026-12-31",
|
|
121
|
+
"Status__c": "Active"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"attributes": {
|
|
125
|
+
"type": "Tenant__c",
|
|
126
|
+
"referenceId": "TenantRef11"
|
|
127
|
+
},
|
|
128
|
+
"User__c": null,
|
|
129
|
+
"User_Status__c": "Tenant",
|
|
130
|
+
"Property__c": "@PropertyRef23",
|
|
131
|
+
"Start_Date__c": "2023-08-01",
|
|
132
|
+
"End_Date__c": "2024-07-31",
|
|
133
|
+
"Status__c": "Active"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"attributes": {
|
|
137
|
+
"type": "Tenant__c",
|
|
138
|
+
"referenceId": "TenantRef12"
|
|
139
|
+
},
|
|
140
|
+
"User__c": null,
|
|
141
|
+
"User_Status__c": "FormerTenant",
|
|
142
|
+
"Property__c": "@PropertyRef1",
|
|
143
|
+
"Start_Date__c": "2023-02-01",
|
|
144
|
+
"End_Date__c": "2024-01-31",
|
|
145
|
+
"Status__c": "Expired"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"attributes": {
|
|
149
|
+
"type": "Tenant__c",
|
|
150
|
+
"referenceId": "TenantRef13"
|
|
151
|
+
},
|
|
152
|
+
"User__c": null,
|
|
153
|
+
"User_Status__c": "FormerTenant",
|
|
154
|
+
"Property__c": "@PropertyRef2",
|
|
155
|
+
"Start_Date__c": "2022-06-01",
|
|
156
|
+
"End_Date__c": "2023-05-31",
|
|
157
|
+
"Status__c": "Expired"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"attributes": {
|
|
161
|
+
"type": "Tenant__c",
|
|
162
|
+
"referenceId": "TenantRef14"
|
|
163
|
+
},
|
|
164
|
+
"User__c": null,
|
|
165
|
+
"User_Status__c": "Tenant",
|
|
166
|
+
"Property__c": "@PropertyRef4",
|
|
167
|
+
"Start_Date__c": "2024-12-15",
|
|
168
|
+
"End_Date__c": "2025-12-14",
|
|
169
|
+
"Status__c": "Active"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"attributes": {
|
|
173
|
+
"type": "Tenant__c",
|
|
174
|
+
"referenceId": "TenantRef15"
|
|
175
|
+
},
|
|
176
|
+
"User__c": null,
|
|
177
|
+
"User_Status__c": "Tenant",
|
|
178
|
+
"Property__c": "@PropertyRef10",
|
|
179
|
+
"Start_Date__c": "2024-06-01",
|
|
180
|
+
"End_Date__c": "2026-05-31",
|
|
181
|
+
"Status__c": "Active"
|
|
182
|
+
}
|
|
183
|
+
]
|
|
184
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"sobject": "Maintenance_Worker__c",
|
|
4
|
+
"saveRefs": true,
|
|
5
|
+
"resolveRefs": false,
|
|
6
|
+
"files": ["Maintenance_Worker__c.json"]
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"sobject": "Property__c",
|
|
10
|
+
"saveRefs": true,
|
|
11
|
+
"resolveRefs": false,
|
|
12
|
+
"files": ["Property__c.json"]
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"sobject": "Tenant__c",
|
|
16
|
+
"saveRefs": true,
|
|
17
|
+
"resolveRefs": true,
|
|
18
|
+
"files": ["Tenant__c.json"]
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"sobject": "Application__c",
|
|
22
|
+
"saveRefs": true,
|
|
23
|
+
"resolveRefs": true,
|
|
24
|
+
"files": ["Application__c.json"]
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"sobject": "Maintenance_Request__c",
|
|
28
|
+
"saveRefs": true,
|
|
29
|
+
"resolveRefs": true,
|
|
30
|
+
"files": ["Maintenance_Request__c.json"]
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"sobject": "Notification__c",
|
|
34
|
+
"saveRefs": true,
|
|
35
|
+
"resolveRefs": true,
|
|
36
|
+
"files": ["Notification__c.json"]
|
|
37
|
+
}
|
|
38
|
+
]
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomObject xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<actionOverrides>
|
|
4
|
+
<actionName>Accept</actionName>
|
|
5
|
+
<type>Default</type>
|
|
6
|
+
</actionOverrides>
|
|
7
|
+
<actionOverrides>
|
|
8
|
+
<actionName>CancelEdit</actionName>
|
|
9
|
+
<type>Default</type>
|
|
10
|
+
</actionOverrides>
|
|
11
|
+
<actionOverrides>
|
|
12
|
+
<actionName>Clone</actionName>
|
|
13
|
+
<type>Default</type>
|
|
14
|
+
</actionOverrides>
|
|
15
|
+
<actionOverrides>
|
|
16
|
+
<actionName>Delete</actionName>
|
|
17
|
+
<type>Default</type>
|
|
18
|
+
</actionOverrides>
|
|
19
|
+
<actionOverrides>
|
|
20
|
+
<actionName>Edit</actionName>
|
|
21
|
+
<type>Default</type>
|
|
22
|
+
</actionOverrides>
|
|
23
|
+
<actionOverrides>
|
|
24
|
+
<actionName>List</actionName>
|
|
25
|
+
<type>Default</type>
|
|
26
|
+
</actionOverrides>
|
|
27
|
+
<actionOverrides>
|
|
28
|
+
<actionName>New</actionName>
|
|
29
|
+
<type>Default</type>
|
|
30
|
+
</actionOverrides>
|
|
31
|
+
<actionOverrides>
|
|
32
|
+
<actionName>SaveEdit</actionName>
|
|
33
|
+
<type>Default</type>
|
|
34
|
+
</actionOverrides>
|
|
35
|
+
<actionOverrides>
|
|
36
|
+
<actionName>Tab</actionName>
|
|
37
|
+
<type>Default</type>
|
|
38
|
+
</actionOverrides>
|
|
39
|
+
<actionOverrides>
|
|
40
|
+
<actionName>View</actionName>
|
|
41
|
+
<type>Default</type>
|
|
42
|
+
</actionOverrides>
|
|
43
|
+
<allowInChatterGroups>false</allowInChatterGroups>
|
|
44
|
+
<compactLayoutAssignment>SYSTEM</compactLayoutAssignment>
|
|
45
|
+
<deploymentStatus>Deployed</deploymentStatus>
|
|
46
|
+
<description>Lease applications submitted by prospective tenants</description>
|
|
47
|
+
<enableActivities>true</enableActivities>
|
|
48
|
+
<enableBulkApi>true</enableBulkApi>
|
|
49
|
+
<enableFeeds>false</enableFeeds>
|
|
50
|
+
<enableHistory>true</enableHistory>
|
|
51
|
+
<enableLicensing>false</enableLicensing>
|
|
52
|
+
<enableReports>true</enableReports>
|
|
53
|
+
<enableSearch>true</enableSearch>
|
|
54
|
+
<enableSharing>true</enableSharing>
|
|
55
|
+
<enableStreamingApi>true</enableStreamingApi>
|
|
56
|
+
<externalSharingModel>Private</externalSharingModel>
|
|
57
|
+
<label>Application</label>
|
|
58
|
+
<nameField>
|
|
59
|
+
<displayFormat>APP-{0000}</displayFormat>
|
|
60
|
+
<label>Application Number</label>
|
|
61
|
+
<type>AutoNumber</type>
|
|
62
|
+
</nameField>
|
|
63
|
+
<pluralLabel>Applications</pluralLabel>
|
|
64
|
+
<searchLayouts/>
|
|
65
|
+
<sharingModel>ReadWrite</sharingModel>
|
|
66
|
+
<visibility>Public</visibility>
|
|
67
|
+
</CustomObject>
|
package/dist/force-app/main/default/objects/Application__c/fields/Employment__c.field-meta.xml
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Employment__c</fullName>
|
|
4
|
+
<description>Employer, Position, and Annual Income information</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Employment Information</label>
|
|
7
|
+
<length>32768</length>
|
|
8
|
+
<type>LongTextArea</type>
|
|
9
|
+
<visibleLines>5</visibleLines>
|
|
10
|
+
</CustomField>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Property__c</fullName>
|
|
4
|
+
<deleteConstraint>SetNull</deleteConstraint>
|
|
5
|
+
<description>The property unit the applicant wants to rent</description>
|
|
6
|
+
<externalId>false</externalId>
|
|
7
|
+
<label>Property</label>
|
|
8
|
+
<referenceTo>Property__c</referenceTo>
|
|
9
|
+
<relationshipLabel>Applications</relationshipLabel>
|
|
10
|
+
<relationshipName>Applications</relationshipName>
|
|
11
|
+
<required>false</required>
|
|
12
|
+
<trackHistory>false</trackHistory>
|
|
13
|
+
<trackTrending>false</trackTrending>
|
|
14
|
+
<type>Lookup</type>
|
|
15
|
+
</CustomField>
|
package/dist/force-app/main/default/objects/Application__c/fields/References__c.field-meta.xml
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>References__c</fullName>
|
|
4
|
+
<description>Contact information for previous landlords and references</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>References</label>
|
|
7
|
+
<length>32768</length>
|
|
8
|
+
<type>LongTextArea</type>
|
|
9
|
+
<visibleLines>5</visibleLines>
|
|
10
|
+
</CustomField>
|
package/dist/force-app/main/default/objects/Application__c/fields/Start_Date__c.field-meta.xml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Start_Date__c</fullName>
|
|
4
|
+
<description>Proposed move-in date</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Desired Move-in Date</label>
|
|
7
|
+
<required>false</required>
|
|
8
|
+
<type>Date</type>
|
|
9
|
+
</CustomField>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Status__c</fullName>
|
|
4
|
+
<description>Current status of the application</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Status</label>
|
|
7
|
+
<required>false</required>
|
|
8
|
+
<trackHistory>true</trackHistory>
|
|
9
|
+
<trackTrending>false</trackTrending>
|
|
10
|
+
<type>Picklist</type>
|
|
11
|
+
<valueSet>
|
|
12
|
+
<restricted>true</restricted>
|
|
13
|
+
<valueSetDefinition>
|
|
14
|
+
<sorted>false</sorted>
|
|
15
|
+
<value>
|
|
16
|
+
<fullName>Draft</fullName>
|
|
17
|
+
<default>true</default>
|
|
18
|
+
<label>Draft</label>
|
|
19
|
+
</value>
|
|
20
|
+
<value>
|
|
21
|
+
<fullName>Submitted</fullName>
|
|
22
|
+
<default>false</default>
|
|
23
|
+
<label>Submitted</label>
|
|
24
|
+
</value>
|
|
25
|
+
<value>
|
|
26
|
+
<fullName>Background Check</fullName>
|
|
27
|
+
<default>false</default>
|
|
28
|
+
<label>Background Check</label>
|
|
29
|
+
</value>
|
|
30
|
+
<value>
|
|
31
|
+
<fullName>Approved</fullName>
|
|
32
|
+
<default>false</default>
|
|
33
|
+
<label>Approved</label>
|
|
34
|
+
</value>
|
|
35
|
+
<value>
|
|
36
|
+
<fullName>Rejected</fullName>
|
|
37
|
+
<default>false</default>
|
|
38
|
+
<label>Rejected</label>
|
|
39
|
+
</value>
|
|
40
|
+
</valueSetDefinition>
|
|
41
|
+
</valueSet>
|
|
42
|
+
</CustomField>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>User__c</fullName>
|
|
4
|
+
<deleteConstraint>SetNull</deleteConstraint>
|
|
5
|
+
<description>The person applying (Contact record)</description>
|
|
6
|
+
<externalId>false</externalId>
|
|
7
|
+
<label>Applicant</label>
|
|
8
|
+
<referenceTo>Contact</referenceTo>
|
|
9
|
+
<relationshipLabel>Applications</relationshipLabel>
|
|
10
|
+
<relationshipName>Applications</relationshipName>
|
|
11
|
+
<required>false</required>
|
|
12
|
+
<trackHistory>false</trackHistory>
|
|
13
|
+
<trackTrending>false</trackTrending>
|
|
14
|
+
<type>Lookup</type>
|
|
15
|
+
</CustomField>
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomObject xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<actionOverrides>
|
|
4
|
+
<actionName>Accept</actionName>
|
|
5
|
+
<type>Default</type>
|
|
6
|
+
</actionOverrides>
|
|
7
|
+
<actionOverrides>
|
|
8
|
+
<actionName>CancelEdit</actionName>
|
|
9
|
+
<type>Default</type>
|
|
10
|
+
</actionOverrides>
|
|
11
|
+
<actionOverrides>
|
|
12
|
+
<actionName>Clone</actionName>
|
|
13
|
+
<type>Default</type>
|
|
14
|
+
</actionOverrides>
|
|
15
|
+
<actionOverrides>
|
|
16
|
+
<actionName>Delete</actionName>
|
|
17
|
+
<type>Default</type>
|
|
18
|
+
</actionOverrides>
|
|
19
|
+
<actionOverrides>
|
|
20
|
+
<actionName>Edit</actionName>
|
|
21
|
+
<type>Default</type>
|
|
22
|
+
</actionOverrides>
|
|
23
|
+
<actionOverrides>
|
|
24
|
+
<actionName>List</actionName>
|
|
25
|
+
<type>Default</type>
|
|
26
|
+
</actionOverrides>
|
|
27
|
+
<actionOverrides>
|
|
28
|
+
<actionName>New</actionName>
|
|
29
|
+
<type>Default</type>
|
|
30
|
+
</actionOverrides>
|
|
31
|
+
<actionOverrides>
|
|
32
|
+
<actionName>SaveEdit</actionName>
|
|
33
|
+
<type>Default</type>
|
|
34
|
+
</actionOverrides>
|
|
35
|
+
<actionOverrides>
|
|
36
|
+
<actionName>Tab</actionName>
|
|
37
|
+
<type>Default</type>
|
|
38
|
+
</actionOverrides>
|
|
39
|
+
<actionOverrides>
|
|
40
|
+
<actionName>View</actionName>
|
|
41
|
+
<type>Default</type>
|
|
42
|
+
</actionOverrides>
|
|
43
|
+
<allowInChatterGroups>false</allowInChatterGroups>
|
|
44
|
+
<compactLayoutAssignment>SYSTEM</compactLayoutAssignment>
|
|
45
|
+
<deploymentStatus>Deployed</deploymentStatus>
|
|
46
|
+
<description>Maintenance requests for properties</description>
|
|
47
|
+
<enableActivities>true</enableActivities>
|
|
48
|
+
<enableBulkApi>true</enableBulkApi>
|
|
49
|
+
<enableFeeds>false</enableFeeds>
|
|
50
|
+
<enableHistory>true</enableHistory>
|
|
51
|
+
<enableLicensing>false</enableLicensing>
|
|
52
|
+
<enableReports>true</enableReports>
|
|
53
|
+
<enableSearch>true</enableSearch>
|
|
54
|
+
<enableSharing>true</enableSharing>
|
|
55
|
+
<enableStreamingApi>true</enableStreamingApi>
|
|
56
|
+
<externalSharingModel>Private</externalSharingModel>
|
|
57
|
+
<label>Maintenance Request</label>
|
|
58
|
+
<nameField>
|
|
59
|
+
<displayFormat>MNT-{0000}</displayFormat>
|
|
60
|
+
<label>Request Number</label>
|
|
61
|
+
<type>AutoNumber</type>
|
|
62
|
+
</nameField>
|
|
63
|
+
<pluralLabel>Maintenance Requests</pluralLabel>
|
|
64
|
+
<searchLayouts/>
|
|
65
|
+
<sharingModel>ReadWrite</sharingModel>
|
|
66
|
+
<visibility>Public</visibility>
|
|
67
|
+
</CustomObject>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Actual_Cost__c</fullName>
|
|
4
|
+
<description>Actual cost (Parts + Labor total)</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Actual Cost</label>
|
|
7
|
+
<precision>10</precision>
|
|
8
|
+
<required>false</required>
|
|
9
|
+
<scale>2</scale>
|
|
10
|
+
<trackHistory>false</trackHistory>
|
|
11
|
+
<trackTrending>false</trackTrending>
|
|
12
|
+
<type>Currency</type>
|
|
13
|
+
</CustomField>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Completed__c</fullName>
|
|
4
|
+
<description>Timestamp when work was completed</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Completed Date/Time</label>
|
|
7
|
+
<required>false</required>
|
|
8
|
+
<trackHistory>false</trackHistory>
|
|
9
|
+
<trackTrending>false</trackTrending>
|
|
10
|
+
<type>DateTime</type>
|
|
11
|
+
</CustomField>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Description__c</fullName>
|
|
4
|
+
<description>Detailed description of the maintenance issue</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Description</label>
|
|
7
|
+
<length>32768</length>
|
|
8
|
+
<trackHistory>false</trackHistory>
|
|
9
|
+
<trackTrending>false</trackTrending>
|
|
10
|
+
<type>LongTextArea</type>
|
|
11
|
+
<visibleLines>5</visibleLines>
|
|
12
|
+
</CustomField>
|
package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Est_Cost__c.field-meta.xml
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Est_Cost__c</fullName>
|
|
4
|
+
<description>Estimated cost for budget approvals</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Estimated Cost</label>
|
|
7
|
+
<precision>10</precision>
|
|
8
|
+
<required>false</required>
|
|
9
|
+
<scale>2</scale>
|
|
10
|
+
<trackHistory>false</trackHistory>
|
|
11
|
+
<trackTrending>false</trackTrending>
|
|
12
|
+
<type>Currency</type>
|
|
13
|
+
</CustomField>
|
package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Priority__c.field-meta.xml
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Priority__c</fullName>
|
|
4
|
+
<description>Priority level of the maintenance request</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Priority</label>
|
|
7
|
+
<required>false</required>
|
|
8
|
+
<trackHistory>true</trackHistory>
|
|
9
|
+
<trackTrending>false</trackTrending>
|
|
10
|
+
<type>Picklist</type>
|
|
11
|
+
<valueSet>
|
|
12
|
+
<restricted>true</restricted>
|
|
13
|
+
<valueSetDefinition>
|
|
14
|
+
<sorted>false</sorted>
|
|
15
|
+
<value>
|
|
16
|
+
<fullName>Emergency (2hr)</fullName>
|
|
17
|
+
<default>false</default>
|
|
18
|
+
<label>Emergency (2hr)</label>
|
|
19
|
+
</value>
|
|
20
|
+
<value>
|
|
21
|
+
<fullName>High (Same Day)</fullName>
|
|
22
|
+
<default>false</default>
|
|
23
|
+
<label>High (Same Day)</label>
|
|
24
|
+
</value>
|
|
25
|
+
<value>
|
|
26
|
+
<fullName>Standard</fullName>
|
|
27
|
+
<default>true</default>
|
|
28
|
+
<label>Standard</label>
|
|
29
|
+
</value>
|
|
30
|
+
</valueSetDefinition>
|
|
31
|
+
</valueSet>
|
|
32
|
+
</CustomField>
|
package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Property__c.field-meta.xml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Property__c</fullName>
|
|
4
|
+
<deleteConstraint>SetNull</deleteConstraint>
|
|
5
|
+
<description>Property where maintenance is needed</description>
|
|
6
|
+
<externalId>false</externalId>
|
|
7
|
+
<label>Property</label>
|
|
8
|
+
<referenceTo>Property__c</referenceTo>
|
|
9
|
+
<relationshipLabel>Maintenance Requests</relationshipLabel>
|
|
10
|
+
<relationshipName>Maintenance_Requests</relationshipName>
|
|
11
|
+
<required>false</required>
|
|
12
|
+
<trackHistory>false</trackHistory>
|
|
13
|
+
<trackTrending>false</trackTrending>
|
|
14
|
+
<type>Lookup</type>
|
|
15
|
+
</CustomField>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Scheduled__c</fullName>
|
|
4
|
+
<description>Confirmed time when worker will arrive</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Scheduled Date/Time</label>
|
|
7
|
+
<required>false</required>
|
|
8
|
+
<trackHistory>false</trackHistory>
|
|
9
|
+
<trackTrending>false</trackTrending>
|
|
10
|
+
<type>DateTime</type>
|
|
11
|
+
</CustomField>
|
package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Status__c.field-meta.xml
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Status__c</fullName>
|
|
4
|
+
<description>Current status of the maintenance request</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Status</label>
|
|
7
|
+
<required>false</required>
|
|
8
|
+
<trackHistory>true</trackHistory>
|
|
9
|
+
<trackTrending>false</trackTrending>
|
|
10
|
+
<type>Picklist</type>
|
|
11
|
+
<valueSet>
|
|
12
|
+
<restricted>true</restricted>
|
|
13
|
+
<valueSetDefinition>
|
|
14
|
+
<sorted>false</sorted>
|
|
15
|
+
<value>
|
|
16
|
+
<fullName>New</fullName>
|
|
17
|
+
<default>true</default>
|
|
18
|
+
<label>New</label>
|
|
19
|
+
</value>
|
|
20
|
+
<value>
|
|
21
|
+
<fullName>Assigned</fullName>
|
|
22
|
+
<default>false</default>
|
|
23
|
+
<label>Assigned</label>
|
|
24
|
+
</value>
|
|
25
|
+
<value>
|
|
26
|
+
<fullName>In Progress</fullName>
|
|
27
|
+
<default>false</default>
|
|
28
|
+
<label>In Progress</label>
|
|
29
|
+
</value>
|
|
30
|
+
<value>
|
|
31
|
+
<fullName>On Hold</fullName>
|
|
32
|
+
<default>false</default>
|
|
33
|
+
<label>On Hold</label>
|
|
34
|
+
</value>
|
|
35
|
+
<value>
|
|
36
|
+
<fullName>Resolved</fullName>
|
|
37
|
+
<default>false</default>
|
|
38
|
+
<label>Resolved</label>
|
|
39
|
+
</value>
|
|
40
|
+
</valueSetDefinition>
|
|
41
|
+
</valueSet>
|
|
42
|
+
</CustomField>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Tenant_Home__c</fullName>
|
|
4
|
+
<defaultValue>false</defaultValue>
|
|
5
|
+
<description>Permission to enter property if tenant not present</description>
|
|
6
|
+
<externalId>false</externalId>
|
|
7
|
+
<label>Permission to Enter</label>
|
|
8
|
+
<trackHistory>false</trackHistory>
|
|
9
|
+
<trackTrending>false</trackTrending>
|
|
10
|
+
<type>Checkbox</type>
|
|
11
|
+
</CustomField>
|