Skip to content

Commit 2f3b49d

Browse files
Commit via running ake Sources/gists
1 parent b1df5c8 commit 2f3b49d

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed

Sources/gists/Client.swift

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -821,6 +821,8 @@ public struct Client: APIProtocol {
821821
}
822822
/// Delete a gist
823823
///
824+
///
825+
///
824826
/// - Remark: HTTP `DELETE /gists/{gist_id}`.
825827
/// - Remark: Generated from `#/paths//gists/{gist_id}/delete(gists/delete)`.
826828
public func gists_sol_delete(_ input: Operations.gists_sol_delete.Input) async throws -> Operations.gists_sol_delete.Output {
@@ -1395,6 +1397,8 @@ public struct Client: APIProtocol {
13951397
}
13961398
/// Delete a gist comment
13971399
///
1400+
///
1401+
///
13981402
/// - Remark: HTTP `DELETE /gists/{gist_id}/comments/{comment_id}`.
13991403
/// - Remark: Generated from `#/paths//gists/{gist_id}/comments/{comment_id}/delete(gists/delete-comment)`.
14001404
public func gists_sol_delete_hyphen_comment(_ input: Operations.gists_sol_delete_hyphen_comment.Input) async throws -> Operations.gists_sol_delete_hyphen_comment.Output {
@@ -1484,6 +1488,8 @@ public struct Client: APIProtocol {
14841488
}
14851489
/// List gist commits
14861490
///
1491+
///
1492+
///
14871493
/// - Remark: HTTP `GET /gists/{gist_id}/commits`.
14881494
/// - Remark: Generated from `#/paths//gists/{gist_id}/commits/get(gists/list-commits)`.
14891495
public func gists_sol_list_hyphen_commits(_ input: Operations.gists_sol_list_hyphen_commits.Input) async throws -> Operations.gists_sol_list_hyphen_commits.Output {
@@ -1614,6 +1620,8 @@ public struct Client: APIProtocol {
16141620
}
16151621
/// List gist forks
16161622
///
1623+
///
1624+
///
16171625
/// - Remark: HTTP `GET /gists/{gist_id}/forks`.
16181626
/// - Remark: Generated from `#/paths//gists/{gist_id}/forks/get(gists/list-forks)`.
16191627
public func gists_sol_list_hyphen_forks(_ input: Operations.gists_sol_list_hyphen_forks.Input) async throws -> Operations.gists_sol_list_hyphen_forks.Output {
@@ -1744,6 +1752,8 @@ public struct Client: APIProtocol {
17441752
}
17451753
/// Fork a gist
17461754
///
1755+
///
1756+
///
17471757
/// - Remark: HTTP `POST /gists/{gist_id}/forks`.
17481758
/// - Remark: Generated from `#/paths//gists/{gist_id}/forks/post(gists/fork)`.
17491759
public func gists_sol_fork(_ input: Operations.gists_sol_fork.Input) async throws -> Operations.gists_sol_fork.Output {
@@ -1882,6 +1892,8 @@ public struct Client: APIProtocol {
18821892
}
18831893
/// Check if a gist is starred
18841894
///
1895+
///
1896+
///
18851897
/// - Remark: HTTP `GET /gists/{gist_id}/star`.
18861898
/// - Remark: Generated from `#/paths//gists/{gist_id}/star/get(gists/check-is-starred)`.
18871899
public func gists_sol_check_hyphen_is_hyphen_starred(_ input: Operations.gists_sol_check_hyphen_is_hyphen_starred.Input) async throws -> Operations.gists_sol_check_hyphen_is_hyphen_starred.Output {
@@ -2060,6 +2072,8 @@ public struct Client: APIProtocol {
20602072
}
20612073
/// Unstar a gist
20622074
///
2075+
///
2076+
///
20632077
/// - Remark: HTTP `DELETE /gists/{gist_id}/star`.
20642078
/// - Remark: Generated from `#/paths//gists/{gist_id}/star/delete(gists/unstar)`.
20652079
public func gists_sol_unstar(_ input: Operations.gists_sol_unstar.Input) async throws -> Operations.gists_sol_unstar.Output {

Sources/gists/Types.swift

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ public protocol APIProtocol: Sendable {
7373
func gists_sol_update(_ input: Operations.gists_sol_update.Input) async throws -> Operations.gists_sol_update.Output
7474
/// Delete a gist
7575
///
76+
///
77+
///
7678
/// - Remark: HTTP `DELETE /gists/{gist_id}`.
7779
/// - Remark: Generated from `#/paths//gists/{gist_id}/delete(gists/delete)`.
7880
func gists_sol_delete(_ input: Operations.gists_sol_delete.Input) async throws -> Operations.gists_sol_delete.Output
@@ -126,26 +128,36 @@ public protocol APIProtocol: Sendable {
126128
func gists_sol_update_hyphen_comment(_ input: Operations.gists_sol_update_hyphen_comment.Input) async throws -> Operations.gists_sol_update_hyphen_comment.Output
127129
/// Delete a gist comment
128130
///
131+
///
132+
///
129133
/// - Remark: HTTP `DELETE /gists/{gist_id}/comments/{comment_id}`.
130134
/// - Remark: Generated from `#/paths//gists/{gist_id}/comments/{comment_id}/delete(gists/delete-comment)`.
131135
func gists_sol_delete_hyphen_comment(_ input: Operations.gists_sol_delete_hyphen_comment.Input) async throws -> Operations.gists_sol_delete_hyphen_comment.Output
132136
/// List gist commits
133137
///
138+
///
139+
///
134140
/// - Remark: HTTP `GET /gists/{gist_id}/commits`.
135141
/// - Remark: Generated from `#/paths//gists/{gist_id}/commits/get(gists/list-commits)`.
136142
func gists_sol_list_hyphen_commits(_ input: Operations.gists_sol_list_hyphen_commits.Input) async throws -> Operations.gists_sol_list_hyphen_commits.Output
137143
/// List gist forks
138144
///
145+
///
146+
///
139147
/// - Remark: HTTP `GET /gists/{gist_id}/forks`.
140148
/// - Remark: Generated from `#/paths//gists/{gist_id}/forks/get(gists/list-forks)`.
141149
func gists_sol_list_hyphen_forks(_ input: Operations.gists_sol_list_hyphen_forks.Input) async throws -> Operations.gists_sol_list_hyphen_forks.Output
142150
/// Fork a gist
143151
///
152+
///
153+
///
144154
/// - Remark: HTTP `POST /gists/{gist_id}/forks`.
145155
/// - Remark: Generated from `#/paths//gists/{gist_id}/forks/post(gists/fork)`.
146156
func gists_sol_fork(_ input: Operations.gists_sol_fork.Input) async throws -> Operations.gists_sol_fork.Output
147157
/// Check if a gist is starred
148158
///
159+
///
160+
///
149161
/// - Remark: HTTP `GET /gists/{gist_id}/star`.
150162
/// - Remark: Generated from `#/paths//gists/{gist_id}/star/get(gists/check-is-starred)`.
151163
func gists_sol_check_hyphen_is_hyphen_starred(_ input: Operations.gists_sol_check_hyphen_is_hyphen_starred.Input) async throws -> Operations.gists_sol_check_hyphen_is_hyphen_starred.Output
@@ -158,6 +170,8 @@ public protocol APIProtocol: Sendable {
158170
func gists_sol_star(_ input: Operations.gists_sol_star.Input) async throws -> Operations.gists_sol_star.Output
159171
/// Unstar a gist
160172
///
173+
///
174+
///
161175
/// - Remark: HTTP `DELETE /gists/{gist_id}/star`.
162176
/// - Remark: Generated from `#/paths//gists/{gist_id}/star/delete(gists/unstar)`.
163177
func gists_sol_unstar(_ input: Operations.gists_sol_unstar.Input) async throws -> Operations.gists_sol_unstar.Output
@@ -296,6 +310,8 @@ extension APIProtocol {
296310
}
297311
/// Delete a gist
298312
///
313+
///
314+
///
299315
/// - Remark: HTTP `DELETE /gists/{gist_id}`.
300316
/// - Remark: Generated from `#/paths//gists/{gist_id}/delete(gists/delete)`.
301317
public func gists_sol_delete(
@@ -395,6 +411,8 @@ extension APIProtocol {
395411
}
396412
/// Delete a gist comment
397413
///
414+
///
415+
///
398416
/// - Remark: HTTP `DELETE /gists/{gist_id}/comments/{comment_id}`.
399417
/// - Remark: Generated from `#/paths//gists/{gist_id}/comments/{comment_id}/delete(gists/delete-comment)`.
400418
public func gists_sol_delete_hyphen_comment(
@@ -408,6 +426,8 @@ extension APIProtocol {
408426
}
409427
/// List gist commits
410428
///
429+
///
430+
///
411431
/// - Remark: HTTP `GET /gists/{gist_id}/commits`.
412432
/// - Remark: Generated from `#/paths//gists/{gist_id}/commits/get(gists/list-commits)`.
413433
public func gists_sol_list_hyphen_commits(
@@ -423,6 +443,8 @@ extension APIProtocol {
423443
}
424444
/// List gist forks
425445
///
446+
///
447+
///
426448
/// - Remark: HTTP `GET /gists/{gist_id}/forks`.
427449
/// - Remark: Generated from `#/paths//gists/{gist_id}/forks/get(gists/list-forks)`.
428450
public func gists_sol_list_hyphen_forks(
@@ -438,6 +460,8 @@ extension APIProtocol {
438460
}
439461
/// Fork a gist
440462
///
463+
///
464+
///
441465
/// - Remark: HTTP `POST /gists/{gist_id}/forks`.
442466
/// - Remark: Generated from `#/paths//gists/{gist_id}/forks/post(gists/fork)`.
443467
public func gists_sol_fork(
@@ -451,6 +475,8 @@ extension APIProtocol {
451475
}
452476
/// Check if a gist is starred
453477
///
478+
///
479+
///
454480
/// - Remark: HTTP `GET /gists/{gist_id}/star`.
455481
/// - Remark: Generated from `#/paths//gists/{gist_id}/star/get(gists/check-is-starred)`.
456482
public func gists_sol_check_hyphen_is_hyphen_starred(
@@ -479,6 +505,8 @@ extension APIProtocol {
479505
}
480506
/// Unstar a gist
481507
///
508+
///
509+
///
482510
/// - Remark: HTTP `DELETE /gists/{gist_id}/star`.
483511
/// - Remark: Generated from `#/paths//gists/{gist_id}/star/delete(gists/unstar)`.
484512
public func gists_sol_unstar(
@@ -4091,6 +4119,8 @@ public enum Operations {
40914119
}
40924120
/// Delete a gist
40934121
///
4122+
///
4123+
///
40944124
/// - Remark: HTTP `DELETE /gists/{gist_id}`.
40954125
/// - Remark: Generated from `#/paths//gists/{gist_id}/delete(gists/delete)`.
40964126
public enum gists_sol_delete {
@@ -5179,6 +5209,8 @@ public enum Operations {
51795209
}
51805210
/// Delete a gist comment
51815211
///
5212+
///
5213+
///
51825214
/// - Remark: HTTP `DELETE /gists/{gist_id}/comments/{comment_id}`.
51835215
/// - Remark: Generated from `#/paths//gists/{gist_id}/comments/{comment_id}/delete(gists/delete-comment)`.
51845216
public enum gists_sol_delete_hyphen_comment {
@@ -5363,6 +5395,8 @@ public enum Operations {
53635395
}
53645396
/// List gist commits
53655397
///
5398+
///
5399+
///
53665400
/// - Remark: HTTP `GET /gists/{gist_id}/commits`.
53675401
/// - Remark: Generated from `#/paths//gists/{gist_id}/commits/get(gists/list-commits)`.
53685402
public enum gists_sol_list_hyphen_commits {
@@ -5608,6 +5642,8 @@ public enum Operations {
56085642
}
56095643
/// List gist forks
56105644
///
5645+
///
5646+
///
56115647
/// - Remark: HTTP `GET /gists/{gist_id}/forks`.
56125648
/// - Remark: Generated from `#/paths//gists/{gist_id}/forks/get(gists/list-forks)`.
56135649
public enum gists_sol_list_hyphen_forks {
@@ -5853,6 +5889,8 @@ public enum Operations {
58535889
}
58545890
/// Fork a gist
58555891
///
5892+
///
5893+
///
58565894
/// - Remark: HTTP `POST /gists/{gist_id}/forks`.
58575895
/// - Remark: Generated from `#/paths//gists/{gist_id}/forks/post(gists/fork)`.
58585896
public enum gists_sol_fork {
@@ -6094,6 +6132,8 @@ public enum Operations {
60946132
}
60956133
/// Check if a gist is starred
60966134
///
6135+
///
6136+
///
60976137
/// - Remark: HTTP `GET /gists/{gist_id}/star`.
60986138
/// - Remark: Generated from `#/paths//gists/{gist_id}/star/get(gists/check-is-starred)`.
60996139
public enum gists_sol_check_hyphen_is_hyphen_starred {
@@ -6482,6 +6522,8 @@ public enum Operations {
64826522
}
64836523
/// Unstar a gist
64846524
///
6525+
///
6526+
///
64856527
/// - Remark: HTTP `DELETE /gists/{gist_id}/star`.
64866528
/// - Remark: Generated from `#/paths//gists/{gist_id}/star/delete(gists/unstar)`.
64876529
public enum gists_sol_unstar {

0 commit comments

Comments
 (0)