moyan-api 1.0.18 → 1.0.19

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/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
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.19](https://gitee.com/ymoo/moyan-api/compare/v1.0.18...v1.0.19) (2022-03-31)
6
+
5
7
  ### [1.0.18](https://gitee.com/ymoo/moyan-api/compare/v1.0.17...v1.0.18) (2022-03-31)
6
8
 
7
9
  ### [1.0.17](https://gitee.com/ymoo/moyan-api/compare/v1.0.16...v1.0.17) (2022-03-31)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "moyan-api",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "description": "使用OpenApi 生成TypeScript的api调用skd",
5
5
  "main": "./dist/index.js",
6
6
  "types": "src",
package/view/schemas.ejs CHANGED
@@ -2,13 +2,13 @@ export type ObjectId = string
2
2
  export type int = number
3
3
  export type integer = number
4
4
  export type float = number
5
+ export type tinyint = number
5
6
  export type char = string
6
7
  export type varchar = string
7
8
  export type json = {[key:string]:any}|Array<{[key:string]:any}>
8
9
  export type datetime = Date | string
9
10
  export type date = Date | string
10
11
  export type array = Array<any>
11
- export type tinyint = string
12
12
  export type text = string
13
13
 
14
14
  <% list.forEach((item) => { %>