├── .forceignore ├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── LICENSE ├── README.md ├── apex ├── usps-citystate-callout.apex ├── usps-verify-callout.apex └── usps-zipcode-callout.apex ├── cumulusci.yml ├── datasets └── mapping.yml ├── force-app └── main │ └── default │ ├── classes │ ├── USPSAddressAPIHttpMock.cls │ ├── USPSAddressAPIHttpMock.cls-meta.xml │ ├── USPSAddressAPIInvocable.cls │ ├── USPSAddressAPIInvocable.cls-meta.xml │ ├── USPSAddressAPIService.cls │ ├── USPSAddressAPIService.cls-meta.xml │ ├── USPSAddressAPITest.cls │ ├── USPSAddressAPITest.cls-meta.xml │ ├── USPSAddressValidateRequest.cls │ ├── USPSAddressValidateRequest.cls-meta.xml │ ├── USPSCityStateLookupRequest.cls │ ├── USPSCityStateLookupRequest.cls-meta.xml │ ├── USPSRequest.cls │ ├── USPSRequest.cls-meta.xml │ ├── USPSRequestAuraEnabled.cls │ ├── USPSRequestAuraEnabled.cls-meta.xml │ ├── USPSResponse.cls │ ├── USPSResponse.cls-meta.xml │ ├── USPSResponseAuraEnabled.cls │ ├── USPSResponseAuraEnabled.cls-meta.xml │ ├── USPSZipCodeLookupRequest.cls │ └── USPSZipCodeLookupRequest.cls-meta.xml │ ├── layouts │ └── USPS_Address_API_Setting__mdt-USPS Address API Setting Layout.layout-meta.xml │ ├── objects │ └── USPS_Address_API_Setting__mdt │ │ ├── USPS_Address_API_Setting__mdt.object-meta.xml │ │ └── fields │ │ └── Value__c.field-meta.xml │ ├── permissionsets │ └── USPS_Address_API_User.permissionset-meta.xml │ └── remoteSiteSettings │ └── USPS_Address_API.remoteSite-meta.xml ├── images ├── Apex_Action.png ├── Assign_USPS_Request.png ├── Full_Flow_Screenshot.png ├── Screen_1_Input_Address.png ├── Screen_2_Output_Address.png ├── USPSRequestAuraEnabled_Variable.png ├── USPS_Address_API_Setting_CMDT_Config.png └── Validate_Address_LWC_Example.png ├── orgs ├── beta.json ├── dev.json ├── feature.json └── release.json ├── sfdx-project.json └── unpackaged └── config └── demo-app ├── classes ├── USPSAddressAPIDemoController.cls ├── USPSAddressAPIDemoController.cls-meta.xml ├── USPSAddressAPIDemoControllerTest.cls └── USPSAddressAPIDemoControllerTest.cls-meta.xml ├── flexipages └── USPS_Address_API_Demo.flexipage-meta.xml ├── flows └── Validate_Address_Flow_Example.flow-meta.xml ├── lwc ├── jsonPrettyPrinter │ ├── jsonPrettyPrinter.css │ ├── jsonPrettyPrinter.html │ ├── jsonPrettyPrinter.js │ └── jsonPrettyPrinter.js-meta.xml └── uspsAddressAPIDemo │ ├── uspsAddressAPIDemo.html │ ├── uspsAddressAPIDemo.js │ └── uspsAddressAPIDemo.js-meta.xml ├── permissionsets └── USPS_Address_API_Demo_Viewer.permissionset-meta.xml └── tabs └── USPS_Address_API_Demo.tab-meta.xml /.forceignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/.forceignore -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/README.md -------------------------------------------------------------------------------- /apex/usps-citystate-callout.apex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/apex/usps-citystate-callout.apex -------------------------------------------------------------------------------- /apex/usps-verify-callout.apex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/apex/usps-verify-callout.apex -------------------------------------------------------------------------------- /apex/usps-zipcode-callout.apex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/apex/usps-zipcode-callout.apex -------------------------------------------------------------------------------- /cumulusci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/cumulusci.yml -------------------------------------------------------------------------------- /datasets/mapping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/datasets/mapping.yml -------------------------------------------------------------------------------- /force-app/main/default/classes/USPSAddressAPIHttpMock.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/classes/USPSAddressAPIHttpMock.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/USPSAddressAPIHttpMock.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/classes/USPSAddressAPIHttpMock.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/USPSAddressAPIInvocable.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/classes/USPSAddressAPIInvocable.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/USPSAddressAPIInvocable.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/classes/USPSAddressAPIInvocable.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/USPSAddressAPIService.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/classes/USPSAddressAPIService.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/USPSAddressAPIService.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/classes/USPSAddressAPIService.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/USPSAddressAPITest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/classes/USPSAddressAPITest.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/USPSAddressAPITest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/classes/USPSAddressAPITest.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/USPSAddressValidateRequest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/classes/USPSAddressValidateRequest.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/USPSAddressValidateRequest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/classes/USPSAddressValidateRequest.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/USPSCityStateLookupRequest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/classes/USPSCityStateLookupRequest.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/USPSCityStateLookupRequest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/classes/USPSCityStateLookupRequest.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/USPSRequest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/classes/USPSRequest.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/USPSRequest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/classes/USPSRequest.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/USPSRequestAuraEnabled.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/classes/USPSRequestAuraEnabled.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/USPSRequestAuraEnabled.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/classes/USPSRequestAuraEnabled.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/USPSResponse.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/classes/USPSResponse.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/USPSResponse.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/classes/USPSResponse.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/USPSResponseAuraEnabled.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/classes/USPSResponseAuraEnabled.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/USPSResponseAuraEnabled.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/classes/USPSResponseAuraEnabled.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/USPSZipCodeLookupRequest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/classes/USPSZipCodeLookupRequest.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/USPSZipCodeLookupRequest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/classes/USPSZipCodeLookupRequest.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/layouts/USPS_Address_API_Setting__mdt-USPS Address API Setting Layout.layout-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/layouts/USPS_Address_API_Setting__mdt-USPS Address API Setting Layout.layout-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/objects/USPS_Address_API_Setting__mdt/USPS_Address_API_Setting__mdt.object-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/objects/USPS_Address_API_Setting__mdt/USPS_Address_API_Setting__mdt.object-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/objects/USPS_Address_API_Setting__mdt/fields/Value__c.field-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/objects/USPS_Address_API_Setting__mdt/fields/Value__c.field-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/permissionsets/USPS_Address_API_User.permissionset-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/permissionsets/USPS_Address_API_User.permissionset-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/remoteSiteSettings/USPS_Address_API.remoteSite-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/force-app/main/default/remoteSiteSettings/USPS_Address_API.remoteSite-meta.xml -------------------------------------------------------------------------------- /images/Apex_Action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/images/Apex_Action.png -------------------------------------------------------------------------------- /images/Assign_USPS_Request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/images/Assign_USPS_Request.png -------------------------------------------------------------------------------- /images/Full_Flow_Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/images/Full_Flow_Screenshot.png -------------------------------------------------------------------------------- /images/Screen_1_Input_Address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/images/Screen_1_Input_Address.png -------------------------------------------------------------------------------- /images/Screen_2_Output_Address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/images/Screen_2_Output_Address.png -------------------------------------------------------------------------------- /images/USPSRequestAuraEnabled_Variable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/images/USPSRequestAuraEnabled_Variable.png -------------------------------------------------------------------------------- /images/USPS_Address_API_Setting_CMDT_Config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/images/USPS_Address_API_Setting_CMDT_Config.png -------------------------------------------------------------------------------- /images/Validate_Address_LWC_Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/images/Validate_Address_LWC_Example.png -------------------------------------------------------------------------------- /orgs/beta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/orgs/beta.json -------------------------------------------------------------------------------- /orgs/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/orgs/dev.json -------------------------------------------------------------------------------- /orgs/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/orgs/feature.json -------------------------------------------------------------------------------- /orgs/release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/orgs/release.json -------------------------------------------------------------------------------- /sfdx-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/sfdx-project.json -------------------------------------------------------------------------------- /unpackaged/config/demo-app/classes/USPSAddressAPIDemoController.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/unpackaged/config/demo-app/classes/USPSAddressAPIDemoController.cls -------------------------------------------------------------------------------- /unpackaged/config/demo-app/classes/USPSAddressAPIDemoController.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/unpackaged/config/demo-app/classes/USPSAddressAPIDemoController.cls-meta.xml -------------------------------------------------------------------------------- /unpackaged/config/demo-app/classes/USPSAddressAPIDemoControllerTest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/unpackaged/config/demo-app/classes/USPSAddressAPIDemoControllerTest.cls -------------------------------------------------------------------------------- /unpackaged/config/demo-app/classes/USPSAddressAPIDemoControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/unpackaged/config/demo-app/classes/USPSAddressAPIDemoControllerTest.cls-meta.xml -------------------------------------------------------------------------------- /unpackaged/config/demo-app/flexipages/USPS_Address_API_Demo.flexipage-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/unpackaged/config/demo-app/flexipages/USPS_Address_API_Demo.flexipage-meta.xml -------------------------------------------------------------------------------- /unpackaged/config/demo-app/flows/Validate_Address_Flow_Example.flow-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/unpackaged/config/demo-app/flows/Validate_Address_Flow_Example.flow-meta.xml -------------------------------------------------------------------------------- /unpackaged/config/demo-app/lwc/jsonPrettyPrinter/jsonPrettyPrinter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/unpackaged/config/demo-app/lwc/jsonPrettyPrinter/jsonPrettyPrinter.css -------------------------------------------------------------------------------- /unpackaged/config/demo-app/lwc/jsonPrettyPrinter/jsonPrettyPrinter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/unpackaged/config/demo-app/lwc/jsonPrettyPrinter/jsonPrettyPrinter.html -------------------------------------------------------------------------------- /unpackaged/config/demo-app/lwc/jsonPrettyPrinter/jsonPrettyPrinter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/unpackaged/config/demo-app/lwc/jsonPrettyPrinter/jsonPrettyPrinter.js -------------------------------------------------------------------------------- /unpackaged/config/demo-app/lwc/jsonPrettyPrinter/jsonPrettyPrinter.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/unpackaged/config/demo-app/lwc/jsonPrettyPrinter/jsonPrettyPrinter.js-meta.xml -------------------------------------------------------------------------------- /unpackaged/config/demo-app/lwc/uspsAddressAPIDemo/uspsAddressAPIDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/unpackaged/config/demo-app/lwc/uspsAddressAPIDemo/uspsAddressAPIDemo.html -------------------------------------------------------------------------------- /unpackaged/config/demo-app/lwc/uspsAddressAPIDemo/uspsAddressAPIDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/unpackaged/config/demo-app/lwc/uspsAddressAPIDemo/uspsAddressAPIDemo.js -------------------------------------------------------------------------------- /unpackaged/config/demo-app/lwc/uspsAddressAPIDemo/uspsAddressAPIDemo.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/unpackaged/config/demo-app/lwc/uspsAddressAPIDemo/uspsAddressAPIDemo.js-meta.xml -------------------------------------------------------------------------------- /unpackaged/config/demo-app/permissionsets/USPS_Address_API_Demo_Viewer.permissionset-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/unpackaged/config/demo-app/permissionsets/USPS_Address_API_Demo_Viewer.permissionset-meta.xml -------------------------------------------------------------------------------- /unpackaged/config/demo-app/tabs/USPS_Address_API_Demo.tab-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rygramer/Salesforce-Apex-SDK-for-the-USPS-Address-API/HEAD/unpackaged/config/demo-app/tabs/USPS_Address_API_Demo.tab-meta.xml --------------------------------------------------------------------------------