mirror of https://github.com/openclaw/openclaw.git
fix: regenerate protocol swift models for nodeId (#24991) (thanks @stakeswky)
This commit is contained in:
parent
d427d09b5e
commit
19d0ddc679
|
|
@ -2806,6 +2806,7 @@ public struct ExecApprovalRequestParams: Codable, Sendable {
|
|||
public let id: String?
|
||||
public let command: String
|
||||
public let cwd: AnyCodable?
|
||||
public let nodeid: AnyCodable?
|
||||
public let host: AnyCodable?
|
||||
public let security: AnyCodable?
|
||||
public let ask: AnyCodable?
|
||||
|
|
@ -2819,6 +2820,7 @@ public struct ExecApprovalRequestParams: Codable, Sendable {
|
|||
id: String?,
|
||||
command: String,
|
||||
cwd: AnyCodable?,
|
||||
nodeid: AnyCodable?,
|
||||
host: AnyCodable?,
|
||||
security: AnyCodable?,
|
||||
ask: AnyCodable?,
|
||||
|
|
@ -2831,6 +2833,7 @@ public struct ExecApprovalRequestParams: Codable, Sendable {
|
|||
self.id = id
|
||||
self.command = command
|
||||
self.cwd = cwd
|
||||
self.nodeid = nodeid
|
||||
self.host = host
|
||||
self.security = security
|
||||
self.ask = ask
|
||||
|
|
@ -2845,6 +2848,7 @@ public struct ExecApprovalRequestParams: Codable, Sendable {
|
|||
case id
|
||||
case command
|
||||
case cwd
|
||||
case nodeid = "nodeId"
|
||||
case host
|
||||
case security
|
||||
case ask
|
||||
|
|
|
|||
|
|
@ -2806,6 +2806,7 @@ public struct ExecApprovalRequestParams: Codable, Sendable {
|
|||
public let id: String?
|
||||
public let command: String
|
||||
public let cwd: AnyCodable?
|
||||
public let nodeid: AnyCodable?
|
||||
public let host: AnyCodable?
|
||||
public let security: AnyCodable?
|
||||
public let ask: AnyCodable?
|
||||
|
|
@ -2819,6 +2820,7 @@ public struct ExecApprovalRequestParams: Codable, Sendable {
|
|||
id: String?,
|
||||
command: String,
|
||||
cwd: AnyCodable?,
|
||||
nodeid: AnyCodable?,
|
||||
host: AnyCodable?,
|
||||
security: AnyCodable?,
|
||||
ask: AnyCodable?,
|
||||
|
|
@ -2831,6 +2833,7 @@ public struct ExecApprovalRequestParams: Codable, Sendable {
|
|||
self.id = id
|
||||
self.command = command
|
||||
self.cwd = cwd
|
||||
self.nodeid = nodeid
|
||||
self.host = host
|
||||
self.security = security
|
||||
self.ask = ask
|
||||
|
|
@ -2845,6 +2848,7 @@ public struct ExecApprovalRequestParams: Codable, Sendable {
|
|||
case id
|
||||
case command
|
||||
case cwd
|
||||
case nodeid = "nodeId"
|
||||
case host
|
||||
case security
|
||||
case ask
|
||||
|
|
|
|||
Loading…
Reference in New Issue