* refactor: take clients out of internal * refactor: move stdio to pkg * Move internal/api to api * refactor: final changes for Kapacitor to access shared functionality * chore: regenerate mocks * fix: bad automated refactor * chore: extra formatting not caught by make fmt
Custom OpenAPI Templates
This directory contains custom mustache templates used by the OpenAPI code generator. The original templates were extracted by running:
openapi-generator author template -g go
NOTE: This command extracts a copy of every template used by the generator, but we only track templates that we've modified here. The generator can handle sourcing templates from multiple locations.
What have we changed?
api.mustache
- Add
GetX()methods for each request parameterX, for use in unit tests - Add checks for
isByteArrayto generate[]byterequest fields instead of*string - Update creation of
GenericOpenAPIErrorto track sub-error models by reference - Add checks for
isResponseBinaryto directly return the response-body-reader, instead of pulling the entire body into memory and transforming it into an*os.File - GUnzip response bodies when
Content-Encoding: gzipis set - Remove
*http.Responses from the return values of generated operations
client.mustache
- Removed use of
golang.org/x/oauth2to avoid its heavy dependencies - Fixed error strings to be idiomatic according to staticcheck (lowercase, no punctuation)
- Use
strings.EqualFoldinstead of comparing twostrings.ToLowercalls - GZip request bodies when
Content-Encoding: gzipis set - Update the
GenericOpenAPIErrortype to enforce that error response models implement theerrorinterface
configuration.mustache
- Deleted
ContextOAuth2key to match modification in client - Fixed error strings to be idiomatic according to staticcheck (lowercase, no punctuation)
model_oneof.mustache
- Fixed error strings to be idiomatic according to staticcheck (lowercase, no punctuation)