@@ -2872,6 +2872,41 @@ public enum Components {
28722872 case percentCompleted = "percent_completed"
28732873 }
28742874 }
2875+ /// - Remark: Generated from `#/components/schemas/issue-dependencies-summary`.
2876+ public struct IssueDependenciesSummary: Codable, Hashable, Sendable {
2877+ /// - Remark: Generated from `#/components/schemas/issue-dependencies-summary/blocked_by`.
2878+ public var blockedBy: Swift.Int
2879+ /// - Remark: Generated from `#/components/schemas/issue-dependencies-summary/blocking`.
2880+ public var blocking: Swift.Int
2881+ /// - Remark: Generated from `#/components/schemas/issue-dependencies-summary/total_blocked_by`.
2882+ public var totalBlockedBy: Swift.Int
2883+ /// - Remark: Generated from `#/components/schemas/issue-dependencies-summary/total_blocking`.
2884+ public var totalBlocking: Swift.Int
2885+ /// Creates a new `IssueDependenciesSummary`.
2886+ ///
2887+ /// - Parameters:
2888+ /// - blockedBy:
2889+ /// - blocking:
2890+ /// - totalBlockedBy:
2891+ /// - totalBlocking:
2892+ public init(
2893+ blockedBy: Swift.Int,
2894+ blocking: Swift.Int,
2895+ totalBlockedBy: Swift.Int,
2896+ totalBlocking: Swift.Int
2897+ ) {
2898+ self.blockedBy = blockedBy
2899+ self.blocking = blocking
2900+ self.totalBlockedBy = totalBlockedBy
2901+ self.totalBlocking = totalBlocking
2902+ }
2903+ public enum CodingKeys: String, CodingKey {
2904+ case blockedBy = "blocked_by"
2905+ case blocking
2906+ case totalBlockedBy = "total_blocked_by"
2907+ case totalBlocking = "total_blocking"
2908+ }
2909+ }
28752910 /// Issues are a great way to keep track of tasks, enhancements, and bugs for your projects.
28762911 ///
28772912 /// - Remark: Generated from `#/components/schemas/issue`.
@@ -3104,6 +3139,8 @@ public enum Components {
31043139 public var reactions: Components.Schemas.ReactionRollup?
31053140 /// - Remark: Generated from `#/components/schemas/issue/sub_issues_summary`.
31063141 public var subIssuesSummary: Components.Schemas.SubIssuesSummary?
3142+ /// - Remark: Generated from `#/components/schemas/issue/issue_dependencies_summary`.
3143+ public var issueDependenciesSummary: Components.Schemas.IssueDependenciesSummary?
31073144 /// Creates a new `Issue`.
31083145 ///
31093146 /// - Parameters:
@@ -3143,6 +3180,7 @@ public enum Components {
31433180 /// - authorAssociation:
31443181 /// - reactions:
31453182 /// - subIssuesSummary:
3183+ /// - issueDependenciesSummary:
31463184 public init(
31473185 id: Swift.Int64,
31483186 nodeId: Swift.String,
@@ -3179,7 +3217,8 @@ public enum Components {
31793217 performedViaGithubApp: Components.Schemas.NullableIntegration? = nil,
31803218 authorAssociation: Components.Schemas.AuthorAssociation,
31813219 reactions: Components.Schemas.ReactionRollup? = nil,
3182- subIssuesSummary: Components.Schemas.SubIssuesSummary? = nil
3220+ subIssuesSummary: Components.Schemas.SubIssuesSummary? = nil,
3221+ issueDependenciesSummary: Components.Schemas.IssueDependenciesSummary? = nil
31833222 ) {
31843223 self.id = id
31853224 self.nodeId = nodeId
@@ -3217,6 +3256,7 @@ public enum Components {
32173256 self.authorAssociation = authorAssociation
32183257 self.reactions = reactions
32193258 self.subIssuesSummary = subIssuesSummary
3259+ self.issueDependenciesSummary = issueDependenciesSummary
32203260 }
32213261 public enum CodingKeys: String, CodingKey {
32223262 case id
@@ -3255,6 +3295,7 @@ public enum Components {
32553295 case authorAssociation = "author_association"
32563296 case reactions
32573297 case subIssuesSummary = "sub_issues_summary"
3298+ case issueDependenciesSummary = "issue_dependencies_summary"
32583299 }
32593300 }
32603301 /// Comments provide a way for people to collaborate on an issue.
0 commit comments