@@ -1787,6 +1787,35 @@ public enum Components {
17871787 ///
17881788 /// - Remark: Generated from `#/components/schemas/repository/anonymous_access_enabled`.
17891789 public var anonymousAccessEnabled: Swift.Bool?
1790+ /// The status of the code search index for this repository
1791+ ///
1792+ /// - Remark: Generated from `#/components/schemas/repository/code_search_index_status`.
1793+ public struct CodeSearchIndexStatusPayload: Codable, Hashable, Sendable {
1794+ /// - Remark: Generated from `#/components/schemas/repository/code_search_index_status/lexical_search_ok`.
1795+ public var lexicalSearchOk: Swift.Bool?
1796+ /// - Remark: Generated from `#/components/schemas/repository/code_search_index_status/lexical_commit_sha`.
1797+ public var lexicalCommitSha: Swift.String?
1798+ /// Creates a new `CodeSearchIndexStatusPayload`.
1799+ ///
1800+ /// - Parameters:
1801+ /// - lexicalSearchOk:
1802+ /// - lexicalCommitSha:
1803+ public init(
1804+ lexicalSearchOk: Swift.Bool? = nil,
1805+ lexicalCommitSha: Swift.String? = nil
1806+ ) {
1807+ self.lexicalSearchOk = lexicalSearchOk
1808+ self.lexicalCommitSha = lexicalCommitSha
1809+ }
1810+ public enum CodingKeys: String, CodingKey {
1811+ case lexicalSearchOk = "lexical_search_ok"
1812+ case lexicalCommitSha = "lexical_commit_sha"
1813+ }
1814+ }
1815+ /// The status of the code search index for this repository
1816+ ///
1817+ /// - Remark: Generated from `#/components/schemas/repository/code_search_index_status`.
1818+ public var codeSearchIndexStatus: Components.Schemas.Repository.CodeSearchIndexStatusPayload?
17901819 /// Creates a new `Repository`.
17911820 ///
17921821 /// - Parameters:
@@ -1885,6 +1914,7 @@ public enum Components {
18851914 /// - masterBranch:
18861915 /// - starredAt:
18871916 /// - anonymousAccessEnabled: Whether anonymous git access is enabled for this repository
1917+ /// - codeSearchIndexStatus: The status of the code search index for this repository
18881918 public init(
18891919 id: Swift.Int64,
18901920 nodeId: Swift.String,
@@ -1980,7 +2010,8 @@ public enum Components {
19802010 watchers: Swift.Int,
19812011 masterBranch: Swift.String? = nil,
19822012 starredAt: Swift.String? = nil,
1983- anonymousAccessEnabled: Swift.Bool? = nil
2013+ anonymousAccessEnabled: Swift.Bool? = nil,
2014+ codeSearchIndexStatus: Components.Schemas.Repository.CodeSearchIndexStatusPayload? = nil
19842015 ) {
19852016 self.id = id
19862017 self.nodeId = nodeId
@@ -2077,6 +2108,7 @@ public enum Components {
20772108 self.masterBranch = masterBranch
20782109 self.starredAt = starredAt
20792110 self.anonymousAccessEnabled = anonymousAccessEnabled
2111+ self.codeSearchIndexStatus = codeSearchIndexStatus
20802112 }
20812113 public enum CodingKeys: String, CodingKey {
20822114 case id
@@ -2174,6 +2206,7 @@ public enum Components {
21742206 case masterBranch = "master_branch"
21752207 case starredAt = "starred_at"
21762208 case anonymousAccessEnabled = "anonymous_access_enabled"
2209+ case codeSearchIndexStatus = "code_search_index_status"
21772210 }
21782211 }
21792212 /// Code Of Conduct
0 commit comments