Releases: luckymarmot/Paw-OpenAPI3Generator
Releases · luckymarmot/Paw-OpenAPI3Generator
0.1.2-beta
fix for throwing an error when a request body is invalid
0.1.1-beta
fix(request-body): output request body types
this commit fixes the issue where body types other than json and form-url-encoded
are not included in the output.
0.1.0-beta
- updated: improve code coherence
- updated: improve webpack+typescript setup, eslint
- updated: convert paw request to a valid openapi v3 document
- added: generate json schema based on request info (body, parameters, query)
- added: generate openapi response definition based on last httpExchange data
- refactor: parameter converters, moved to converter file instead
TODO:
- SecurityRequirementObject type:
apiKey
,http
apiKey
is not available inPaw.Request
which is a key to evaluate whether
items in a request parameters are security key/value.http
is not available inPaw.Request
as well, however, is it safe to assumeAuthorization
header key
is a "Bearer" scheme?