Skip to content

Commit f00e27b

Browse files
AgentCopilot
andcommitted
chore(protocol): refresh log tail swift model
Co-authored-by: Copilot <[email protected]>
1 parent 92eeab9 commit f00e27b

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6448,21 +6448,24 @@ public struct LogsTailResult: Codable, Sendable {
64486448
public let lines: [String]
64496449
public let truncated: Bool?
64506450
public let reset: Bool?
6451+
public let skippedbytes: Int?
64516452

64526453
public init(
64536454
file: String,
64546455
cursor: Int,
64556456
size: Int,
64566457
lines: [String],
64576458
truncated: Bool?,
6458-
reset: Bool?)
6459+
reset: Bool?,
6460+
skippedbytes: Int?)
64596461
{
64606462
self.file = file
64616463
self.cursor = cursor
64626464
self.size = size
64636465
self.lines = lines
64646466
self.truncated = truncated
64656467
self.reset = reset
6468+
self.skippedbytes = skippedbytes
64666469
}
64676470

64686471
private enum CodingKeys: String, CodingKey {
@@ -6472,6 +6475,7 @@ public struct LogsTailResult: Codable, Sendable {
64726475
case lines
64736476
case truncated
64746477
case reset
6478+
case skippedbytes = "skippedBytes"
64756479
}
64766480
}
64776481

0 commit comments

Comments
 (0)