apimo.js 1.0.3 → 1.0.5
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 +7 -0
- package/README.md +174 -184
- package/dist/core/api.d.ts +155 -131
- package/dist/core/api.js +69 -4
- package/dist/errors/index.d.ts +176 -0
- package/dist/errors/index.js +234 -0
- package/dist/index.d.ts +4 -1
- package/dist/index.js +2 -0
- package/dist/schemas/agency.d.ts +53 -359
- package/dist/schemas/common.d.ts +20 -111
- package/dist/schemas/internal.d.ts +2 -2
- package/dist/schemas/internal.js +4 -4
- package/dist/schemas/property.d.ts +265 -1373
- package/package.json +11 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apimo.js",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "A wrapper for the Apimo API with catalog caching for building custom Real Estate website using their technologies.",
|
|
5
5
|
"author": "Vitaly Lysen <vitaly@lysen.dev> (https://lysen.dev)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,22 +38,25 @@
|
|
|
38
38
|
"run": "node dist/index.js",
|
|
39
39
|
"test": "vitest run",
|
|
40
40
|
"test-coverage": "vitest run --coverage",
|
|
41
|
-
"lint": "eslint ."
|
|
41
|
+
"lint": "eslint . --fix",
|
|
42
|
+
"type-check": "tsc --noEmit",
|
|
43
|
+
"prepare": "husky"
|
|
42
44
|
},
|
|
43
45
|
"dependencies": {
|
|
44
46
|
"bottleneck": "^2.19.5",
|
|
45
47
|
"merge-anything": "^6.0.6",
|
|
46
|
-
"zod": "^3.
|
|
48
|
+
"zod": "^4.3.6"
|
|
47
49
|
},
|
|
48
50
|
"devDependencies": {
|
|
49
51
|
"@anatine/zod-mock": "^3.14.0",
|
|
50
|
-
"@antfu/eslint-config": "^
|
|
51
|
-
"@faker-js/faker": "^
|
|
52
|
-
"@types/node": "^
|
|
53
|
-
"@vitest/coverage-v8": "^
|
|
52
|
+
"@antfu/eslint-config": "^7.2.0",
|
|
53
|
+
"@faker-js/faker": "^10.2.0",
|
|
54
|
+
"@types/node": "^25.1.0",
|
|
55
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
54
56
|
"dotenv": "^17.2.1",
|
|
55
57
|
"eslint": "^9.32.0",
|
|
58
|
+
"husky": "^9.1.7",
|
|
56
59
|
"typescript": "^5.9.2",
|
|
57
|
-
"vitest": "^
|
|
60
|
+
"vitest": "^4.0.18"
|
|
58
61
|
}
|
|
59
62
|
}
|