From 168d24526e676e5baf826b6087ecf4591565e2e4 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 18 Feb 2026 14:01:34 +0000 Subject: [PATCH] chore(protocol): regenerate Swift models for device pair remove params --- .../Sources/OpenClawProtocol/GatewayModels.swift | 13 +++++++++++++ .../Sources/OpenClawProtocol/GatewayModels.swift | 13 +++++++++++++ 2 files changed, 26 insertions(+) diff --git a/apps/macos/Sources/OpenClawProtocol/GatewayModels.swift b/apps/macos/Sources/OpenClawProtocol/GatewayModels.swift index 365c4e7569..49e1c409b8 100644 --- a/apps/macos/Sources/OpenClawProtocol/GatewayModels.swift +++ b/apps/macos/Sources/OpenClawProtocol/GatewayModels.swift @@ -2508,6 +2508,19 @@ public struct DevicePairRejectParams: Codable, Sendable { } } +public struct DevicePairRemoveParams: Codable, Sendable { + public let deviceid: String + + public init( + deviceid: String + ) { + self.deviceid = deviceid + } + private enum CodingKeys: String, CodingKey { + case deviceid = "deviceId" + } +} + public struct DeviceTokenRotateParams: Codable, Sendable { public let deviceid: String public let role: String diff --git a/apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift b/apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift index 365c4e7569..49e1c409b8 100644 --- a/apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift +++ b/apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift @@ -2508,6 +2508,19 @@ public struct DevicePairRejectParams: Codable, Sendable { } } +public struct DevicePairRemoveParams: Codable, Sendable { + public let deviceid: String + + public init( + deviceid: String + ) { + self.deviceid = deviceid + } + private enum CodingKeys: String, CodingKey { + case deviceid = "deviceId" + } +} + public struct DeviceTokenRotateParams: Codable, Sendable { public let deviceid: String public let role: String