From 6a653888fda2ea311d20da30c4d32f1916758538 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 3 May 2026 13:48:17 +0100 Subject: [PATCH] build(protocol): refresh generated Swift models --- apps/macos/Sources/OpenClawProtocol/GatewayModels.swift | 4 ++++ .../OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift | 4 ++++ 2 files changed, 8 insertions(+) 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" }