diff --git a/apps/macos/Sources/ClawdbotProtocol/GatewayModels.swift b/apps/macos/Sources/ClawdbotProtocol/GatewayModels.swift index 626b279be..eee403ec4 100644 --- a/apps/macos/Sources/ClawdbotProtocol/GatewayModels.swift +++ b/apps/macos/Sources/ClawdbotProtocol/GatewayModels.swift @@ -482,6 +482,9 @@ public struct AgentParams: Codable, Sendable { public let accountid: String? public let replyaccountid: String? public let threadid: String? + public let groupid: String? + public let groupchannel: String? + public let groupspace: String? public let timeout: Int? public let lane: String? public let extrasystemprompt: String? @@ -504,6 +507,9 @@ public struct AgentParams: Codable, Sendable { accountid: String?, replyaccountid: String?, threadid: String?, + groupid: String?, + groupchannel: String?, + groupspace: String?, timeout: Int?, lane: String?, extrasystemprompt: String?, @@ -525,6 +531,9 @@ public struct AgentParams: Codable, Sendable { self.accountid = accountid self.replyaccountid = replyaccountid self.threadid = threadid + self.groupid = groupid + self.groupchannel = groupchannel + self.groupspace = groupspace self.timeout = timeout self.lane = lane self.extrasystemprompt = extrasystemprompt @@ -547,6 +556,9 @@ public struct AgentParams: Codable, Sendable { case accountid = "accountId" case replyaccountid = "replyAccountId" case threadid = "threadId" + case groupid = "groupId" + case groupchannel = "groupChannel" + case groupspace = "groupSpace" case timeout case lane case extrasystemprompt = "extraSystemPrompt" diff --git a/apps/shared/ClawdbotKit/Sources/ClawdbotProtocol/GatewayModels.swift b/apps/shared/ClawdbotKit/Sources/ClawdbotProtocol/GatewayModels.swift index 626b279be..eee403ec4 100644 --- a/apps/shared/ClawdbotKit/Sources/ClawdbotProtocol/GatewayModels.swift +++ b/apps/shared/ClawdbotKit/Sources/ClawdbotProtocol/GatewayModels.swift @@ -482,6 +482,9 @@ public struct AgentParams: Codable, Sendable { public let accountid: String? public let replyaccountid: String? public let threadid: String? + public let groupid: String? + public let groupchannel: String? + public let groupspace: String? public let timeout: Int? public let lane: String? public let extrasystemprompt: String? @@ -504,6 +507,9 @@ public struct AgentParams: Codable, Sendable { accountid: String?, replyaccountid: String?, threadid: String?, + groupid: String?, + groupchannel: String?, + groupspace: String?, timeout: Int?, lane: String?, extrasystemprompt: String?, @@ -525,6 +531,9 @@ public struct AgentParams: Codable, Sendable { self.accountid = accountid self.replyaccountid = replyaccountid self.threadid = threadid + self.groupid = groupid + self.groupchannel = groupchannel + self.groupspace = groupspace self.timeout = timeout self.lane = lane self.extrasystemprompt = extrasystemprompt @@ -547,6 +556,9 @@ public struct AgentParams: Codable, Sendable { case accountid = "accountId" case replyaccountid = "replyAccountId" case threadid = "threadId" + case groupid = "groupId" + case groupchannel = "groupChannel" + case groupspace = "groupSpace" case timeout case lane case extrasystemprompt = "extraSystemPrompt"