(key: string)
| 188 | * Check if a setting should be shown in the settings dialog |
| 189 | */ |
| 190 | export function shouldShowInDialog(key: string): boolean { |
| 191 | return FLATTENED_SCHEMA[key]?.showInDialog ?? true; // Default to true for backward compatibility |
| 192 | } |
| 193 | |
| 194 | /** |
| 195 | * Get all settings that should be shown in the dialog, grouped by category |