Skip to content

Commit f03ba9f

Browse files
Commit via running: make Sources/code-security
1 parent af46064 commit f03ba9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/code-security/Types.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6067,14 +6067,14 @@ public enum Operations {
60676067
@frozen public enum Body: Sendable, Hashable {
60686068
/// - Remark: Generated from `#/paths/orgs/{org}/code-security/configurations/detach/DELETE/requestBody/json`.
60696069
public struct JsonPayload: Codable, Hashable, Sendable {
6070-
/// An array of repository IDs to detach from configurations.
6070+
/// An array of repository IDs to detach from configurations. Up to 1000 IDs can be provided.
60716071
///
60726072
/// - Remark: Generated from `#/paths/orgs/{org}/code-security/configurations/detach/DELETE/requestBody/json/selected_repository_ids`.
60736073
public var selectedRepositoryIds: [Swift.Int]?
60746074
/// Creates a new `JsonPayload`.
60756075
///
60766076
/// - Parameters:
6077-
/// - selectedRepositoryIds: An array of repository IDs to detach from configurations.
6077+
/// - selectedRepositoryIds: An array of repository IDs to detach from configurations. Up to 1000 IDs can be provided.
60786078
public init(selectedRepositoryIds: [Swift.Int]? = nil) {
60796079
self.selectedRepositoryIds = selectedRepositoryIds
60806080
}

0 commit comments

Comments
 (0)