@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,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Bathrooms__c</fullName>
|
|
4
|
+
<description>Number of bathrooms (e.g., 2.5 baths)</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Bathrooms</label>
|
|
7
|
+
<precision>2</precision>
|
|
8
|
+
<required>false</required>
|
|
9
|
+
<scale>1</scale>
|
|
10
|
+
<trackHistory>false</trackHistory>
|
|
11
|
+
<trackTrending>false</trackTrending>
|
|
12
|
+
<type>Number</type>
|
|
13
|
+
<unique>false</unique>
|
|
14
|
+
</CustomField>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Bedrooms__c</fullName>
|
|
4
|
+
<description>Number of bedrooms (supports half-rooms)</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Bedrooms</label>
|
|
7
|
+
<precision>2</precision>
|
|
8
|
+
<required>false</required>
|
|
9
|
+
<scale>1</scale>
|
|
10
|
+
<trackHistory>false</trackHistory>
|
|
11
|
+
<trackTrending>false</trackTrending>
|
|
12
|
+
<type>Number</type>
|
|
13
|
+
<unique>false</unique>
|
|
14
|
+
</CustomField>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Deposit__c</fullName>
|
|
4
|
+
<description>Security deposit amount</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Security Deposit</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,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>Marketing description of the property</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>
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Features__c</fullName>
|
|
4
|
+
<description>Property features and amenities</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Features</label>
|
|
7
|
+
<required>false</required>
|
|
8
|
+
<trackHistory>false</trackHistory>
|
|
9
|
+
<trackTrending>false</trackTrending>
|
|
10
|
+
<type>MultiselectPicklist</type>
|
|
11
|
+
<valueSet>
|
|
12
|
+
<restricted>false</restricted>
|
|
13
|
+
<valueSetDefinition>
|
|
14
|
+
<sorted>false</sorted>
|
|
15
|
+
<value>
|
|
16
|
+
<fullName>Balcony</fullName>
|
|
17
|
+
<default>false</default>
|
|
18
|
+
<label>Balcony</label>
|
|
19
|
+
</value>
|
|
20
|
+
<value>
|
|
21
|
+
<fullName>In-unit Laundry</fullName>
|
|
22
|
+
<default>false</default>
|
|
23
|
+
<label>In-unit Laundry</label>
|
|
24
|
+
</value>
|
|
25
|
+
<value>
|
|
26
|
+
<fullName>AC</fullName>
|
|
27
|
+
<default>false</default>
|
|
28
|
+
<label>AC</label>
|
|
29
|
+
</value>
|
|
30
|
+
<value>
|
|
31
|
+
<fullName>Hardwood Floors</fullName>
|
|
32
|
+
<default>false</default>
|
|
33
|
+
<label>Hardwood Floors</label>
|
|
34
|
+
</value>
|
|
35
|
+
</valueSetDefinition>
|
|
36
|
+
</valueSet>
|
|
37
|
+
<visibleLines>4</visibleLines>
|
|
38
|
+
</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>Hero_Image__c</fullName>
|
|
4
|
+
<description>Main image URL for listing (stored as URL string)</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Hero Image URL</label>
|
|
7
|
+
<required>false</required>
|
|
8
|
+
<trackHistory>false</trackHistory>
|
|
9
|
+
<trackTrending>false</trackTrending>
|
|
10
|
+
<type>Url</type>
|
|
11
|
+
</CustomField>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Lease_Term__c</fullName>
|
|
4
|
+
<description>Minimum lease length in months (e.g., 12)</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Lease Term (Months)</label>
|
|
7
|
+
<precision>3</precision>
|
|
8
|
+
<required>false</required>
|
|
9
|
+
<scale>0</scale>
|
|
10
|
+
<trackHistory>false</trackHistory>
|
|
11
|
+
<trackTrending>false</trackTrending>
|
|
12
|
+
<type>Number</type>
|
|
13
|
+
<unique>false</unique>
|
|
14
|
+
</CustomField>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Monthly_Rent__c</fullName>
|
|
4
|
+
<description>Monthly rent amount</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Monthly Rent</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,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Parking__c</fullName>
|
|
4
|
+
<description>Number of assigned parking spots</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Parking Spots</label>
|
|
7
|
+
<precision>2</precision>
|
|
8
|
+
<required>false</required>
|
|
9
|
+
<scale>0</scale>
|
|
10
|
+
<trackHistory>false</trackHistory>
|
|
11
|
+
<trackTrending>false</trackTrending>
|
|
12
|
+
<type>Number</type>
|
|
13
|
+
<unique>false</unique>
|
|
14
|
+
</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>Pet_Friendly__c</fullName>
|
|
4
|
+
<defaultValue>false</defaultValue>
|
|
5
|
+
<description>Whether pets are allowed</description>
|
|
6
|
+
<externalId>false</externalId>
|
|
7
|
+
<label>Pet Friendly</label>
|
|
8
|
+
<trackHistory>false</trackHistory>
|
|
9
|
+
<trackTrending>false</trackTrending>
|
|
10
|
+
<type>Checkbox</type>
|
|
11
|
+
</CustomField>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Sq_Ft__c</fullName>
|
|
4
|
+
<description>Total living area in square feet</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Square Footage</label>
|
|
7
|
+
<precision>10</precision>
|
|
8
|
+
<required>false</required>
|
|
9
|
+
<scale>0</scale>
|
|
10
|
+
<trackHistory>false</trackHistory>
|
|
11
|
+
<trackTrending>false</trackTrending>
|
|
12
|
+
<type>Number</type>
|
|
13
|
+
<unique>false</unique>
|
|
14
|
+
</CustomField>
|
|
@@ -0,0 +1,37 @@
|
|
|
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 property</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>Available</fullName>
|
|
17
|
+
<default>true</default>
|
|
18
|
+
<label>Available</label>
|
|
19
|
+
</value>
|
|
20
|
+
<value>
|
|
21
|
+
<fullName>Rented</fullName>
|
|
22
|
+
<default>false</default>
|
|
23
|
+
<label>Rented</label>
|
|
24
|
+
</value>
|
|
25
|
+
<value>
|
|
26
|
+
<fullName>Maintenance</fullName>
|
|
27
|
+
<default>false</default>
|
|
28
|
+
<label>Maintenance</label>
|
|
29
|
+
</value>
|
|
30
|
+
<value>
|
|
31
|
+
<fullName>Under Renovation</fullName>
|
|
32
|
+
<default>false</default>
|
|
33
|
+
<label>Under Renovation</label>
|
|
34
|
+
</value>
|
|
35
|
+
</valueSetDefinition>
|
|
36
|
+
</valueSet>
|
|
37
|
+
</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>Tour_URL__c</fullName>
|
|
4
|
+
<description>Virtual tour link (Matterport, YouTube)</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Virtual Tour URL</label>
|
|
7
|
+
<required>false</required>
|
|
8
|
+
<trackHistory>false</trackHistory>
|
|
9
|
+
<trackTrending>false</trackTrending>
|
|
10
|
+
<type>Url</type>
|
|
11
|
+
</CustomField>
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Type__c</fullName>
|
|
4
|
+
<description>Type of property</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Property Type</label>
|
|
7
|
+
<required>false</required>
|
|
8
|
+
<trackHistory>false</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>Apartment</fullName>
|
|
17
|
+
<default>false</default>
|
|
18
|
+
<label>Apartment</label>
|
|
19
|
+
</value>
|
|
20
|
+
<value>
|
|
21
|
+
<fullName>Single Family</fullName>
|
|
22
|
+
<default>false</default>
|
|
23
|
+
<label>Single Family</label>
|
|
24
|
+
</value>
|
|
25
|
+
<value>
|
|
26
|
+
<fullName>Condo</fullName>
|
|
27
|
+
<default>false</default>
|
|
28
|
+
<label>Condo</label>
|
|
29
|
+
</value>
|
|
30
|
+
<value>
|
|
31
|
+
<fullName>Commercial</fullName>
|
|
32
|
+
<default>false</default>
|
|
33
|
+
<label>Commercial</label>
|
|
34
|
+
</value>
|
|
35
|
+
</valueSetDefinition>
|
|
36
|
+
</valueSet>
|
|
37
|
+
</CustomField>
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Utilities__c</fullName>
|
|
4
|
+
<description>Utilities included in rent</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Utilities Included</label>
|
|
7
|
+
<required>false</required>
|
|
8
|
+
<trackHistory>false</trackHistory>
|
|
9
|
+
<trackTrending>false</trackTrending>
|
|
10
|
+
<type>MultiselectPicklist</type>
|
|
11
|
+
<valueSet>
|
|
12
|
+
<restricted>false</restricted>
|
|
13
|
+
<valueSetDefinition>
|
|
14
|
+
<sorted>false</sorted>
|
|
15
|
+
<value>
|
|
16
|
+
<fullName>Water</fullName>
|
|
17
|
+
<default>false</default>
|
|
18
|
+
<label>Water</label>
|
|
19
|
+
</value>
|
|
20
|
+
<value>
|
|
21
|
+
<fullName>Electricity</fullName>
|
|
22
|
+
<default>false</default>
|
|
23
|
+
<label>Electricity</label>
|
|
24
|
+
</value>
|
|
25
|
+
<value>
|
|
26
|
+
<fullName>Internet</fullName>
|
|
27
|
+
<default>false</default>
|
|
28
|
+
<label>Internet</label>
|
|
29
|
+
</value>
|
|
30
|
+
<value>
|
|
31
|
+
<fullName>Gas</fullName>
|
|
32
|
+
<default>false</default>
|
|
33
|
+
<label>Gas</label>
|
|
34
|
+
</value>
|
|
35
|
+
</valueSetDefinition>
|
|
36
|
+
</valueSet>
|
|
37
|
+
<visibleLines>4</visibleLines>
|
|
38
|
+
</CustomField>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>Year_Built__c</fullName>
|
|
4
|
+
<description>Year the property was built</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Year Built</label>
|
|
7
|
+
<precision>4</precision>
|
|
8
|
+
<required>false</required>
|
|
9
|
+
<scale>0</scale>
|
|
10
|
+
<trackHistory>false</trackHistory>
|
|
11
|
+
<trackTrending>false</trackTrending>
|
|
12
|
+
<type>Number</type>
|
|
13
|
+
<unique>false</unique>
|
|
14
|
+
</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>Tenant lease record linking users to 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>Tenant</label>
|
|
58
|
+
<nameField>
|
|
59
|
+
<displayFormat>TNT-{0000}</displayFormat>
|
|
60
|
+
<label>Tenant Number</label>
|
|
61
|
+
<type>AutoNumber</type>
|
|
62
|
+
</nameField>
|
|
63
|
+
<pluralLabel>Tenants</pluralLabel>
|
|
64
|
+
<searchLayouts/>
|
|
65
|
+
<sharingModel>ReadWrite</sharingModel>
|
|
66
|
+
<visibility>Public</visibility>
|
|
67
|
+
</CustomObject>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
3
|
+
<fullName>End_Date__c</fullName>
|
|
4
|
+
<description>Projected or actual end date (Lease end date)</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Lease End Date</label>
|
|
7
|
+
<required>false</required>
|
|
8
|
+
<trackHistory>false</trackHistory>
|
|
9
|
+
<trackTrending>false</trackTrending>
|
|
10
|
+
<type>Date</type>
|
|
11
|
+
</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>Property the tenant is renting</description>
|
|
6
|
+
<externalId>false</externalId>
|
|
7
|
+
<label>Property</label>
|
|
8
|
+
<referenceTo>Property__c</referenceTo>
|
|
9
|
+
<relationshipLabel>Tenants</relationshipLabel>
|
|
10
|
+
<relationshipName>Tenants</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>Start_Date__c</fullName>
|
|
4
|
+
<description>Legal start of residency (Lease start date)</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Lease Start Date</label>
|
|
7
|
+
<required>false</required>
|
|
8
|
+
<trackHistory>false</trackHistory>
|
|
9
|
+
<trackTrending>false</trackTrending>
|
|
10
|
+
<type>Date</type>
|
|
11
|
+
</CustomField>
|
|
@@ -0,0 +1,37 @@
|
|
|
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>Lease status</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>Lease 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>Active</fullName>
|
|
17
|
+
<default>true</default>
|
|
18
|
+
<label>Active</label>
|
|
19
|
+
</value>
|
|
20
|
+
<value>
|
|
21
|
+
<fullName>Expired</fullName>
|
|
22
|
+
<default>false</default>
|
|
23
|
+
<label>Expired</label>
|
|
24
|
+
</value>
|
|
25
|
+
<value>
|
|
26
|
+
<fullName>Terminated</fullName>
|
|
27
|
+
<default>false</default>
|
|
28
|
+
<label>Terminated</label>
|
|
29
|
+
</value>
|
|
30
|
+
<value>
|
|
31
|
+
<fullName>Eviction Pending</fullName>
|
|
32
|
+
<default>false</default>
|
|
33
|
+
<label>Eviction Pending</label>
|
|
34
|
+
</value>
|
|
35
|
+
</valueSetDefinition>
|
|
36
|
+
</valueSet>
|
|
37
|
+
</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>User_Status__c</fullName>
|
|
4
|
+
<description>User status in the system</description>
|
|
5
|
+
<externalId>false</externalId>
|
|
6
|
+
<label>User Status</label>
|
|
7
|
+
<required>false</required>
|
|
8
|
+
<trackHistory>false</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>Viewer</fullName>
|
|
17
|
+
<default>false</default>
|
|
18
|
+
<label>Viewer</label>
|
|
19
|
+
</value>
|
|
20
|
+
<value>
|
|
21
|
+
<fullName>Applicant</fullName>
|
|
22
|
+
<default>false</default>
|
|
23
|
+
<label>Applicant</label>
|
|
24
|
+
</value>
|
|
25
|
+
<value>
|
|
26
|
+
<fullName>Tenant</fullName>
|
|
27
|
+
<default>true</default>
|
|
28
|
+
<label>Tenant</label>
|
|
29
|
+
</value>
|
|
30
|
+
<value>
|
|
31
|
+
<fullName>FormerTenant</fullName>
|
|
32
|
+
<default>false</default>
|
|
33
|
+
<label>Former Tenant</label>
|
|
34
|
+
</value>
|
|
35
|
+
<value>
|
|
36
|
+
<fullName>Unknown</fullName>
|
|
37
|
+
<default>false</default>
|
|
38
|
+
<label>Unknown</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>Links to the User/Contact record for this tenant</description>
|
|
6
|
+
<externalId>false</externalId>
|
|
7
|
+
<label>User</label>
|
|
8
|
+
<referenceTo>User</referenceTo>
|
|
9
|
+
<relationshipLabel>Tenants</relationshipLabel>
|
|
10
|
+
<relationshipName>Tenants</relationshipName>
|
|
11
|
+
<required>false</required>
|
|
12
|
+
<trackHistory>false</trackHistory>
|
|
13
|
+
<trackTrending>false</trackTrending>
|
|
14
|
+
<type>Lookup</type>
|
|
15
|
+
</CustomField>
|