diff --git a/apps/macos/Sources/OpenClawProtocol/GatewayModels.swift b/apps/macos/Sources/OpenClawProtocol/GatewayModels.swift index d889427392e..c8ccdddbd38 100644 --- a/apps/macos/Sources/OpenClawProtocol/GatewayModels.swift +++ b/apps/macos/Sources/OpenClawProtocol/GatewayModels.swift @@ -5176,6 +5176,7 @@ public struct UpdateRunParams: Codable, Sendable { public let sessionkey: String? public let deliverycontext: [String: AnyCodable]? public let note: String? + public let continuationmessage: String? public let restartdelayms: Int? public let timeoutms: Int? @@ -5183,12 +5184,14 @@ public struct UpdateRunParams: Codable, Sendable { sessionkey: String?, deliverycontext: [String: AnyCodable]?, note: String?, + continuationmessage: String?, restartdelayms: Int?, timeoutms: Int?) { self.sessionkey = sessionkey self.deliverycontext = deliverycontext self.note = note + self.continuationmessage = continuationmessage self.restartdelayms = restartdelayms self.timeoutms = timeoutms } @@ -5197,6 +5200,7 @@ public struct UpdateRunParams: Codable, Sendable { case sessionkey = "sessionKey" case deliverycontext = "deliveryContext" case note + case continuationmessage = "continuationMessage" case restartdelayms = "restartDelayMs" case timeoutms = "timeoutMs" } diff --git a/apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift b/apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift index d889427392e..c8ccdddbd38 100644 --- a/apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift +++ b/apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift @@ -5176,6 +5176,7 @@ public struct UpdateRunParams: Codable, Sendable { public let sessionkey: String? public let deliverycontext: [String: AnyCodable]? public let note: String? + public let continuationmessage: String? public let restartdelayms: Int? public let timeoutms: Int? @@ -5183,12 +5184,14 @@ public struct UpdateRunParams: Codable, Sendable { sessionkey: String?, deliverycontext: [String: AnyCodable]?, note: String?, + continuationmessage: String?, restartdelayms: Int?, timeoutms: Int?) { self.sessionkey = sessionkey self.deliverycontext = deliverycontext self.note = note + self.continuationmessage = continuationmessage self.restartdelayms = restartdelayms self.timeoutms = timeoutms } @@ -5197,6 +5200,7 @@ public struct UpdateRunParams: Codable, Sendable { case sessionkey = "sessionKey" case deliverycontext = "deliveryContext" case note + case continuationmessage = "continuationMessage" case restartdelayms = "restartDelayMs" case timeoutms = "timeoutMs" }