@salesforce/ui-bundle-template-app-react-sample-b2e 1.117.2
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/README.md +52 -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/AGENT.md +193 -0
- package/dist/CHANGELOG.md +2128 -0
- package/dist/README.md +104 -0
- package/dist/config/project-scratch-def.json +13 -0
- package/dist/eslint.config.js +7 -0
- package/dist/force-app/main/default/classes/MaintenanceRequestTriggerHandler.cls +69 -0
- package/dist/force-app/main/default/classes/MaintenanceRequestTriggerHandler.cls-meta.xml +5 -0
- package/dist/force-app/main/default/classes/MaintenanceRequestTriggerHandler_Test.cls +308 -0
- package/dist/force-app/main/default/classes/MaintenanceRequestTriggerHandler_Test.cls-meta.xml +5 -0
- package/dist/force-app/main/default/classes/TenantTriggerHandler.cls +77 -0
- package/dist/force-app/main/default/classes/TenantTriggerHandler.cls-meta.xml +5 -0
- package/dist/force-app/main/default/classes/TenantTriggerHandler_Test.cls +100 -0
- package/dist/force-app/main/default/classes/TenantTriggerHandler_Test.cls-meta.xml +5 -0
- package/dist/force-app/main/default/cspTrustedSites/GitHub_Avatars.cspTrustedSite-meta.xml +15 -0
- package/dist/force-app/main/default/cspTrustedSites/Google_Fonts.cspTrustedSite-meta.xml +15 -0
- package/dist/force-app/main/default/cspTrustedSites/Google_Fonts_Static.cspTrustedSite-meta.xml +15 -0
- package/dist/force-app/main/default/cspTrustedSites/OpenStreetMap_Nominatim.cspTrustedSite-meta.xml +15 -0
- package/dist/force-app/main/default/cspTrustedSites/OpenStreetMap_Tiles.cspTrustedSite-meta.xml +15 -0
- package/dist/force-app/main/default/cspTrustedSites/Open_Meteo_API.cspTrustedSite-meta.xml +15 -0
- package/dist/force-app/main/default/cspTrustedSites/Pexels_Images.cspTrustedSite-meta.xml +15 -0
- package/dist/force-app/main/default/cspTrustedSites/Pexels_Videos.cspTrustedSite-meta.xml +15 -0
- package/dist/force-app/main/default/cspTrustedSites/Unsplash_Images.cspTrustedSite-meta.xml +15 -0
- package/dist/force-app/main/default/data/Agent__c.json +79 -0
- package/dist/force-app/main/default/data/Application__c.json +124 -0
- package/dist/force-app/main/default/data/Contact.json +44 -0
- package/dist/force-app/main/default/data/KPI_Snapshot__c.json +160 -0
- package/dist/force-app/main/default/data/Lease__c.json +9442 -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/Payment__c.json +1024 -0
- package/dist/force-app/main/default/data/Property_Cost__c.json +484 -0
- package/dist/force-app/main/default/data/Property_Feature__c.json +169 -0
- package/dist/force-app/main/default/data/Property_Image__c.json +148 -0
- package/dist/force-app/main/default/data/Property_Listing__c.json +130 -0
- package/dist/force-app/main/default/data/Property_Management_Company__c.json +70 -0
- package/dist/force-app/main/default/data/Property_Owner__c.json +184 -0
- package/dist/force-app/main/default/data/Property_Sale__c.json +246 -0
- package/dist/force-app/main/default/data/Property__c.json +704 -0
- package/dist/force-app/main/default/data/Tenant__c.json +184 -0
- package/dist/force-app/main/default/data/data-plan.json +110 -0
- package/dist/force-app/main/default/data/prepare-import-unique-fields.js +85 -0
- package/dist/force-app/main/default/layouts/Application__c-Application Layout.layout-meta.xml +58 -0
- package/dist/force-app/main/default/layouts/KPI_Snapshot__c-KPI Snapshot Layout.layout-meta.xml +87 -0
- package/dist/force-app/main/default/layouts/Lease__c-Lease Layout.layout-meta.xml +83 -0
- package/dist/force-app/main/default/layouts/Maintenance_Request__c-Maintenance Request Layout.layout-meta.xml +89 -0
- package/dist/force-app/main/default/layouts/Maintenance_Worker__c-Maintenance Worker Layout.layout-meta.xml +66 -0
- package/dist/force-app/main/default/layouts/Payment__c-Payment Layout.layout-meta.xml +88 -0
- package/dist/force-app/main/default/layouts/Property_Cost__c-Property Cost Layout.layout-meta.xml +88 -0
- package/dist/force-app/main/default/layouts/Property_Feature__c-Property Feature Layout.layout-meta.xml +80 -0
- package/dist/force-app/main/default/layouts/Property_Image__c-Property Image Layout.layout-meta.xml +75 -0
- package/dist/force-app/main/default/layouts/Property_Listing__c-Property Listing Layout.layout-meta.xml +92 -0
- package/dist/force-app/main/default/layouts/Property_Management_Company__c-Property Management Company Layout.layout-meta.xml +75 -0
- package/dist/force-app/main/default/layouts/Property_Owner__c-Property Owner Layout.layout-meta.xml +67 -0
- package/dist/force-app/main/default/layouts/Property_Sale__c-Property Sale Layout.layout-meta.xml +87 -0
- package/dist/force-app/main/default/layouts/Property__c-Property Layout.layout-meta.xml +130 -0
- package/dist/force-app/main/default/layouts/Tenant__c-Tenant Layout.layout-meta.xml +58 -0
- package/dist/force-app/main/default/objects/Agent__c/Agent__c.object-meta.xml +66 -0
- package/dist/force-app/main/default/objects/Agent__c/fields/Agent_Type__c.field-meta.xml +37 -0
- package/dist/force-app/main/default/objects/Agent__c/fields/Availability__c.field-meta.xml +37 -0
- package/dist/force-app/main/default/objects/Agent__c/fields/Emergency_Alt__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Agent__c/fields/Language__c.field-meta.xml +42 -0
- package/dist/force-app/main/default/objects/Agent__c/fields/License_Expiry__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Agent__c/fields/License_Number__c.field-meta.xml +14 -0
- package/dist/force-app/main/default/objects/Agent__c/fields/Office_Location__c.field-meta.xml +42 -0
- package/dist/force-app/main/default/objects/Agent__c/fields/Territory__c.field-meta.xml +42 -0
- package/dist/force-app/main/default/objects/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 +47 -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/KPI_Snapshot__c/KPI_Snapshot__c.object-meta.xml +65 -0
- package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Previous_Month_Sales__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Sales_MoM_Change__c.field-meta.xml +18 -0
- package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Snapshot_Date__c.field-meta.xml +10 -0
- package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Total_Properties__c.field-meta.xml +13 -0
- package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Total_Sales_Amount__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Total_Sales_Count__c.field-meta.xml +13 -0
- package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Units_Available__c.field-meta.xml +13 -0
- package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Units_Occupied__c.field-meta.xml +13 -0
- package/dist/force-app/main/default/objects/Lease__c/Lease__c.object-meta.xml +67 -0
- package/dist/force-app/main/default/objects/Lease__c/fields/End_Date__c.field-meta.xml +10 -0
- package/dist/force-app/main/default/objects/Lease__c/fields/Lease_Status__c.field-meta.xml +36 -0
- package/dist/force-app/main/default/objects/Lease__c/fields/Monthly_Rent__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/Lease__c/fields/Property__c.field-meta.xml +15 -0
- package/dist/force-app/main/default/objects/Lease__c/fields/Security_Deposit__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/Lease__c/fields/Start_Date__c.field-meta.xml +10 -0
- package/dist/force-app/main/default/objects/Lease__c/fields/Tenant__c.field-meta.xml +14 -0
- package/dist/force-app/main/default/objects/Lease__c/validationRules/End_Date_After_Start_Date.validationRule-meta.xml +10 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/Maintenance_Request__c.object-meta.xml +73 -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/Assigned_Worker__c.field-meta.xml +15 -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 +62 -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 +71 -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/Payment__c/Payment__c.object-meta.xml +67 -0
- package/dist/force-app/main/default/objects/Payment__c/fields/Amount__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/Payment__c/fields/Lease__c.field-meta.xml +15 -0
- package/dist/force-app/main/default/objects/Payment__c/fields/Notes__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Payment__c/fields/Payment_Date__c.field-meta.xml +10 -0
- package/dist/force-app/main/default/objects/Payment__c/fields/Payment_Method__c.field-meta.xml +41 -0
- package/dist/force-app/main/default/objects/Payment__c/fields/Payment_Status__c.field-meta.xml +36 -0
- package/dist/force-app/main/default/objects/Property_Cost__c/Property_Cost__c.object-meta.xml +67 -0
- package/dist/force-app/main/default/objects/Property_Cost__c/fields/Cost_Amount__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/Property_Cost__c/fields/Cost_Category__c.field-meta.xml +56 -0
- package/dist/force-app/main/default/objects/Property_Cost__c/fields/Cost_Date__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Property_Cost__c/fields/Description__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/Property_Cost__c/fields/Property__c.field-meta.xml +15 -0
- package/dist/force-app/main/default/objects/Property_Cost__c/fields/Vendor__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/Property_Cost__c/validationRules/Cost_Amount_Limit.validationRule-meta.xml +10 -0
- package/dist/force-app/main/default/objects/Property_Feature__c/Property_Feature__c.object-meta.xml +65 -0
- package/dist/force-app/main/default/objects/Property_Feature__c/fields/Description__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Property_Feature__c/fields/Display_on_Listing__c.field-meta.xml +10 -0
- package/dist/force-app/main/default/objects/Property_Feature__c/fields/Feature_Category__c.field-meta.xml +51 -0
- package/dist/force-app/main/default/objects/Property_Feature__c/fields/Property__c.field-meta.xml +15 -0
- package/dist/force-app/main/default/objects/Property_Image__c/Property_Image__c.object-meta.xml +65 -0
- package/dist/force-app/main/default/objects/Property_Image__c/fields/Alt_Text__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/Property_Image__c/fields/Display_Order__c.field-meta.xml +13 -0
- package/dist/force-app/main/default/objects/Property_Image__c/fields/Image_Type__c.field-meta.xml +41 -0
- package/dist/force-app/main/default/objects/Property_Image__c/fields/Image_URL__c.field-meta.xml +10 -0
- package/dist/force-app/main/default/objects/Property_Image__c/fields/Property__c.field-meta.xml +15 -0
- package/dist/force-app/main/default/objects/Property_Listing__c/Property_Listing__c.object-meta.xml +65 -0
- package/dist/force-app/main/default/objects/Property_Listing__c/fields/Display_Order__c.field-meta.xml +13 -0
- package/dist/force-app/main/default/objects/Property_Listing__c/fields/Featured__c.field-meta.xml +10 -0
- package/dist/force-app/main/default/objects/Property_Listing__c/fields/Listing_Price__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/Property_Listing__c/fields/Listing_Status__c.field-meta.xml +41 -0
- package/dist/force-app/main/default/objects/Property_Listing__c/fields/Marketing_Description__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Property_Listing__c/fields/Property__c.field-meta.xml +15 -0
- package/dist/force-app/main/default/objects/Property_Listing__c/fields/Short_Description__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/Property_Management_Company__c/Property_Management_Company__c.object-meta.xml +65 -0
- package/dist/force-app/main/default/objects/Property_Management_Company__c/fields/Active__c.field-meta.xml +10 -0
- package/dist/force-app/main/default/objects/Property_Management_Company__c/fields/Company_Code__c.field-meta.xml +13 -0
- package/dist/force-app/main/default/objects/Property_Management_Company__c/fields/Email__c.field-meta.xml +10 -0
- package/dist/force-app/main/default/objects/Property_Management_Company__c/fields/Phone__c.field-meta.xml +10 -0
- package/dist/force-app/main/default/objects/Property_Management_Company__c/fields/Primary_Contact__c.field-meta.xml +14 -0
- package/dist/force-app/main/default/objects/Property_Owner__c/Property_Owner__c.object-meta.xml +65 -0
- package/dist/force-app/main/default/objects/Property_Owner__c/fields/Address__c.field-meta.xml +10 -0
- package/dist/force-app/main/default/objects/Property_Owner__c/fields/Email__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Property_Owner__c/fields/Phone__c.field-meta.xml +10 -0
- package/dist/force-app/main/default/objects/Property_Sale__c/Property_Sale__c.object-meta.xml +67 -0
- package/dist/force-app/main/default/objects/Property_Sale__c/fields/Buyer_Tenant__c.field-meta.xml +13 -0
- package/dist/force-app/main/default/objects/Property_Sale__c/fields/Payment_Method__c.field-meta.xml +41 -0
- package/dist/force-app/main/default/objects/Property_Sale__c/fields/Property__c.field-meta.xml +15 -0
- package/dist/force-app/main/default/objects/Property_Sale__c/fields/Reference_Number__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/Property_Sale__c/fields/Sale_Amount__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/Property_Sale__c/fields/Sale_Date__c.field-meta.xml +10 -0
- package/dist/force-app/main/default/objects/Property_Sale__c/fields/Sale_Status__c.field-meta.xml +36 -0
- package/dist/force-app/main/default/objects/Property_Sale__c/fields/Sale_Type__c.field-meta.xml +51 -0
- package/dist/force-app/main/default/objects/Property__c/Property__c.object-meta.xml +71 -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/Coordinates__c.field-meta.xml +12 -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 +633 -0
- package/dist/force-app/main/default/permissionsets/Tenant_Maintenance_Access.permissionset-meta.xml +137 -0
- package/dist/force-app/main/default/triggers/MaintenanceRequestTrigger.trigger +5 -0
- package/dist/force-app/main/default/triggers/MaintenanceRequestTrigger.trigger-meta.xml +5 -0
- package/dist/force-app/main/default/triggers/TenantTrigger.trigger +8 -0
- package/dist/force-app/main/default/triggers/TenantTrigger.trigger-meta.xml +5 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/.forceignore +15 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/.graphqlrc.yml +2 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/.prettierignore +9 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/.prettierrc +11 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/CHANGELOG.md +10 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/README.md +35 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/codegen.yml +95 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/components.json +18 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/e2e/app.spec.ts +17 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/eslint.config.js +169 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/index.html +12 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/package.json +70 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/playwright.config.ts +24 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/propertymanagementapp.uibundle-meta.xml +7 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/scripts/get-graphql-schema.mjs +68 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/scripts/rewrite-e2e-assets.mjs +23 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/applicationSearchService.ts +46 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/applications.ts +122 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/applicationForApproval.graphql +22 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/distinctApplicationStatus.graphql +19 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/existingTenant.graphql +16 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/getApplications.graphql +44 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/searchApplications.graphql +65 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/updateApplicationStatus.graphql +13 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/applications/query/userByContact.graphql +13 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/dashboard/dashboard.ts +108 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/dashboard/query/getDashboardMetrics.graphql +39 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/dashboard/query/getOpenApplications.graphql +36 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/dashboard/query/getUserInfo.graphql +16 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/graphql-operations-types.ts +16420 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/graphqlClient.ts +25 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/maintenanceRequestSearchService.ts +66 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/maintenanceRequests.ts +75 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/query/distinctMaintenanceRequestPriority.graphql +19 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/query/distinctMaintenanceRequestStatus.graphql +19 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/query/distinctMaintenanceRequestType.graphql +19 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/query/getAllMaintenanceRequests.graphql +71 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/query/getMaintenanceRequests.graphql +41 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/query/searchMaintenanceRequests.graphql +82 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceRequests/query/updateMaintenanceStatus.graphql +13 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceWorkers/maintenanceWorkerSearchService.ts +46 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceWorkers/query/distinctMaintenanceWorkerEmploymentType.graphql +19 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/maintenanceWorkers/query/searchMaintenanceWorkers.graphql +64 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/properties/properties.ts +43 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/properties/propertySearchService.ts +56 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/properties/query/distinctPropertyStatus.graphql +19 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/properties/query/distinctPropertyType.graphql +19 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/properties/query/getProperties.graphql +77 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/api/properties/query/searchProperties.graphql +105 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/app.tsx +17 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/appLayout.tsx +32 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/appliances.svg +13 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/book.svg +3 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/copy.svg +4 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/dashboard.svg +4 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/downgraph.svg +3 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/electrical.svg +41 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/files.svg +7 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/hvac.svg +79 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/maintenance-worker.svg +8 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/maintenance.svg +4 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/pest.svg +5 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/plumbing.svg +7 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/properties.svg +14 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/rocket.svg +3 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/star.svg +3 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/support.svg +6 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/upgraph.svg +3 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/users.svg +8 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/icons/zen-logo.svg +5 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/images/codey-1.png +0 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/images/codey-2.png +0 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/images/codey-3.png +0 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/assets/images/vibe-codey.svg +194 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/AgentforceConversationClient.tsx +168 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/alerts/status-alert.tsx +49 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/applications/ApplicationDetailsModal.tsx +142 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/dashboard/GlobalSearchBar.tsx +101 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/dashboard/IssuesDonutChart.tsx +122 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/dashboard/MaintenanceTable.tsx +129 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/dashboard/StatCard.tsx +73 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/layout/FilterRow.tsx +23 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/layout/PageContainer.tsx +13 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/layout/PageHeader.tsx +17 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/layout/TopBar.tsx +55 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/layout/VerticalNav.tsx +75 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/layouts/card-layout.tsx +29 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/maintenanceRequests/MaintenanceDetailsModal.tsx +193 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/maintenanceRequests/MaintenanceRequestCard.tsx +80 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/maintenanceWorkers/WorkerDetailsModal.tsx +66 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/properties/PropertyCard.tsx +61 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/properties/PropertyDetailsModal.tsx +263 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/shared/ObjectSearchErrorState.tsx +45 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/shared/UserAvatar.tsx +35 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/alert.tsx +76 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/badge.tsx +48 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/breadcrumb.tsx +109 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/button.tsx +67 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/calendar.tsx +232 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/card.tsx +103 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/checkbox.tsx +32 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/collapsible.tsx +33 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/datePicker.tsx +127 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/dialog.tsx +162 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/field.tsx +237 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/index.ts +84 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/input.tsx +19 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/label.tsx +22 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/pagination.tsx +132 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/popover.tsx +89 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/select.tsx +193 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/separator.tsx +26 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/skeleton.tsx +14 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/sonner.tsx +20 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/spinner.tsx +16 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/table.tsx +114 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/components/ui/tabs.tsx +88 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/__examples__/api/accountSearchService.ts +46 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/__examples__/api/query/distinctAccountIndustries.graphql +19 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/__examples__/api/query/distinctAccountTypes.graphql +19 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/__examples__/api/query/getAccountDetail.graphql +121 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/__examples__/api/query/searchAccounts.graphql +51 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/__examples__/pages/AccountObjectDetailPage.tsx +357 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/__examples__/pages/AccountSearch.tsx +312 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/__examples__/pages/Home.tsx +34 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/api/objectSearchService.ts +84 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/ActiveFilters.tsx +89 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/FilterContext.tsx +83 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/ObjectBreadcrumb.tsx +66 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/PaginationControls.tsx +109 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/SearchBar.tsx +41 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/SortControl.tsx +143 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/BooleanFilter.tsx +78 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/DateFilter.tsx +128 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/DateRangeFilter.tsx +70 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/FilterFieldWrapper.tsx +33 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/MultiSelectFilter.tsx +97 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/NumericRangeFilter.tsx +163 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/SearchFilter.tsx +50 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/SelectFilter.tsx +97 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/components/filters/TextFilter.tsx +91 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/hooks/useAsyncData.ts +54 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/hooks/useCachedAsyncData.ts +184 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/hooks/useDebouncedCallback.ts +34 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/hooks/useObjectSearchParams.ts +252 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/utils/debounce.ts +25 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/utils/fieldUtils.ts +29 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/utils/filterUtils.ts +395 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/features/object-search/utils/sortUtils.ts +38 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/index.ts +6 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/lib/constants.ts +60 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/lib/routeConfig.ts +35 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/lib/utils.ts +6 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/navigationMenu.tsx +80 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/pages/ApplicationSearch.tsx +373 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/pages/Home.tsx +183 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/pages/MaintenanceRequestSearch.tsx +465 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/pages/MaintenanceWorkerSearch.tsx +324 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/pages/NotFound.tsx +18 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/pages/PropertySearch.tsx +258 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/pages/TestAccPage.tsx +19 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/router-utils.tsx +35 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/routes.tsx +63 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/styles/global.css +173 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/src/types/conversation.ts +33 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/tsconfig.json +42 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/tsconfig.node.json +13 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/ui-bundle.json +7 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/vite-env.d.ts +1 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/vite.config.ts +106 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/vitest-env.d.ts +2 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/vitest.config.ts +11 -0
- package/dist/force-app/main/default/uiBundles/propertymanagementapp/vitest.setup.ts +1 -0
- package/dist/jest.config.js +6 -0
- package/dist/package-lock.json +9995 -0
- package/dist/package.json +40 -0
- package/dist/scripts/apex/hello.apex +10 -0
- package/dist/scripts/graphql-search.sh +191 -0
- package/dist/scripts/prepare-import-unique-fields.js +122 -0
- package/dist/scripts/setup-cli.mjs +563 -0
- package/dist/scripts/sf-project-setup.mjs +66 -0
- package/dist/scripts/soql/account.soql +6 -0
- package/dist/sfdx-project.json +12 -0
- package/package.json +51 -0
|
@@ -0,0 +1,484 @@
|
|
|
1
|
+
{
|
|
2
|
+
"records": [
|
|
3
|
+
{
|
|
4
|
+
"attributes": {
|
|
5
|
+
"type": "Property_Cost__c",
|
|
6
|
+
"referenceId": "PropertyCostRef1"
|
|
7
|
+
},
|
|
8
|
+
"Property__c": "@PropertyRef1",
|
|
9
|
+
"Cost_Category__c": "Maintenance",
|
|
10
|
+
"Cost_Amount__c": 150.0,
|
|
11
|
+
"Cost_Date__c": "2024-09-03",
|
|
12
|
+
"Description__c": "Kitchen faucet leak repair",
|
|
13
|
+
"Vendor__c": "Bay Area Plumbing Services"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"attributes": {
|
|
17
|
+
"type": "Property_Cost__c",
|
|
18
|
+
"referenceId": "PropertyCostRef2"
|
|
19
|
+
},
|
|
20
|
+
"Property__c": "@PropertyRef1",
|
|
21
|
+
"Cost_Category__c": "Utilities",
|
|
22
|
+
"Cost_Amount__c": 285.5,
|
|
23
|
+
"Cost_Date__c": "2024-09-01",
|
|
24
|
+
"Description__c": "Monthly water and sewer service",
|
|
25
|
+
"Vendor__c": "San Francisco Water Department"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"attributes": {
|
|
29
|
+
"type": "Property_Cost__c",
|
|
30
|
+
"referenceId": "PropertyCostRef3"
|
|
31
|
+
},
|
|
32
|
+
"Property__c": "@PropertyRef1",
|
|
33
|
+
"Cost_Category__c": "Insurance",
|
|
34
|
+
"Cost_Amount__c": 1250.0,
|
|
35
|
+
"Cost_Date__c": "2024-09-01",
|
|
36
|
+
"Description__c": "Monthly property insurance premium",
|
|
37
|
+
"Vendor__c": "State Farm Insurance"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"attributes": {
|
|
41
|
+
"type": "Property_Cost__c",
|
|
42
|
+
"referenceId": "PropertyCostRef4"
|
|
43
|
+
},
|
|
44
|
+
"Property__c": "@PropertyRef2",
|
|
45
|
+
"Cost_Category__c": "Maintenance",
|
|
46
|
+
"Cost_Amount__c": 200.0,
|
|
47
|
+
"Cost_Date__c": "2024-09-06",
|
|
48
|
+
"Description__c": "Bedroom electrical outlet repair",
|
|
49
|
+
"Vendor__c": "Golden Gate Electric"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"attributes": {
|
|
53
|
+
"type": "Property_Cost__c",
|
|
54
|
+
"referenceId": "PropertyCostRef5"
|
|
55
|
+
},
|
|
56
|
+
"Property__c": "@PropertyRef2",
|
|
57
|
+
"Cost_Category__c": "Utilities",
|
|
58
|
+
"Cost_Amount__c": 145.75,
|
|
59
|
+
"Cost_Date__c": "2024-09-01",
|
|
60
|
+
"Description__c": "Monthly gas and electric service",
|
|
61
|
+
"Vendor__c": "PG&E"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"attributes": {
|
|
65
|
+
"type": "Property_Cost__c",
|
|
66
|
+
"referenceId": "PropertyCostRef6"
|
|
67
|
+
},
|
|
68
|
+
"Property__c": "@PropertyRef3",
|
|
69
|
+
"Cost_Category__c": "Maintenance",
|
|
70
|
+
"Cost_Amount__c": 300.0,
|
|
71
|
+
"Cost_Date__c": "2024-09-10",
|
|
72
|
+
"Description__c": "AC unit noise diagnosis and parts",
|
|
73
|
+
"Vendor__c": "LA HVAC Specialists"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"attributes": {
|
|
77
|
+
"type": "Property_Cost__c",
|
|
78
|
+
"referenceId": "PropertyCostRef7"
|
|
79
|
+
},
|
|
80
|
+
"Property__c": "@PropertyRef4",
|
|
81
|
+
"Cost_Category__c": "Maintenance",
|
|
82
|
+
"Cost_Amount__c": 500.0,
|
|
83
|
+
"Cost_Date__c": "2024-09-08",
|
|
84
|
+
"Description__c": "Pre-lease general inspection and cleaning",
|
|
85
|
+
"Vendor__c": "Property Prep Services"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"attributes": {
|
|
89
|
+
"type": "Property_Cost__c",
|
|
90
|
+
"referenceId": "PropertyCostRef8"
|
|
91
|
+
},
|
|
92
|
+
"Property__c": "@PropertyRef5",
|
|
93
|
+
"Cost_Category__c": "Taxes",
|
|
94
|
+
"Cost_Amount__c": 2800.0,
|
|
95
|
+
"Cost_Date__c": "2024-09-01",
|
|
96
|
+
"Description__c": "Quarterly property tax payment",
|
|
97
|
+
"Vendor__c": "Fulton County Tax Assessor"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"attributes": {
|
|
101
|
+
"type": "Property_Cost__c",
|
|
102
|
+
"referenceId": "PropertyCostRef9"
|
|
103
|
+
},
|
|
104
|
+
"Property__c": "@PropertyRef6",
|
|
105
|
+
"Cost_Category__c": "Maintenance",
|
|
106
|
+
"Cost_Amount__c": 75.0,
|
|
107
|
+
"Cost_Date__c": "2024-08-30",
|
|
108
|
+
"Description__c": "Closet door track repair",
|
|
109
|
+
"Vendor__c": "West Hollywood Handyman"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"attributes": {
|
|
113
|
+
"type": "Property_Cost__c",
|
|
114
|
+
"referenceId": "PropertyCostRef10"
|
|
115
|
+
},
|
|
116
|
+
"Property__c": "@PropertyRef7",
|
|
117
|
+
"Cost_Category__c": "Maintenance",
|
|
118
|
+
"Cost_Amount__c": 400.0,
|
|
119
|
+
"Cost_Date__c": "2024-09-15",
|
|
120
|
+
"Description__c": "Exterior painting materials and supplies",
|
|
121
|
+
"Vendor__c": "Santa Monica Paint Supply"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"attributes": {
|
|
125
|
+
"type": "Property_Cost__c",
|
|
126
|
+
"referenceId": "PropertyCostRef11"
|
|
127
|
+
},
|
|
128
|
+
"Property__c": "@PropertyRef7",
|
|
129
|
+
"Cost_Category__c": "Other",
|
|
130
|
+
"Cost_Amount__c": 850.0,
|
|
131
|
+
"Cost_Date__c": "2024-09-01",
|
|
132
|
+
"Description__c": "Monthly HOA dues and amenities",
|
|
133
|
+
"Vendor__c": "Oceanview HOA Management"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"attributes": {
|
|
137
|
+
"type": "Property_Cost__c",
|
|
138
|
+
"referenceId": "PropertyCostRef12"
|
|
139
|
+
},
|
|
140
|
+
"Property__c": "@PropertyRef8",
|
|
141
|
+
"Cost_Category__c": "Maintenance",
|
|
142
|
+
"Cost_Amount__c": 250.0,
|
|
143
|
+
"Cost_Date__c": "2024-09-07",
|
|
144
|
+
"Description__c": "Garden irrigation system repair",
|
|
145
|
+
"Vendor__c": "Palo Alto Irrigation Solutions"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"attributes": {
|
|
149
|
+
"type": "Property_Cost__c",
|
|
150
|
+
"referenceId": "PropertyCostRef13"
|
|
151
|
+
},
|
|
152
|
+
"Property__c": "@PropertyRef9",
|
|
153
|
+
"Cost_Category__c": "Maintenance",
|
|
154
|
+
"Cost_Amount__c": 350.0,
|
|
155
|
+
"Cost_Date__c": "2024-09-11",
|
|
156
|
+
"Description__c": "Hardwood floor refinishing estimate",
|
|
157
|
+
"Vendor__c": "Telegraph Hill Flooring"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"attributes": {
|
|
161
|
+
"type": "Property_Cost__c",
|
|
162
|
+
"referenceId": "PropertyCostRef14"
|
|
163
|
+
},
|
|
164
|
+
"Property__c": "@PropertyRef10",
|
|
165
|
+
"Cost_Category__c": "Maintenance",
|
|
166
|
+
"Cost_Amount__c": 450.0,
|
|
167
|
+
"Cost_Date__c": "2024-08-27",
|
|
168
|
+
"Description__c": "Post-tenant deep cleaning service",
|
|
169
|
+
"Vendor__c": "Marina District Cleaning Co"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"attributes": {
|
|
173
|
+
"type": "Property_Cost__c",
|
|
174
|
+
"referenceId": "PropertyCostRef15"
|
|
175
|
+
},
|
|
176
|
+
"Property__c": "@PropertyRef11",
|
|
177
|
+
"Cost_Category__c": "Maintenance",
|
|
178
|
+
"Cost_Amount__c": 800.0,
|
|
179
|
+
"Cost_Date__c": "2024-09-14",
|
|
180
|
+
"Description__c": "Roof inspection and tile securing",
|
|
181
|
+
"Vendor__c": "Beverly Hills Roofing Company"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"attributes": {
|
|
185
|
+
"type": "Property_Cost__c",
|
|
186
|
+
"referenceId": "PropertyCostRef16"
|
|
187
|
+
},
|
|
188
|
+
"Property__c": "@PropertyRef11",
|
|
189
|
+
"Cost_Category__c": "Taxes",
|
|
190
|
+
"Cost_Amount__c": 15000.0,
|
|
191
|
+
"Cost_Date__c": "2024-09-01",
|
|
192
|
+
"Description__c": "Quarterly property tax - luxury property",
|
|
193
|
+
"Vendor__c": "Los Angeles County Assessor"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"attributes": {
|
|
197
|
+
"type": "Property_Cost__c",
|
|
198
|
+
"referenceId": "PropertyCostRef17"
|
|
199
|
+
},
|
|
200
|
+
"Property__c": "@PropertyRef12",
|
|
201
|
+
"Cost_Category__c": "Maintenance",
|
|
202
|
+
"Cost_Amount__c": 600.0,
|
|
203
|
+
"Cost_Date__c": "2024-09-09",
|
|
204
|
+
"Description__c": "Security system upgrade and maintenance",
|
|
205
|
+
"Vendor__c": "Downtown Security Solutions"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"attributes": {
|
|
209
|
+
"type": "Property_Cost__c",
|
|
210
|
+
"referenceId": "PropertyCostRef18"
|
|
211
|
+
},
|
|
212
|
+
"Property__c": "@PropertyRef12",
|
|
213
|
+
"Cost_Category__c": "Utilities",
|
|
214
|
+
"Cost_Amount__c": 750.0,
|
|
215
|
+
"Cost_Date__c": "2024-09-01",
|
|
216
|
+
"Description__c": "Monthly commercial building utilities",
|
|
217
|
+
"Vendor__c": "PG&E Commercial Services"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"attributes": {
|
|
221
|
+
"type": "Property_Cost__c",
|
|
222
|
+
"referenceId": "PropertyCostRef19"
|
|
223
|
+
},
|
|
224
|
+
"Property__c": "@PropertyRef13",
|
|
225
|
+
"Cost_Category__c": "Maintenance",
|
|
226
|
+
"Cost_Amount__c": 120.0,
|
|
227
|
+
"Cost_Date__c": "2024-09-04",
|
|
228
|
+
"Description__c": "Front door lock replacement",
|
|
229
|
+
"Vendor__c": "Napa Valley Locksmith"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"attributes": {
|
|
233
|
+
"type": "Property_Cost__c",
|
|
234
|
+
"referenceId": "PropertyCostRef20"
|
|
235
|
+
},
|
|
236
|
+
"Property__c": "@PropertyRef14",
|
|
237
|
+
"Cost_Category__c": "Maintenance",
|
|
238
|
+
"Cost_Amount__c": 280.0,
|
|
239
|
+
"Cost_Date__c": "2024-09-13",
|
|
240
|
+
"Description__c": "Bathroom tile replacement materials",
|
|
241
|
+
"Vendor__c": "Mountain View Tile Supply"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"attributes": {
|
|
245
|
+
"type": "Property_Cost__c",
|
|
246
|
+
"referenceId": "PropertyCostRef21"
|
|
247
|
+
},
|
|
248
|
+
"Property__c": "@PropertyRef15",
|
|
249
|
+
"Cost_Category__c": "Maintenance",
|
|
250
|
+
"Cost_Amount__c": 90.0,
|
|
251
|
+
"Cost_Date__c": "2024-08-22",
|
|
252
|
+
"Description__c": "Window screen replacement",
|
|
253
|
+
"Vendor__c": "Oakland Window Repair"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"attributes": {
|
|
257
|
+
"type": "Property_Cost__c",
|
|
258
|
+
"referenceId": "PropertyCostRef22"
|
|
259
|
+
},
|
|
260
|
+
"Property__c": "@PropertyRef16",
|
|
261
|
+
"Cost_Category__c": "Maintenance",
|
|
262
|
+
"Cost_Amount__c": 200.0,
|
|
263
|
+
"Cost_Date__c": "2024-08-16",
|
|
264
|
+
"Description__c": "Quarterly pest control treatment",
|
|
265
|
+
"Vendor__c": "Bay Area Pest Solutions"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"attributes": {
|
|
269
|
+
"type": "Property_Cost__c",
|
|
270
|
+
"referenceId": "PropertyCostRef23"
|
|
271
|
+
},
|
|
272
|
+
"Property__c": "@PropertyRef16",
|
|
273
|
+
"Cost_Category__c": "Other",
|
|
274
|
+
"Cost_Amount__c": 1200.0,
|
|
275
|
+
"Cost_Date__c": "2024-09-01",
|
|
276
|
+
"Description__c": "Luxury high-rise monthly HOA fees",
|
|
277
|
+
"Vendor__c": "SOMA Luxury Living HOA"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"attributes": {
|
|
281
|
+
"type": "Property_Cost__c",
|
|
282
|
+
"referenceId": "PropertyCostRef24"
|
|
283
|
+
},
|
|
284
|
+
"Property__c": "@PropertyRef17",
|
|
285
|
+
"Cost_Category__c": "Maintenance",
|
|
286
|
+
"Cost_Amount__c": 300.0,
|
|
287
|
+
"Cost_Date__c": "2024-09-01",
|
|
288
|
+
"Description__c": "Monthly elevator maintenance contract",
|
|
289
|
+
"Vendor__c": "Redwood City Elevator Services"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"attributes": {
|
|
293
|
+
"type": "Property_Cost__c",
|
|
294
|
+
"referenceId": "PropertyCostRef25"
|
|
295
|
+
},
|
|
296
|
+
"Property__c": "@PropertyRef18",
|
|
297
|
+
"Cost_Category__c": "Maintenance",
|
|
298
|
+
"Cost_Amount__c": 100.0,
|
|
299
|
+
"Cost_Date__c": "2024-09-16",
|
|
300
|
+
"Description__c": "Weekly pool maintenance and chemicals",
|
|
301
|
+
"Vendor__c": "Mission Bay Pool Services"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"attributes": {
|
|
305
|
+
"type": "Property_Cost__c",
|
|
306
|
+
"referenceId": "PropertyCostRef26"
|
|
307
|
+
},
|
|
308
|
+
"Property__c": "@PropertyRef19",
|
|
309
|
+
"Cost_Category__c": "Insurance",
|
|
310
|
+
"Cost_Amount__c": 2100.0,
|
|
311
|
+
"Cost_Date__c": "2024-09-01",
|
|
312
|
+
"Description__c": "Monthly luxury condo insurance premium",
|
|
313
|
+
"Vendor__c": "Allstate Premium Coverage"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"attributes": {
|
|
317
|
+
"type": "Property_Cost__c",
|
|
318
|
+
"referenceId": "PropertyCostRef27"
|
|
319
|
+
},
|
|
320
|
+
"Property__c": "@PropertyRef20",
|
|
321
|
+
"Cost_Category__c": "Repair",
|
|
322
|
+
"Cost_Amount__c": 25000.0,
|
|
323
|
+
"Cost_Date__c": "2024-09-01",
|
|
324
|
+
"Description__c": "Victorian restoration project - Phase 1",
|
|
325
|
+
"Vendor__c": "Historic Home Restoration SF"
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"attributes": {
|
|
329
|
+
"type": "Property_Cost__c",
|
|
330
|
+
"referenceId": "PropertyCostRef28"
|
|
331
|
+
},
|
|
332
|
+
"Property__c": "@PropertyRef21",
|
|
333
|
+
"Cost_Category__c": "Utilities",
|
|
334
|
+
"Cost_Amount__c": 185.0,
|
|
335
|
+
"Cost_Date__c": "2024-09-01",
|
|
336
|
+
"Description__c": "Monthly utilities - bay view apartment",
|
|
337
|
+
"Vendor__c": "SF Department of Public Utilities"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"attributes": {
|
|
341
|
+
"type": "Property_Cost__c",
|
|
342
|
+
"referenceId": "PropertyCostRef29"
|
|
343
|
+
},
|
|
344
|
+
"Property__c": "@PropertyRef22",
|
|
345
|
+
"Cost_Category__c": "Taxes",
|
|
346
|
+
"Cost_Amount__c": 1850.0,
|
|
347
|
+
"Cost_Date__c": "2024-09-01",
|
|
348
|
+
"Description__c": "Quarterly property tax - Berkeley townhouse",
|
|
349
|
+
"Vendor__c": "Alameda County Tax Collector"
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"attributes": {
|
|
353
|
+
"type": "Property_Cost__c",
|
|
354
|
+
"referenceId": "PropertyCostRef30"
|
|
355
|
+
},
|
|
356
|
+
"Property__c": "@PropertyRef23",
|
|
357
|
+
"Cost_Category__c": "Utilities",
|
|
358
|
+
"Cost_Amount__c": 1200.0,
|
|
359
|
+
"Cost_Date__c": "2024-09-01",
|
|
360
|
+
"Description__c": "Monthly utilities - large office space",
|
|
361
|
+
"Vendor__c": "PG&E Commercial Division"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"attributes": {
|
|
365
|
+
"type": "Property_Cost__c",
|
|
366
|
+
"referenceId": "PropertyCostRef31"
|
|
367
|
+
},
|
|
368
|
+
"Property__c": "@PropertyRef23",
|
|
369
|
+
"Cost_Category__c": "Maintenance",
|
|
370
|
+
"Cost_Amount__c": 80.0,
|
|
371
|
+
"Cost_Date__c": "2024-09-02",
|
|
372
|
+
"Description__c": "Monthly HVAC filter replacement",
|
|
373
|
+
"Vendor__c": "SOMA Office Maintenance"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"attributes": {
|
|
377
|
+
"type": "Property_Cost__c",
|
|
378
|
+
"referenceId": "PropertyCostRef32"
|
|
379
|
+
},
|
|
380
|
+
"Property__c": "@PropertyRef24",
|
|
381
|
+
"Cost_Category__c": "Maintenance",
|
|
382
|
+
"Cost_Amount__c": 180.0,
|
|
383
|
+
"Cost_Date__c": "2024-09-17",
|
|
384
|
+
"Description__c": "Annual gutter cleaning service",
|
|
385
|
+
"Vendor__c": "Sunset District Home Care"
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"attributes": {
|
|
389
|
+
"type": "Property_Cost__c",
|
|
390
|
+
"referenceId": "PropertyCostRef33"
|
|
391
|
+
},
|
|
392
|
+
"Property__c": "@PropertyRef25",
|
|
393
|
+
"Cost_Category__c": "Maintenance",
|
|
394
|
+
"Cost_Amount__c": 200.0,
|
|
395
|
+
"Cost_Date__c": "2024-09-15",
|
|
396
|
+
"Description__c": "Washer/dryer installation and setup",
|
|
397
|
+
"Vendor__c": "Mission Bay Appliance Install"
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"attributes": {
|
|
401
|
+
"type": "Property_Cost__c",
|
|
402
|
+
"referenceId": "PropertyCostRef34"
|
|
403
|
+
},
|
|
404
|
+
"Property__c": "@PropertyRef1",
|
|
405
|
+
"Cost_Category__c": "Utilities",
|
|
406
|
+
"Cost_Amount__c": 295.75,
|
|
407
|
+
"Cost_Date__c": "2024-08-01",
|
|
408
|
+
"Description__c": "Previous month water and sewer",
|
|
409
|
+
"Vendor__c": "San Francisco Water Department"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"attributes": {
|
|
413
|
+
"type": "Property_Cost__c",
|
|
414
|
+
"referenceId": "PropertyCostRef35"
|
|
415
|
+
},
|
|
416
|
+
"Property__c": "@PropertyRef2",
|
|
417
|
+
"Cost_Category__c": "Utilities",
|
|
418
|
+
"Cost_Amount__c": 155.25,
|
|
419
|
+
"Cost_Date__c": "2024-08-01",
|
|
420
|
+
"Description__c": "Previous month gas and electric",
|
|
421
|
+
"Vendor__c": "PG&E"
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"attributes": {
|
|
425
|
+
"type": "Property_Cost__c",
|
|
426
|
+
"referenceId": "PropertyCostRef36"
|
|
427
|
+
},
|
|
428
|
+
"Property__c": "@PropertyRef5",
|
|
429
|
+
"Cost_Category__c": "Taxes",
|
|
430
|
+
"Cost_Amount__c": 2750.0,
|
|
431
|
+
"Cost_Date__c": "2024-06-01",
|
|
432
|
+
"Description__c": "Q2 property tax payment",
|
|
433
|
+
"Vendor__c": "Fulton County Tax Assessor"
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"attributes": {
|
|
437
|
+
"type": "Property_Cost__c",
|
|
438
|
+
"referenceId": "PropertyCostRef37"
|
|
439
|
+
},
|
|
440
|
+
"Property__c": "@PropertyRef11",
|
|
441
|
+
"Cost_Category__c": "Insurance",
|
|
442
|
+
"Cost_Amount__c": 3500.0,
|
|
443
|
+
"Cost_Date__c": "2024-09-01",
|
|
444
|
+
"Description__c": "Monthly luxury property insurance",
|
|
445
|
+
"Vendor__c": "Chubb Premium Insurance"
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"attributes": {
|
|
449
|
+
"type": "Property_Cost__c",
|
|
450
|
+
"referenceId": "PropertyCostRef38"
|
|
451
|
+
},
|
|
452
|
+
"Property__c": "@PropertyRef12",
|
|
453
|
+
"Cost_Category__c": "Taxes",
|
|
454
|
+
"Cost_Amount__c": 8500.0,
|
|
455
|
+
"Cost_Date__c": "2024-09-01",
|
|
456
|
+
"Description__c": "Quarterly commercial property tax",
|
|
457
|
+
"Vendor__c": "San Francisco Tax Collector"
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"attributes": {
|
|
461
|
+
"type": "Property_Cost__c",
|
|
462
|
+
"referenceId": "PropertyCostRef39"
|
|
463
|
+
},
|
|
464
|
+
"Property__c": "@PropertyRef16",
|
|
465
|
+
"Cost_Category__c": "Insurance",
|
|
466
|
+
"Cost_Amount__c": 2800.0,
|
|
467
|
+
"Cost_Date__c": "2024-09-01",
|
|
468
|
+
"Description__c": "Monthly high-rise condo insurance",
|
|
469
|
+
"Vendor__c": "Travelers Elite Coverage"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"attributes": {
|
|
473
|
+
"type": "Property_Cost__c",
|
|
474
|
+
"referenceId": "PropertyCostRef40"
|
|
475
|
+
},
|
|
476
|
+
"Property__c": "@PropertyRef23",
|
|
477
|
+
"Cost_Category__c": "Taxes",
|
|
478
|
+
"Cost_Amount__c": 12000.0,
|
|
479
|
+
"Cost_Date__c": "2024-09-01",
|
|
480
|
+
"Description__c": "Quarterly commercial office tax",
|
|
481
|
+
"Vendor__c": "San Francisco Commercial Assessment"
|
|
482
|
+
}
|
|
483
|
+
]
|
|
484
|
+
}
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
{
|
|
2
|
+
"records": [
|
|
3
|
+
{
|
|
4
|
+
"attributes": {
|
|
5
|
+
"type": "Property_Feature__c",
|
|
6
|
+
"referenceId": "FeatureRef1"
|
|
7
|
+
},
|
|
8
|
+
"Name": "Feature-001",
|
|
9
|
+
"Property__c": "@PropertyRef1",
|
|
10
|
+
"Feature_Category__c": "Amenities",
|
|
11
|
+
"Description__c": "In-unit washer and dryer",
|
|
12
|
+
"Display_on_Listing__c": true
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"attributes": {
|
|
16
|
+
"type": "Property_Feature__c",
|
|
17
|
+
"referenceId": "FeatureRef2"
|
|
18
|
+
},
|
|
19
|
+
"Name": "Feature-002",
|
|
20
|
+
"Property__c": "@PropertyRef1",
|
|
21
|
+
"Feature_Category__c": "Safety and Security",
|
|
22
|
+
"Description__c": "24/7 security system",
|
|
23
|
+
"Display_on_Listing__c": true
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"attributes": {
|
|
27
|
+
"type": "Property_Feature__c",
|
|
28
|
+
"referenceId": "FeatureRef3"
|
|
29
|
+
},
|
|
30
|
+
"Name": "Feature-003",
|
|
31
|
+
"Property__c": "@PropertyRef2",
|
|
32
|
+
"Feature_Category__c": "Location",
|
|
33
|
+
"Description__c": "Panoramic ocean views",
|
|
34
|
+
"Display_on_Listing__c": true
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"attributes": {
|
|
38
|
+
"type": "Property_Feature__c",
|
|
39
|
+
"referenceId": "FeatureRef4"
|
|
40
|
+
},
|
|
41
|
+
"Name": "Feature-004",
|
|
42
|
+
"Property__c": "@PropertyRef4",
|
|
43
|
+
"Feature_Category__c": "Amenities",
|
|
44
|
+
"Description__c": "Infinity pool with city views",
|
|
45
|
+
"Display_on_Listing__c": true
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"attributes": {
|
|
49
|
+
"type": "Property_Feature__c",
|
|
50
|
+
"referenceId": "FeatureRef5"
|
|
51
|
+
},
|
|
52
|
+
"Name": "Feature-005",
|
|
53
|
+
"Property__c": "@PropertyRef4",
|
|
54
|
+
"Feature_Category__c": "Exterior",
|
|
55
|
+
"Description__c": "3-car garage with electric charging",
|
|
56
|
+
"Display_on_Listing__c": false
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"attributes": {
|
|
60
|
+
"type": "Property_Feature__c",
|
|
61
|
+
"referenceId": "FeatureRef6"
|
|
62
|
+
},
|
|
63
|
+
"Name": "Feature-006",
|
|
64
|
+
"Property__c": "@PropertyRef1",
|
|
65
|
+
"Feature_Category__c": "Appliances",
|
|
66
|
+
"Description__c": "Granite countertops with waterfall edge",
|
|
67
|
+
"Display_on_Listing__c": true
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"attributes": {
|
|
71
|
+
"type": "Property_Feature__c",
|
|
72
|
+
"referenceId": "FeatureRef7"
|
|
73
|
+
},
|
|
74
|
+
"Name": "Feature-007",
|
|
75
|
+
"Property__c": "@PropertyRef1",
|
|
76
|
+
"Feature_Category__c": "Appliances",
|
|
77
|
+
"Description__c": "Stainless steel appliances including double oven",
|
|
78
|
+
"Display_on_Listing__c": true
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"attributes": {
|
|
82
|
+
"type": "Property_Feature__c",
|
|
83
|
+
"referenceId": "FeatureRef8"
|
|
84
|
+
},
|
|
85
|
+
"Name": "Feature-008",
|
|
86
|
+
"Property__c": "@PropertyRef2",
|
|
87
|
+
"Feature_Category__c": "Interior",
|
|
88
|
+
"Description__c": "Exposed brick accent walls",
|
|
89
|
+
"Display_on_Listing__c": true
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"attributes": {
|
|
93
|
+
"type": "Property_Feature__c",
|
|
94
|
+
"referenceId": "FeatureRef9"
|
|
95
|
+
},
|
|
96
|
+
"Name": "Feature-009",
|
|
97
|
+
"Property__c": "@PropertyRef2",
|
|
98
|
+
"Feature_Category__c": "Amenities",
|
|
99
|
+
"Description__c": "Smart home automation system",
|
|
100
|
+
"Display_on_Listing__c": true
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"attributes": {
|
|
104
|
+
"type": "Property_Feature__c",
|
|
105
|
+
"referenceId": "FeatureRef10"
|
|
106
|
+
},
|
|
107
|
+
"Name": "Feature-010",
|
|
108
|
+
"Property__c": "@PropertyRef7",
|
|
109
|
+
"Feature_Category__c": "Exterior",
|
|
110
|
+
"Description__c": "Direct beach access with private pathway",
|
|
111
|
+
"Display_on_Listing__c": true
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"attributes": {
|
|
115
|
+
"type": "Property_Feature__c",
|
|
116
|
+
"referenceId": "FeatureRef11"
|
|
117
|
+
},
|
|
118
|
+
"Name": "Feature-011",
|
|
119
|
+
"Property__c": "@PropertyRef7",
|
|
120
|
+
"Feature_Category__c": "Amenities",
|
|
121
|
+
"Description__c": "Infinity pool overlooking the ocean",
|
|
122
|
+
"Display_on_Listing__c": true
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"attributes": {
|
|
126
|
+
"type": "Property_Feature__c",
|
|
127
|
+
"referenceId": "FeatureRef12"
|
|
128
|
+
},
|
|
129
|
+
"Name": "Feature-012",
|
|
130
|
+
"Property__c": "@PropertyRef8",
|
|
131
|
+
"Feature_Category__c": "Amenities",
|
|
132
|
+
"Description__c": "Smart home system with voice control",
|
|
133
|
+
"Display_on_Listing__c": true
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"attributes": {
|
|
137
|
+
"type": "Property_Feature__c",
|
|
138
|
+
"referenceId": "FeatureRef13"
|
|
139
|
+
},
|
|
140
|
+
"Name": "Feature-013",
|
|
141
|
+
"Property__c": "@PropertyRef9",
|
|
142
|
+
"Feature_Category__c": "Interior",
|
|
143
|
+
"Description__c": "Original Victorian architectural details",
|
|
144
|
+
"Display_on_Listing__c": true
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"attributes": {
|
|
148
|
+
"type": "Property_Feature__c",
|
|
149
|
+
"referenceId": "FeatureRef14"
|
|
150
|
+
},
|
|
151
|
+
"Name": "Feature-014",
|
|
152
|
+
"Property__c": "@PropertyRef11",
|
|
153
|
+
"Feature_Category__c": "Amenities",
|
|
154
|
+
"Description__c": "Private tennis court with professional lighting",
|
|
155
|
+
"Display_on_Listing__c": true
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"attributes": {
|
|
159
|
+
"type": "Property_Feature__c",
|
|
160
|
+
"referenceId": "FeatureRef15"
|
|
161
|
+
},
|
|
162
|
+
"Name": "Feature-015",
|
|
163
|
+
"Property__c": "@PropertyRef11",
|
|
164
|
+
"Feature_Category__c": "Interior",
|
|
165
|
+
"Description__c": "Home theater with surround sound system",
|
|
166
|
+
"Display_on_Listing__c": true
|
|
167
|
+
}
|
|
168
|
+
]
|
|
169
|
+
}
|