zeus-api-types 1.0.60 → 1.0.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/user-preferences.d.ts +13 -2
- package/package.json +1 -1
|
@@ -111,14 +111,25 @@ export interface AIPreferences {
|
|
|
111
111
|
*/
|
|
112
112
|
modelPrefs?: ModelStackPreferences;
|
|
113
113
|
}
|
|
114
|
+
/**
|
|
115
|
+
* User profile and identity preferences
|
|
116
|
+
*/
|
|
117
|
+
export interface UserProfilePreferences {
|
|
118
|
+
/** Display name for the user (1-50 chars, free-text Unicode) */
|
|
119
|
+
userName?: string;
|
|
120
|
+
/**
|
|
121
|
+
* Preferred language for content generation and UI.
|
|
122
|
+
* If not set, defaults to that set by the author .
|
|
123
|
+
*/
|
|
124
|
+
language?: string;
|
|
125
|
+
}
|
|
114
126
|
/**
|
|
115
127
|
* User preferences stored in preferences.json
|
|
116
128
|
*/
|
|
117
129
|
export interface UserPreferences {
|
|
118
130
|
version: number;
|
|
119
131
|
updatedAt?: string;
|
|
120
|
-
|
|
121
|
-
userName?: string;
|
|
132
|
+
profile?: UserProfilePreferences;
|
|
122
133
|
narrativeFont: NarrativeFontPreferences;
|
|
123
134
|
sound?: SoundPreferences;
|
|
124
135
|
ai?: AIPreferences;
|