@baziapi/sdk 1.0.2 → 1.0.4
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/README.md +3 -4
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +13 -18
package/README.md
CHANGED
|
@@ -886,12 +886,11 @@ To use this SDK in production, you need an active API Key from our platform. We
|
|
|
886
886
|
|
|
887
887
|
## Support
|
|
888
888
|
|
|
889
|
-
- **Email:**
|
|
890
|
-
- **Documentation:**
|
|
891
|
-
- **Repository:** [https://github.com/Shoyas/bazi-api-sdk](https://github.com/Shoyas/bazi-api-sdk)
|
|
889
|
+
- **Email:** support@baziapi.pro
|
|
890
|
+
- **Website & Documentation:** [https://baziapi.pro](https://baziapi.pro)
|
|
892
891
|
|
|
893
892
|
---
|
|
894
893
|
|
|
895
894
|
## License
|
|
896
895
|
|
|
897
|
-
MIT ©
|
|
896
|
+
MIT © Md. Nasir Uddin Shoyas
|
package/dist/index.d.cts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
/** Internal configuration for the HttpClient. */
|
|
7
7
|
interface HttpClientConfig {
|
|
8
|
-
/** Root API URL without trailing slash. e.g. `https://api.
|
|
8
|
+
/** Root API URL without trailing slash. e.g. `https://api.baziapi.pro` */
|
|
9
9
|
readonly baseUrl: string;
|
|
10
10
|
/** API key for Bearer token authentication. */
|
|
11
11
|
readonly apiKey: string;
|
package/dist/index.d.mts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
/** Internal configuration for the HttpClient. */
|
|
7
7
|
interface HttpClientConfig {
|
|
8
|
-
/** Root API URL without trailing slash. e.g. `https://api.
|
|
8
|
+
/** Root API URL without trailing slash. e.g. `https://api.baziapi.pro` */
|
|
9
9
|
readonly baseUrl: string;
|
|
10
10
|
/** API key for Bearer token authentication. */
|
|
11
11
|
readonly apiKey: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
/** Internal configuration for the HttpClient. */
|
|
7
7
|
interface HttpClientConfig {
|
|
8
|
-
/** Root API URL without trailing slash. e.g. `https://api.
|
|
8
|
+
/** Root API URL without trailing slash. e.g. `https://api.baziapi.pro` */
|
|
9
9
|
readonly baseUrl: string;
|
|
10
10
|
/** API key for Bearer token authentication. */
|
|
11
11
|
readonly apiKey: string;
|
package/package.json
CHANGED
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baziapi/sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Official TypeScript SDK for the BaZi API",
|
|
5
5
|
"author": "Md. Nasir Uddin Shoyas",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"
|
|
8
|
-
"type": "git",
|
|
9
|
-
"url": "https://github.com/Shoyas/bazi-api-sdk.git",
|
|
10
|
-
"directory": "packages/bazi"
|
|
11
|
-
},
|
|
12
|
-
"homepage": "https://github.com/Shoyas/bazi-api-sdk#readme",
|
|
7
|
+
"homepage": "https://baziapi.pro",
|
|
13
8
|
"bugs": {
|
|
14
|
-
"url": "https://
|
|
9
|
+
"url": "https://baziapi.pro"
|
|
15
10
|
},
|
|
16
11
|
"type": "module",
|
|
17
12
|
"exports": {
|
|
@@ -44,6 +39,15 @@
|
|
|
44
39
|
"api-client"
|
|
45
40
|
],
|
|
46
41
|
"sideEffects": false,
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
44
|
+
"@typescript-eslint/parser": "^8.0.0",
|
|
45
|
+
"@vitest/coverage-v8": "^2.0.0",
|
|
46
|
+
"eslint": "^9.0.0",
|
|
47
|
+
"typescript": "^5.6.3",
|
|
48
|
+
"unbuild": "^3.0.0",
|
|
49
|
+
"vitest": "^2.0.0"
|
|
50
|
+
},
|
|
47
51
|
"scripts": {
|
|
48
52
|
"build": "unbuild",
|
|
49
53
|
"dev": "unbuild --stub",
|
|
@@ -53,14 +57,5 @@
|
|
|
53
57
|
"type-check": "tsc --noEmit",
|
|
54
58
|
"lint": "eslint src",
|
|
55
59
|
"clean": "rm -rf dist"
|
|
56
|
-
},
|
|
57
|
-
"devDependencies": {
|
|
58
|
-
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
59
|
-
"@typescript-eslint/parser": "^8.0.0",
|
|
60
|
-
"@vitest/coverage-v8": "^2.0.0",
|
|
61
|
-
"eslint": "^9.0.0",
|
|
62
|
-
"typescript": "^5.6.3",
|
|
63
|
-
"unbuild": "^3.0.0",
|
|
64
|
-
"vitest": "^2.0.0"
|
|
65
60
|
}
|
|
66
|
-
}
|
|
61
|
+
}
|