@salesforce/webapp-template-app-react-sample-b2e-experimental 1.67.0 → 1.67.1

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.
Files changed (103) hide show
  1. package/dist/CHANGELOG.md +8 -0
  2. package/dist/force-app/main/default/data/KPI_Snapshot__c.json +160 -0
  3. package/dist/force-app/main/default/data/Lease__c.json +9429 -0
  4. package/dist/force-app/main/default/data/Payment__c.json +1024 -0
  5. package/dist/force-app/main/default/data/Property_Cost__c.json +484 -0
  6. package/dist/force-app/main/default/data/Property_Feature__c.json +169 -0
  7. package/dist/force-app/main/default/data/Property_Image__c.json +148 -0
  8. package/dist/force-app/main/default/data/Property_Listing__c.json +130 -0
  9. package/dist/force-app/main/default/data/Property_Management_Company__c.json +70 -0
  10. package/dist/force-app/main/default/data/Property_Owner__c.json +184 -0
  11. package/dist/force-app/main/default/data/Property_Sale__c.json +246 -0
  12. package/dist/force-app/main/default/data/data-plan.json +65 -5
  13. package/dist/force-app/main/default/layouts/Application__c-Application Layout.layout-meta.xml +58 -0
  14. package/dist/force-app/main/default/layouts/KPI_Snapshot__c-KPI Snapshot Layout.layout-meta.xml +87 -0
  15. package/dist/force-app/main/default/layouts/Lease__c-Lease Layout.layout-meta.xml +83 -0
  16. package/dist/force-app/main/default/layouts/Maintenance_Request__c-Maintenance Request Layout.layout-meta.xml +89 -0
  17. package/dist/force-app/main/default/layouts/Maintenance_Worker__c-Maintenance Worker Layout.layout-meta.xml +66 -0
  18. package/dist/force-app/main/default/layouts/Payment__c-Payment Layout.layout-meta.xml +88 -0
  19. package/dist/force-app/main/default/layouts/Property_Cost__c-Property Cost Layout.layout-meta.xml +88 -0
  20. package/dist/force-app/main/default/layouts/Property_Feature__c-Property Feature Layout.layout-meta.xml +80 -0
  21. package/dist/force-app/main/default/layouts/Property_Image__c-Property Image Layout.layout-meta.xml +75 -0
  22. package/dist/force-app/main/default/layouts/Property_Listing__c-Property Listing Layout.layout-meta.xml +92 -0
  23. package/dist/force-app/main/default/layouts/Property_Management_Company__c-Property Management Company Layout.layout-meta.xml +75 -0
  24. package/dist/force-app/main/default/layouts/Property_Owner__c-Property Owner Layout.layout-meta.xml +67 -0
  25. package/dist/force-app/main/default/layouts/Property_Sale__c-Property Sale Layout.layout-meta.xml +87 -0
  26. package/dist/force-app/main/default/layouts/Property__c-Property Layout.layout-meta.xml +130 -0
  27. package/dist/force-app/main/default/layouts/Tenant__c-Tenant Layout.layout-meta.xml +58 -0
  28. package/dist/force-app/main/default/objects/KPI_Snapshot__c/KPI_Snapshot__c.object-meta.xml +65 -0
  29. package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Previous_Month_Sales__c.field-meta.xml +12 -0
  30. package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Sales_MoM_Change__c.field-meta.xml +18 -0
  31. package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Snapshot_Date__c.field-meta.xml +10 -0
  32. package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Total_Properties__c.field-meta.xml +13 -0
  33. package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Total_Sales_Amount__c.field-meta.xml +12 -0
  34. package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Total_Sales_Count__c.field-meta.xml +13 -0
  35. package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Units_Available__c.field-meta.xml +13 -0
  36. package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Units_Occupied__c.field-meta.xml +13 -0
  37. package/dist/force-app/main/default/objects/Lease__c/Lease__c.object-meta.xml +67 -0
  38. package/dist/force-app/main/default/objects/Lease__c/fields/End_Date__c.field-meta.xml +10 -0
  39. package/dist/force-app/main/default/objects/Lease__c/fields/Lease_Status__c.field-meta.xml +36 -0
  40. package/dist/force-app/main/default/objects/Lease__c/fields/Monthly_Rent__c.field-meta.xml +12 -0
  41. package/dist/force-app/main/default/objects/Lease__c/fields/Property__c.field-meta.xml +15 -0
  42. package/dist/force-app/main/default/objects/Lease__c/fields/Security_Deposit__c.field-meta.xml +12 -0
  43. package/dist/force-app/main/default/objects/Lease__c/fields/Start_Date__c.field-meta.xml +10 -0
  44. package/dist/force-app/main/default/objects/Lease__c/fields/Tenant__c.field-meta.xml +14 -0
  45. package/dist/force-app/main/default/objects/Lease__c/validationRules/End_Date_After_Start_Date.validationRule-meta.xml +10 -0
  46. package/dist/force-app/main/default/objects/Payment__c/Payment__c.object-meta.xml +67 -0
  47. package/dist/force-app/main/default/objects/Payment__c/fields/Amount__c.field-meta.xml +12 -0
  48. package/dist/force-app/main/default/objects/Payment__c/fields/Lease__c.field-meta.xml +15 -0
  49. package/dist/force-app/main/default/objects/Payment__c/fields/Notes__c.field-meta.xml +11 -0
  50. package/dist/force-app/main/default/objects/Payment__c/fields/Payment_Date__c.field-meta.xml +10 -0
  51. package/dist/force-app/main/default/objects/Payment__c/fields/Payment_Method__c.field-meta.xml +41 -0
  52. package/dist/force-app/main/default/objects/Payment__c/fields/Payment_Status__c.field-meta.xml +36 -0
  53. package/dist/force-app/main/default/objects/Property_Cost__c/Property_Cost__c.object-meta.xml +67 -0
  54. package/dist/force-app/main/default/objects/Property_Cost__c/fields/Cost_Amount__c.field-meta.xml +12 -0
  55. package/dist/force-app/main/default/objects/Property_Cost__c/fields/Cost_Category__c.field-meta.xml +56 -0
  56. package/dist/force-app/main/default/objects/Property_Cost__c/fields/Cost_Date__c.field-meta.xml +11 -0
  57. package/dist/force-app/main/default/objects/Property_Cost__c/fields/Description__c.field-meta.xml +12 -0
  58. package/dist/force-app/main/default/objects/Property_Cost__c/fields/Property__c.field-meta.xml +15 -0
  59. package/dist/force-app/main/default/objects/Property_Cost__c/fields/Vendor__c.field-meta.xml +12 -0
  60. package/dist/force-app/main/default/objects/Property_Cost__c/validationRules/Cost_Amount_Limit.validationRule-meta.xml +10 -0
  61. package/dist/force-app/main/default/objects/Property_Feature__c/Property_Feature__c.object-meta.xml +65 -0
  62. package/dist/force-app/main/default/objects/Property_Feature__c/fields/Description__c.field-meta.xml +11 -0
  63. package/dist/force-app/main/default/objects/Property_Feature__c/fields/Display_on_Listing__c.field-meta.xml +10 -0
  64. package/dist/force-app/main/default/objects/Property_Feature__c/fields/Feature_Category__c.field-meta.xml +51 -0
  65. package/dist/force-app/main/default/objects/Property_Feature__c/fields/Property__c.field-meta.xml +15 -0
  66. package/dist/force-app/main/default/objects/Property_Image__c/Property_Image__c.object-meta.xml +65 -0
  67. package/dist/force-app/main/default/objects/Property_Image__c/fields/Alt_Text__c.field-meta.xml +12 -0
  68. package/dist/force-app/main/default/objects/Property_Image__c/fields/Display_Order__c.field-meta.xml +13 -0
  69. package/dist/force-app/main/default/objects/Property_Image__c/fields/Image_Type__c.field-meta.xml +41 -0
  70. package/dist/force-app/main/default/objects/Property_Image__c/fields/Image_URL__c.field-meta.xml +10 -0
  71. package/dist/force-app/main/default/objects/Property_Image__c/fields/Property__c.field-meta.xml +15 -0
  72. package/dist/force-app/main/default/objects/Property_Listing__c/Property_Listing__c.object-meta.xml +65 -0
  73. package/dist/force-app/main/default/objects/Property_Listing__c/fields/Display_Order__c.field-meta.xml +13 -0
  74. package/dist/force-app/main/default/objects/Property_Listing__c/fields/Featured__c.field-meta.xml +10 -0
  75. package/dist/force-app/main/default/objects/Property_Listing__c/fields/Listing_Price__c.field-meta.xml +12 -0
  76. package/dist/force-app/main/default/objects/Property_Listing__c/fields/Listing_Status__c.field-meta.xml +41 -0
  77. package/dist/force-app/main/default/objects/Property_Listing__c/fields/Marketing_Description__c.field-meta.xml +11 -0
  78. package/dist/force-app/main/default/objects/Property_Listing__c/fields/Property__c.field-meta.xml +15 -0
  79. package/dist/force-app/main/default/objects/Property_Listing__c/fields/Short_Description__c.field-meta.xml +12 -0
  80. package/dist/force-app/main/default/objects/Property_Management_Company__c/Property_Management_Company__c.object-meta.xml +65 -0
  81. package/dist/force-app/main/default/objects/Property_Management_Company__c/fields/Active__c.field-meta.xml +10 -0
  82. package/dist/force-app/main/default/objects/Property_Management_Company__c/fields/Company_Code__c.field-meta.xml +13 -0
  83. package/dist/force-app/main/default/objects/Property_Management_Company__c/fields/Email__c.field-meta.xml +10 -0
  84. package/dist/force-app/main/default/objects/Property_Management_Company__c/fields/Phone__c.field-meta.xml +10 -0
  85. package/dist/force-app/main/default/objects/Property_Management_Company__c/fields/Primary_Contact__c.field-meta.xml +14 -0
  86. package/dist/force-app/main/default/objects/Property_Owner__c/Property_Owner__c.object-meta.xml +65 -0
  87. package/dist/force-app/main/default/objects/Property_Owner__c/fields/Address__c.field-meta.xml +10 -0
  88. package/dist/force-app/main/default/objects/Property_Owner__c/fields/Email__c.field-meta.xml +11 -0
  89. package/dist/force-app/main/default/objects/Property_Owner__c/fields/Phone__c.field-meta.xml +10 -0
  90. package/dist/force-app/main/default/objects/Property_Sale__c/Property_Sale__c.object-meta.xml +67 -0
  91. package/dist/force-app/main/default/objects/Property_Sale__c/fields/Buyer_Tenant__c.field-meta.xml +13 -0
  92. package/dist/force-app/main/default/objects/Property_Sale__c/fields/Payment_Method__c.field-meta.xml +41 -0
  93. package/dist/force-app/main/default/objects/Property_Sale__c/fields/Property__c.field-meta.xml +15 -0
  94. package/dist/force-app/main/default/objects/Property_Sale__c/fields/Reference_Number__c.field-meta.xml +12 -0
  95. package/dist/force-app/main/default/objects/Property_Sale__c/fields/Sale_Amount__c.field-meta.xml +12 -0
  96. package/dist/force-app/main/default/objects/Property_Sale__c/fields/Sale_Date__c.field-meta.xml +10 -0
  97. package/dist/force-app/main/default/objects/Property_Sale__c/fields/Sale_Status__c.field-meta.xml +36 -0
  98. package/dist/force-app/main/default/objects/Property_Sale__c/fields/Sale_Type__c.field-meta.xml +51 -0
  99. package/dist/force-app/main/default/permissionsets/Property_Management_Access.permissionset-meta.xml +331 -130
  100. package/dist/force-app/main/default/webapplications/appreactsampleb2e/package.json +4 -4
  101. package/dist/package.json +1 -1
  102. package/package.json +1 -1
  103. package/dist/force-app/main/default/webapplications/appreactsampleb2e/package-lock.json +0 -18307
