Skip to content

Commit

Permalink
make CheckError types snake case
Browse files Browse the repository at this point in the history
  • Loading branch information
justincoh committed Dec 12, 2024
1 parent 24dec68 commit 7c834a6
Show file tree
Hide file tree
Showing 3 changed files with 2,228 additions and 2,228 deletions.
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 BatchCheckSingleResult {

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

0 comments on commit 7c834a6

Please sign in to comment.