From b731521e4fe75ee58143726cb1e0a6e9e4093b75 Mon Sep 17 00:00:00 2001 From: riccardom Date: Mon, 14 Sep 2026 09:19:35 +0200 Subject: [PATCH] [client] List anonymizeLevel in the WAILS-API DebugBundleParams reference The shape omitted anonymizeLevel, which has been on the Go struct (client/ui/services/debug.go) and set by the frontend since the strict anonymization level landed. This file is the reference for every model shape, so the omission propagates to anyone reading it instead of the generated bindings. Reported by cubic on #7514. --- client/ui/frontend/WAILS-API.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ui/frontend/WAILS-API.md b/client/ui/frontend/WAILS-API.md index 44a20d0c8..72096af6d 100644 --- a/client/ui/frontend/WAILS-API.md +++ b/client/ui/frontend/WAILS-API.md @@ -283,7 +283,7 @@ The tray also reads a tray-only synthetic `"Error"` for icon purposes; the front `UpParams` / `LogoutParams` / `ProfileRef` / `ConfigParams` / `ActiveProfile`: all `{ profileName, username: string }` (different names but same shape — kept distinct by Wails for clarity). -`DebugBundleParams`: `{ anonymize, systemInfo, upload: boolean; logFileCount: number }`. +`DebugBundleParams`: `{ anonymize, systemInfo, upload: boolean; anonymizeLevel: string; logFileCount: number }`. `DebugBundleResult`: `{ path, uploadedKey, uploadFailureReason: string }`.