@@ -0,0 +1,246 @@
1
+ {
2
+ "records": [
3
+ {
4
+ "attributes": {
5
+ "type": "Property_Sale__c",
6
+ "referenceId": "SaleRef1"
7
+ },
8
+ "Property__c": "@PropertyRef1",
9
+ "Sale_Date__c": "2024-09-12",
10
+ "Sale_Amount__c": 3200.0,
11
+ "Sale_Status__c": "Completed",
12
+ "Sale_Type__c": "Property Sale"
13
+ },
14
+ {
15
+ "attributes": {
16
+ "type": "Property_Sale__c",
17
+ "referenceId": "SaleRef2"
18
+ },
19
+ "Property__c": "@PropertyRef2",
20
+ "Sale_Date__c": "2024-09-11",
21
+ "Sale_Amount__c": 3600.0,
22
+ "Sale_Status__c": "Completed",
23
+ "Sale_Type__c": "Property Sale"
24
+ },
25
+ {
26
+ "attributes": {
27
+ "type": "Property_Sale__c",
28
+ "referenceId": "SaleRef3"
29
+ },
30
+ "Property__c": "@PropertyRef3",
31
+ "Sale_Date__c": "2024-09-10",
32
+ "Sale_Amount__c": 1800.0,
33
+ "Sale_Status__c": "Completed",
34
+ "Sale_Type__c": "Property Sale"
35
+ },
36
+ {
37
+ "attributes": {
38
+ "type": "Property_Sale__c",
39
+ "referenceId": "SaleRef4"
40
+ },
41
+ "Property__c": "@PropertyRef5",
42
+ "Sale_Date__c": "2024-09-13",
43
+ "Sale_Amount__c": 4200.0,
44
+ "Sale_Status__c": "Completed",
45
+ "Sale_Type__c": "Property Sale"
46
+ },
47
+ {
48
+ "attributes": {
49
+ "type": "Property_Sale__c",
50
+ "referenceId": "SaleRef5"
51
+ },
52
+ "Property__c": "@PropertyRef4",
53
+ "Sale_Date__c": "2024-09-14",
54
+ "Sale_Amount__c": 2800.0,
55
+ "Sale_Status__c": "Completed",
56
+ "Sale_Type__c": "Property Sale"
57
+ },
58
+ {
59
+ "attributes": {
60
+ "type": "Property_Sale__c",
61
+ "referenceId": "SaleRef6"
62
+ },
63
+ "Property__c": "@PropertyRef1",
64
+ "Sale_Date__c": "2024-09-15",
65
+ "Sale_Amount__c": 8500.0,
66
+ "Sale_Status__c": "Completed",
67
+ "Sale_Type__c": "Property Sale"
68
+ },
69
+ {
70
+ "attributes": {
71
+ "type": "Property_Sale__c",
72
+ "referenceId": "SaleRef7"
73
+ },
74
+ "Property__c": "@PropertyRef2",
75
+ "Sale_Date__c": "2024-09-16",
76
+ "Sale_Amount__c": 5975.0,
77
+ "Sale_Status__c": "Completed",
78
+ "Sale_Type__c": "Property Sale"
79
+ },
80
+ {
81
+ "attributes": {
82
+ "type": "Property_Sale__c",
83
+ "referenceId": "SaleRef8"
84
+ },
85
+ "Property__c": "@PropertyRef3",
86
+ "Sale_Date__c": "2024-09-17",
87
+ "Sale_Amount__c": 4200.0,
88
+ "Sale_Status__c": "Pending",
89
+ "Sale_Type__c": "Property Sale"
90
+ },
91
+ {
92
+ "attributes": {
93
+ "type": "Property_Sale__c",
94
+ "referenceId": "SaleRef9"
95
+ },
96
+ "Property__c": "@PropertyRef5",
97
+ "Sale_Date__c": "2024-08-28",
98
+ "Sale_Amount__c": 2850.0,
99
+ "Sale_Status__c": "Completed",
100
+ "Sale_Type__c": "Property Sale"
101
+ },
102
+ {
103
+ "attributes": {
104
+ "type": "Property_Sale__c",
105
+ "referenceId": "SaleRef10"
106
+ },
107
+ "Property__c": "@PropertyRef4",
108
+ "Sale_Date__c": "2024-08-25",
109
+ "Sale_Amount__c": 6250.0,
110
+ "Sale_Status__c": "Completed",
111
+ "Sale_Type__c": "Property Sale"
112
+ },
113
+ {
114
+ "attributes": {
115
+ "type": "Property_Sale__c",
116
+ "referenceId": "SaleRef11"
117
+ },
118
+ "Property__c": "@PropertyRef1",
119
+ "Sale_Date__c": "2024-08-20",
120
+ "Sale_Amount__c": 7800.0,
121
+ "Sale_Status__c": "Completed",
122
+ "Sale_Type__c": "Property Sale"
123
+ },
124
+ {
125
+ "attributes": {
126
+ "type": "Property_Sale__c",
127
+ "referenceId": "SaleRef12"
128
+ },
129
+ "Property__c": "@PropertyRef2",
130
+ "Sale_Date__c": "2024-08-15",
131
+ "Sale_Amount__c": 5200.0,
132
+ "Sale_Status__c": "Completed",
133
+ "Sale_Type__c": "Property Sale"
134
+ },
135
+ {
136
+ "attributes": {
137
+ "type": "Property_Sale__c",
138
+ "referenceId": "SaleRef13"
139
+ },
140
+ "Property__c": "@PropertyRef3",
141
+ "Sale_Date__c": "2024-07-30",
142
+ "Sale_Amount__c": 3900.0,
143
+ "Sale_Status__c": "Completed",
144
+ "Sale_Type__c": "Property Sale"
145
+ },
146
+ {
147
+ "attributes": {
148
+ "type": "Property_Sale__c",
149
+ "referenceId": "SaleRef14"
150
+ },
151
+ "Property__c": "@PropertyRef5",
152
+ "Sale_Date__c": "2024-07-22",
153
+ "Sale_Amount__c": 2650.0,
154
+ "Sale_Status__c": "Completed",
155
+ "Sale_Type__c": "Property Sale"
156
+ },
157
+ {
158
+ "attributes": {
159
+ "type": "Property_Sale__c",
160
+ "referenceId": "SaleRef15"
161
+ },
162
+ "Property__c": "@PropertyRef4",
163
+ "Sale_Date__c": "2024-09-18",
164
+ "Sale_Amount__c": 6800.0,
165
+ "Sale_Status__c": "Pending",
166
+ "Sale_Type__c": "Property Sale"
167
+ },
168
+ {
169
+ "attributes": {
170
+ "type": "Property_Sale__c",
171
+ "referenceId": "SaleRef16"
172
+ },
173
+ "Property__c": "@PropertyRef1",
174
+ "Sale_Date__c": "2024-09-19",
175
+ "Sale_Amount__c": 9200.0,
176
+ "Sale_Status__c": "Pending",
177
+ "Sale_Type__c": "Property Sale"
178
+ },
179
+ {
180
+ "attributes": {
181
+ "type": "Property_Sale__c",
182
+ "referenceId": "SaleRef17"
183
+ },
184
+ "Property__c": "@PropertyRef2",
185
+ "Sale_Date__c": "2024-06-15",
186
+ "Sale_Amount__c": 5500.0,
187
+ "Sale_Status__c": "Completed",
188
+ "Sale_Type__c": "Property Sale"
189
+ },
190
+ {
191
+ "attributes": {
192
+ "type": "Property_Sale__c",
193
+ "referenceId": "SaleRef18"
194
+ },
195
+ "Property__c": "@PropertyRef3",
196
+ "Sale_Date__c": "2024-06-08",
197
+ "Sale_Amount__c": 4100.0,
198
+ "Sale_Status__c": "Completed",
199
+ "Sale_Type__c": "Property Sale"
200
+ },
201
+ {
202
+ "attributes": {
203
+ "type": "Property_Sale__c",
204
+ "referenceId": "SaleRef19"
205
+ },
206
+ "Property__c": "@PropertyRef20",
207
+ "Sale_Date__c": "2024-09-01",
208
+ "Sale_Amount__c": 5200000.0,
209
+ "Sale_Status__c": "Completed",
210
+ "Sale_Type__c": "Property Sale"
211
+ },
212
+ {
213
+ "attributes": {
214
+ "type": "Property_Sale__c",
215
+ "referenceId": "SaleRef20"
216
+ },
217
+ "Property__c": "@PropertyRef16",
218
+ "Sale_Date__c": "2024-08-28",
219
+ "Sale_Amount__c": 3100000.0,
220
+ "Sale_Status__c": "Completed",
221
+ "Sale_Type__c": "Property Sale"
222
+ },
223
+ {
224
+ "attributes": {
225
+ "type": "Property_Sale__c",
226
+ "referenceId": "SaleRef21"
227
+ },
228
+ "Property__c": "@PropertyRef25",
229
+ "Sale_Date__c": "2024-09-10",
230
+ "Sale_Amount__c": 1450000.0,
231
+ "Sale_Status__c": "Completed",
232
+ "Sale_Type__c": "Property Sale"
233
+ },
234
+ {
235
+ "attributes": {
236
+ "type": "Property_Sale__c",
237
+ "referenceId": "SaleRef22"
238
+ },
239
+ "Property__c": "@PropertyRef11",
240
+ "Sale_Date__c": "2024-09-17",
241
+ "Sale_Amount__c": 9200000.0,
242
+ "Sale_Status__c": "Pending",
243
+ "Sale_Type__c": "Property Sale"
244
+ }
245
+ ]
246
+ }
@@ -6,21 +6,21 @@
6
6
  "files": ["Contact.json"]
