From d45c27e51f2fe672f8e4ee240c163832b4d017b1 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 10 Jan 2026 22:15:06 +0100 Subject: [PATCH] chore(protocol): regenerate GatewayModels.swift --- apps/macos/Sources/ClawdbotProtocol/GatewayModels.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/macos/Sources/ClawdbotProtocol/GatewayModels.swift b/apps/macos/Sources/ClawdbotProtocol/GatewayModels.swift index 898833d02..8c5bab14a 100644 --- a/apps/macos/Sources/ClawdbotProtocol/GatewayModels.swift +++ b/apps/macos/Sources/ClawdbotProtocol/GatewayModels.swift @@ -421,6 +421,7 @@ public struct AgentParams: Codable, Sendable { public let sessionkey: String? public let thinking: String? public let deliver: Bool? + public let attachments: [AnyCodable]? public let provider: String? public let timeout: Int? public let lane: String? @@ -436,6 +437,7 @@ public struct AgentParams: Codable, Sendable { sessionkey: String?, thinking: String?, deliver: Bool?, + attachments: [AnyCodable]?, provider: String?, timeout: Int?, lane: String?, @@ -450,6 +452,7 @@ public struct AgentParams: Codable, Sendable { self.sessionkey = sessionkey self.thinking = thinking self.deliver = deliver + self.attachments = attachments self.provider = provider self.timeout = timeout self.lane = lane @@ -465,6 +468,7 @@ public struct AgentParams: Codable, Sendable { case sessionkey = "sessionKey" case thinking case deliver + case attachments case provider case timeout case lane