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.
@@ -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
- /** Display name for the user (1-50 chars, free-text Unicode) */
121
- userName?: string;
132
+ profile?: UserProfilePreferences;
122
133
  narrativeFont: NarrativeFontPreferences;
123
134
  sound?: SoundPreferences;
124
135
  ai?: AIPreferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zeus-api-types",
3
- "version": "1.0.60",
3
+ "version": "1.0.61",
4
4
  "description": "Shared API types for Wagtales - SSE payloads, error types, and common interfaces",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",