()
| 232 | * Get all setting keys that should be shown in the dialog |
| 233 | */ |
| 234 | export function getDialogSettingKeys(): string[] { |
| 235 | return Object.values(FLATTENED_SCHEMA) |
| 236 | .filter((definition) => definition.showInDialog !== false) |
| 237 | .map((definition) => definition.key); |
| 238 | } |
| 239 | |
| 240 | // ============================================================================ |
| 241 | // BUSINESS LOGIC UTILITIES (Higher-level utilities for setting operations) |
no outgoing calls
no test coverage detected