UserSettingsUpdateOptions
Options for updating user settings
All fields are optional - only send the fields you want to change.
Set fields to null to explicitly clear them.
Omitting fields means no change.
Example¶
// Update specific fields
await conversationalAgentService.user.updateSettings({
name: 'John Doe',
timezone: 'America/New_York'
});
// Clear a field by setting to null
await conversationalAgentService.user.updateSettings({
department: null
});