Skip to content

Commit 20507ba

Browse files
Commit via running ake Sources/repos
1 parent 5b53edb commit 20507ba

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

Sources/repos/Client.swift

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11730,13 +11730,6 @@ public struct Client: APIProtocol {
1173011730
name: "cursor",
1173111731
value: input.query.cursor
1173211732
)
11733-
try converter.setQueryItemAsURI(
11734-
in: &request,
11735-
style: .form,
11736-
explode: true,
11737-
name: "redelivery",
11738-
value: input.query.redelivery
11739-
)
1174011733
converter.setAcceptHeader(
1174111734
in: &request.headerFields,
1174211735
contentTypes: input.headers.accept

Sources/repos/Types.swift

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47455,22 +47455,17 @@ public enum Operations {
4745547455
///
4745647456
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/hooks/{hook_id}/deliveries/GET/query/cursor`.
4745747457
public var cursor: Components.Parameters.cursor?
47458-
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/hooks/{hook_id}/deliveries/GET/query/redelivery`.
47459-
public var redelivery: Swift.Bool?
4746047458
/// Creates a new `Query`.
4746147459
///
4746247460
/// - Parameters:
4746347461
/// - per_page: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
4746447462
/// - cursor: Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous page cursors.
47465-
/// - redelivery:
4746647463
public init(
4746747464
per_page: Components.Parameters.per_hyphen_page? = nil,
47468-
cursor: Components.Parameters.cursor? = nil,
47469-
redelivery: Swift.Bool? = nil
47465+
cursor: Components.Parameters.cursor? = nil
4747047466
) {
4747147467
self.per_page = per_page
4747247468
self.cursor = cursor
47473-
self.redelivery = redelivery
4747447469
}
4747547470
}
4747647471
public var query: Operations.repos_sol_list_hyphen_webhook_hyphen_deliveries.Input.Query

0 commit comments

Comments
 (0)