Skip to content

Releases: acacode/swagger-typescript-api

1.8.2 release

29 May 15:12
acc770b
Compare
Choose a tag to compare

Fixes:

  • Broken types for arrays of union types (issue)

1.8.1 release

25 May 23:03
bcb095a
Compare
Choose a tag to compare

Fixes:

  • form data request body (request body content multipart/form-data)

Minor:

  • inline comments of the data contract type properties
    one line comments
  • remove Array<T> type usage (now the more simple type T[])

1.8.0 release

22 May 10:07
974e761
Compare
Choose a tag to compare

Features:

  • Partially support FormData body types
  • Support to generate query params of nested query objects (Partial fix of this issue)

1.7.2 release

29 Mar 18:29
55529b8
Compare
Choose a tag to compare

Fixes:

  • Critical bug with converting inline object into name of type for request body.
  • Fix bug when path parameters is not set but contains in endpoint url.
    path params bug 1
    path params bug 2

1.7.0 release

26 Mar 21:42
e56d604
Compare
Choose a tag to compare

Breaking Changes:

  • Remove title and version public Api class properties (moved it to Api class JSDOC)(fixes this issue)
    removed title and version properties
  • Move out all http client handlers/properties into HttpClient local class in module
    http-client-class1
    http-client-class2

Chore:

  • default value for SecurityDataType Api class generic type

1.6.3 release

26 Mar 11:10
6695576
Compare
Choose a tag to compare

Fixes:

  • Handling of nullable for $ref in OpenAPI 3.0 (issue)
    Plus based on this issue was fixed most other problems with using required and nullable properties

1.6.2 release

25 Mar 16:35
2fdcf73
Compare
Choose a tag to compare

Fixes:

  • Nullable not included in type definition (issue)

Internal:

  • Update swagger2openapi(6.0.0) dependency

1.6.1 release

24 Mar 10:41
Compare
Choose a tag to compare

Internal:

  • Update prettier(2.0.2), swagger2openapi(5.4.0) dependencies

1.6.0 release

14 Mar 20:57
721b35e
Compare
Choose a tag to compare

Features:

  • Improvenment in optional request params (request body, query params, path params)

Fixes:

  • Fix bug when path request param have the same name as query (#28)
  • Fix bug when path request param have the same name as params

Minor/Internal:

  • changed addQueryParams() method
  • up swagger2openapi dependency version to 5.3.4

1.5.0 release

10 Mar 00:48
Compare
Choose a tag to compare

Features:

  • Add prettier for beautify output typescript api module
  • Support additionalProperties type data
    additional properties

Fixes:

  • Fix problem with array type definitions without type property(#26)