This repo is a fork of deepmap/oapi-codegen
Only the changes from the original repo are documented below
In cases where the OpenAPI spec isn't created by whomever generates the client, a "tidy" functionality is used to make the client more readable / styled as needed
In a configuration file, the following code can be added:
tidy:
verbose: false
functions:
- replace: service_
with:
prefix: true
params:
- replace: Id
with: ID
suffix: true
schemas:
- replace: Cpu
with: CPU
match: true
the config has been extended to support splitting the client code into multiple directories and files
Example:
output-options:
split-by-tags:
verbose: true
enabled: truetheres also an options to add a list under split-by-tags of includes or excludes
For our use case we'd like to add an aggregated error if the response isn't 200
In order to do that the response struct can be extended with the following config
Example:
output-options:
extend-response:
- field: HasError
type: error
description: "Aggregated error"
apply-to: ["*"]
imports: ["errors"]