Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: make CheckError types snake case #213

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/openapiv2/apidocs.swagger.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions openfga/v1/openfga_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1411,8 +1411,8 @@

message CheckError {
oneof code {
ErrorCode input_error = 1;
InternalErrorCode internal_error = 2;
ErrorCode input_error = 1 [json_name = "input_error"];

Check failure on line 1414 in openfga/v1/openfga_service.proto

View workflow job for this annotation

GitHub Actions / build

Field "1" with name "input_error" on message "CheckError" changed option "json_name" from "inputError" to "input_error".
InternalErrorCode internal_error = 2 [json_name = "internal_error"];

Check failure on line 1415 in openfga/v1/openfga_service.proto

View workflow job for this annotation

GitHub Actions / build

Field "2" with name "internal_error" on message "CheckError" changed option "json_name" from "internalError" to "internal_error".
}
string message = 3;
}
Expand Down
Loading
Loading