Skip to content

Commit 63dfd33

Browse files
committed
./bin/utils/export_docs_generators.sh
1 parent d9928c8 commit 63dfd33

14 files changed

Lines changed: 14 additions & 14 deletions

File tree

samples/client/petstore/swift5/alamofireLibrary/PetstoreClient/Classes/OpenAPIs/Models/EnumArrays.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import AnyCodable
1313
public struct EnumArrays: Codable, Hashable {
1414

1515
public enum JustSymbol: String, Codable, CaseIterable {
16-
case greaterThanOrEqualTo = ">="
16+
case greaterThanEqual = ">="
1717
case dollar = "$"
1818
}
1919
public enum ArrayEnum: String, Codable, CaseIterable {

samples/client/petstore/swift5/asyncAwaitLibrary/PetstoreClient/Classes/OpenAPIs/Models/EnumArrays.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import AnyCodable
1313
public struct EnumArrays: Codable, Hashable {
1414

1515
public enum JustSymbol: String, Codable, CaseIterable {
16-
case greaterThanOrEqualTo = ">="
16+
case greaterThanEqual = ">="
1717
case dollar = "$"
1818
}
1919
public enum ArrayEnum: String, Codable, CaseIterable {

samples/client/petstore/swift5/combineLibrary/PetstoreClient/Classes/OpenAPIs/Models/EnumArrays.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import AnyCodable
1313
public struct EnumArrays: Codable, Hashable {
1414

1515
public enum JustSymbol: String, Codable, CaseIterable {
16-
case greaterThanOrEqualTo = ">="
16+
case greaterThanEqual = ">="
1717
case dollar = "$"
1818
}
1919
public enum ArrayEnum: String, Codable, CaseIterable {

samples/client/petstore/swift5/default/PetstoreClient/Classes/OpenAPIs/Models/EnumArrays.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import AnyCodable
1313
public struct EnumArrays: Codable, Hashable {
1414

1515
public enum JustSymbol: String, Codable, CaseIterable {
16-
case greaterThanOrEqualTo = ">="
16+
case greaterThanEqual = ">="
1717
case dollar = "$"
1818
}
1919
public enum ArrayEnum: String, Codable, CaseIterable {

samples/client/petstore/swift5/frozenEnums/PetstoreClient/Classes/OpenAPIs/Models/EnumArrays.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import AnyCodable
1313
public struct EnumArrays: Codable, Hashable {
1414

1515
public enum JustSymbol: String, Codable, CaseIterable, CaseIterableDefaultsLast {
16-
case greaterThanOrEqualTo = ">="
16+
case greaterThanEqual = ">="
1717
case dollar = "$"
1818
// This case is a catch-all generated by OpenAPI such that the enum is "non-frozen".
1919
// If new enum cases are added that are unknown to the spec/client, they are safely

samples/client/petstore/swift5/nonPublicApi/PetstoreClient/Classes/OpenAPIs/Models/EnumArrays.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import AnyCodable
1313
internal struct EnumArrays: Codable, Hashable {
1414

1515
internal enum JustSymbol: String, Codable, CaseIterable {
16-
case greaterThanOrEqualTo = ">="
16+
case greaterThanEqual = ">="
1717
case dollar = "$"
1818
}
1919
internal enum ArrayEnum: String, Codable, CaseIterable {

samples/client/petstore/swift5/objcCompatible/PetstoreClient/Classes/OpenAPIs/Models/EnumArrays.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import AnyCodable
1313
@objc public class EnumArrays: NSObject, Codable {
1414

1515
public enum JustSymbol: String, Codable, CaseIterable {
16-
case greaterThanOrEqualTo = ">="
16+
case greaterThanEqual = ">="
1717
case dollar = "$"
1818
}
1919
public enum ArrayEnum: String, Codable, CaseIterable {

samples/client/petstore/swift5/promisekitLibrary/PetstoreClient/Classes/OpenAPIs/Models/EnumArrays.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import AnyCodable
1313
public struct EnumArrays: Codable, Hashable {
1414

1515
public enum JustSymbol: String, Codable, CaseIterable {
16-
case greaterThanOrEqualTo = ">="
16+
case greaterThanEqual = ">="
1717
case dollar = "$"
1818
}
1919
public enum ArrayEnum: String, Codable, CaseIterable {

samples/client/petstore/swift5/readonlyProperties/PetstoreClient/Classes/OpenAPIs/Models/EnumArrays.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import AnyCodable
1313
public struct EnumArrays: Codable, Hashable {
1414

1515
public enum JustSymbol: String, Codable, CaseIterable {
16-
case greaterThanOrEqualTo = ">="
16+
case greaterThanEqual = ">="
1717
case dollar = "$"
1818
}
1919
public enum ArrayEnum: String, Codable, CaseIterable {

samples/client/petstore/swift5/resultLibrary/PetstoreClient/Classes/OpenAPIs/Models/EnumArrays.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import AnyCodable
1313
public struct EnumArrays: Codable, Hashable {
1414

1515
public enum JustSymbol: String, Codable, CaseIterable {
16-
case greaterThanOrEqualTo = ">="
16+
case greaterThanEqual = ">="
1717
case dollar = "$"
1818
}
1919
public enum ArrayEnum: String, Codable, CaseIterable {

0 commit comments

Comments
 (0)