Skip to content

Bump Submodule/github/rest-api-description from 31cc3f6 to bf4af7c #124

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
99 changes: 99 additions & 0 deletions Sources/dependabot/Client.swift
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,105 @@ public struct Client: APIProtocol {
}
)
}
/// Updates repositories to the list of repositories that organization admins have allowed Dependabot to access when updating dependencies.
///
/// > [!NOTE]
/// > This operation supports both server-to-server and user-to-server access.
/// Unauthorized users will not see the existence of this endpoint.
///
/// - Remark: HTTP `PATCH /organizations/{org}/dependabot/repository-access`.
/// - Remark: Generated from `#/paths//organizations/{org}/dependabot/repository-access/patch(dependabot/update-repository-access-for-org)`.
public func dependabotUpdateRepositoryAccessForOrg(_ input: Operations.DependabotUpdateRepositoryAccessForOrg.Input) async throws -> Operations.DependabotUpdateRepositoryAccessForOrg.Output {
try await client.send(
input: input,
forOperation: Operations.DependabotUpdateRepositoryAccessForOrg.id,
serializer: { input in
let path = try converter.renderedPath(
template: "/organizations/{}/dependabot/repository-access",
parameters: [
input.path.org
]
)
var request: HTTPTypes.HTTPRequest = .init(
soar_path: path,
method: .patch
)
suppressMutabilityWarning(&request)
converter.setAcceptHeader(
in: &request.headerFields,
contentTypes: input.headers.accept
)
let body: OpenAPIRuntime.HTTPBody?
switch input.body {
case let .json(value):
body = try converter.setRequiredRequestBodyAsJSON(
value,
headerFields: &request.headerFields,
contentType: "application/json; charset=utf-8"
)
}
return (request, body)
},
deserializer: { response, responseBody in
switch response.status.code {
case 204:
return .noContent(.init())
case 403:
let contentType = converter.extractContentTypeIfPresent(in: response.headerFields)
let body: Components.Responses.Forbidden.Body
let chosenContentType = try converter.bestContentType(
received: contentType,
options: [
"application/json"
]
)
switch chosenContentType {
case "application/json":
body = try await converter.getResponseBodyAsJSON(
Components.Schemas.BasicError.self,
from: responseBody,
transforming: { value in
.json(value)
}
)
default:
preconditionFailure("bestContentType chose an invalid content type.")
}
return .forbidden(.init(body: body))
case 404:
let contentType = converter.extractContentTypeIfPresent(in: response.headerFields)
let body: Components.Responses.NotFound.Body
let chosenContentType = try converter.bestContentType(
received: contentType,
options: [
"application/json"
]
)
switch chosenContentType {
case "application/json":
body = try await converter.getResponseBodyAsJSON(
Components.Schemas.BasicError.self,
from: responseBody,
transforming: { value in
.json(value)
}
)
default:
preconditionFailure("bestContentType chose an invalid content type.")
}
return .notFound(.init(body: body))
default:
return .undocumented(
statusCode: response.status.code,
.init(
headerFields: response.headerFields,
body: responseBody
)
)
}
}
)
}
/// Set the default repository access level for Dependabot
///
/// > [!NOTE]
Expand Down
246 changes: 246 additions & 0 deletions Sources/dependabot/Types.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,15 @@ public protocol APIProtocol: Sendable {
/// - Remark: HTTP `GET /organizations/{org}/dependabot/repository-access`.
/// - Remark: Generated from `#/paths//organizations/{org}/dependabot/repository-access/get(dependabot/repository-access-for-org)`.
func dependabotRepositoryAccessForOrg(_ input: Operations.DependabotRepositoryAccessForOrg.Input) async throws -> Operations.DependabotRepositoryAccessForOrg.Output
/// Updates repositories to the list of repositories that organization admins have allowed Dependabot to access when updating dependencies.
///
/// > [!NOTE]
/// > This operation supports both server-to-server and user-to-server access.
/// Unauthorized users will not see the existence of this endpoint.
///
/// - Remark: HTTP `PATCH /organizations/{org}/dependabot/repository-access`.
/// - Remark: Generated from `#/paths//organizations/{org}/dependabot/repository-access/patch(dependabot/update-repository-access-for-org)`.
func dependabotUpdateRepositoryAccessForOrg(_ input: Operations.DependabotUpdateRepositoryAccessForOrg.Input) async throws -> Operations.DependabotUpdateRepositoryAccessForOrg.Output
/// Set the default repository access level for Dependabot
///
/// > [!NOTE]
Expand Down Expand Up @@ -264,6 +273,25 @@ extension APIProtocol {
headers: headers
))
}
/// Updates repositories to the list of repositories that organization admins have allowed Dependabot to access when updating dependencies.
///
/// > [!NOTE]
/// > This operation supports both server-to-server and user-to-server access.
/// Unauthorized users will not see the existence of this endpoint.
///
/// - Remark: HTTP `PATCH /organizations/{org}/dependabot/repository-access`.
/// - Remark: Generated from `#/paths//organizations/{org}/dependabot/repository-access/patch(dependabot/update-repository-access-for-org)`.
public func dependabotUpdateRepositoryAccessForOrg(
path: Operations.DependabotUpdateRepositoryAccessForOrg.Input.Path,
headers: Operations.DependabotUpdateRepositoryAccessForOrg.Input.Headers = .init(),
body: Operations.DependabotUpdateRepositoryAccessForOrg.Input.Body
) async throws -> Operations.DependabotUpdateRepositoryAccessForOrg.Output {
try await dependabotUpdateRepositoryAccessForOrg(Operations.DependabotUpdateRepositoryAccessForOrg.Input(
path: path,
headers: headers,
body: body
))
}
/// Set the default repository access level for Dependabot
///
/// > [!NOTE]
Expand Down Expand Up @@ -4642,6 +4670,224 @@ public enum Operations {
}
}
}
/// Updates repositories to the list of repositories that organization admins have allowed Dependabot to access when updating dependencies.
///
/// > [!NOTE]
/// > This operation supports both server-to-server and user-to-server access.
/// Unauthorized users will not see the existence of this endpoint.
///
/// - Remark: HTTP `PATCH /organizations/{org}/dependabot/repository-access`.
/// - Remark: Generated from `#/paths//organizations/{org}/dependabot/repository-access/patch(dependabot/update-repository-access-for-org)`.
public enum DependabotUpdateRepositoryAccessForOrg {
public static let id: Swift.String = "dependabot/update-repository-access-for-org"
public struct Input: Sendable, Hashable {
/// - Remark: Generated from `#/paths/organizations/{org}/dependabot/repository-access/PATCH/path`.
public struct Path: Sendable, Hashable {
/// The organization name. The name is not case sensitive.
///
/// - Remark: Generated from `#/paths/organizations/{org}/dependabot/repository-access/PATCH/path/org`.
public var org: Components.Parameters.Org
/// Creates a new `Path`.
///
/// - Parameters:
/// - org: The organization name. The name is not case sensitive.
public init(org: Components.Parameters.Org) {
self.org = org
}
}
public var path: Operations.DependabotUpdateRepositoryAccessForOrg.Input.Path
/// - Remark: Generated from `#/paths/organizations/{org}/dependabot/repository-access/PATCH/header`.
public struct Headers: Sendable, Hashable {
public var accept: [OpenAPIRuntime.AcceptHeaderContentType<Operations.DependabotUpdateRepositoryAccessForOrg.AcceptableContentType>]
/// Creates a new `Headers`.
///
/// - Parameters:
/// - accept:
public init(accept: [OpenAPIRuntime.AcceptHeaderContentType<Operations.DependabotUpdateRepositoryAccessForOrg.AcceptableContentType>] = .defaultValues()) {
self.accept = accept
}
}
public var headers: Operations.DependabotUpdateRepositoryAccessForOrg.Input.Headers
/// - Remark: Generated from `#/paths/organizations/{org}/dependabot/repository-access/PATCH/requestBody`.
@frozen public enum Body: Sendable, Hashable {
/// - Remark: Generated from `#/paths/organizations/{org}/dependabot/repository-access/PATCH/requestBody/json`.
@frozen public enum JsonPayload: Codable, Hashable, Sendable {
/// - Remark: Generated from `#/paths/organizations/{org}/dependabot/repository-access/PATCH/requestBody/json/case1`.
public struct Case1Payload: Codable, Hashable, Sendable {
/// Creates a new `Case1Payload`.
public init() {}
}
/// - Remark: Generated from `#/paths/organizations/{org}/dependabot/repository-access/PATCH/requestBody/json/case1`.
case case1(Operations.DependabotUpdateRepositoryAccessForOrg.Input.Body.JsonPayload.Case1Payload)
/// - Remark: Generated from `#/paths/organizations/{org}/dependabot/repository-access/PATCH/requestBody/json/case2`.
public struct Case2Payload: Codable, Hashable, Sendable {
/// Creates a new `Case2Payload`.
public init() {}
}
/// - Remark: Generated from `#/paths/organizations/{org}/dependabot/repository-access/PATCH/requestBody/json/case2`.
case case2(Operations.DependabotUpdateRepositoryAccessForOrg.Input.Body.JsonPayload.Case2Payload)
public init(from decoder: any Decoder) throws {
var errors: [any Error] = []
do {
self = .case1(try .init(from: decoder))
return
} catch {
errors.append(error)
}
do {
self = .case2(try .init(from: decoder))
return
} catch {
errors.append(error)
}
throw Swift.DecodingError.failedToDecodeOneOfSchema(
type: Self.self,
codingPath: decoder.codingPath,
errors: errors
)
}
public func encode(to encoder: any Encoder) throws {
switch self {
case let .case1(value):
try value.encode(to: encoder)
case let .case2(value):
try value.encode(to: encoder)
}
}
}
/// - Remark: Generated from `#/paths/organizations/{org}/dependabot/repository-access/PATCH/requestBody/content/application\/json`.
case json(Operations.DependabotUpdateRepositoryAccessForOrg.Input.Body.JsonPayload)
}
public var body: Operations.DependabotUpdateRepositoryAccessForOrg.Input.Body
/// Creates a new `Input`.
///
/// - Parameters:
/// - path:
/// - headers:
/// - body:
public init(
path: Operations.DependabotUpdateRepositoryAccessForOrg.Input.Path,
headers: Operations.DependabotUpdateRepositoryAccessForOrg.Input.Headers = .init(),
body: Operations.DependabotUpdateRepositoryAccessForOrg.Input.Body
) {
self.path = path
self.headers = headers
self.body = body
}
}
@frozen public enum Output: Sendable, Hashable {
public struct NoContent: Sendable, Hashable {
/// Creates a new `NoContent`.
public init() {}
}
/// Response
///
/// - Remark: Generated from `#/paths//organizations/{org}/dependabot/repository-access/patch(dependabot/update-repository-access-for-org)/responses/204`.
///
/// HTTP response code: `204 noContent`.
case noContent(Operations.DependabotUpdateRepositoryAccessForOrg.Output.NoContent)
/// Response
///
/// - Remark: Generated from `#/paths//organizations/{org}/dependabot/repository-access/patch(dependabot/update-repository-access-for-org)/responses/204`.
///
/// HTTP response code: `204 noContent`.
public static var noContent: Self {
.noContent(.init())
}
/// The associated value of the enum case if `self` is `.noContent`.
///
/// - Throws: An error if `self` is not `.noContent`.
/// - SeeAlso: `.noContent`.
public var noContent: Operations.DependabotUpdateRepositoryAccessForOrg.Output.NoContent {
get throws {
switch self {
case let .noContent(response):
return response
default:
try throwUnexpectedResponseStatus(
expectedStatus: "noContent",
response: self
)
}
}
}
/// Forbidden
///
/// - Remark: Generated from `#/paths//organizations/{org}/dependabot/repository-access/patch(dependabot/update-repository-access-for-org)/responses/403`.
///
/// HTTP response code: `403 forbidden`.
case forbidden(Components.Responses.Forbidden)
/// The associated value of the enum case if `self` is `.forbidden`.
///
/// - Throws: An error if `self` is not `.forbidden`.
/// - SeeAlso: `.forbidden`.
public var forbidden: Components.Responses.Forbidden {
get throws {
switch self {
case let .forbidden(response):
return response
default:
try throwUnexpectedResponseStatus(
expectedStatus: "forbidden",
response: self
)
}
}
}
/// Resource not found
///
/// - Remark: Generated from `#/paths//organizations/{org}/dependabot/repository-access/patch(dependabot/update-repository-access-for-org)/responses/404`.
///
/// HTTP response code: `404 notFound`.
case notFound(Components.Responses.NotFound)
/// The associated value of the enum case if `self` is `.notFound`.
///
/// - Throws: An error if `self` is not `.notFound`.
/// - SeeAlso: `.notFound`.
public var notFound: Components.Responses.NotFound {
get throws {
switch self {
case let .notFound(response):
return response
default:
try throwUnexpectedResponseStatus(
expectedStatus: "notFound",
response: self
)
}
}
}
/// Undocumented response.
///
/// A response with a code that is not documented in the OpenAPI document.
case undocumented(statusCode: Swift.Int, OpenAPIRuntime.UndocumentedPayload)
}
@frozen public enum AcceptableContentType: AcceptableProtocol {
case json
case other(Swift.String)
public init?(rawValue: Swift.String) {
switch rawValue.lowercased() {
case "application/json":
self = .json
default:
self = .other(rawValue)
}
}
public var rawValue: Swift.String {
switch self {
case let .other(string):
return string
case .json:
return "application/json"
}
}
public static var allCases: [Self] {
[
.json
]
}
}
}
/// Set the default repository access level for Dependabot
///
/// > [!NOTE]
Expand Down
2 changes: 1 addition & 1 deletion Submodule/github/rest-api-description