fix: restore protocol and extension ci

This commit is contained in:
Peter Steinberger
2026-04-06 05:03:04 +01:00
parent 732cdaf408
commit 57fae2e8fa
7 changed files with 38 additions and 8 deletions

View File

@@ -3419,6 +3419,20 @@ public struct ExecApprovalsSnapshot: Codable, Sendable {
}
}
public struct ExecApprovalGetParams: Codable, Sendable {
public let id: String
public init(
id: String)
{
self.id = id
}
private enum CodingKeys: String, CodingKey {
case id
}
}
public struct ExecApprovalRequestParams: Codable, Sendable {
public let id: String?
public let command: String?