Skip to content

Commit

Permalink
Add union type support for the request body mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
lnash94 committed Sep 21, 2023
1 parent 77c5acf commit deb8b15
Show file tree
Hide file tree
Showing 6 changed files with 468 additions and 73 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ public enum DiagnosticMessages {
"for Ballerina type '%s'. ", DiagnosticSeverity.WARNING),

OAS_CONVERTOR_115("OAS_CONVERTOR_115", "Given Ballerina file does not contain any HTTP service.",
DiagnosticSeverity.ERROR);
DiagnosticSeverity.ERROR),
OAS_CONVERTOR_116("OAS_CONVERTOR_116", "Generated OpenAPI definition does not contain `%s` request" +
" body information, as it's not supported by the OpenAPI tool.",
DiagnosticSeverity.WARNING);

private final String code;
private final String description;
Expand Down
Loading

0 comments on commit deb8b15

Please sign in to comment.