Skip to content

Commit 00b94ef

Browse files
Commit via running: make Sources/issues
1 parent 70bb94d commit 00b94ef

File tree

1 file changed

+34
-1
lines changed

1 file changed

+34
-1
lines changed

Sources/issues/Types.swift

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2641,6 +2641,35 @@ public enum Components {
26412641
///
26422642
/// - Remark: Generated from `#/components/schemas/repository/anonymous_access_enabled`.
26432643
public var anonymousAccessEnabled: Swift.Bool?
2644+
/// The status of the code search index for this repository
2645+
///
2646+
/// - Remark: Generated from `#/components/schemas/repository/code_search_index_status`.
2647+
public struct CodeSearchIndexStatusPayload: Codable, Hashable, Sendable {
2648+
/// - Remark: Generated from `#/components/schemas/repository/code_search_index_status/lexical_search_ok`.
2649+
public var lexicalSearchOk: Swift.Bool?
2650+
/// - Remark: Generated from `#/components/schemas/repository/code_search_index_status/lexical_commit_sha`.
2651+
public var lexicalCommitSha: Swift.String?
2652+
/// Creates a new `CodeSearchIndexStatusPayload`.
2653+
///
2654+
/// - Parameters:
2655+
/// - lexicalSearchOk:
2656+
/// - lexicalCommitSha:
2657+
public init(
2658+
lexicalSearchOk: Swift.Bool? = nil,
2659+
lexicalCommitSha: Swift.String? = nil
2660+
) {
2661+
self.lexicalSearchOk = lexicalSearchOk
2662+
self.lexicalCommitSha = lexicalCommitSha
2663+
}
2664+
public enum CodingKeys: String, CodingKey {
2665+
case lexicalSearchOk = "lexical_search_ok"
2666+
case lexicalCommitSha = "lexical_commit_sha"
2667+
}
2668+
}
2669+
/// The status of the code search index for this repository
2670+
///
2671+
/// - Remark: Generated from `#/components/schemas/repository/code_search_index_status`.
2672+
public var codeSearchIndexStatus: Components.Schemas.Repository.CodeSearchIndexStatusPayload?
26442673
/// Creates a new `Repository`.
26452674
///
26462675
/// - Parameters:
@@ -2739,6 +2768,7 @@ public enum Components {
27392768
/// - masterBranch:
27402769
/// - starredAt:
27412770
/// - anonymousAccessEnabled: Whether anonymous git access is enabled for this repository
2771+
/// - codeSearchIndexStatus: The status of the code search index for this repository
27422772
public init(
27432773
id: Swift.Int64,
27442774
nodeId: Swift.String,
@@ -2834,7 +2864,8 @@ public enum Components {
28342864
watchers: Swift.Int,
28352865
masterBranch: Swift.String? = nil,
28362866
starredAt: Swift.String? = nil,
2837-
anonymousAccessEnabled: Swift.Bool? = nil
2867+
anonymousAccessEnabled: Swift.Bool? = nil,
2868+
codeSearchIndexStatus: Components.Schemas.Repository.CodeSearchIndexStatusPayload? = nil
28382869
) {
28392870
self.id = id
28402871
self.nodeId = nodeId
@@ -2931,6 +2962,7 @@ public enum Components {
29312962
self.masterBranch = masterBranch
29322963
self.starredAt = starredAt
29332964
self.anonymousAccessEnabled = anonymousAccessEnabled
2965+
self.codeSearchIndexStatus = codeSearchIndexStatus
29342966
}
29352967
public enum CodingKeys: String, CodingKey {
29362968
case id
@@ -3028,6 +3060,7 @@ public enum Components {
30283060
case masterBranch = "master_branch"
30293061
case starredAt = "starred_at"
30303062
case anonymousAccessEnabled = "anonymous_access_enabled"
3063+
case codeSearchIndexStatus = "code_search_index_status"
30313064
}
30323065
}
30333066
/// A collection of related issues and pull requests.

0 commit comments

Comments
 (0)