@@ -3620,6 +3620,25 @@ public enum Components {
36203620 case pinnedBy = "pinned_by"
36213621 }
36223622 }
3623+ /// Details about why an issue comment was minimized.
3624+ ///
3625+ /// - Remark: Generated from `#/components/schemas/nullable-issue-comment-minimized`.
3626+ public struct NullableIssueCommentMinimized: Codable, Hashable, Sendable {
3627+ /// The reason the comment was minimized.
3628+ ///
3629+ /// - Remark: Generated from `#/components/schemas/nullable-issue-comment-minimized/reason`.
3630+ public var reason: Swift.String?
3631+ /// Creates a new `NullableIssueCommentMinimized`.
3632+ ///
3633+ /// - Parameters:
3634+ /// - reason: The reason the comment was minimized.
3635+ public init(reason: Swift.String? = nil) {
3636+ self.reason = reason
3637+ }
3638+ public enum CodingKeys: String, CodingKey {
3639+ case reason
3640+ }
3641+ }
36233642 /// Comments provide a way for people to collaborate on an issue.
36243643 ///
36253644 /// - Remark: Generated from `#/components/schemas/nullable-issue-comment`.
@@ -3660,6 +3679,8 @@ public enum Components {
36603679 public var reactions: Components.Schemas.ReactionRollup?
36613680 /// - Remark: Generated from `#/components/schemas/nullable-issue-comment/pin`.
36623681 public var pin: Components.Schemas.NullablePinnedIssueComment?
3682+ /// - Remark: Generated from `#/components/schemas/nullable-issue-comment/minimized`.
3683+ public var minimized: Components.Schemas.NullableIssueCommentMinimized?
36633684 /// Creates a new `NullableIssueComment`.
36643685 ///
36653686 /// - Parameters:
@@ -3678,6 +3699,7 @@ public enum Components {
36783699 /// - performedViaGithubApp:
36793700 /// - reactions:
36803701 /// - pin:
3702+ /// - minimized:
36813703 public init(
36823704 id: Swift.Int64,
36833705 nodeId: Swift.String,
@@ -3693,7 +3715,8 @@ public enum Components {
36933715 authorAssociation: Components.Schemas.AuthorAssociation? = nil,
36943716 performedViaGithubApp: Components.Schemas.NullableIntegration? = nil,
36953717 reactions: Components.Schemas.ReactionRollup? = nil,
3696- pin: Components.Schemas.NullablePinnedIssueComment? = nil
3718+ pin: Components.Schemas.NullablePinnedIssueComment? = nil,
3719+ minimized: Components.Schemas.NullableIssueCommentMinimized? = nil
36973720 ) {
36983721 self.id = id
36993722 self.nodeId = nodeId
@@ -3710,6 +3733,7 @@ public enum Components {
37103733 self.performedViaGithubApp = performedViaGithubApp
37113734 self.reactions = reactions
37123735 self.pin = pin
3736+ self.minimized = minimized
37133737 }
37143738 public enum CodingKeys: String, CodingKey {
37153739 case id
@@ -3727,6 +3751,7 @@ public enum Components {
37273751 case performedViaGithubApp = "performed_via_github_app"
37283752 case reactions
37293753 case pin
3754+ case minimized
37303755 }
37313756 }
37323757 /// - Remark: Generated from `#/components/schemas/issue-dependencies-summary`.
@@ -3772,6 +3797,10 @@ public enum Components {
37723797 ///
37733798 /// - Remark: Generated from `#/components/schemas/issue-field-value/issue_field_id`.
37743799 public var issueFieldId: Swift.Int64
3800+ /// The human-readable name of the issue field.
3801+ ///
3802+ /// - Remark: Generated from `#/components/schemas/issue-field-value/issue_field_name`.
3803+ public var issueFieldName: Swift.String?
37753804 /// - Remark: Generated from `#/components/schemas/issue-field-value/node_id`.
37763805 public var nodeId: Swift.String
37773806 /// The data type of the issue field
@@ -3941,20 +3970,23 @@ public enum Components {
39413970 ///
39423971 /// - Parameters:
39433972 /// - issueFieldId: Unique identifier for the issue field.
3973+ /// - issueFieldName: The human-readable name of the issue field.
39443974 /// - nodeId:
39453975 /// - dataType: The data type of the issue field
39463976 /// - value: The value of the issue field
39473977 /// - singleSelectOption: Details about the selected option (only present for single_select fields)
39483978 /// - multiSelectOptions: Details about the selected options
39493979 public init(
39503980 issueFieldId: Swift.Int64,
3981+ issueFieldName: Swift.String? = nil,
39513982 nodeId: Swift.String,
39523983 dataType: Components.Schemas.IssueFieldValue.DataTypePayload,
39533984 value: Components.Schemas.IssueFieldValue.ValuePayload? = nil,
39543985 singleSelectOption: Components.Schemas.IssueFieldValue.SingleSelectOptionPayload? = nil,
39553986 multiSelectOptions: Components.Schemas.IssueFieldValue.MultiSelectOptionsPayload? = nil
39563987 ) {
39573988 self.issueFieldId = issueFieldId
3989+ self.issueFieldName = issueFieldName
39583990 self.nodeId = nodeId
39593991 self.dataType = dataType
39603992 self.value = value
@@ -3963,6 +3995,7 @@ public enum Components {
39633995 }
39643996 public enum CodingKeys: String, CodingKey {
39653997 case issueFieldId = "issue_field_id"
3998+ case issueFieldName = "issue_field_name"
39663999 case nodeId = "node_id"
39674000 case dataType = "data_type"
39684001 case value
@@ -4421,6 +4454,8 @@ public enum Components {
44214454 public var reactions: Components.Schemas.ReactionRollup?
44224455 /// - Remark: Generated from `#/components/schemas/issue-comment/pin`.
44234456 public var pin: Components.Schemas.NullablePinnedIssueComment?
4457+ /// - Remark: Generated from `#/components/schemas/issue-comment/minimized`.
4458+ public var minimized: Components.Schemas.NullableIssueCommentMinimized?
44244459 /// Creates a new `IssueComment`.
44254460 ///
44264461 /// - Parameters:
@@ -4439,6 +4474,7 @@ public enum Components {
44394474 /// - performedViaGithubApp:
44404475 /// - reactions:
44414476 /// - pin:
4477+ /// - minimized:
44424478 public init(
44434479 id: Swift.Int64,
44444480 nodeId: Swift.String,
@@ -4454,7 +4490,8 @@ public enum Components {
44544490 authorAssociation: Components.Schemas.AuthorAssociation? = nil,
44554491 performedViaGithubApp: Components.Schemas.NullableIntegration? = nil,
44564492 reactions: Components.Schemas.ReactionRollup? = nil,
4457- pin: Components.Schemas.NullablePinnedIssueComment? = nil
4493+ pin: Components.Schemas.NullablePinnedIssueComment? = nil,
4494+ minimized: Components.Schemas.NullableIssueCommentMinimized? = nil
44584495 ) {
44594496 self.id = id
44604497 self.nodeId = nodeId
@@ -4471,6 +4508,7 @@ public enum Components {
44714508 self.performedViaGithubApp = performedViaGithubApp
44724509 self.reactions = reactions
44734510 self.pin = pin
4511+ self.minimized = minimized
44744512 }
44754513 public enum CodingKeys: String, CodingKey {
44764514 case id
@@ -4488,6 +4526,7 @@ public enum Components {
44884526 case performedViaGithubApp = "performed_via_github_app"
44894527 case reactions
44904528 case pin
4529+ case minimized
44914530 }
44924531 }
44934532 /// - Remark: Generated from `#/components/schemas/pull-request-minimal`.
0 commit comments