@land-catalyst/batch-data-sdk 1.6.0 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -152,6 +152,48 @@ exports.PROPERTY_DATA_DOMAINS = [
|
|
|
152
152
|
investmentRelevance: "Demographics inform communication approach. Senior owners may be considering downsizing. Income and net worth estimates help gauge financial position and deal size capability.",
|
|
153
153
|
keyFields: ["estimatedAge", "estimatedIncome", "estimatedNetWorth"],
|
|
154
154
|
},
|
|
155
|
+
{
|
|
156
|
+
name: "deedHistory",
|
|
157
|
+
description: "Ownership transfer and deed transaction history",
|
|
158
|
+
investmentRelevance: "Deed history reveals ownership chain, flip activity, and distress signals. Frequent transfers indicate investor activity or problem properties. Inter-family transfers suggest inheritance situations. REO sales confirm prior foreclosure. Sale price trends reveal appreciation or depreciation patterns.",
|
|
159
|
+
keyFields: [
|
|
160
|
+
"buyers",
|
|
161
|
+
"sellers",
|
|
162
|
+
"salePrice",
|
|
163
|
+
"saleDate",
|
|
164
|
+
"documentType",
|
|
165
|
+
"newConstruction",
|
|
166
|
+
"interFamily",
|
|
167
|
+
],
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
name: "mortgageHistory",
|
|
171
|
+
description: "Mortgage origination and refinance history",
|
|
172
|
+
investmentRelevance: "Mortgage history exposes refinance patterns, rate exposure, and lender diversity. Multiple recent refinances may indicate cash-out activity or financial pressure. High interest rates on older loans suggest refinance opportunity. Loan term and type reveal owner's financial strategy.",
|
|
173
|
+
keyFields: [
|
|
174
|
+
"loanAmount",
|
|
175
|
+
"interestRate",
|
|
176
|
+
"lenderName",
|
|
177
|
+
"loanType",
|
|
178
|
+
"loanTermMonths",
|
|
179
|
+
"recordingDate",
|
|
180
|
+
"borrowers",
|
|
181
|
+
],
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
name: "listing",
|
|
185
|
+
description: "Current and historical MLS listing information",
|
|
186
|
+
investmentRelevance: "Listing data reveals market positioning and seller motivation. Failed listings or price reductions indicate motivated sellers. Days on market above area average suggests overpricing or property issues. Sold price vs list price ratio shows negotiation leverage. Rental listings indicate investor-owned properties.",
|
|
187
|
+
keyFields: [
|
|
188
|
+
"status",
|
|
189
|
+
"price",
|
|
190
|
+
"soldPrice",
|
|
191
|
+
"soldDate",
|
|
192
|
+
"originalListingDate",
|
|
193
|
+
"rental",
|
|
194
|
+
"failedListingDate",
|
|
195
|
+
],
|
|
196
|
+
},
|
|
155
197
|
];
|
|
156
198
|
/**
|
|
157
199
|
* Extract key motivation signals from property data
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@land-catalyst/batch-data-sdk",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"description": "TypeScript SDK for BatchData.io Property API - Types, Builders, and Utilities",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
"generate:docs": "npx tsx scripts/generate-property-type-docs.ts",
|
|
23
23
|
"add:jsdoc": "node scripts/add-jsdoc-to-types.js",
|
|
24
24
|
"preversion": "npm run build",
|
|
25
|
-
"v:patch": "npm version patch &&
|
|
26
|
-
"v:minor": "npm version minor &&
|
|
27
|
-
"v:major": "npm version major &&
|
|
25
|
+
"v:patch": "npm version patch --no-git-tag-version && bash scripts/tag-and-push.sh",
|
|
26
|
+
"v:minor": "npm version minor --no-git-tag-version && bash scripts/tag-and-push.sh",
|
|
27
|
+
"v:major": "npm version major --no-git-tag-version && bash scripts/tag-and-push.sh"
|
|
28
28
|
},
|
|
29
29
|
"keywords": [
|
|
30
30
|
"batchdata",
|