make some stuff public

This commit is contained in:
Ivan Smolin 2023-05-18 15:49:43 +03:00
parent 4569a09cbf
commit 5ef3387e01
3 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@
<artifactId>TINetworking-swagger-codegen</artifactId>
<packaging>jar</packaging>
<name>TINetworking-swagger-codegen</name>
<version>1.2.0</version>
<version>1.2.1</version>
<build>
<plugins>
<plugin>

View File

@ -1,7 +1,7 @@
import TIFoundationUtils
import Foundation
enum APIDateFormat: String, DateFormat {
public enum APIDateFormat: String, DateFormat {
{{#each apiDateFormats as |value key|}}
case {{key}} = "{{{value}}}"
{{/each}}

View File

@ -1,7 +1,7 @@
import TINetworking
public extension OpenAPI {
enum SecurityNames: String, Hashable {
public enum SecurityNames: String, Hashable {
{{#authMethods}}
case {{name}}
{{/authMethods}}