openapi-codegen-typescript
Advanced tools
Comparing version 0.1.3 to 0.1.4
@@ -0,1 +1,13 @@ | ||
# v0.1.4 (Fri Mar 13 2020) | ||
#### 🐛 Bug Fix | ||
- fix(openapi-codegen): fix TS2322: Type '"typeName"[] | undefined' is not assignable to type '"typeName"[]'. [#4](https://github.com/LandrAudio/openapi-codegen-typescript/pull/4) ([@nemrosim](https://github.com/nemrosim)) | ||
#### Authors: 1 | ||
- Artem Diashkin ([@nemrosim](https://github.com/nemrosim)) | ||
--- | ||
# v0.1.3 (Wed Feb 26 2020) | ||
@@ -2,0 +14,0 @@ |
@@ -82,3 +82,3 @@ "use strict"; | ||
var ownPropString = function (propName, result) { | ||
return "overrides?.hasOwnProperty('" + propName + "') ? overrides?." + propName + " : " + result; | ||
return "overrides?." + propName + " || " + result; | ||
}; | ||
@@ -85,0 +85,0 @@ exports.parseSchema = function (_a) { |
{ | ||
"name": "openapi-codegen-typescript", | ||
"version": "0.1.3", | ||
"version": "0.1.4", | ||
"description": "OpenApi codegen for generating types an mocks from swagger json file", | ||
@@ -43,3 +43,3 @@ "main": "dist/index.js", | ||
"@typescript-eslint/parser": "2.20.0", | ||
"auto": "^9.14.0", | ||
"auto": "^9.19.5", | ||
"eslint": "6.8.0", | ||
@@ -46,0 +46,0 @@ "eslint-config-prettier": "6.10.0", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
43821