From 259b14d66aa488653de902523722153d614aa511 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 4 Jan 2026 07:07:21 +0100 Subject: [PATCH] chore: refresh protocol models --- apps/macos/Sources/ClawdisProtocol/GatewayModels.swift | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/apps/macos/Sources/ClawdisProtocol/GatewayModels.swift b/apps/macos/Sources/ClawdisProtocol/GatewayModels.swift index b968c86f6..9fc796c63 100644 --- a/apps/macos/Sources/ClawdisProtocol/GatewayModels.swift +++ b/apps/macos/Sources/ClawdisProtocol/GatewayModels.swift @@ -646,6 +646,7 @@ public struct SessionsPatchParams: Codable { public let key: String public let thinkinglevel: AnyCodable? public let verboselevel: AnyCodable? + public let elevatedlevel: AnyCodable? public let model: AnyCodable? public let sendpolicy: AnyCodable? public let groupactivation: AnyCodable? @@ -654,6 +655,7 @@ public struct SessionsPatchParams: Codable { key: String, thinkinglevel: AnyCodable?, verboselevel: AnyCodable?, + elevatedlevel: AnyCodable?, model: AnyCodable?, sendpolicy: AnyCodable?, groupactivation: AnyCodable? @@ -661,6 +663,7 @@ public struct SessionsPatchParams: Codable { self.key = key self.thinkinglevel = thinkinglevel self.verboselevel = verboselevel + self.elevatedlevel = elevatedlevel self.model = model self.sendpolicy = sendpolicy self.groupactivation = groupactivation @@ -669,6 +672,7 @@ public struct SessionsPatchParams: Codable { case key case thinkinglevel = "thinkingLevel" case verboselevel = "verboseLevel" + case elevatedlevel = "elevatedLevel" case model case sendpolicy = "sendPolicy" case groupactivation = "groupActivation" @@ -871,7 +875,7 @@ public struct WizardStep: Codable { } } -public struct WizardNextResult: Codable, Sendable { +public struct WizardNextResult: Codable { public let done: Bool public let step: [String: AnyCodable]? public let status: AnyCodable? @@ -896,7 +900,7 @@ public struct WizardNextResult: Codable, Sendable { } } -public struct WizardStartResult: Codable, Sendable { +public struct WizardStartResult: Codable { public let sessionid: String public let done: Bool public let step: [String: AnyCodable]? @@ -925,7 +929,7 @@ public struct WizardStartResult: Codable, Sendable { } } -public struct WizardStatusResult: Codable, Sendable { +public struct WizardStatusResult: Codable { public let status: AnyCodable public let error: String?