mirror of https://github.com/openclaw/openclaw.git
core(protocol): pnpm protocol:check
This commit is contained in:
parent
22b0f36350
commit
62a248eb99
|
|
@ -2992,6 +2992,7 @@ public struct DevicePairRequestedEvent: Codable, Sendable {
|
|||
public let publickey: String
|
||||
public let displayname: String?
|
||||
public let platform: String?
|
||||
public let devicefamily: String?
|
||||
public let clientid: String?
|
||||
public let clientmode: String?
|
||||
public let role: String?
|
||||
|
|
@ -3008,6 +3009,7 @@ public struct DevicePairRequestedEvent: Codable, Sendable {
|
|||
publickey: String,
|
||||
displayname: String?,
|
||||
platform: String?,
|
||||
devicefamily: String?,
|
||||
clientid: String?,
|
||||
clientmode: String?,
|
||||
role: String?,
|
||||
|
|
@ -3023,6 +3025,7 @@ public struct DevicePairRequestedEvent: Codable, Sendable {
|
|||
self.publickey = publickey
|
||||
self.displayname = displayname
|
||||
self.platform = platform
|
||||
self.devicefamily = devicefamily
|
||||
self.clientid = clientid
|
||||
self.clientmode = clientmode
|
||||
self.role = role
|
||||
|
|
@ -3040,6 +3043,7 @@ public struct DevicePairRequestedEvent: Codable, Sendable {
|
|||
case publickey = "publicKey"
|
||||
case displayname = "displayName"
|
||||
case platform
|
||||
case devicefamily = "deviceFamily"
|
||||
case clientid = "clientId"
|
||||
case clientmode = "clientMode"
|
||||
case role
|
||||
|
|
|
|||
|
|
@ -2992,6 +2992,7 @@ public struct DevicePairRequestedEvent: Codable, Sendable {
|
|||
public let publickey: String
|
||||
public let displayname: String?
|
||||
public let platform: String?
|
||||
public let devicefamily: String?
|
||||
public let clientid: String?
|
||||
public let clientmode: String?
|
||||
public let role: String?
|
||||
|
|
@ -3008,6 +3009,7 @@ public struct DevicePairRequestedEvent: Codable, Sendable {
|
|||
publickey: String,
|
||||
displayname: String?,
|
||||
platform: String?,
|
||||
devicefamily: String?,
|
||||
clientid: String?,
|
||||
clientmode: String?,
|
||||
role: String?,
|
||||
|
|
@ -3023,6 +3025,7 @@ public struct DevicePairRequestedEvent: Codable, Sendable {
|
|||
self.publickey = publickey
|
||||
self.displayname = displayname
|
||||
self.platform = platform
|
||||
self.devicefamily = devicefamily
|
||||
self.clientid = clientid
|
||||
self.clientmode = clientmode
|
||||
self.role = role
|
||||
|
|
@ -3040,6 +3043,7 @@ public struct DevicePairRequestedEvent: Codable, Sendable {
|
|||
case publickey = "publicKey"
|
||||
case displayname = "displayName"
|
||||
case platform
|
||||
case devicefamily = "deviceFamily"
|
||||
case clientid = "clientId"
|
||||
case clientmode = "clientMode"
|
||||
case role
|
||||
|
|
|
|||
Loading…
Reference in New Issue