chore: update protocol models

This commit is contained in:
Peter Steinberger
2025-12-27 01:45:58 +01:00
parent 8826170635
commit eafcd862be

View File

@@ -514,6 +514,23 @@ public struct NodePairVerifyParams: Codable {
}
}
public struct NodeRenameParams: Codable {
public let nodeid: String
public let displayname: String
public init(
nodeid: String,
displayname: String
) {
self.nodeid = nodeid
self.displayname = displayname
}
private enum CodingKeys: String, CodingKey {
case nodeid = "nodeId"
case displayname = "displayName"
}
}
public struct NodeListParams: Codable {
}