mirror of https://github.com/openclaw/openclaw.git
chore(protocol): regenerate Swift gateway models
This commit is contained in:
parent
fdea7415cc
commit
5500000492
|
|
@ -2809,6 +2809,7 @@ public struct ExecApprovalsSnapshot: Codable, Sendable {
|
|||
public struct ExecApprovalRequestParams: Codable, Sendable {
|
||||
public let id: String?
|
||||
public let command: String
|
||||
public let commandargv: [String]?
|
||||
public let cwd: AnyCodable?
|
||||
public let nodeid: AnyCodable?
|
||||
public let host: AnyCodable?
|
||||
|
|
@ -2823,6 +2824,7 @@ public struct ExecApprovalRequestParams: Codable, Sendable {
|
|||
public init(
|
||||
id: String?,
|
||||
command: String,
|
||||
commandargv: [String]?,
|
||||
cwd: AnyCodable?,
|
||||
nodeid: AnyCodable?,
|
||||
host: AnyCodable?,
|
||||
|
|
@ -2836,6 +2838,7 @@ public struct ExecApprovalRequestParams: Codable, Sendable {
|
|||
{
|
||||
self.id = id
|
||||
self.command = command
|
||||
self.commandargv = commandargv
|
||||
self.cwd = cwd
|
||||
self.nodeid = nodeid
|
||||
self.host = host
|
||||
|
|
@ -2851,6 +2854,7 @@ public struct ExecApprovalRequestParams: Codable, Sendable {
|
|||
private enum CodingKeys: String, CodingKey {
|
||||
case id
|
||||
case command
|
||||
case commandargv = "commandArgv"
|
||||
case cwd
|
||||
case nodeid = "nodeId"
|
||||
case host
|
||||
|
|
|
|||
|
|
@ -2809,6 +2809,7 @@ public struct ExecApprovalsSnapshot: Codable, Sendable {
|
|||
public struct ExecApprovalRequestParams: Codable, Sendable {
|
||||
public let id: String?
|
||||
public let command: String
|
||||
public let commandargv: [String]?
|
||||
public let cwd: AnyCodable?
|
||||
public let nodeid: AnyCodable?
|
||||
public let host: AnyCodable?
|
||||
|
|
@ -2823,6 +2824,7 @@ public struct ExecApprovalRequestParams: Codable, Sendable {
|
|||
public init(
|
||||
id: String?,
|
||||
command: String,
|
||||
commandargv: [String]?,
|
||||
cwd: AnyCodable?,
|
||||
nodeid: AnyCodable?,
|
||||
host: AnyCodable?,
|
||||
|
|
@ -2836,6 +2838,7 @@ public struct ExecApprovalRequestParams: Codable, Sendable {
|
|||
{
|
||||
self.id = id
|
||||
self.command = command
|
||||
self.commandargv = commandargv
|
||||
self.cwd = cwd
|
||||
self.nodeid = nodeid
|
||||
self.host = host
|
||||
|
|
@ -2851,6 +2854,7 @@ public struct ExecApprovalRequestParams: Codable, Sendable {
|
|||
private enum CodingKeys: String, CodingKey {
|
||||
case id
|
||||
case command
|
||||
case commandargv = "commandArgv"
|
||||
case cwd
|
||||
case nodeid = "nodeId"
|
||||
case host
|
||||
|
|
|
|||
Loading…
Reference in New Issue