From ac652ba7cd40e57ed339180f2eda7c4c04e725d4 Mon Sep 17 00:00:00 2001 From: RoboClaw <309084314+roboclaw-bot@users.noreply.github.com> Date: Thu, 20 Aug 2026 15:27:47 +0000 Subject: [PATCH] chore(protocol): refresh Swift session list model Co-authored-by: jesse-merhi <79823012+jesse-merhi@users.noreply.github.com> --- .../OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift b/apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift index e8ae05d18f4d..2e00602a7cee 100644 --- a/apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift +++ b/apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift @@ -5308,6 +5308,7 @@ public struct SessionsListParams: Codable, Sendable { public let includederivedtitles: Bool? public let includelastmessage: Bool? public let label: String? + public let category: String? public let boardface: AnyCodable? public let creatorid: String? public let ownerid: String? @@ -5329,6 +5330,7 @@ public struct SessionsListParams: Codable, Sendable { includederivedtitles: Bool? = nil, includelastmessage: Bool? = nil, label: String? = nil, + category: String? = nil, boardface: AnyCodable? = nil, creatorid: String? = nil, ownerid: String? = nil, @@ -5349,6 +5351,7 @@ public struct SessionsListParams: Codable, Sendable { self.includederivedtitles = includederivedtitles self.includelastmessage = includelastmessage self.label = label + self.category = category self.boardface = boardface self.creatorid = creatorid self.ownerid = ownerid @@ -5371,6 +5374,7 @@ public struct SessionsListParams: Codable, Sendable { case includederivedtitles = "includeDerivedTitles" case includelastmessage = "includeLastMessage" case label + case category case boardface = "boardFace" case creatorid = "creatorId" case ownerid = "ownerId"