FRE-5350: Add property scanner service with ATTOM, USPS, county data integration

- ATTOM Property API integration for structured property data
- USPS address standardization via API
- County clerk/recorder feed scraping for deed changes and liens
- Rate limiting, caching, and retry logic
- Unit tests for each data source adapter
- PropertyRecord, CountyDeedRecord, DataSourceType types in types.ts
- Consolidated type exports in index.ts

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
2026-05-16 09:50:21 -04:00
parent 24c31f1b1b
commit d6f574ff8e
7 changed files with 1350 additions and 5 deletions

View File

@@ -10,11 +10,19 @@
"lint": "eslint src/"
},
"dependencies": {
"@shieldai/types": "workspace:*"
"@shieldai/db": "workspace:*",
"@shieldai/types": "workspace:*",
"@shieldai/shared-notifications": "workspace:*",
"@shieldai/correlation": "workspace:*",
"uuid": "^11.1.0",
"rate-limiter-flexible": "^5.0.5",
"cache-manager": "^6.4.2",
"cacheable": "^1.10.0"
},
"devDependencies": {
"vitest": "^4.1.5",
"@vitest/coverage-v8": "^4.1.5"
"@vitest/coverage-v8": "^4.1.5",
"@types/uuid": "^10.0.0"
},
"exports": {
".": "./src/index.ts"