Skip to content

Commit 167d178

Browse files
Commit via running: make Sources/activity
1 parent c46c47e commit 167d178

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

Sources/activity/Types.swift

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3292,11 +3292,15 @@ public enum Components {
32923292
/// - Remark: Generated from `#/components/schemas/issue/performed_via_github_app`.
32933293
public var performedViaGithubApp: Components.Schemas.NullableIntegration?
32943294
/// - Remark: Generated from `#/components/schemas/issue/author_association`.
3295-
public var authorAssociation: Components.Schemas.AuthorAssociation
3295+
public var authorAssociation: Components.Schemas.AuthorAssociation?
32963296
/// - Remark: Generated from `#/components/schemas/issue/reactions`.
32973297
public var reactions: Components.Schemas.ReactionRollup?
32983298
/// - Remark: Generated from `#/components/schemas/issue/sub_issues_summary`.
32993299
public var subIssuesSummary: Components.Schemas.SubIssuesSummary?
3300+
/// URL to get the parent issue of this issue, if it is a sub-issue
3301+
///
3302+
/// - Remark: Generated from `#/components/schemas/issue/parent_issue_url`.
3303+
public var parentIssueUrl: Swift.String?
33003304
/// - Remark: Generated from `#/components/schemas/issue/issue_dependencies_summary`.
33013305
public var issueDependenciesSummary: Components.Schemas.IssueDependenciesSummary?
33023306
/// - Remark: Generated from `#/components/schemas/issue/issue_field_values`.
@@ -3340,6 +3344,7 @@ public enum Components {
33403344
/// - authorAssociation:
33413345
/// - reactions:
33423346
/// - subIssuesSummary:
3347+
/// - parentIssueUrl: URL to get the parent issue of this issue, if it is a sub-issue
33433348
/// - issueDependenciesSummary:
33443349
/// - issueFieldValues:
33453350
public init(
@@ -3376,9 +3381,10 @@ public enum Components {
33763381
_type: Components.Schemas.IssueType? = nil,
33773382
repository: Components.Schemas.Repository? = nil,
33783383
performedViaGithubApp: Components.Schemas.NullableIntegration? = nil,
3379-
authorAssociation: Components.Schemas.AuthorAssociation,
3384+
authorAssociation: Components.Schemas.AuthorAssociation? = nil,
33803385
reactions: Components.Schemas.ReactionRollup? = nil,
33813386
subIssuesSummary: Components.Schemas.SubIssuesSummary? = nil,
3387+
parentIssueUrl: Swift.String? = nil,
33823388
issueDependenciesSummary: Components.Schemas.IssueDependenciesSummary? = nil,
33833389
issueFieldValues: [Components.Schemas.IssueFieldValue]? = nil
33843390
) {
@@ -3418,6 +3424,7 @@ public enum Components {
34183424
self.authorAssociation = authorAssociation
34193425
self.reactions = reactions
34203426
self.subIssuesSummary = subIssuesSummary
3427+
self.parentIssueUrl = parentIssueUrl
34213428
self.issueDependenciesSummary = issueDependenciesSummary
34223429
self.issueFieldValues = issueFieldValues
34233430
}
@@ -3458,6 +3465,7 @@ public enum Components {
34583465
case authorAssociation = "author_association"
34593466
case reactions
34603467
case subIssuesSummary = "sub_issues_summary"
3468+
case parentIssueUrl = "parent_issue_url"
34613469
case issueDependenciesSummary = "issue_dependencies_summary"
34623470
case issueFieldValues = "issue_field_values"
34633471
}

0 commit comments

Comments
 (0)