Skip to content

Commit 55c738a

Browse files
committed
build(protocol): refresh Swift gateway models
1 parent 0135071 commit 55c738a

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

apps/macos/Sources/OpenClawProtocol/GatewayModels.swift

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2804,6 +2804,7 @@ public struct ChannelsStatusResult: Codable, Sendable {
28042804
public let channels: [String: AnyCodable]
28052805
public let channelaccounts: [String: AnyCodable]
28062806
public let channeldefaultaccountid: [String: AnyCodable]
2807+
public let eventloop: [String: AnyCodable]?
28072808

28082809
public init(
28092810
ts: Int,
@@ -2814,7 +2815,8 @@ public struct ChannelsStatusResult: Codable, Sendable {
28142815
channelmeta: [[String: AnyCodable]]?,
28152816
channels: [String: AnyCodable],
28162817
channelaccounts: [String: AnyCodable],
2817-
channeldefaultaccountid: [String: AnyCodable])
2818+
channeldefaultaccountid: [String: AnyCodable],
2819+
eventloop: [String: AnyCodable]?)
28182820
{
28192821
self.ts = ts
28202822
self.channelorder = channelorder
@@ -2825,6 +2827,7 @@ public struct ChannelsStatusResult: Codable, Sendable {
28252827
self.channels = channels
28262828
self.channelaccounts = channelaccounts
28272829
self.channeldefaultaccountid = channeldefaultaccountid
2830+
self.eventloop = eventloop
28282831
}
28292832

28302833
private enum CodingKeys: String, CodingKey {
@@ -2837,6 +2840,7 @@ public struct ChannelsStatusResult: Codable, Sendable {
28372840
case channels
28382841
case channelaccounts = "channelAccounts"
28392842
case channeldefaultaccountid = "channelDefaultAccountId"
2843+
case eventloop = "eventLoop"
28402844
}
28412845
}
28422846

apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2804,6 +2804,7 @@ public struct ChannelsStatusResult: Codable, Sendable {
28042804
public let channels: [String: AnyCodable]
28052805
public let channelaccounts: [String: AnyCodable]
28062806
public let channeldefaultaccountid: [String: AnyCodable]
2807+
public let eventloop: [String: AnyCodable]?
28072808

28082809
public init(
28092810
ts: Int,
@@ -2814,7 +2815,8 @@ public struct ChannelsStatusResult: Codable, Sendable {
28142815
channelmeta: [[String: AnyCodable]]?,
28152816
channels: [String: AnyCodable],
28162817
channelaccounts: [String: AnyCodable],
2817-
channeldefaultaccountid: [String: AnyCodable])
2818+
channeldefaultaccountid: [String: AnyCodable],
2819+
eventloop: [String: AnyCodable]?)
28182820
{
28192821
self.ts = ts
28202822
self.channelorder = channelorder
@@ -2825,6 +2827,7 @@ public struct ChannelsStatusResult: Codable, Sendable {
28252827
self.channels = channels
28262828
self.channelaccounts = channelaccounts
28272829
self.channeldefaultaccountid = channeldefaultaccountid
2830+
self.eventloop = eventloop
28282831
}
28292832

28302833
private enum CodingKeys: String, CodingKey {
@@ -2837,6 +2840,7 @@ public struct ChannelsStatusResult: Codable, Sendable {
28372840
case channels
28382841
case channelaccounts = "channelAccounts"
28392842
case channeldefaultaccountid = "channelDefaultAccountId"
2843+
case eventloop = "eventLoop"
28402844
}
28412845
}
28422846

0 commit comments

Comments
 (0)