From a844fb161c3671a455b04a4e597cf3d9ecf31967 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Fri, 13 Feb 2026 16:14:49 +0000 Subject: [PATCH] build(protocol): regenerate swift gateway models --- .../OpenClawProtocol/GatewayModels.swift | 26 +++++++++++++++++++ .../OpenClawProtocol/GatewayModels.swift | 26 +++++++++++++++++++ 2 files changed, 52 insertions(+) diff --git a/apps/macos/Sources/OpenClawProtocol/GatewayModels.swift b/apps/macos/Sources/OpenClawProtocol/GatewayModels.swift index 2ea9ed4ed2..fca8eac3a9 100644 --- a/apps/macos/Sources/OpenClawProtocol/GatewayModels.swift +++ b/apps/macos/Sources/OpenClawProtocol/GatewayModels.swift @@ -1452,6 +1452,32 @@ public struct TalkModeParams: Codable, Sendable { } } +public struct TalkConfigParams: Codable, Sendable { + public let includesecrets: Bool? + + public init( + includesecrets: Bool? + ) { + self.includesecrets = includesecrets + } + private enum CodingKeys: String, CodingKey { + case includesecrets = "includeSecrets" + } +} + +public struct TalkConfigResult: Codable, Sendable { + public let config: [String: AnyCodable] + + public init( + config: [String: AnyCodable] + ) { + self.config = config + } + private enum CodingKeys: String, CodingKey { + case config + } +} + public struct ChannelsStatusParams: Codable, Sendable { public let probe: Bool? public let timeoutms: Int? diff --git a/apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift b/apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift index 2ea9ed4ed2..fca8eac3a9 100644 --- a/apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift +++ b/apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift @@ -1452,6 +1452,32 @@ public struct TalkModeParams: Codable, Sendable { } } +public struct TalkConfigParams: Codable, Sendable { + public let includesecrets: Bool? + + public init( + includesecrets: Bool? + ) { + self.includesecrets = includesecrets + } + private enum CodingKeys: String, CodingKey { + case includesecrets = "includeSecrets" + } +} + +public struct TalkConfigResult: Codable, Sendable { + public let config: [String: AnyCodable] + + public init( + config: [String: AnyCodable] + ) { + self.config = config + } + private enum CodingKeys: String, CodingKey { + case config + } +} + public struct ChannelsStatusParams: Codable, Sendable { public let probe: Bool? public let timeoutms: Int?