build(protocol): refresh swift gateway models · openclaw/openclaw@d9b8001
steipete
·
2026-04-27
·
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 |
|---|
@@ -893,6 +893,20 @@ public struct NodePairRejectParams: Codable, Sendable {
|
893 | 893 | } |
894 | 894 | } |
895 | 895 | |
| 896 | +public struct NodePairRemoveParams: Codable, Sendable { |
| 897 | +public let nodeid: String |
| 898 | + |
| 899 | +public init( |
| 900 | + nodeid: String) |
| 901 | +{ |
| 902 | +self.nodeid = nodeid |
| 903 | +} |
| 904 | + |
| 905 | +private enum CodingKeys: String, CodingKey { |
| 906 | +case nodeid = "nodeId" |
| 907 | +} |
| 908 | +} |
| 909 | + |
896 | 910 | public struct NodePairVerifyParams: Codable, Sendable { |
897 | 911 | public let nodeid: String |
898 | 912 | public let token: String |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -893,6 +893,20 @@ public struct NodePairRejectParams: Codable, Sendable {
|
893 | 893 | } |
894 | 894 | } |
895 | 895 | |
| 896 | +public struct NodePairRemoveParams: Codable, Sendable { |
| 897 | +public let nodeid: String |
| 898 | + |
| 899 | +public init( |
| 900 | + nodeid: String) |
| 901 | +{ |
| 902 | +self.nodeid = nodeid |
| 903 | +} |
| 904 | + |
| 905 | +private enum CodingKeys: String, CodingKey { |
| 906 | +case nodeid = "nodeId" |
| 907 | +} |
| 908 | +} |
| 909 | + |
896 | 910 | public struct NodePairVerifyParams: Codable, Sendable { |
897 | 911 | public let nodeid: String |
898 | 912 | public let token: String |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。