@@ -71,6 +71,14 @@ export interface CMsgClientSettings {
7171 */
7272 accessibility_minimum_font_size ?: number ;
7373
74+ /**
75+ * @Options
76+ * Setting store: k_ClientSettingStore_ConfigStore_Install
77+ * Setting name: Accessibility/MonoAudio
78+ * Default: false
79+ */
80+ accessibility_mono_audio ?: boolean ;
81+
7482 /**
7583 * @Options
7684 * Setting store: k_ClientSettingStore_ConfigStore_UserLocal
@@ -119,6 +127,22 @@ export interface CMsgClientSettings {
119127 */
120128 accessibility_screen_reader_volume ?: number ;
121129
130+ /**
131+ * @Options
132+ * Setting store: k_ClientSettingStore_ConfigStore_UserLocal
133+ * Setting name: system\AchievementNotificationSound
134+ * Default: true
135+ */
136+ achievement_notification_sound ?: boolean ;
137+
138+ /**
139+ * @Options
140+ * Setting store: k_ClientSettingStore_ConfigStore_UserLocal
141+ * Setting name: system\AchievementNotificationToast
142+ * Default: true
143+ */
144+ achievement_notification_toast ?: boolean ;
145+
122146 /**
123147 * @Options
124148 * Setting store: k_ClientSettingStore_ConfigStore_Install
@@ -244,6 +268,62 @@ export interface CMsgClientSettings {
244268 */
245269 cloud_enabled ?: boolean ;
246270
271+ /**
272+ * @Options
273+ * Setting store: k_ClientSettingStore_ConfigStore_UserLocal
274+ * Setting name: SteamInput/ChatRadialMenu/0
275+ */
276+ controller_chat_radial_menu_option_0 ?: string ;
277+
278+ /**
279+ * @Options
280+ * Setting store: k_ClientSettingStore_ConfigStore_UserLocal
281+ * Setting name: SteamInput/ChatRadialMenu/1
282+ */
283+ controller_chat_radial_menu_option_1 ?: string ;
284+
285+ /**
286+ * @Options
287+ * Setting store: k_ClientSettingStore_ConfigStore_UserLocal
288+ * Setting name: SteamInput/ChatRadialMenu/2
289+ */
290+ controller_chat_radial_menu_option_2 ?: string ;
291+
292+ /**
293+ * @Options
294+ * Setting store: k_ClientSettingStore_ConfigStore_UserLocal
295+ * Setting name: SteamInput/ChatRadialMenu/3
296+ */
297+ controller_chat_radial_menu_option_3 ?: string ;
298+
299+ /**
300+ * @Options
301+ * Setting store: k_ClientSettingStore_ConfigStore_UserLocal
302+ * Setting name: SteamInput/ChatRadialMenu/4
303+ */
304+ controller_chat_radial_menu_option_4 ?: string ;
305+
306+ /**
307+ * @Options
308+ * Setting store: k_ClientSettingStore_ConfigStore_UserLocal
309+ * Setting name: SteamInput/ChatRadialMenu/5
310+ */
311+ controller_chat_radial_menu_option_5 ?: string ;
312+
313+ /**
314+ * @Options
315+ * Setting store: k_ClientSettingStore_ConfigStore_UserLocal
316+ * Setting name: SteamInput/ChatRadialMenu/6
317+ */
318+ controller_chat_radial_menu_option_6 ?: string ;
319+
320+ /**
321+ * @Options
322+ * Setting store: k_ClientSettingStore_ConfigStore_UserLocal
323+ * Setting name: SteamInput/ChatRadialMenu/7
324+ */
325+ controller_chat_radial_menu_option_7 ?: string ;
326+
247327 /**
248328 * @Options
249329 * Setting store: k_ClientSettingStore_ConfigStore_Install
@@ -516,16 +596,17 @@ export interface CMsgClientSettings {
516596 * @Options
517597 * Setting store: k_ClientSettingStore_Registry
518598 * Setting name: HKEY_CURRENT_USER\Software\Valve\Steam\ForceOOBE
599+ * Setting pre-login: true
519600 */
520601 force_oobe ?: boolean ;
521602
522603 /**
523604 * @Options
524- * Setting store: k_ClientSettingStore_ConfigStore_UserLocal
525- * Setting name: System/GameFrameRateReportEnabled
526- * Default: 0
605+ * Setting store: k_ClientSettingStore_Registry
606+ * Setting name: HKEY_CURRENT_USER\Software\Valve\Steam\ForceOOBEStage2
607+ * Setting pre-login: true
527608 */
528- game_framerate_report_enabled ?: FrameRateReportEnabled ;
609+ force_stage_2_oobe ?: boolean ;
529610
530611 /**
531612 * @Options
@@ -1009,8 +1090,35 @@ export interface CMsgClientSettings {
10091090
10101091 /**
10111092 * @Options
1012- * Setting store: k_ClientSettingStore_ConfigStore_Install
1013- * Setting name: Software\Valve\Steam\OOBETestModeEnabled
1093+ * Setting store: k_ClientSettingStore_CustomFunc
1094+ * Setting pre-login: true
1095+ * Setting description: True if OOBE stage 1 has completed or we're on a platform where we don't do OOBE
1096+ */
1097+ oobe_completed ?: boolean ;
1098+
1099+ /**
1100+ * @Options
1101+ * Setting store: k_ClientSettingStore_CustomFunc
1102+ * Setting pre-login: true
1103+ * Setting description: True if OOBE stage 2 has completed or we're on a platform where we don't do OOBE
1104+ */
1105+ oobe_stage_2_completed ?: boolean ;
1106+
1107+ /**
1108+ * @Options
1109+ * Setting store: k_ClientSettingStore_CustomFunc
1110+ * Setting pre-login: true
1111+ * Setting readonly: true
1112+ * Setting description: OOBE test mode is enabled for stage 2 either by passing -testoobe on the command line or setting the force_stage2_oobe client setting
1113+ */
1114+ oobe_stage_2_test_mode_enabled ?: boolean ;
1115+
1116+ /**
1117+ * @Options
1118+ * Setting store: k_ClientSettingStore_CustomFunc
1119+ * Setting pre-login: true
1120+ * Setting readonly: true
1121+ * Setting description: OOBE test mode is enabled either by passing -testoobe on the command line or setting the force_oobe client setting
10141122 */
10151123 oobe_test_mode_enabled ?: boolean ;
10161124
@@ -1229,6 +1337,14 @@ export interface CMsgClientSettings {
12291337 */
12301338 remote_play_wifi_ap_hotspot_ssid ?: string ;
12311339
1340+ /**
1341+ * @Options
1342+ * Setting store: k_ClientSettingStore_ConfigStore_Install
1343+ * Setting name: streaming_v2\WifiAPPairedSSID
1344+ * Default: ""
1345+ */
1346+ remote_play_wifi_ap_paired_ssid ?: string ;
1347+
12321348 /**
12331349 * @Options
12341350 * Setting store: k_ClientSettingStore_ConfigStore_UserLocal
@@ -1402,13 +1518,28 @@ export interface CMsgClientSettings {
14021518 */
14031519 show_store_content_on_home ?: boolean ;
14041520
1521+ /**
1522+ * @Options
1523+ * Setting store: k_ClientSettingStore_ConfigStore_Install
1524+ * Setting name: system\ShowSwitchToDesktopAtLogin
1525+ * Setting pre-login: true
1526+ */
1527+ show_switch_to_desktop_at_login ?: boolean ;
1528+
14051529 /**
14061530 * @Options
14071531 * Setting store: k_ClientSettingStore_ConfigStore_UserLocal
14081532 * Setting name: Developer\ShowTimestampsInConsole
14091533 */
14101534 show_timestamps_in_console ?: boolean ;
14111535
1536+ /**
1537+ * @Options
1538+ * Setting store: k_ClientSettingStore_ConfigStore_UserLocal
1539+ * Setting name: system\SteamFrameWirelessAdapterPairingDialog
1540+ */
1541+ skip_steamframe_pairing_dialog ?: boolean ;
1542+
14121543 /**
14131544 * @Options
14141545 * Setting store: k_ClientSettingStore_ConfigStore_UserLocal
0 commit comments