mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 11:50:43 +00:00
build(protocol): refresh generated Swift models
This commit is contained in:
@@ -1516,6 +1516,28 @@ public struct SessionsPreviewParams: Codable, Sendable {
|
||||
}
|
||||
}
|
||||
|
||||
public struct SessionsDescribeParams: Codable, Sendable {
|
||||
public let key: String
|
||||
public let includederivedtitles: Bool?
|
||||
public let includelastmessage: Bool?
|
||||
|
||||
public init(
|
||||
key: String,
|
||||
includederivedtitles: Bool?,
|
||||
includelastmessage: Bool?)
|
||||
{
|
||||
self.key = key
|
||||
self.includederivedtitles = includederivedtitles
|
||||
self.includelastmessage = includelastmessage
|
||||
}
|
||||
|
||||
private enum CodingKeys: String, CodingKey {
|
||||
case key
|
||||
case includederivedtitles = "includeDerivedTitles"
|
||||
case includelastmessage = "includeLastMessage"
|
||||
}
|
||||
}
|
||||
|
||||
public struct SessionsResolveParams: Codable, Sendable {
|
||||
public let key: String?
|
||||
public let sessionid: String?
|
||||
|
||||
@@ -1516,6 +1516,28 @@ public struct SessionsPreviewParams: Codable, Sendable {
|
||||
}
|
||||
}
|
||||
|
||||
public struct SessionsDescribeParams: Codable, Sendable {
|
||||
public let key: String
|
||||
public let includederivedtitles: Bool?
|
||||
public let includelastmessage: Bool?
|
||||
|
||||
public init(
|
||||
key: String,
|
||||
includederivedtitles: Bool?,
|
||||
includelastmessage: Bool?)
|
||||
{
|
||||
self.key = key
|
||||
self.includederivedtitles = includederivedtitles
|
||||
self.includelastmessage = includelastmessage
|
||||
}
|
||||
|
||||
private enum CodingKeys: String, CodingKey {
|
||||
case key
|
||||
case includederivedtitles = "includeDerivedTitles"
|
||||
case includelastmessage = "includeLastMessage"
|
||||
}
|
||||
}
|
||||
|
||||
public struct SessionsResolveParams: Codable, Sendable {
|
||||
public let key: String?
|
||||
public let sessionid: String?
|
||||
|
||||
Reference in New Issue
Block a user