Skip to content

Commit 289472f

Browse files
Commit via running ake Sources/orgs
1 parent a0c6b6d commit 289472f

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

Sources/orgs/Types.swift

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7088,10 +7088,10 @@ public enum Components {
70887088
self.body = body
70897089
}
70907090
}
7091-
public struct conflict: Sendable, Hashable {
7092-
/// - Remark: Generated from `#/components/responses/conflict/content`.
7091+
public struct internal_error: Sendable, Hashable {
7092+
/// - Remark: Generated from `#/components/responses/internal_error/content`.
70937093
@frozen public enum Body: Sendable, Hashable {
7094-
/// - Remark: Generated from `#/components/responses/conflict/content/application\/json`.
7094+
/// - Remark: Generated from `#/components/responses/internal_error/content/application\/json`.
70957095
case json(Components.Schemas.basic_hyphen_error)
70967096
/// The associated value of the enum case if `self` is `.json`.
70977097
///
@@ -7107,19 +7107,19 @@ public enum Components {
71077107
}
71087108
}
71097109
/// Received HTTP response body
7110-
public var body: Components.Responses.conflict.Body
7111-
/// Creates a new `conflict`.
7110+
public var body: Components.Responses.internal_error.Body
7111+
/// Creates a new `internal_error`.
71127112
///
71137113
/// - Parameters:
71147114
/// - body: Received HTTP response body
7115-
public init(body: Components.Responses.conflict.Body) {
7115+
public init(body: Components.Responses.internal_error.Body) {
71167116
self.body = body
71177117
}
71187118
}
7119-
public struct internal_error: Sendable, Hashable {
7120-
/// - Remark: Generated from `#/components/responses/internal_error/content`.
7119+
public struct conflict: Sendable, Hashable {
7120+
/// - Remark: Generated from `#/components/responses/conflict/content`.
71217121
@frozen public enum Body: Sendable, Hashable {
7122-
/// - Remark: Generated from `#/components/responses/internal_error/content/application\/json`.
7122+
/// - Remark: Generated from `#/components/responses/conflict/content/application\/json`.
71237123
case json(Components.Schemas.basic_hyphen_error)
71247124
/// The associated value of the enum case if `self` is `.json`.
71257125
///
@@ -7135,12 +7135,12 @@ public enum Components {
71357135
}
71367136
}
71377137
/// Received HTTP response body
7138-
public var body: Components.Responses.internal_error.Body
7139-
/// Creates a new `internal_error`.
7138+
public var body: Components.Responses.conflict.Body
7139+
/// Creates a new `conflict`.
71407140
///
71417141
/// - Parameters:
71427142
/// - body: Received HTTP response body
7143-
public init(body: Components.Responses.internal_error.Body) {
7143+
public init(body: Components.Responses.conflict.Body) {
71447144
self.body = body
71457145
}
71467146
}

0 commit comments

Comments
 (0)