@@ -4019,6 +4019,17 @@ public enum Components {
40194019 ///
40204020 /// - Remark: Generated from `#/components/schemas/app-permissions/checks`.
40214021 public var checks: Components.Schemas.AppPermissions.ChecksPayload?
4022+ /// The level of permission to grant the access token to view and manage code quality data.
4023+ ///
4024+ /// - Remark: Generated from `#/components/schemas/app-permissions/code_quality`.
4025+ @frozen public enum CodeQualityPayload: String, Codable, Hashable, Sendable, CaseIterable {
4026+ case read = "read"
4027+ case write = "write"
4028+ }
4029+ /// The level of permission to grant the access token to view and manage code quality data.
4030+ ///
4031+ /// - Remark: Generated from `#/components/schemas/app-permissions/code_quality`.
4032+ public var codeQuality: Components.Schemas.AppPermissions.CodeQualityPayload?
40224033 /// The level of permission to grant the access token to create, edit, delete, and list Codespaces.
40234034 ///
40244035 /// - Remark: Generated from `#/components/schemas/app-permissions/codespaces`.
@@ -4565,6 +4576,7 @@ public enum Components {
45654576 /// - artifactMetadata: The level of permission to grant the access token to create and retrieve build artifact metadata records.
45664577 /// - attestations: The level of permission to create and retrieve the access token for repository attestations.
45674578 /// - checks: The level of permission to grant the access token for checks on code.
4579+ /// - codeQuality: The level of permission to grant the access token to view and manage code quality data.
45684580 /// - codespaces: The level of permission to grant the access token to create, edit, delete, and list Codespaces.
45694581 /// - contents: The level of permission to grant the access token for repository contents, commits, branches, downloads, releases, and merges.
45704582 /// - dependabotSecrets: The level of permission to grant the access token to manage Dependabot secrets.
@@ -4620,6 +4632,7 @@ public enum Components {
46204632 artifactMetadata: Components.Schemas.AppPermissions.ArtifactMetadataPayload? = nil,
46214633 attestations: Components.Schemas.AppPermissions.AttestationsPayload? = nil,
46224634 checks: Components.Schemas.AppPermissions.ChecksPayload? = nil,
4635+ codeQuality: Components.Schemas.AppPermissions.CodeQualityPayload? = nil,
46234636 codespaces: Components.Schemas.AppPermissions.CodespacesPayload? = nil,
46244637 contents: Components.Schemas.AppPermissions.ContentsPayload? = nil,
46254638 dependabotSecrets: Components.Schemas.AppPermissions.DependabotSecretsPayload? = nil,
@@ -4675,6 +4688,7 @@ public enum Components {
46754688 self.artifactMetadata = artifactMetadata
46764689 self.attestations = attestations
46774690 self.checks = checks
4691+ self.codeQuality = codeQuality
46784692 self.codespaces = codespaces
46794693 self.contents = contents
46804694 self.dependabotSecrets = dependabotSecrets
@@ -4731,6 +4745,7 @@ public enum Components {
47314745 case artifactMetadata = "artifact_metadata"
47324746 case attestations
47334747 case checks
4748+ case codeQuality = "code_quality"
47344749 case codespaces
47354750 case contents
47364751 case dependabotSecrets = "dependabot_secrets"
@@ -5252,7 +5267,7 @@ public enum Components {
52525267 case description
52535268 }
52545269 }
5255- /// The type of issue.
5270+ /// The type assigned to the issue. This is only present for issues in repositories where issue types are supported .
52565271 ///
52575272 /// - Remark: Generated from `#/components/schemas/issue-type`.
52585273 public struct IssueType: Codable, Hashable, Sendable {
0 commit comments