Skip to content

Commit c9deb74

Browse files
Commit via running ake Sources/apps
1 parent b259954 commit c9deb74

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

Sources/apps/Client.swift

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -383,13 +383,6 @@ public struct Client: APIProtocol {
383383
name: "cursor",
384384
value: input.query.cursor
385385
)
386-
try converter.setQueryItemAsURI(
387-
in: &request,
388-
style: .form,
389-
explode: true,
390-
name: "redelivery",
391-
value: input.query.redelivery
392-
)
393386
converter.setAcceptHeader(
394387
in: &request.headerFields,
395388
contentTypes: input.headers.accept

Sources/apps/Types.swift

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5728,22 +5728,17 @@ public enum Operations {
57285728
///
57295729
/// - Remark: Generated from `#/paths/app/hook/deliveries/GET/query/cursor`.
57305730
public var cursor: Components.Parameters.cursor?
5731-
/// - Remark: Generated from `#/paths/app/hook/deliveries/GET/query/redelivery`.
5732-
public var redelivery: Swift.Bool?
57335731
/// Creates a new `Query`.
57345732
///
57355733
/// - Parameters:
57365734
/// - 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)."
57375735
/// - 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.
5738-
/// - redelivery:
57395736
public init(
57405737
per_page: Components.Parameters.per_hyphen_page? = nil,
5741-
cursor: Components.Parameters.cursor? = nil,
5742-
redelivery: Swift.Bool? = nil
5738+
cursor: Components.Parameters.cursor? = nil
57435739
) {
57445740
self.per_page = per_page
57455741
self.cursor = cursor
5746-
self.redelivery = redelivery
57475742
}
57485743
}
57495744
public var query: Operations.apps_sol_list_hyphen_webhook_hyphen_deliveries.Input.Query

0 commit comments

Comments
 (0)