Hi, I’m trying to use openapi-generator
to generate a Swift API Client for an upcoming project.
It seems like the API and swagger doc https://api-docs.bitrise.io/docs/swagger.json have fallen out of sync (or maybe I’m missing something).
When running
curl -H Authorization:MY_TOKEN https://api.bitrise.io/v0.1/builds
the value of the branch property comes back as a string, while the swagger doc specifies it is expected to be a nulls.String
"nulls.String": {
"type": "object",
"properties": {
"string": {
"type": "string"
},
"valid": {
"description": "Valid is true if String is not NULL",
"type": "boolean"
}
}
},
Would it be possible to get an updated version of the swagger/OpenAPI doc that’s up to date with the current implementation?
Thanks in advance.