7
7
  },
8
8
  {
9
- "sobject": "Maintenance_Worker__c",
9
+ "sobject": "Agent__c",
10
10
  "saveRefs": true,
11
11
  "resolveRefs": false,
12
- "files": ["Maintenance_Worker__c.json"]
12
+ "files": ["Agent__c.json"]
13
13
  },
14
14
  {
15
- "sobject": "Agent__c",
15
+ "sobject": "Maintenance_Worker__c",
16
16
  "saveRefs": true,
17
17
  "resolveRefs": false,
18
- "files": ["Agent__c.json"]
18
+ "files": ["Maintenance_Worker__c.json"]
19
19
  },
20
20
  {
21
21
  "sobject": "Property__c",
22
22
  "saveRefs": true,
23
- "resolveRefs": true,
23
+ "resolveRefs": false,
24
24
  "files": ["Property__c.json"]
25
25
  },
26
26
  {
@@ -46,5 +46,65 @@
46
46
  "saveRefs": true,
47
47
  "resolveRefs": true,
48
48
  "files": ["Notification__c.json"]
49
+ },
50
+ {
51
+ "sobject": "Property_Management_Company__c",
52
+ "saveRefs": true,
53
+ "resolveRefs": false,
54
+ "files": ["Property_Management_Company__c.json"]
55
+ },
56
+ {
57
+ "sobject": "Property_Owner__c",
58
+ "saveRefs": true,
59
+ "resolveRefs": false,
60
+ "files": ["Property_Owner__c.json"]
61
+ },
62
+ {
63
+ "sobject": "Lease__c",
64
+ "saveRefs": true,
65
+ "resolveRefs": true,
66
+ "files": ["Lease__c.json"]
67
+ },
68
+ {
69
+ "sobject": "Property_Sale__c",
70
+ "saveRefs": false,
71
+ "resolveRefs": true,
72
+ "files": ["Property_Sale__c.json"]
73
+ },
74
+ {
75
+ "sobject": "Property_Cost__c",
76
+ "saveRefs": false,
77
+ "resolveRefs": true,
78
+ "files": ["Property_Cost__c.json"]
79
+ },
80
+ {
81
+ "sobject": "Payment__c",
82
+ "saveRefs": false,
83
+ "resolveRefs": true,
84
+ "files": ["Payment__c.json"]
85
+ },
86
+ {
87
+ "sobject": "KPI_Snapshot__c",
88
+ "saveRefs": false,
89
+ "resolveRefs": false,
90
+ "files": ["KPI_Snapshot__c.json"]
91
+ },
92
+ {
93
+ "sobject": "Property_Listing__c",
94
+ "saveRefs": true,
95
+ "resolveRefs": true,
96
+ "files": ["Property_Listing__c.json"]
97
+ },
98
+ {
99
+ "sobject": "Property_Image__c",
100
+ "saveRefs": false,
101
+ "resolveRefs": true,
102
+ "files": ["Property_Image__c.json"]
103
+ },
104
+ {
105
+ "sobject": "Property_Feature__c",
106
+ "saveRefs": false,
107
+ "resolveRefs": true,
108
+ "files": ["Property_Feature__c.json"]
49
109
  }
