You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Generating All Apis class and delegate interfaces for ktor library
* Working delegates
* Working delegates
* Working delegates for ktor
* Generate updated doc for delegate pattern option
* Fix tests after conflicts resolved
* Fix delegates unsafe casting by using as?
* Use fromValue() method for enum parsing
* Use to<dataType>() to extract numerical values
* Fix multipleOf validation to support floating-point
|delegatePattern|Whether to generate the server files using the delegate pattern. This option is currently supported only when using ktor library.||false|
25
26
|enumPropertyNaming|Naming convention for enum properties: 'camelCase', 'PascalCase', 'snake_case', 'UPPERCASE', 'original', and 'bestEffortBacktick' (like 'original' but tries to wrap values in backticks before falling back to sanitizing, e.g. `name,asc` stays `name,asc` rather than becoming nameCommaAsc; useful for sort/order enums)||original|
26
27
|featureAutoHead|Automatically provide responses to HEAD requests for existing routes that have the GET verb defined.||true|
27
28
|featureCORS|Ktor by default provides an interceptor for implementing proper support for Cross-Origin Resource Sharing (CORS). See enable-cors.org.||false|
@@ -402,6 +428,8 @@ public static class Constants {
402
428
publicstaticfinalStringFIX_JACKSON_JSON_TYPE_INFO_INHERITANCE_DESC = "When true (default), ensures Jackson polymorphism works correctly by: (1) always setting visible=true on @JsonTypeInfo, and (2) adding the discriminator property to child models with appropriate default values. When false, visible is only set to true if all children already define the discriminator property.";
403
429
publicstaticfinalStringUSE_TAGS = "useTags";
404
430
publicstaticfinalStringUSE_TAGS_DESC = "use tags for creating interface and controller classnames.";
publicstaticfinalStringDELEGATE_PATTERN_DESC = "Whether to generate the server files using the delegate pattern. This option is currently supported only when using ktor library.";
0 commit comments