@land-catalyst/batch-data-sdk 1.1.12
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 +22 -0
- package/README.md +1032 -0
- package/dist/builders.d.ts +821 -0
- package/dist/builders.js +2622 -0
- package/dist/client.d.ts +435 -0
- package/dist/client.interface.d.ts +210 -0
- package/dist/client.interface.js +2 -0
- package/dist/client.js +757 -0
- package/dist/errors.d.ts +10 -0
- package/dist/errors.js +19 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +28 -0
- package/dist/logger.interface.d.ts +19 -0
- package/dist/logger.interface.js +47 -0
- package/dist/types.d.ts +1738 -0
- package/dist/types.js +9 -0
- package/package.json +62 -0
package/dist/types.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* BatchData.io API Types
|
|
4
|
+
*
|
|
5
|
+
* Complete TypeScript type definitions for the BatchData Property Subscription API v2
|
|
6
|
+
*
|
|
7
|
+
* API Documentation: https://developer.batchdata.com/docs/batchdata/batchdata-v2/operations/create-a-property-subscription
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@land-catalyst/batch-data-sdk",
|
|
3
|
+
"version": "1.1.12",
|
|
4
|
+
"description": "TypeScript SDK for BatchData.io Property API - Types, Builders, and Utilities",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"README.md",
|
|
10
|
+
"LICENSE"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "tsc",
|
|
14
|
+
"prepublishOnly": "npm run build",
|
|
15
|
+
"test": "jest",
|
|
16
|
+
"test:integration": "jest --testMatch=\"**/*integration*.test.ts\"",
|
|
17
|
+
"lint": "eslint src",
|
|
18
|
+
"lint:fix": "eslint src --fix",
|
|
19
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
20
|
+
"format:check": "prettier --check \"src/**/*.ts\"",
|
|
21
|
+
"v:patch": "npm version patch && git push --follow-tags",
|
|
22
|
+
"v:minor": "npm version minor && git push --follow-tags",
|
|
23
|
+
"v:major": "npm version major && git push --follow-tags"
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"batchdata",
|
|
27
|
+
"property",
|
|
28
|
+
"real-estate",
|
|
29
|
+
"api",
|
|
30
|
+
"sdk",
|
|
31
|
+
"typescript"
|
|
32
|
+
],
|
|
33
|
+
"author": "",
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "https://github.com/land-catalyst/batch-data-sdk.git"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"axios": "^1.7.9"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@eslint/js": "^9.39.1",
|
|
44
|
+
"@types/jest": "^29.5.14",
|
|
45
|
+
"@types/node": "^22.x",
|
|
46
|
+
"@typescript-eslint/eslint-plugin": "^8.48.0",
|
|
47
|
+
"@typescript-eslint/parser": "^8.48.0",
|
|
48
|
+
"dotenv": "^16.4.7",
|
|
49
|
+
"eslint": "^9.39.1",
|
|
50
|
+
"eslint-config-prettier": "^10.1.8",
|
|
51
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
52
|
+
"jest": "^29.7.0",
|
|
53
|
+
"prettier": "^3.7.1",
|
|
54
|
+
"ts-jest": "^29.2.5",
|
|
55
|
+
"typescript": "^5.0.0",
|
|
56
|
+
"typescript-eslint": "^8.48.0"
|
|
57
|
+
},
|
|
58
|
+
"publishConfig": {
|
|
59
|
+
"registry": "https://registry.npmjs.org",
|
|
60
|
+
"access": "public"
|
|
61
|
+
}
|
|
62
|
+
}
|