@@ -2309,6 +2309,35 @@ public enum Components {
2309
2309
///
2310
2310
/// - Remark: Generated from `#/components/schemas/repository/anonymous_access_enabled`.
2311
2311
public var anonymousAccessEnabled: Swift.Bool?
2312
+ /// The status of the code search index for this repository
2313
+ ///
2314
+ /// - Remark: Generated from `#/components/schemas/repository/code_search_index_status`.
2315
+ public struct CodeSearchIndexStatusPayload: Codable, Hashable, Sendable {
2316
+ /// - Remark: Generated from `#/components/schemas/repository/code_search_index_status/lexical_search_ok`.
2317
+ public var lexicalSearchOk: Swift.Bool?
2318
+ /// - Remark: Generated from `#/components/schemas/repository/code_search_index_status/lexical_commit_sha`.
2319
+ public var lexicalCommitSha: Swift.String?
2320
+ /// Creates a new `CodeSearchIndexStatusPayload`.
2321
+ ///
2322
+ /// - Parameters:
2323
+ /// - lexicalSearchOk:
2324
+ /// - lexicalCommitSha:
2325
+ public init(
2326
+ lexicalSearchOk: Swift.Bool? = nil,
2327
+ lexicalCommitSha: Swift.String? = nil
2328
+ ) {
2329
+ self.lexicalSearchOk = lexicalSearchOk
2330
+ self.lexicalCommitSha = lexicalCommitSha
2331
+ }
2332
+ public enum CodingKeys: String, CodingKey {
2333
+ case lexicalSearchOk = "lexical_search_ok"
2334
+ case lexicalCommitSha = "lexical_commit_sha"
2335
+ }
2336
+ }
2337
+ /// The status of the code search index for this repository
2338
+ ///
2339
+ /// - Remark: Generated from `#/components/schemas/repository/code_search_index_status`.
2340
+ public var codeSearchIndexStatus: Components.Schemas.Repository.CodeSearchIndexStatusPayload?
2312
2341
/// Creates a new `Repository`.
2313
2342
///
2314
2343
/// - Parameters:
@@ -2407,6 +2436,7 @@ public enum Components {
2407
2436
/// - masterBranch:
2408
2437
/// - starredAt:
2409
2438
/// - anonymousAccessEnabled: Whether anonymous git access is enabled for this repository
2439
+ /// - codeSearchIndexStatus: The status of the code search index for this repository
2410
2440
public init(
2411
2441
id: Swift.Int64,
2412
2442
nodeId: Swift.String,
@@ -2502,7 +2532,8 @@ public enum Components {
2502
2532
watchers: Swift.Int,
2503
2533
masterBranch: Swift.String? = nil,
2504
2534
starredAt: Swift.String? = nil,
2505
- anonymousAccessEnabled: Swift.Bool? = nil
2535
+ anonymousAccessEnabled: Swift.Bool? = nil,
2536
+ codeSearchIndexStatus: Components.Schemas.Repository.CodeSearchIndexStatusPayload? = nil
2506
2537
) {
2507
2538
self.id = id
2508
2539
self.nodeId = nodeId
@@ -2599,6 +2630,7 @@ public enum Components {
2599
2630
self.masterBranch = masterBranch
2600
2631
self.starredAt = starredAt
2601
2632
self.anonymousAccessEnabled = anonymousAccessEnabled
2633
+ self.codeSearchIndexStatus = codeSearchIndexStatus
2602
2634
}
2603
2635
public enum CodingKeys: String, CodingKey {
2604
2636
case id
@@ -2696,6 +2728,7 @@ public enum Components {
2696
2728
case masterBranch = "master_branch"
2697
2729
case starredAt = "starred_at"
2698
2730
case anonymousAccessEnabled = "anonymous_access_enabled"
2731
+ case codeSearchIndexStatus = "code_search_index_status"
2699
2732
}
2700
2733
}
2701
2734
/// Code Of Conduct
@@ -4465,6 +4498,35 @@ public enum Components {
4465
4498
///
4466
4499
/// - Remark: Generated from `#/components/schemas/nullable-repository/anonymous_access_enabled`.
4467
4500
public var anonymousAccessEnabled: Swift.Bool?
4501
+ /// The status of the code search index for this repository
4502
+ ///
4503
+ /// - Remark: Generated from `#/components/schemas/nullable-repository/code_search_index_status`.
4504
+ public struct CodeSearchIndexStatusPayload: Codable, Hashable, Sendable {
4505
+ /// - Remark: Generated from `#/components/schemas/nullable-repository/code_search_index_status/lexical_search_ok`.
4506
+ public var lexicalSearchOk: Swift.Bool?
4507
+ /// - Remark: Generated from `#/components/schemas/nullable-repository/code_search_index_status/lexical_commit_sha`.
4508
+ public var lexicalCommitSha: Swift.String?
4509
+ /// Creates a new `CodeSearchIndexStatusPayload`.
4510
+ ///
4511
+ /// - Parameters:
4512
+ /// - lexicalSearchOk:
4513
+ /// - lexicalCommitSha:
4514
+ public init(
4515
+ lexicalSearchOk: Swift.Bool? = nil,
4516
+ lexicalCommitSha: Swift.String? = nil
4517
+ ) {
4518
+ self.lexicalSearchOk = lexicalSearchOk
4519
+ self.lexicalCommitSha = lexicalCommitSha
4520
+ }
4521
+ public enum CodingKeys: String, CodingKey {
4522
+ case lexicalSearchOk = "lexical_search_ok"
4523
+ case lexicalCommitSha = "lexical_commit_sha"
4524
+ }
4525
+ }
4526
+ /// The status of the code search index for this repository
4527
+ ///
4528
+ /// - Remark: Generated from `#/components/schemas/nullable-repository/code_search_index_status`.
4529
+ public var codeSearchIndexStatus: Components.Schemas.NullableRepository.CodeSearchIndexStatusPayload?
4468
4530
/// Creates a new `NullableRepository`.
4469
4531
///
4470
4532
/// - Parameters:
@@ -4563,6 +4625,7 @@ public enum Components {
4563
4625
/// - masterBranch:
4564
4626
/// - starredAt:
4565
4627
/// - anonymousAccessEnabled: Whether anonymous git access is enabled for this repository
4628
+ /// - codeSearchIndexStatus: The status of the code search index for this repository
4566
4629
public init(
4567
4630
id: Swift.Int64,
4568
4631
nodeId: Swift.String,
@@ -4658,7 +4721,8 @@ public enum Components {
4658
4721
watchers: Swift.Int,
4659
4722
masterBranch: Swift.String? = nil,
4660
4723
starredAt: Swift.String? = nil,
4661
- anonymousAccessEnabled: Swift.Bool? = nil
4724
+ anonymousAccessEnabled: Swift.Bool? = nil,
4725
+ codeSearchIndexStatus: Components.Schemas.NullableRepository.CodeSearchIndexStatusPayload? = nil
4662
4726
) {
4663
4727
self.id = id
4664
4728
self.nodeId = nodeId
@@ -4755,6 +4819,7 @@ public enum Components {
4755
4819
self.masterBranch = masterBranch
4756
4820
self.starredAt = starredAt
4757
4821
self.anonymousAccessEnabled = anonymousAccessEnabled
4822
+ self.codeSearchIndexStatus = codeSearchIndexStatus
4758
4823
}
4759
4824
public enum CodingKeys: String, CodingKey {
4760
4825
case id
@@ -4852,6 +4917,7 @@ public enum Components {
4852
4917
case masterBranch = "master_branch"
4853
4918
case starredAt = "starred_at"
4854
4919
case anonymousAccessEnabled = "anonymous_access_enabled"
4920
+ case codeSearchIndexStatus = "code_search_index_status"
4855
4921
}
4856
4922
}
4857
4923
/// Code of Conduct Simple
0 commit comments