@@ -3715,6 +3715,35 @@ public enum Components {
37153715 ///
37163716 /// - Remark: Generated from `#/components/schemas/repository/anonymous_access_enabled`.
37173717 public var anonymousAccessEnabled: Swift.Bool?
3718+ /// The status of the code search index for this repository
3719+ ///
3720+ /// - Remark: Generated from `#/components/schemas/repository/code_search_index_status`.
3721+ public struct CodeSearchIndexStatusPayload: Codable, Hashable, Sendable {
3722+ /// - Remark: Generated from `#/components/schemas/repository/code_search_index_status/lexical_search_ok`.
3723+ public var lexicalSearchOk: Swift.Bool?
3724+ /// - Remark: Generated from `#/components/schemas/repository/code_search_index_status/lexical_commit_sha`.
3725+ public var lexicalCommitSha: Swift.String?
3726+ /// Creates a new `CodeSearchIndexStatusPayload`.
3727+ ///
3728+ /// - Parameters:
3729+ /// - lexicalSearchOk:
3730+ /// - lexicalCommitSha:
3731+ public init(
3732+ lexicalSearchOk: Swift.Bool? = nil,
3733+ lexicalCommitSha: Swift.String? = nil
3734+ ) {
3735+ self.lexicalSearchOk = lexicalSearchOk
3736+ self.lexicalCommitSha = lexicalCommitSha
3737+ }
3738+ public enum CodingKeys: String, CodingKey {
3739+ case lexicalSearchOk = "lexical_search_ok"
3740+ case lexicalCommitSha = "lexical_commit_sha"
3741+ }
3742+ }
3743+ /// The status of the code search index for this repository
3744+ ///
3745+ /// - Remark: Generated from `#/components/schemas/repository/code_search_index_status`.
3746+ public var codeSearchIndexStatus: Components.Schemas.Repository.CodeSearchIndexStatusPayload?
37183747 /// Creates a new `Repository`.
37193748 ///
37203749 /// - Parameters:
@@ -3813,6 +3842,7 @@ public enum Components {
38133842 /// - masterBranch:
38143843 /// - starredAt:
38153844 /// - anonymousAccessEnabled: Whether anonymous git access is enabled for this repository
3845+ /// - codeSearchIndexStatus: The status of the code search index for this repository
38163846 public init(
38173847 id: Swift.Int64,
38183848 nodeId: Swift.String,
@@ -3908,7 +3938,8 @@ public enum Components {
39083938 watchers: Swift.Int,
39093939 masterBranch: Swift.String? = nil,
39103940 starredAt: Swift.String? = nil,
3911- anonymousAccessEnabled: Swift.Bool? = nil
3941+ anonymousAccessEnabled: Swift.Bool? = nil,
3942+ codeSearchIndexStatus: Components.Schemas.Repository.CodeSearchIndexStatusPayload? = nil
39123943 ) {
39133944 self.id = id
39143945 self.nodeId = nodeId
@@ -4005,6 +4036,7 @@ public enum Components {
40054036 self.masterBranch = masterBranch
40064037 self.starredAt = starredAt
40074038 self.anonymousAccessEnabled = anonymousAccessEnabled
4039+ self.codeSearchIndexStatus = codeSearchIndexStatus
40084040 }
40094041 public enum CodingKeys: String, CodingKey {
40104042 case id
@@ -4102,6 +4134,7 @@ public enum Components {
41024134 case masterBranch = "master_branch"
41034135 case starredAt = "starred_at"
41044136 case anonymousAccessEnabled = "anonymous_access_enabled"
4137+ case codeSearchIndexStatus = "code_search_index_status"
41054138 }
41064139 }
41074140 /// Authentication token for a GitHub App installed on a user or org.
0 commit comments