Skip to content

Commit 81e8067

Browse files
committed
Commit via running ake Sources/emojis
1 parent 6d6665b commit 81e8067

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Sources/emojis/Types.swift

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,15 @@ extension APIProtocol {
3535

3636
/// Server URLs defined in the OpenAPI document.
3737
public enum Servers {
38+
public enum Server1 {
39+
public static func url() throws -> Foundation.URL {
40+
try Foundation.URL(
41+
validatingOpenAPIServerURL: "https://api.github.com",
42+
variables: []
43+
)
44+
}
45+
}
46+
@available(*, deprecated, renamed: "Servers.Server1.url")
3847
public static func server1() throws -> Foundation.URL {
3948
try Foundation.URL(
4049
validatingOpenAPIServerURL: "https://api.github.com",
@@ -169,6 +178,14 @@ public enum Operations {
169178
///
170179
/// HTTP response code: `304 notModified`.
171180
case notModified(Components.Responses.not_modified)
181+
/// Not modified
182+
///
183+
/// - Remark: Generated from `#/paths//emojis/get(emojis/get)/responses/304`.
184+
///
185+
/// HTTP response code: `304 notModified`.
186+
public static var notModified: Self {
187+
.notModified(.init())
188+
}
172189
/// The associated value of the enum case if `self` is `.notModified`.
173190
///
174191
/// - Throws: An error if `self` is not `.notModified`.

0 commit comments

Comments
 (0)