@halo-dev/api-client 0.0.70 → 2.3.0
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 +674 -21
- package/README.md +1 -14
- package/dist/index.cjs +2080 -905
- package/dist/index.d.ts +1485 -1446
- package/dist/index.mjs +2081 -898
- package/package.json +15 -9
package/README.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# @halo-dev/api-client
|
|
2
2
|
|
|
3
|
-
Halo 2.0 的 JavaScript API 客户端请求库。使用 [OpenAPI Generator
|
|
4
|
-
](https://openapi-generator.tech/) 生成。
|
|
3
|
+
Halo 2.0 的 JavaScript API 客户端请求库。使用 [OpenAPI Generator](https://openapi-generator.tech/) 生成。
|
|
5
4
|
|
|
6
5
|
## 开发环境
|
|
7
6
|
|
|
@@ -18,18 +17,6 @@ pnpm gen
|
|
|
18
17
|
pnpm build
|
|
19
18
|
```
|
|
20
19
|
|
|
21
|
-
## 本地调试
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
pnpm link --global
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
然后在需要使用的库中执行:
|
|
28
|
-
|
|
29
|
-
```bash
|
|
30
|
-
pnpm link --global @halo-dev/api-client
|
|
31
|
-
```
|
|
32
|
-
|
|
33
20
|
## 发布版本
|
|
34
21
|
|
|
35
22
|
```bash
|