Skip to content

Latest commit

 

History

History
49 lines (29 loc) · 1.98 KB

CHANGELOG.zh-CN.md

File metadata and controls

49 lines (29 loc) · 1.98 KB

0.3.4

  • 修复数字枚举

0.3.3

  • 增加 axios 自定义实例的支持 (issue 6 with kt81)
  • 增加第三方类 axios 库的支持,如 Fly.js ,需要设置 useCustomerRequestInstance = true
  • 增加 serviceNameSuffix 配置,以支持�自定义服务的后缀
  • useStaticMethod = true 现在为默认配置
  • 优化整体的代码实现和代码逻辑
  • 修复 issue 2 issue 3
  • 配置(如 tsconfig.jsonnpm script)请参考 example

0.2.14

  • 添加对请求的原始响应类型的支持 (bbc907 by kt81)

0.2.13

  • 更新example,增加使用operationId作为方法名字的例子
  • 修复使用Typescript3.0.0,在请求方法中的 let data = null; 的定义会报异常 (b0dad90 by kt81)

0.2.12

  • 修复了请求参数拥有 schema 并且schema属性只有 type 时候产生的bug(2964ff0 by @mingoes

0.2.11

  • 修复: 枚举名字大小写转换的问题

0.2.9

  • 修复:使用 FormData 提交 非 file 类型的参数的bug

0.2.7

  • 优化:当实体的属性为枚举数组时,优化他的生成规则 , example
  • 修复:当tags为空时,跳过生成当前方法

0.2.6

  • 调整生成的class name的名称

0.2.5

  • 使用 Promise 代替 AxiosPromise。如果接口调用成功,默认返回response.data
  • 修改README.md