run swiftlint latest version on swift samples (#6788)

This commit is contained in:
William Cheng 2020-06-26 17:46:55 +08:00 committed by GitHub
parent 5cce9dc7d3
commit 720ab3d39b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
581 changed files with 2694 additions and 3608 deletions

View File

@ -14,19 +14,19 @@ let package = Package(
// Products define the executables and libraries produced by a package, and make them visible to other packages. // Products define the executables and libraries produced by a package, and make them visible to other packages.
.library( .library(
name: "PetstoreClient", name: "PetstoreClient",
targets: ["PetstoreClient"]), targets: ["PetstoreClient"])
], ],
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/Alamofire/Alamofire.git", from: "4.9.1"), .package(url: "https://github.com/Alamofire/Alamofire.git", from: "4.9.1")
], ],
targets: [ targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite. // Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages which this package depends on. // Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target( .target(
name: "PetstoreClient", name: "PetstoreClient",
dependencies: ["Alamofire", ], dependencies: ["Alamofire" ],
path: "PetstoreClient/Classes" path: "PetstoreClient/Classes"
), )
] ]
) )

View File

@ -22,7 +22,7 @@ public struct APIHelper {
public static func rejectNilHeaders(_ source: [String: Any?]) -> [String: String] { public static func rejectNilHeaders(_ source: [String: Any?]) -> [String: String] {
return source.reduce(into: [String: String]()) { (result, item) in return source.reduce(into: [String: String]()) { (result, item) in
if let collection = item.value as? Array<Any?> { if let collection = item.value as? [Any?] {
result[item.key] = collection.filter({ $0 != nil }).map { "\($0!)" }.joined(separator: ",") result[item.key] = collection.filter({ $0 != nil }).map { "\($0!)" }.joined(separator: ",")
} else if let value: Any = item.value { } else if let value: Any = item.value {
result[item.key] = "\(value)" result[item.key] = "\(value)"
@ -46,7 +46,7 @@ public struct APIHelper {
} }
public static func mapValueToPathItem(_ source: Any) -> Any { public static func mapValueToPathItem(_ source: Any) -> Any {
if let collection = source as? Array<Any?> { if let collection = source as? [Any?] {
return collection.filter({ $0 != nil }).map({"\($0!)"}).joined(separator: ",") return collection.filter({ $0 != nil }).map({"\($0!)"}).joined(separator: ",")
} }
return source return source
@ -54,7 +54,7 @@ public struct APIHelper {
public static func mapValuesToQueryItems(_ source: [String: Any?]) -> [URLQueryItem]? { public static func mapValuesToQueryItems(_ source: [String: Any?]) -> [URLQueryItem]? {
let destination = source.filter({ $0.value != nil}).reduce(into: [URLQueryItem]()) { (result, item) in let destination = source.filter({ $0.value != nil}).reduce(into: [URLQueryItem]()) { (result, item) in
if let collection = item.value as? Array<Any?> { if let collection = item.value as? [Any?] {
collection.filter({ $0 != nil }).map({"\($0!)"}).forEach { value in collection.filter({ $0 != nil }).map({"\($0!)"}).forEach { value in
result.append(URLQueryItem(name: item.key, value: value)) result.append(URLQueryItem(name: item.key, value: value))
} }
@ -69,4 +69,3 @@ public struct APIHelper {
return destination return destination
} }
} }

View File

@ -23,7 +23,7 @@ open class RequestBuilder<T> {
public let URLString: String public let URLString: String
/// Optional block to obtain a reference to the request's progress instance when available. /// Optional block to obtain a reference to the request's progress instance when available.
public var onProgressReady: ((Progress) -> ())? public var onProgressReady: ((Progress) -> Void)?
required public init(method: String, URLString: String, parameters: [String: Any]?, isBody: Bool, headers: [String: String] = [:]) { required public init(method: String, URLString: String, parameters: [String: Any]?, isBody: Bool, headers: [String: String] = [:]) {
self.method = method self.method = method

View File

@ -7,8 +7,6 @@
import Foundation import Foundation
open class AnotherFakeAPI { open class AnotherFakeAPI {
/** /**
To test special tags To test special tags

View File

@ -7,8 +7,6 @@
import Foundation import Foundation
open class FakeAPI { open class FakeAPI {
/** /**

View File

@ -7,8 +7,6 @@
import Foundation import Foundation
open class FakeClassnameTags123API { open class FakeClassnameTags123API {
/** /**
To test class name in snake case To test class name in snake case

View File

@ -7,8 +7,6 @@
import Foundation import Foundation
open class PetAPI { open class PetAPI {
/** /**
Add a new pet to the store Add a new pet to the store

View File

@ -7,8 +7,6 @@
import Foundation import Foundation
open class StoreAPI { open class StoreAPI {
/** /**
Delete purchase order by ID Delete purchase order by ID

View File

@ -7,8 +7,6 @@
import Foundation import Foundation
open class UserAPI { open class UserAPI {
/** /**
Create user Create user

View File

@ -82,8 +82,7 @@ open class AlamofireRequestBuilder<T>: RequestBuilder<T> {
case let fileURL as URL: case let fileURL as URL:
if let mimeType = self.contentTypeForFormPart(fileURL: fileURL) { if let mimeType = self.contentTypeForFormPart(fileURL: fileURL) {
mpForm.append(fileURL, withName: k, fileName: fileURL.lastPathComponent, mimeType: mimeType) mpForm.append(fileURL, withName: k, fileName: fileURL.lastPathComponent, mimeType: mimeType)
} } else {
else {
mpForm.append(fileURL, withName: k) mpForm.append(fileURL, withName: k)
} }
case let string as String: case let string as String:
@ -228,7 +227,7 @@ open class AlamofireRequestBuilder<T>: RequestBuilder<T> {
let items = contentDisposition.components(separatedBy: ";") let items = contentDisposition.components(separatedBy: ";")
var filename : String? = nil var filename: String?
for contentItem in items { for contentItem in items {

View File

@ -148,7 +148,7 @@ extension KeyedDecodingContainerProtocol {
} }
public func decodeArrayIfPresent<T>(_ type: T.Type, forKey key: Self.Key) throws -> [T]? where T: Decodable { public func decodeArrayIfPresent<T>(_ type: T.Type, forKey key: Self.Key) throws -> [T]? where T: Decodable {
var tmpArray: [T]? = nil var tmpArray: [T]?
if contains(key) { if contains(key) {
tmpArray = try decodeArray(T.self, forKey: key) tmpArray = try decodeArray(T.self, forKey: key)
@ -177,5 +177,3 @@ extension HTTPURLResponse {
return Array(200 ..< 300).contains(statusCode) return Array(200 ..< 300).contains(statusCode)
} }
} }

View File

@ -41,7 +41,7 @@ public struct JSONDataEncoding {
} }
public static func encodingParameters(jsonData: Data?) -> [String: Any]? { public static func encodingParameters(jsonData: Data?) -> [String: Any]? {
var returnedParams: [String: Any]? = nil var returnedParams: [String: Any]?
if let jsonData = jsonData, !jsonData.isEmpty { if let jsonData = jsonData, !jsonData.isEmpty {
var params: [String: Any] = [:] var params: [String: Any] = [:]
params[jsonDataKey] = jsonData params[jsonDataKey] = jsonData

View File

@ -10,7 +10,7 @@ import Foundation
open class JSONEncodingHelper { open class JSONEncodingHelper {
open class func encodingParameters<T: Encodable>(forEncodableObject encodableObj: T?) -> [String: Any]? { open class func encodingParameters<T: Encodable>(forEncodableObject encodableObj: T?) -> [String: Any]? {
var params: [String: Any]? = nil var params: [String: Any]?
// Encode the Encodable object // Encode the Encodable object
if let encodableObj = encodableObj { if let encodableObj = encodableObj {
@ -27,7 +27,7 @@ open class JSONEncodingHelper {
} }
open class func encodingParameters(forEncodableObject encodableObj: Any?) -> [String: Any]? { open class func encodingParameters(forEncodableObject encodableObj: Any?) -> [String: Any]? {
var params: [String: Any]? = nil var params: [String: Any]?
if let encodableObj = encodableObj { if let encodableObj = encodableObj {
do { do {

View File

@ -30,7 +30,6 @@ public enum DecodableRequestBuilderError: Error {
case generalError(Error) case generalError(Error)
} }
open class Response<T> { open class Response<T> {
public let statusCode: Int public let statusCode: Int
public let header: [String: String] public let header: [String: String]

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct AdditionalPropertiesClass: Codable { public struct AdditionalPropertiesClass: Codable {
public var mapString: [String: String]? public var mapString: [String: String]?
public var mapMapString: [String: [String: String]]? public var mapMapString: [String: [String: String]]?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct Animal: Codable { public struct Animal: Codable {
public var className: String public var className: String
public var color: String? = "red" public var color: String? = "red"

View File

@ -7,5 +7,4 @@
import Foundation import Foundation
public typealias AnimalFarm = [Animal] public typealias AnimalFarm = [Animal]

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct ApiResponse: Codable { public struct ApiResponse: Codable {
public var code: Int? public var code: Int?
public var type: String? public var type: String?
public var message: String? public var message: String?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct ArrayOfArrayOfNumberOnly: Codable { public struct ArrayOfArrayOfNumberOnly: Codable {
public var arrayArrayNumber: [[Double]]? public var arrayArrayNumber: [[Double]]?
public init(arrayArrayNumber: [[Double]]?) { public init(arrayArrayNumber: [[Double]]?) {

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct ArrayOfNumberOnly: Codable { public struct ArrayOfNumberOnly: Codable {
public var arrayNumber: [Double]? public var arrayNumber: [Double]?
public init(arrayNumber: [Double]?) { public init(arrayNumber: [Double]?) {

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct ArrayTest: Codable { public struct ArrayTest: Codable {
public var arrayOfString: [String]? public var arrayOfString: [String]?
public var arrayArrayOfInteger: [[Int64]]? public var arrayArrayOfInteger: [[Int64]]?
public var arrayArrayOfModel: [[ReadOnlyFirst]]? public var arrayArrayOfModel: [[ReadOnlyFirst]]?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct Capitalization: Codable { public struct Capitalization: Codable {
public var smallCamel: String? public var smallCamel: String?
public var capitalCamel: String? public var capitalCamel: String?
public var smallSnake: String? public var smallSnake: String?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct Cat: Codable { public struct Cat: Codable {
public var className: String public var className: String
public var color: String? = "red" public var color: String? = "red"
public var declawed: Bool? public var declawed: Bool?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct CatAllOf: Codable { public struct CatAllOf: Codable {
public var declawed: Bool? public var declawed: Bool?
public init(declawed: Bool?) { public init(declawed: Bool?) {

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct Category: Codable { public struct Category: Codable {
public var id: Int64? public var id: Int64?
public var name: String = "default-name" public var name: String = "default-name"

View File

@ -10,7 +10,6 @@ import Foundation
/** Model for testing model with \&quot;_class\&quot; property */ /** Model for testing model with \&quot;_class\&quot; property */
public struct ClassModel: Codable { public struct ClassModel: Codable {
public var _class: String? public var _class: String?
public init(_class: String?) { public init(_class: String?) {

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct Client: Codable { public struct Client: Codable {
public var client: String? public var client: String?
public init(client: String?) { public init(client: String?) {

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct Dog: Codable { public struct Dog: Codable {
public var className: String public var className: String
public var color: String? = "red" public var color: String? = "red"
public var breed: String? public var breed: String?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct DogAllOf: Codable { public struct DogAllOf: Codable {
public var breed: String? public var breed: String?
public init(breed: String?) { public init(breed: String?) {

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct EnumArrays: Codable { public struct EnumArrays: Codable {
public enum JustSymbol: String, Codable, CaseIterable { public enum JustSymbol: String, Codable, CaseIterable {
case greaterThanOrEqualTo = ">=" case greaterThanOrEqualTo = ">="
case dollar = "$" case dollar = "$"

View File

@ -7,7 +7,6 @@
import Foundation import Foundation
public enum EnumClass: String, Codable, CaseIterable { public enum EnumClass: String, Codable, CaseIterable {
case abc = "_abc" case abc = "_abc"
case efg = "-efg" case efg = "-efg"

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct EnumTest: Codable { public struct EnumTest: Codable {
public enum EnumString: String, Codable, CaseIterable { public enum EnumString: String, Codable, CaseIterable {
case upper = "UPPER" case upper = "UPPER"
case lower = "lower" case lower = "lower"

View File

@ -10,7 +10,6 @@ import Foundation
/** Must be named &#x60;File&#x60; for test. */ /** Must be named &#x60;File&#x60; for test. */
public struct File: Codable { public struct File: Codable {
/** Test capitalization */ /** Test capitalization */
public var sourceURI: String? public var sourceURI: String?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct FileSchemaTestClass: Codable { public struct FileSchemaTestClass: Codable {
public var file: File? public var file: File?
public var files: [File]? public var files: [File]?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct FormatTest: Codable { public struct FormatTest: Codable {
public var integer: Int? public var integer: Int?
public var int32: Int? public var int32: Int?
public var int64: Int64? public var int64: Int64?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct HasOnlyReadOnly: Codable { public struct HasOnlyReadOnly: Codable {
public var bar: String? public var bar: String?
public var foo: String? public var foo: String?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct List: Codable { public struct List: Codable {
public var _123list: String? public var _123list: String?
public init(_123list: String?) { public init(_123list: String?) {

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct MapTest: Codable { public struct MapTest: Codable {
public enum MapOfEnumString: String, Codable, CaseIterable { public enum MapOfEnumString: String, Codable, CaseIterable {
case upper = "UPPER" case upper = "UPPER"
case lower = "lower" case lower = "lower"

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct MixedPropertiesAndAdditionalPropertiesClass: Codable { public struct MixedPropertiesAndAdditionalPropertiesClass: Codable {
public var uuid: UUID? public var uuid: UUID?
public var dateTime: Date? public var dateTime: Date?
public var map: [String: Animal]? public var map: [String: Animal]?

View File

@ -10,7 +10,6 @@ import Foundation
/** Model for testing model name starting with number */ /** Model for testing model name starting with number */
public struct Model200Response: Codable { public struct Model200Response: Codable {
public var name: Int? public var name: Int?
public var _class: String? public var _class: String?

View File

@ -10,7 +10,6 @@ import Foundation
/** Model for testing model name same as property name */ /** Model for testing model name same as property name */
public struct Name: Codable { public struct Name: Codable {
public var name: Int public var name: Int
public var snakeCase: Int? public var snakeCase: Int?
public var property: String? public var property: String?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct NumberOnly: Codable { public struct NumberOnly: Codable {
public var justNumber: Double? public var justNumber: Double?
public init(justNumber: Double?) { public init(justNumber: Double?) {

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct Order: Codable { public struct Order: Codable {
public enum Status: String, Codable, CaseIterable { public enum Status: String, Codable, CaseIterable {
case placed = "placed" case placed = "placed"
case approved = "approved" case approved = "approved"

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct OuterComposite: Codable { public struct OuterComposite: Codable {
public var myNumber: Double? public var myNumber: Double?
public var myString: String? public var myString: String?
public var myBoolean: Bool? public var myBoolean: Bool?

View File

@ -7,7 +7,6 @@
import Foundation import Foundation
public enum OuterEnum: String, Codable, CaseIterable { public enum OuterEnum: String, Codable, CaseIterable {
case placed = "placed" case placed = "placed"
case approved = "approved" case approved = "approved"

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct Pet: Codable { public struct Pet: Codable {
public enum Status: String, Codable, CaseIterable { public enum Status: String, Codable, CaseIterable {
case available = "available" case available = "available"
case pending = "pending" case pending = "pending"

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct ReadOnlyFirst: Codable { public struct ReadOnlyFirst: Codable {
public var bar: String? public var bar: String?
public var baz: String? public var baz: String?

View File

@ -10,7 +10,6 @@ import Foundation
/** Model for testing reserved words */ /** Model for testing reserved words */
public struct Return: Codable { public struct Return: Codable {
public var _return: Int? public var _return: Int?
public init(_return: Int?) { public init(_return: Int?) {

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct SpecialModelName: Codable { public struct SpecialModelName: Codable {
public var specialPropertyName: Int64? public var specialPropertyName: Int64?
public init(specialPropertyName: Int64?) { public init(specialPropertyName: Int64?) {

View File

@ -7,11 +7,8 @@
import Foundation import Foundation
public struct StringBooleanMap: Codable { public struct StringBooleanMap: Codable {
public var additionalProperties: [String: Bool] = [:] public var additionalProperties: [String: Bool] = [:]
public subscript(key: String) -> Bool? { public subscript(key: String) -> Bool? {
@ -45,5 +42,4 @@ public struct StringBooleanMap: Codable {
additionalProperties = try container.decodeMap(Bool.self, excludedKeys: nonAdditionalPropertyKeys) additionalProperties = try container.decodeMap(Bool.self, excludedKeys: nonAdditionalPropertyKeys)
} }
} }

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct Tag: Codable { public struct Tag: Codable {
public var id: Int64? public var id: Int64?
public var name: String? public var name: String?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct TypeHolderDefault: Codable { public struct TypeHolderDefault: Codable {
public var stringItem: String = "what" public var stringItem: String = "what"
public var numberItem: Double public var numberItem: Double
public var integerItem: Int public var integerItem: Int

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct TypeHolderExample: Codable { public struct TypeHolderExample: Codable {
public var stringItem: String public var stringItem: String
public var numberItem: Double public var numberItem: Double
public var integerItem: Int public var integerItem: Int

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct User: Codable { public struct User: Codable {
public var id: Int64? public var id: Int64?
public var username: String? public var username: String?
public var firstName: String? public var firstName: String?

View File

@ -14,7 +14,7 @@ let package = Package(
// Products define the executables and libraries produced by a package, and make them visible to other packages. // Products define the executables and libraries produced by a package, and make them visible to other packages.
.library( .library(
name: "PetstoreClient", name: "PetstoreClient",
targets: ["PetstoreClient"]), targets: ["PetstoreClient"])
], ],
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
@ -26,6 +26,6 @@ let package = Package(
name: "PetstoreClient", name: "PetstoreClient",
dependencies: [], dependencies: [],
path: "PetstoreClient/Classes" path: "PetstoreClient/Classes"
), )
] ]
) )

View File

@ -22,7 +22,7 @@ public struct APIHelper {
public static func rejectNilHeaders(_ source: [String: Any?]) -> [String: String] { public static func rejectNilHeaders(_ source: [String: Any?]) -> [String: String] {
return source.reduce(into: [String: String]()) { (result, item) in return source.reduce(into: [String: String]()) { (result, item) in
if let collection = item.value as? Array<Any?> { if let collection = item.value as? [Any?] {
result[item.key] = collection.filter({ $0 != nil }).map { "\($0!)" }.joined(separator: ",") result[item.key] = collection.filter({ $0 != nil }).map { "\($0!)" }.joined(separator: ",")
} else if let value: Any = item.value { } else if let value: Any = item.value {
result[item.key] = "\(value)" result[item.key] = "\(value)"
@ -46,7 +46,7 @@ public struct APIHelper {
} }
public static func mapValueToPathItem(_ source: Any) -> Any { public static func mapValueToPathItem(_ source: Any) -> Any {
if let collection = source as? Array<Any?> { if let collection = source as? [Any?] {
return collection.filter({ $0 != nil }).map({"\($0!)"}).joined(separator: ",") return collection.filter({ $0 != nil }).map({"\($0!)"}).joined(separator: ",")
} }
return source return source
@ -54,7 +54,7 @@ public struct APIHelper {
public static func mapValuesToQueryItems(_ source: [String: Any?]) -> [URLQueryItem]? { public static func mapValuesToQueryItems(_ source: [String: Any?]) -> [URLQueryItem]? {
let destination = source.filter({ $0.value != nil}).reduce(into: [URLQueryItem]()) { (result, item) in let destination = source.filter({ $0.value != nil}).reduce(into: [URLQueryItem]()) { (result, item) in
if let collection = item.value as? Array<Any?> { if let collection = item.value as? [Any?] {
collection.filter({ $0 != nil }).map({"\($0!)"}).forEach { value in collection.filter({ $0 != nil }).map({"\($0!)"}).forEach { value in
result.append(URLQueryItem(name: item.key, value: value)) result.append(URLQueryItem(name: item.key, value: value))
} }
@ -69,4 +69,3 @@ public struct APIHelper {
return destination return destination
} }
} }

View File

@ -25,7 +25,7 @@ open class RequestBuilder<T> {
/// Optional block to obtain a reference to the request's progress instance when available. /// Optional block to obtain a reference to the request's progress instance when available.
/// With the URLSession http client the request's progress only works on iOS 11.0, macOS 10.13, macCatalyst 13.0, tvOS 11.0, watchOS 4.0. /// With the URLSession http client the request's progress only works on iOS 11.0, macOS 10.13, macCatalyst 13.0, tvOS 11.0, watchOS 4.0.
/// If you need to get the request's progress in older OS versions, please use Alamofire http client. /// If you need to get the request's progress in older OS versions, please use Alamofire http client.
public var onProgressReady: ((Progress) -> ())? public var onProgressReady: ((Progress) -> Void)?
required public init(method: String, URLString: String, parameters: [String: Any]?, isBody: Bool, headers: [String: String] = [:]) { required public init(method: String, URLString: String, parameters: [String: Any]?, isBody: Bool, headers: [String: String] = [:]) {
self.method = method self.method = method

View File

@ -8,8 +8,6 @@
import Foundation import Foundation
import Combine import Combine
open class AnotherFakeAPI { open class AnotherFakeAPI {
/** /**
To test special tags To test special tags

View File

@ -8,8 +8,6 @@
import Foundation import Foundation
import Combine import Combine
open class FakeAPI { open class FakeAPI {
/** /**

View File

@ -8,8 +8,6 @@
import Foundation import Foundation
import Combine import Combine
open class FakeClassnameTags123API { open class FakeClassnameTags123API {
/** /**
To test class name in snake case To test class name in snake case

View File

@ -8,8 +8,6 @@
import Foundation import Foundation
import Combine import Combine
open class PetAPI { open class PetAPI {
/** /**
Add a new pet to the store Add a new pet to the store

View File

@ -8,8 +8,6 @@
import Foundation import Foundation
import Combine import Combine
open class StoreAPI { open class StoreAPI {
/** /**
Delete purchase order by ID Delete purchase order by ID

View File

@ -8,8 +8,6 @@
import Foundation import Foundation
import Combine import Combine
open class UserAPI { open class UserAPI {
/** /**
Create user Create user

View File

@ -148,7 +148,7 @@ extension KeyedDecodingContainerProtocol {
} }
public func decodeArrayIfPresent<T>(_ type: T.Type, forKey key: Self.Key) throws -> [T]? where T: Decodable { public func decodeArrayIfPresent<T>(_ type: T.Type, forKey key: Self.Key) throws -> [T]? where T: Decodable {
var tmpArray: [T]? = nil var tmpArray: [T]?
if contains(key) { if contains(key) {
tmpArray = try decodeArray(T.self, forKey: key) tmpArray = try decodeArray(T.self, forKey: key)
@ -177,5 +177,3 @@ extension HTTPURLResponse {
return Array(200 ..< 300).contains(statusCode) return Array(200 ..< 300).contains(statusCode)
} }
} }

View File

@ -41,7 +41,7 @@ public struct JSONDataEncoding {
} }
public static func encodingParameters(jsonData: Data?) -> [String: Any]? { public static func encodingParameters(jsonData: Data?) -> [String: Any]? {
var returnedParams: [String: Any]? = nil var returnedParams: [String: Any]?
if let jsonData = jsonData, !jsonData.isEmpty { if let jsonData = jsonData, !jsonData.isEmpty {
var params: [String: Any] = [:] var params: [String: Any] = [:]
params[jsonDataKey] = jsonData params[jsonDataKey] = jsonData

View File

@ -10,7 +10,7 @@ import Foundation
open class JSONEncodingHelper { open class JSONEncodingHelper {
open class func encodingParameters<T: Encodable>(forEncodableObject encodableObj: T?) -> [String: Any]? { open class func encodingParameters<T: Encodable>(forEncodableObject encodableObj: T?) -> [String: Any]? {
var params: [String: Any]? = nil var params: [String: Any]?
// Encode the Encodable object // Encode the Encodable object
if let encodableObj = encodableObj { if let encodableObj = encodableObj {
@ -27,7 +27,7 @@ open class JSONEncodingHelper {
} }
open class func encodingParameters(forEncodableObject encodableObj: Any?) -> [String: Any]? { open class func encodingParameters(forEncodableObject encodableObj: Any?) -> [String: Any]? {
var params: [String: Any]? = nil var params: [String: Any]?
if let encodableObj = encodableObj { if let encodableObj = encodableObj {
do { do {

View File

@ -30,7 +30,6 @@ public enum DecodableRequestBuilderError: Error {
case generalError(Error) case generalError(Error)
} }
open class Response<T> { open class Response<T> {
public let statusCode: Int public let statusCode: Int
public let header: [String: String] public let header: [String: String]

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct AdditionalPropertiesClass: Codable { public struct AdditionalPropertiesClass: Codable {
public var mapString: [String: String]? public var mapString: [String: String]?
public var mapMapString: [String: [String: String]]? public var mapMapString: [String: [String: String]]?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct Animal: Codable { public struct Animal: Codable {
public var className: String public var className: String
public var color: String? = "red" public var color: String? = "red"

View File

@ -7,5 +7,4 @@
import Foundation import Foundation
public typealias AnimalFarm = [Animal] public typealias AnimalFarm = [Animal]

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct ApiResponse: Codable { public struct ApiResponse: Codable {
public var code: Int? public var code: Int?
public var type: String? public var type: String?
public var message: String? public var message: String?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct ArrayOfArrayOfNumberOnly: Codable { public struct ArrayOfArrayOfNumberOnly: Codable {
public var arrayArrayNumber: [[Double]]? public var arrayArrayNumber: [[Double]]?
public init(arrayArrayNumber: [[Double]]?) { public init(arrayArrayNumber: [[Double]]?) {

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct ArrayOfNumberOnly: Codable { public struct ArrayOfNumberOnly: Codable {
public var arrayNumber: [Double]? public var arrayNumber: [Double]?
public init(arrayNumber: [Double]?) { public init(arrayNumber: [Double]?) {

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct ArrayTest: Codable { public struct ArrayTest: Codable {
public var arrayOfString: [String]? public var arrayOfString: [String]?
public var arrayArrayOfInteger: [[Int64]]? public var arrayArrayOfInteger: [[Int64]]?
public var arrayArrayOfModel: [[ReadOnlyFirst]]? public var arrayArrayOfModel: [[ReadOnlyFirst]]?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct Capitalization: Codable { public struct Capitalization: Codable {
public var smallCamel: String? public var smallCamel: String?
public var capitalCamel: String? public var capitalCamel: String?
public var smallSnake: String? public var smallSnake: String?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct Cat: Codable { public struct Cat: Codable {
public var className: String public var className: String
public var color: String? = "red" public var color: String? = "red"
public var declawed: Bool? public var declawed: Bool?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct CatAllOf: Codable { public struct CatAllOf: Codable {
public var declawed: Bool? public var declawed: Bool?
public init(declawed: Bool?) { public init(declawed: Bool?) {

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct Category: Codable { public struct Category: Codable {
public var id: Int64? public var id: Int64?
public var name: String = "default-name" public var name: String = "default-name"

View File

@ -10,7 +10,6 @@ import Foundation
/** Model for testing model with \&quot;_class\&quot; property */ /** Model for testing model with \&quot;_class\&quot; property */
public struct ClassModel: Codable { public struct ClassModel: Codable {
public var _class: String? public var _class: String?
public init(_class: String?) { public init(_class: String?) {

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct Client: Codable { public struct Client: Codable {
public var client: String? public var client: String?
public init(client: String?) { public init(client: String?) {

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct Dog: Codable { public struct Dog: Codable {
public var className: String public var className: String
public var color: String? = "red" public var color: String? = "red"
public var breed: String? public var breed: String?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct DogAllOf: Codable { public struct DogAllOf: Codable {
public var breed: String? public var breed: String?
public init(breed: String?) { public init(breed: String?) {

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct EnumArrays: Codable { public struct EnumArrays: Codable {
public enum JustSymbol: String, Codable, CaseIterable { public enum JustSymbol: String, Codable, CaseIterable {
case greaterThanOrEqualTo = ">=" case greaterThanOrEqualTo = ">="
case dollar = "$" case dollar = "$"

View File

@ -7,7 +7,6 @@
import Foundation import Foundation
public enum EnumClass: String, Codable, CaseIterable { public enum EnumClass: String, Codable, CaseIterable {
case abc = "_abc" case abc = "_abc"
case efg = "-efg" case efg = "-efg"

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct EnumTest: Codable { public struct EnumTest: Codable {
public enum EnumString: String, Codable, CaseIterable { public enum EnumString: String, Codable, CaseIterable {
case upper = "UPPER" case upper = "UPPER"
case lower = "lower" case lower = "lower"

View File

@ -10,7 +10,6 @@ import Foundation
/** Must be named &#x60;File&#x60; for test. */ /** Must be named &#x60;File&#x60; for test. */
public struct File: Codable { public struct File: Codable {
/** Test capitalization */ /** Test capitalization */
public var sourceURI: String? public var sourceURI: String?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct FileSchemaTestClass: Codable { public struct FileSchemaTestClass: Codable {
public var file: File? public var file: File?
public var files: [File]? public var files: [File]?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct FormatTest: Codable { public struct FormatTest: Codable {
public var integer: Int? public var integer: Int?
public var int32: Int? public var int32: Int?
public var int64: Int64? public var int64: Int64?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct HasOnlyReadOnly: Codable { public struct HasOnlyReadOnly: Codable {
public var bar: String? public var bar: String?
public var foo: String? public var foo: String?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct List: Codable { public struct List: Codable {
public var _123list: String? public var _123list: String?
public init(_123list: String?) { public init(_123list: String?) {

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct MapTest: Codable { public struct MapTest: Codable {
public enum MapOfEnumString: String, Codable, CaseIterable { public enum MapOfEnumString: String, Codable, CaseIterable {
case upper = "UPPER" case upper = "UPPER"
case lower = "lower" case lower = "lower"

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct MixedPropertiesAndAdditionalPropertiesClass: Codable { public struct MixedPropertiesAndAdditionalPropertiesClass: Codable {
public var uuid: UUID? public var uuid: UUID?
public var dateTime: Date? public var dateTime: Date?
public var map: [String: Animal]? public var map: [String: Animal]?

View File

@ -10,7 +10,6 @@ import Foundation
/** Model for testing model name starting with number */ /** Model for testing model name starting with number */
public struct Model200Response: Codable { public struct Model200Response: Codable {
public var name: Int? public var name: Int?
public var _class: String? public var _class: String?

View File

@ -10,7 +10,6 @@ import Foundation
/** Model for testing model name same as property name */ /** Model for testing model name same as property name */
public struct Name: Codable { public struct Name: Codable {
public var name: Int public var name: Int
public var snakeCase: Int? public var snakeCase: Int?
public var property: String? public var property: String?

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct NumberOnly: Codable { public struct NumberOnly: Codable {
public var justNumber: Double? public var justNumber: Double?
public init(justNumber: Double?) { public init(justNumber: Double?) {

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct Order: Codable { public struct Order: Codable {
public enum Status: String, Codable, CaseIterable { public enum Status: String, Codable, CaseIterable {
case placed = "placed" case placed = "placed"
case approved = "approved" case approved = "approved"

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct OuterComposite: Codable { public struct OuterComposite: Codable {
public var myNumber: Double? public var myNumber: Double?
public var myString: String? public var myString: String?
public var myBoolean: Bool? public var myBoolean: Bool?

View File

@ -7,7 +7,6 @@
import Foundation import Foundation
public enum OuterEnum: String, Codable, CaseIterable { public enum OuterEnum: String, Codable, CaseIterable {
case placed = "placed" case placed = "placed"
case approved = "approved" case approved = "approved"

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct Pet: Codable { public struct Pet: Codable {
public enum Status: String, Codable, CaseIterable { public enum Status: String, Codable, CaseIterable {
case available = "available" case available = "available"
case pending = "pending" case pending = "pending"

View File

@ -7,10 +7,8 @@
import Foundation import Foundation
public struct ReadOnlyFirst: Codable { public struct ReadOnlyFirst: Codable {
public var bar: String? public var bar: String?
public var baz: String? public var baz: String?

Some files were not shown because too many files have changed in this diff Show More