You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/apps/Types.swift
+1-6Lines changed: 1 addition & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -5728,22 +5728,17 @@ public enum Operations {
5728
5728
///
5729
5729
/// - Remark: Generated from `#/paths/app/hook/deliveries/GET/query/cursor`.
5730
5730
public var cursor: Components.Parameters.cursor?
5731
-
/// - Remark: Generated from `#/paths/app/hook/deliveries/GET/query/redelivery`.
5732
-
public var redelivery: Swift.Bool?
5733
5731
/// Creates a new `Query`.
5734
5732
///
5735
5733
/// - Parameters:
5736
5734
/// - 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)."
5737
5735
/// - 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.
Copy file name to clipboardExpand all lines: Sources/code-scanning/Client.swift
+116-2Lines changed: 116 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1493,7 +1493,7 @@ public struct Client: APIProtocol {
1493
1493
///
1494
1494
/// Lists the CodeQL databases that are available in a repository.
1495
1495
///
1496
-
/// OAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.
1496
+
/// OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.
/// - Remark: Generated from `#/paths//repos/{owner}/{repo}/code-scanning/codeql/databases/get(code-scanning/list-codeql-databases)`.
@@ -1632,7 +1632,7 @@ public struct Client: APIProtocol {
1632
1632
/// your HTTP client is configured to follow redirects or use the `Location` header
1633
1633
/// to make a second request to get the redirect URL.
1634
1634
///
1635
-
/// OAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.
1635
+
/// OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.
/// - Remark: Generated from `#/paths//repos/{owner}/{repo}/code-scanning/codeql/databases/{language}/get(code-scanning/get-codeql-database)`.
@@ -1764,6 +1764,120 @@ public struct Client: APIProtocol {
1764
1764
}
1765
1765
)
1766
1766
}
1767
+
/// Delete a CodeQL database
1768
+
///
1769
+
/// Deletes a CodeQL database for a language in a repository.
1770
+
///
1771
+
/// OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.
0 commit comments