Skip to content

Commit f7cdf13

Browse files
Commit via running: make Sources/repos
1 parent 5973380 commit f7cdf13

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Sources/repos/Types.swift

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11335,7 +11335,7 @@ public enum Components {
1133511335
///
1133611336
/// - Remark: Generated from `#/components/schemas/repository-ruleset-bypass-actor`.
1133711337
public struct RepositoryRulesetBypassActor: Codable, Hashable, Sendable {
11338-
/// The ID of the actor that can bypass a ruleset. If `actor_type` is `OrganizationAdmin`, this should be `1`. If `actor_type` is `DeployKey`, this should be null. `OrganizationAdmin` is not applicable for personal repositories.
11338+
/// The ID of the actor that can bypass a ruleset. Required for `Integration`, `RepositoryRole`, and `Team` actor types. If `actor_type` is `OrganizationAdmin`, this should be `1`. If `actor_type` is `DeployKey`, this should be null. `OrganizationAdmin` is not applicable for personal repositories.
1133911339
///
1134011340
/// - Remark: Generated from `#/components/schemas/repository-ruleset-bypass-actor/actor_id`.
1134111341
public var actorId: Swift.Int?
@@ -11367,7 +11367,7 @@ public enum Components {
1136711367
/// Creates a new `RepositoryRulesetBypassActor`.
1136811368
///
1136911369
/// - Parameters:
11370-
/// - actorId: The ID of the actor that can bypass a ruleset. If `actor_type` is `OrganizationAdmin`, this should be `1`. If `actor_type` is `DeployKey`, this should be null. `OrganizationAdmin` is not applicable for personal repositories.
11370+
/// - actorId: The ID of the actor that can bypass a ruleset. Required for `Integration`, `RepositoryRole`, and `Team` actor types. If `actor_type` is `OrganizationAdmin`, this should be `1`. If `actor_type` is `DeployKey`, this should be null. `OrganizationAdmin` is not applicable for personal repositories.
1137111371
/// - actorType: The type of actor that can bypass a ruleset.
1137211372
/// - bypassMode: When the specified actor can bypass the ruleset. `pull_request` means that an actor can only bypass rules on pull requests. `pull_request` is not applicable for the `DeployKey` actor type. Also, `pull_request` is only applicable to branch rulesets.
1137311373
public init(
@@ -21586,6 +21586,8 @@ public enum Components {
2158621586
public var createdAt: Foundation.Date
2158721587
/// - Remark: Generated from `#/components/schemas/release/published_at`.
2158821588
public var publishedAt: Foundation.Date?
21589+
/// - Remark: Generated from `#/components/schemas/release/updated_at`.
21590+
public var updatedAt: Foundation.Date?
2158921591
/// - Remark: Generated from `#/components/schemas/release/author`.
2159021592
public var author: Components.Schemas.SimpleUser
2159121593
/// - Remark: Generated from `#/components/schemas/release/assets`.
@@ -21622,6 +21624,7 @@ public enum Components {
2162221624
/// - immutable: Whether or not the release is immutable.
2162321625
/// - createdAt:
2162421626
/// - publishedAt:
21627+
/// - updatedAt:
2162521628
/// - author:
2162621629
/// - assets:
2162721630
/// - bodyHtml:
@@ -21647,6 +21650,7 @@ public enum Components {
2164721650
immutable: Swift.Bool? = nil,
2164821651
createdAt: Foundation.Date,
2164921652
publishedAt: Foundation.Date? = nil,
21653+
updatedAt: Foundation.Date? = nil,
2165021654
author: Components.Schemas.SimpleUser,
2165121655
assets: [Components.Schemas.ReleaseAsset],
2165221656
bodyHtml: Swift.String? = nil,
@@ -21672,6 +21676,7 @@ public enum Components {
2167221676
self.immutable = immutable
2167321677
self.createdAt = createdAt
2167421678
self.publishedAt = publishedAt
21679+
self.updatedAt = updatedAt
2167521680
self.author = author
2167621681
self.assets = assets
2167721682
self.bodyHtml = bodyHtml
@@ -21698,6 +21703,7 @@ public enum Components {
2169821703
case immutable
2169921704
case createdAt = "created_at"
2170021705
case publishedAt = "published_at"
21706+
case updatedAt = "updated_at"
2170121707
case author
2170221708
case assets
2170321709
case bodyHtml = "body_html"

0 commit comments

Comments
 (0)