@@ -1255,6 +1255,35 @@ public enum Components {
1255
1255
///
1256
1256
/// - Remark: Generated from `#/components/schemas/repository/anonymous_access_enabled`.
1257
1257
public var anonymousAccessEnabled : Swift . Bool ?
1258
+ /// The status of the code search index for this repository
1259
+ ///
1260
+ /// - Remark: Generated from `#/components/schemas/repository/code_search_index_status`.
1261
+ public struct CodeSearchIndexStatusPayload : Codable , Hashable , Sendable {
1262
+ /// - Remark: Generated from `#/components/schemas/repository/code_search_index_status/lexical_search_ok`.
1263
+ public var lexicalSearchOk : Swift . Bool ?
1264
+ /// - Remark: Generated from `#/components/schemas/repository/code_search_index_status/lexical_commit_sha`.
1265
+ public var lexicalCommitSha : Swift . String ?
1266
+ /// Creates a new `CodeSearchIndexStatusPayload`.
1267
+ ///
1268
+ /// - Parameters:
1269
+ /// - lexicalSearchOk:
1270
+ /// - lexicalCommitSha:
1271
+ public init (
1272
+ lexicalSearchOk: Swift . Bool ? = nil ,
1273
+ lexicalCommitSha: Swift . String ? = nil
1274
+ ) {
1275
+ self . lexicalSearchOk = lexicalSearchOk
1276
+ self . lexicalCommitSha = lexicalCommitSha
1277
+ }
1278
+ public enum CodingKeys : String , CodingKey {
1279
+ case lexicalSearchOk = " lexical_search_ok "
1280
+ case lexicalCommitSha = " lexical_commit_sha "
1281
+ }
1282
+ }
1283
+ /// The status of the code search index for this repository
1284
+ ///
1285
+ /// - Remark: Generated from `#/components/schemas/repository/code_search_index_status`.
1286
+ public var codeSearchIndexStatus : Components . Schemas . Repository . CodeSearchIndexStatusPayload ?
1258
1287
/// Creates a new `Repository`.
1259
1288
///
1260
1289
/// - Parameters:
@@ -1353,6 +1382,7 @@ public enum Components {
1353
1382
/// - masterBranch:
1354
1383
/// - starredAt:
1355
1384
/// - anonymousAccessEnabled: Whether anonymous git access is enabled for this repository
1385
+ /// - codeSearchIndexStatus: The status of the code search index for this repository
1356
1386
public init (
1357
1387
id: Swift . Int64 ,
1358
1388
nodeId: Swift . String ,
@@ -1448,7 +1478,8 @@ public enum Components {
1448
1478
watchers: Swift . Int ,
1449
1479
masterBranch: Swift . String ? = nil ,
1450
1480
starredAt: Swift . String ? = nil ,
1451
- anonymousAccessEnabled: Swift . Bool ? = nil
1481
+ anonymousAccessEnabled: Swift . Bool ? = nil ,
1482
+ codeSearchIndexStatus: Components . Schemas . Repository . CodeSearchIndexStatusPayload ? = nil
1452
1483
) {
1453
1484
self . id = id
1454
1485
self . nodeId = nodeId
@@ -1545,6 +1576,7 @@ public enum Components {
1545
1576
self . masterBranch = masterBranch
1546
1577
self . starredAt = starredAt
1547
1578
self . anonymousAccessEnabled = anonymousAccessEnabled
1579
+ self . codeSearchIndexStatus = codeSearchIndexStatus
1548
1580
}
1549
1581
public enum CodingKeys : String , CodingKey {
1550
1582
case id
@@ -1642,6 +1674,7 @@ public enum Components {
1642
1674
case masterBranch = " master_branch "
1643
1675
case starredAt = " starred_at "
1644
1676
case anonymousAccessEnabled = " anonymous_access_enabled "
1677
+ case codeSearchIndexStatus = " code_search_index_status "
1645
1678
}
1646
1679
}
1647
1680
/// Code Of Conduct
0 commit comments