moyan-api 1.0.84 → 1.0.85

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.0.85](https://gitee.com/ymoo/moyan-api/compare/v1.0.84...v1.0.85) (2026-04-01)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * 修正types字段指向正确的类型声明文件路径 ([9c556bf](https://gitee.com/ymoo/moyan-api/commit/9c556bfb6a09e4c681e9127ba2bfb335670eb059))
11
+ * **schemas:** 修复数组类型参数生成逻辑 ([53ce0f8](https://gitee.com/ymoo/moyan-api/commit/53ce0f87eed08678807f3e1e3027751e38692233))
12
+
5
13
  ### [1.0.84](https://gitee.com/ymoo/moyan-api/compare/v1.0.83...v1.0.84) (2026-04-01)
6
14
 
7
15
  ### [1.0.83](https://gitee.com/ymoo/moyan-api/compare/v1.0.82...v1.0.83) (2026-04-01)
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "moyan-api",
3
- "version": "1.0.84",
3
+ "version": "1.0.85",
4
4
  "description": "使用OpenApi 生成TypeScript的api调用skd",
5
5
  "main": "./dist/index.js",
6
- "types": "src",
6
+ "types": "./dist/index.d.ts",
7
7
  "bin": {
8
8
  "moyan-api": "./dist/creator.js"
9
9
  },