chore: update to openapi 5.1.1 to enable arm builds (#453)

This commit is contained in:
Jeffrey Smith II 2022-11-15 12:17:48 -05:00 committed by GitHub
parent e16398c7c6
commit 41059f52b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ type APIResponse struct {
Payload []byte `json:"-"`
}
// NewAPIResponse returns a new APIResonse object.
// NewAPIResponse returns a new APIResponse object.
func NewAPIResponse(r *http.Response) *APIResponse {
response := &APIResponse{Response: r}

View File

@ -7,7 +7,7 @@ declare -r API_DIR="${ROOT_DIR}/api"
declare -r GENERATED_PATTERN='^// Code generated .* DO NOT EDIT\.$'
declare -r MERGE_DOCKER_IMG=quay.io/influxdb/swagger-cli
declare -r GENERATOR_DOCKER_IMG=openapitools/openapi-generator-cli:v5.1.0
declare -r GENERATOR_DOCKER_IMG=openapitools/openapi-generator-cli:v5.1.1
declare -r TAG_STRIP_IMG=python:3.9-alpine3.15
# Clean up all the generated files in the target directory.