Skip to content

Commit fa19b87

Browse files
Commit via running ake Sources/activity
1 parent 2f90a51 commit fa19b87

File tree

1 file changed

+36
-1
lines changed

1 file changed

+36
-1
lines changed

Sources/activity/Types.swift

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2611,6 +2611,35 @@ public enum Components {
26112611
case rocket
26122612
}
26132613
}
2614+
/// - Remark: Generated from `#/components/schemas/sub-issues-summary`.
2615+
public struct sub_hyphen_issues_hyphen_summary: Codable, Hashable, Sendable {
2616+
/// - Remark: Generated from `#/components/schemas/sub-issues-summary/total`.
2617+
public var total: Swift.Int
2618+
/// - Remark: Generated from `#/components/schemas/sub-issues-summary/completed`.
2619+
public var completed: Swift.Int
2620+
/// - Remark: Generated from `#/components/schemas/sub-issues-summary/percent_completed`.
2621+
public var percent_completed: Swift.Int
2622+
/// Creates a new `sub_hyphen_issues_hyphen_summary`.
2623+
///
2624+
/// - Parameters:
2625+
/// - total:
2626+
/// - completed:
2627+
/// - percent_completed:
2628+
public init(
2629+
total: Swift.Int,
2630+
completed: Swift.Int,
2631+
percent_completed: Swift.Int
2632+
) {
2633+
self.total = total
2634+
self.completed = completed
2635+
self.percent_completed = percent_completed
2636+
}
2637+
public enum CodingKeys: String, CodingKey {
2638+
case total
2639+
case completed
2640+
case percent_completed
2641+
}
2642+
}
26142643
/// Issues are a great way to keep track of tasks, enhancements, and bugs for your projects.
26152644
///
26162645
/// - Remark: Generated from `#/components/schemas/issue`.
@@ -2838,6 +2867,8 @@ public enum Components {
28382867
public var author_association: Components.Schemas.author_hyphen_association
28392868
/// - Remark: Generated from `#/components/schemas/issue/reactions`.
28402869
public var reactions: Components.Schemas.reaction_hyphen_rollup?
2870+
/// - Remark: Generated from `#/components/schemas/issue/sub_issues_summary`.
2871+
public var sub_issues_summary: Components.Schemas.sub_hyphen_issues_hyphen_summary?
28412872
/// Creates a new `issue`.
28422873
///
28432874
/// - Parameters:
@@ -2875,6 +2906,7 @@ public enum Components {
28752906
/// - performed_via_github_app:
28762907
/// - author_association:
28772908
/// - reactions:
2909+
/// - sub_issues_summary:
28782910
public init(
28792911
id: Swift.Int64,
28802912
node_id: Swift.String,
@@ -2909,7 +2941,8 @@ public enum Components {
29092941
repository: Components.Schemas.repository? = nil,
29102942
performed_via_github_app: Components.Schemas.nullable_hyphen_integration? = nil,
29112943
author_association: Components.Schemas.author_hyphen_association,
2912-
reactions: Components.Schemas.reaction_hyphen_rollup? = nil
2944+
reactions: Components.Schemas.reaction_hyphen_rollup? = nil,
2945+
sub_issues_summary: Components.Schemas.sub_hyphen_issues_hyphen_summary? = nil
29132946
) {
29142947
self.id = id
29152948
self.node_id = node_id
@@ -2945,6 +2978,7 @@ public enum Components {
29452978
self.performed_via_github_app = performed_via_github_app
29462979
self.author_association = author_association
29472980
self.reactions = reactions
2981+
self.sub_issues_summary = sub_issues_summary
29482982
}
29492983
public enum CodingKeys: String, CodingKey {
29502984
case id
@@ -2981,6 +3015,7 @@ public enum Components {
29813015
case performed_via_github_app
29823016
case author_association
29833017
case reactions
3018+
case sub_issues_summary
29843019
}
29853020
}
29863021
/// Comments provide a way for people to collaborate on an issue.

0 commit comments

Comments
 (0)