build(protocol): refresh generated Swift models · openclaw/openclaw@6a65388
steipete
·
2026-05-03
·
via Recent Commits to openclaw:main
File tree
macos/Sources/OpenClawProtocol
shared/OpenClawKit/Sources/OpenClawProtocol
| Original file line number | Diff line number | Diff line change |
|---|
@@ -5176,19 +5176,22 @@ public struct UpdateRunParams: Codable, Sendable {
|
5176 | 5176 | public let sessionkey: String? |
5177 | 5177 | public let deliverycontext: [String: AnyCodable]? |
5178 | 5178 | public let note: String? |
| 5179 | +public let continuationmessage: String? |
5179 | 5180 | public let restartdelayms: Int? |
5180 | 5181 | public let timeoutms: Int? |
5181 | 5182 | |
5182 | 5183 | public init( |
5183 | 5184 | sessionkey: String?, |
5184 | 5185 | deliverycontext: [String: AnyCodable]?, |
5185 | 5186 | note: String?, |
| 5187 | + continuationmessage: String?, |
5186 | 5188 | restartdelayms: Int?, |
5187 | 5189 | timeoutms: Int?) |
5188 | 5190 | { |
5189 | 5191 | self.sessionkey = sessionkey |
5190 | 5192 | self.deliverycontext = deliverycontext |
5191 | 5193 | self.note = note |
| 5194 | +self.continuationmessage = continuationmessage |
5192 | 5195 | self.restartdelayms = restartdelayms |
5193 | 5196 | self.timeoutms = timeoutms |
5194 | 5197 | } |
@@ -5197,6 +5200,7 @@ public struct UpdateRunParams: Codable, Sendable {
|
5197 | 5200 | case sessionkey = "sessionKey" |
5198 | 5201 | case deliverycontext = "deliveryContext" |
5199 | 5202 | case note |
| 5203 | +case continuationmessage = "continuationMessage" |
5200 | 5204 | case restartdelayms = "restartDelayMs" |
5201 | 5205 | case timeoutms = "timeoutMs" |
5202 | 5206 | } |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -5176,19 +5176,22 @@ public struct UpdateRunParams: Codable, Sendable {
|
5176 | 5176 | public let sessionkey: String? |
5177 | 5177 | public let deliverycontext: [String: AnyCodable]? |
5178 | 5178 | public let note: String? |
| 5179 | +public let continuationmessage: String? |
5179 | 5180 | public let restartdelayms: Int? |
5180 | 5181 | public let timeoutms: Int? |
5181 | 5182 | |
5182 | 5183 | public init( |
5183 | 5184 | sessionkey: String?, |
5184 | 5185 | deliverycontext: [String: AnyCodable]?, |
5185 | 5186 | note: String?, |
| 5187 | + continuationmessage: String?, |
5186 | 5188 | restartdelayms: Int?, |
5187 | 5189 | timeoutms: Int?) |
5188 | 5190 | { |
5189 | 5191 | self.sessionkey = sessionkey |
5190 | 5192 | self.deliverycontext = deliverycontext |
5191 | 5193 | self.note = note |
| 5194 | +self.continuationmessage = continuationmessage |
5192 | 5195 | self.restartdelayms = restartdelayms |
5193 | 5196 | self.timeoutms = timeoutms |
5194 | 5197 | } |
@@ -5197,6 +5200,7 @@ public struct UpdateRunParams: Codable, Sendable {
|
5197 | 5200 | case sessionkey = "sessionKey" |
5198 | 5201 | case deliverycontext = "deliveryContext" |
5199 | 5202 | case note |
| 5203 | +case continuationmessage = "continuationMessage" |
5200 | 5204 | case restartdelayms = "restartDelayMs" |
5201 | 5205 | case timeoutms = "timeoutMs" |
5202 | 5206 | } |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。