This document describes how to generate client code from the OpenAPI specification of Mistral AI. It will also describe decisions made during why we chose to use the tools we did.
To generate client code, we use the fork of openapi_spec tool. This tool is a Dart package that generates client code from an OpenAPI specification.
-
The CI will periodically check if the OpenAPI specification has changed and if it has, it will prepare a PR with the updated
openapi-original.yaml
. The PR should be reviewed and merged by a team member. -
Next CI will prepare an issue, branch and draft PR where team member will continue on manual update of
openapi-modified.yaml
based on the changes inopenapi-original.yaml
- Start from step 3 in Generating Client Code Locally. -
After updating the code and pushing the changes to the branch, the CI will run the tests and check if the PR is ready to be published.
-
If the PR is ready to be published, the team member should merge the PR and the CI will publish the new version of the package.
-
update openapi specification in
openapi_specs/openapi-original.yaml
by running the following command:dart run openapi_specs/update_openapi_spec.dart
-
If
openapi_specs/openapi-original.yaml
did not change there's nothing to do. If it did change go to next step. -
Migrate
openapi_spec/openapi-original.yaml
from OpenAPI 3.1.0 to OpenAPI 3.0.3- this is a manual step at the moment
- basically you need to diff the two files and update
openapi-modified.yaml
based onopenapi-original.yaml
- while updating the
openapi-modified.yaml
make sure to apply changes but in a way that the file is still valid OpenAPI 3.0.3 - in existing
openapi-modified.yaml
you will find a comment before each change that was made to migrate from 3.1.0 to 3.0.3 - use that as a reference - each new change should have a comment explaining why it was made
- there are few reasons that change was applied:
- downgrade from 3.1.0 to 3.0.3
- fix an issue with the generated code (renaming, not supported features etc)
- fix an issue with original OpenAPI spec (missing required fields, wrong types etc)
-
run the following command to generate the client code:
dart run openapi_specs/generate_client.dart
The generated code will be in the
generated
directory. -
add examples for new API endpoints in
example
directory (if needed) -
check if all examples are working by running the following command:
dart run openapi_specs/run_all_examples.dart
-
update changelog in
CHANGELOG.md
with the changes made -
update version in
pubspec.yaml
to the next version (follow Semantic Versioning)- if we have a breaking change increase major version
- if we have a new feature without breaking changes increase minor version
- if we have a bug fix or doc change increase patch version
This section will contain the reasons why we chose to use the tools we did.
- explanation why we chose openapi_spec