chore(protocol): sync generated artifacts

This commit is contained in:
Peter Steinberger
2025-12-14 04:41:20 +00:00
parent f414853d70
commit 0641281cfe
2 changed files with 10 additions and 1 deletions

View File

@@ -777,14 +777,18 @@ public struct CronRunLogEntry: Codable {
public struct ChatHistoryParams: Codable {
public let sessionkey: String
public let limit: Int?
public init(
sessionkey: String
sessionkey: String,
limit: Int?
) {
self.sessionkey = sessionkey
self.limit = limit
}
private enum CodingKeys: String, CodingKey {
case sessionkey = "sessionKey"
case limit
}
}