chore(protocol): regenerate Swift models for device pair remove params

This commit is contained in:
Peter Steinberger
2026-02-18 14:01:34 +00:00
parent 42025915db
commit 168d24526e
2 changed files with 26 additions and 0 deletions

View File

@@ -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

View File

@@ -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