Skip to content

Commit 5a888de

Browse files
Commit via running: make Sources/codespaces
1 parent cee82b0 commit 5a888de

File tree

1 file changed

+68
-2
lines changed

1 file changed

+68
-2
lines changed

Sources/codespaces/Types.swift

Lines changed: 68 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2309,6 +2309,35 @@ public enum Components {
23092309
///
23102310
/// - Remark: Generated from `#/components/schemas/repository/anonymous_access_enabled`.
23112311
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?
23122341
/// Creates a new `Repository`.
23132342
///
23142343
/// - Parameters:
@@ -2407,6 +2436,7 @@ public enum Components {
24072436
/// - masterBranch:
24082437
/// - starredAt:
24092438
/// - anonymousAccessEnabled: Whether anonymous git access is enabled for this repository
2439+
/// - codeSearchIndexStatus: The status of the code search index for this repository
24102440
public init(
24112441
id: Swift.Int64,
24122442
nodeId: Swift.String,
@@ -2502,7 +2532,8 @@ public enum Components {
25022532
watchers: Swift.Int,
25032533
masterBranch: Swift.String? = nil,
25042534
starredAt: Swift.String? = nil,
2505-
anonymousAccessEnabled: Swift.Bool? = nil
2535+
anonymousAccessEnabled: Swift.Bool? = nil,
2536+
codeSearchIndexStatus: Components.Schemas.Repository.CodeSearchIndexStatusPayload? = nil
25062537
) {
25072538
self.id = id
25082539
self.nodeId = nodeId
@@ -2599,6 +2630,7 @@ public enum Components {
25992630
self.masterBranch = masterBranch
26002631
self.starredAt = starredAt
26012632
self.anonymousAccessEnabled = anonymousAccessEnabled
2633+
self.codeSearchIndexStatus = codeSearchIndexStatus
26022634
}
26032635
public enum CodingKeys: String, CodingKey {
26042636
case id
@@ -2696,6 +2728,7 @@ public enum Components {
26962728
case masterBranch = "master_branch"
26972729
case starredAt = "starred_at"
26982730
case anonymousAccessEnabled = "anonymous_access_enabled"
2731+
case codeSearchIndexStatus = "code_search_index_status"
26992732
}
27002733
}
27012734
/// Code Of Conduct
@@ -4465,6 +4498,35 @@ public enum Components {
44654498
///
44664499
/// - Remark: Generated from `#/components/schemas/nullable-repository/anonymous_access_enabled`.
44674500
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?
44684530
/// Creates a new `NullableRepository`.
44694531
///
44704532
/// - Parameters:
@@ -4563,6 +4625,7 @@ public enum Components {
45634625
/// - masterBranch:
45644626
/// - starredAt:
45654627
/// - anonymousAccessEnabled: Whether anonymous git access is enabled for this repository
4628+
/// - codeSearchIndexStatus: The status of the code search index for this repository
45664629
public init(
45674630
id: Swift.Int64,
45684631
nodeId: Swift.String,
@@ -4658,7 +4721,8 @@ public enum Components {
46584721
watchers: Swift.Int,
46594722
masterBranch: Swift.String? = nil,
46604723
starredAt: Swift.String? = nil,
4661-
anonymousAccessEnabled: Swift.Bool? = nil
4724+
anonymousAccessEnabled: Swift.Bool? = nil,
4725+
codeSearchIndexStatus: Components.Schemas.NullableRepository.CodeSearchIndexStatusPayload? = nil
46624726
) {
46634727
self.id = id
46644728
self.nodeId = nodeId
@@ -4755,6 +4819,7 @@ public enum Components {
47554819
self.masterBranch = masterBranch
47564820
self.starredAt = starredAt
47574821
self.anonymousAccessEnabled = anonymousAccessEnabled
4822+
self.codeSearchIndexStatus = codeSearchIndexStatus
47584823
}
47594824
public enum CodingKeys: String, CodingKey {
47604825
case id
@@ -4852,6 +4917,7 @@ public enum Components {
48524917
case masterBranch = "master_branch"
48534918
case starredAt = "starred_at"
48544919
case anonymousAccessEnabled = "anonymous_access_enabled"
4920+
case codeSearchIndexStatus = "code_search_index_status"
48554921
}
48564922
}
48574923
/// Code of Conduct Simple

0 commit comments

Comments
 (0)