50
110
  ]
@@ -0,0 +1,58 @@
1
+ <?xml version="1.0" encoding="UTF-8" ?>
2
+ <Layout xmlns="http://soap.sforce.com/2006/04/metadata">
3
+ <layoutSections>
4
+ <customLabel>false</customLabel>
5
+ <detailHeading>false</detailHeading>
6
+ <editHeading>true</editHeading>
7
+ <label>Information</label>
8
+ <layoutColumns>
9
+ <layoutItems>
10
+ <behavior>Readonly</behavior>
11
+ <field>Name</field>
12
+ </layoutItems>
13
+ <layoutItems>
14
+ <behavior>Edit</behavior>
15
+ <field>Property__c</field>
16
+ </layoutItems>
17
+ <layoutItems>
18
+ <behavior>Edit</behavior>
19
+ <field>User__c</field>
20
+ </layoutItems>
21
+ <layoutItems>
22
+ <behavior>Edit</behavior>
23
+ <field>Status__c</field>
24
+ </layoutItems>
25
+ <layoutItems>
26
+ <behavior>Edit</behavior>
27
+ <field>Start_Date__c</field>
28
+ </layoutItems>
29
+ <layoutItems>
30
+ <behavior>Edit</behavior>
31
+ <field>Employment__c</field>
32
+ </layoutItems>
33
+ <layoutItems>
34
+ <behavior>Edit</behavior>
35
+ <field>References__c</field>
36
+ </layoutItems>
37
+ </layoutColumns>
38
+ <style>OneColumn</style>
39
+ </layoutSections>
40
+ <platformActionList>
41
+ <actionListContext>Record</actionListContext>
42
+ <platformActionListItems>
43
+ <actionName>Edit</actionName>
44
+ <actionType>StandardButton</actionType>
45
+ <sortOrder>0</sortOrder>
46
+ </platformActionListItems>
47
+ <platformActionListItems>
48
+ <actionName>Delete</actionName>
49
+ <actionType>StandardButton</actionType>
50
+ <sortOrder>1</sortOrder>
51
+ </platformActionListItems>
52
+ </platformActionList>
53
+ <showEmailCheckbox>false</showEmailCheckbox>
54
+ <showHighlightsPanel>false</showHighlightsPanel>
55
+ <showInteractionLogPanel>false</showInteractionLogPanel>
56
+ <showRunAssignmentRulesCheckbox>false</showRunAssignmentRulesCheckbox>
57
+ <showSubmitAndAttachButton>false</showSubmitAndAttachButton>
58
+ </Layout>
@@ -0,0 +1,87 @@
1
+ <?xml version="1.0" encoding="UTF-8" ?>
2
+ <Layout xmlns="http://soap.sforce.com/2006/04/metadata">
3
+ <layoutSections>
4
+ <customLabel>false</customLabel>
5
+ <detailHeading>false</detailHeading>
6
+ <editHeading>true</editHeading>
7
+ <label>Information</label>
8
+ <layoutColumns>
9
+ <layoutItems>
10
+ <behavior>Required</behavior>
11
+ <field>Name</field>
12
+ </layoutItems>
13
+ <layoutItems>
14
+ <behavior>Edit</behavior>
15
+ <field>Snapshot_Date__c</field>
16
+ </layoutItems>
17
+ <layoutItems>
18
+ <behavior>Edit</behavior>
19
+ <field>Total_Properties__c</field>
20
+ </layoutItems>
21
+ <layoutItems>
22
+ <behavior>Edit</behavior>
23
+ <field>Units_Available__c</field>
24
+ </layoutItems>
25
+ <layoutItems>
26
+ <behavior>Edit</behavior>
27
+ <field>Units_Occupied__c</field>
28
+ </layoutItems>
29
+ </layoutColumns>
30
+ <layoutColumns>
31
+ <layoutItems>
32
+ <behavior>Edit</behavior>
33
+ <field>Total_Sales_Count__c</field>
34
+ </layoutItems>
35
+ <layoutItems>
36
+ <behavior>Edit</behavior>
37
+ <field>Total_Sales_Amount__c</field>
38
+ </layoutItems>
39
+ <layoutItems>
40
+ <behavior>Edit</behavior>
41
+ <field>Previous_Month_Sales__c</field>
42
+ </layoutItems>
43
+ <layoutItems>
44
+ <behavior>Readonly</behavior>
45
+ <field>Sales_MoM_Change__c</field>
46
+ </layoutItems>
47
+ </layoutColumns>
48
+ <style>TwoColumnsTopToBottom</style>
49
+ </layoutSections>
50
+ <layoutSections>
51
+ <customLabel>false</customLabel>
52
+ <detailHeading>false</detailHeading>
53
+ <editHeading>true</editHeading>
54
+ <label>System Information</label>
55
+ <layoutColumns>
56
+ <layoutItems>
57
+ <behavior>Readonly</behavior>
58
+ <field>CreatedById</field>
59
+ </layoutItems>
60
+ </layoutColumns>
61
+ <layoutColumns>
62
+ <layoutItems>
63
+ <behavior>Readonly</behavior>
64
+ <field>LastModifiedById</field>
65
+ </layoutItems>
66
+ </layoutColumns>
67
+ <style>TwoColumnsTopToBottom</style>
68
+ </layoutSections>
69
+ <platformActionList>
70
+ <actionListContext>Record</actionListContext>
71
+ <platformActionListItems>
72
+ <actionName>Edit</actionName>
73
+ <actionType>StandardButton</actionType>
74
+ <sortOrder>0</sortOrder>
75
+ </platformActionListItems>
76
+ <platformActionListItems>
77
+ <actionName>Delete</actionName>
78
+ <actionType>StandardButton</actionType>
79
+ <sortOrder>1</sortOrder>
80
+ </platformActionListItems>
81
+ </platformActionList>
82
+ <showEmailCheckbox>false</showEmailCheckbox>
83
+ <showHighlightsPanel>false</showHighlightsPanel>
84
+ <showInteractionLogPanel>false</showInteractionLogPanel>
85
+ <showRunAssignmentRulesCheckbox>false</showRunAssignmentRulesCheckbox>
86
+ <showSubmitAndAttachButton>false</showSubmitAndAttachButton>
87
+ </Layout>
@@ -0,0 +1,83 @@
1
+ <?xml version="1.0" encoding="UTF-8" ?>
2
+ <Layout xmlns="http://soap.sforce.com/2006/04/metadata">
3
+ <layoutSections>
4
+ <customLabel>false</customLabel>
5
+ <detailHeading>false</detailHeading>
6
+ <editHeading>true</editHeading>
7
+ <label>Information</label>
8
+ <layoutColumns>
9
+ <layoutItems>
10
+ <behavior>Readonly</behavior>
11
+ <field>Name</field>
12
+ </layoutItems>
13
+ <layoutItems>
14
+ <behavior>Edit</behavior>
15
+ <field>Property__c</field>
16
+ </layoutItems>
17
+ <layoutItems>
18
+ <behavior>Edit</behavior>
19
+ <field>Tenant__c</field>
20
+ </layoutItems>
21
+ <layoutItems>
22
+ <behavior>Edit</behavior>
23
+ <field>Lease_Status__c</field>
24
+ </layoutItems>
25
+ </layoutColumns>
26
+ <layoutColumns>
27
+ <layoutItems>
28
+ <behavior>Edit</behavior>
29
+ <field>Start_Date__c</field>
30
+ </layoutItems>
31
+ <layoutItems>
32
+ <behavior>Edit</behavior>
33
+ <field>End_Date__c</field>
34
+ </layoutItems>
35
+ <layoutItems>
36
+ <behavior>Edit</behavior>
37
+ <field>Monthly_Rent__c</field>
38
+ </layoutItems>
39
+ <layoutItems>
40
+ <behavior>Edit</behavior>
41
+ <field>Security_Deposit__c</field>
42
+ </layoutItems>
43
+ </layoutColumns>
44
+ <style>TwoColumnsTopToBottom</style>
45
+ </layoutSections>
46
+ <layoutSections>
47
+ <customLabel>false</customLabel>
48
+ <detailHeading>false</detailHeading>
49
+ <editHeading>true</editHeading>
50
+ <label>System Information</label>
51
+ <layoutColumns>
52
+ <layoutItems>
53
+ <behavior>Readonly</behavior>
54
+ <field>CreatedById</field>
55
+ </layoutItems>
56
+ </layoutColumns>
57
+ <layoutColumns>
58
+ <layoutItems>
59
+ <behavior>Readonly</behavior>
60
+ <field>LastModifiedById</field>
61
+ </layoutItems>
62
+ </layoutColumns>
63
+ <style>TwoColumnsTopToBottom</style>
64
+ </layoutSections>
65
+ <platformActionList>
66
+ <actionListContext>Record</actionListContext>
67
+ <platformActionListItems>
68
+ <actionName>Edit</actionName>
69
+ <actionType>StandardButton</actionType>
70
+ <sortOrder>0</sortOrder>
71
+ </platformActionListItems>
72
+ <platformActionListItems>
73
+ <actionName>Delete</actionName>
74
+ <actionType>StandardButton</actionType>
75
+ <sortOrder>1</sortOrder>
76
+ </platformActionListItems>
77
+ </platformActionList>
78
+ <showEmailCheckbox>false</showEmailCheckbox>
79
+ <showHighlightsPanel>false</showHighlightsPanel>
80
+ <showInteractionLogPanel>false</showInteractionLogPanel>
81
+ <showRunAssignmentRulesCheckbox>false</showRunAssignmentRulesCheckbox>
82
+ <showSubmitAndAttachButton>false</showSubmitAndAttachButton>
83
+ </Layout>
@@ -0,0 +1,89 @@
1
+ <?xml version="1.0" encoding="UTF-8" ?>
2
+ <Layout xmlns="http://soap.sforce.com/2006/04/metadata">
3
+ <layoutSections>
4
+ <customLabel>false</customLabel>
5
+ <detailHeading>false</detailHeading>
6
+ <editHeading>true</editHeading>
7
+ <label>Information</label>
8
+ <layoutColumns>
9
+ <layoutItems>
10
+ <behavior>Readonly</behavior>
11
+ <field>Name</field>
12
+ </layoutItems>
13
+ <layoutItems>
14
+ <behavior>Edit</behavior>
15
+ <field>Priority__c</field>
16
+ </layoutItems>
17
+ <layoutItems>
18
+ <behavior>Edit</behavior>
19
+ <field>Status__c</field>
20
+ </layoutItems>
21
+ <layoutItems>
22
+ <behavior>Edit</behavior>
23
+ <field>Type__c</field>
24
+ </layoutItems>
25
+ <layoutItems>
26
+ <behavior>Edit</behavior>
27
+ <field>Property__c</field>
28
+ </layoutItems>
29
+ <layoutItems>
30
+ <behavior>Edit</behavior>
31
+ <field>User__c</field>
32
+ </layoutItems>
33
+ </layoutColumns>
34
+ <layoutColumns>
35
+ <layoutItems>
36
+ <behavior>Edit</behavior>
37
+ <field>Scheduled__c</field>
38
+ </layoutItems>
39
+ <layoutItems>
40
+ <behavior>Edit</behavior>
41
+ <field>Completed__c</field>
42
+ </layoutItems>
43
+ <layoutItems>
44
+ <behavior>Edit</behavior>
45
+ <field>Est_Cost__c</field>
46
+ </layoutItems>
47
+ <layoutItems>
48
+ <behavior>Edit</behavior>
49
+ <field>Actual_Cost__c</field>
50
+ </layoutItems>
51
+ <layoutItems>
52
+ <behavior>Edit</behavior>
53
+ <field>Tenant_Home__c</field>
54
+ </layoutItems>
55
+ </layoutColumns>
56
+ <style>TwoColumnsTopToBottom</style>
57
+ </layoutSections>
58
+ <layoutSections>
59
+ <customLabel>false</customLabel>
60
+ <detailHeading>true</detailHeading>
61
+ <editHeading>true</editHeading>
62
+ <label>Description</label>
63
+ <layoutColumns>
64
+ <layoutItems>
65
+ <behavior>Edit</behavior>
66
+ <field>Description__c</field>
67
+ </layoutItems>
68
+ </layoutColumns>
69
+ <style>OneColumn</style>
70
+ </layoutSections>
71
+ <platformActionList>
72
+ <actionListContext>Record</actionListContext>
73
+ <platformActionListItems>
74
+ <actionName>Edit</actionName>
75
+ <actionType>StandardButton</actionType>
76
+ <sortOrder>0</sortOrder>
77
+ </platformActionListItems>
78
+ <platformActionListItems>
79
+ <actionName>Delete</actionName>
80
+ <actionType>StandardButton</actionType>
81
+ <sortOrder>1</sortOrder>
82
+ </platformActionListItems>
83
+ </platformActionList>
84
+ <showEmailCheckbox>false</showEmailCheckbox>
85
+ <showHighlightsPanel>false</showHighlightsPanel>
86
+ <showInteractionLogPanel>false</showInteractionLogPanel>
87
+ <showRunAssignmentRulesCheckbox>false</showRunAssignmentRulesCheckbox>
88
+ <showSubmitAndAttachButton>false</showSubmitAndAttachButton>
89
+ </Layout>