zeus-api-types 1.0.55 → 1.0.57

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.
@@ -209,13 +209,11 @@ export interface GameState {
209
209
  narrativeStyle?: NarrativeStyleCard;
210
210
  }
211
211
  export interface GameStateReduced {
212
- immutable: ImmutableState;
213
212
  currentTurn: number;
214
213
  time: TimeState;
215
214
  location: string;
216
215
  player: Player;
217
216
  world: WorldReduced;
218
- metadata: Metadata;
219
217
  storyArc?: StoryArc;
220
218
  narrativeStyle?: NarrativeStyleCard;
221
219
  }
@@ -257,6 +255,8 @@ export interface GameMetadata {
257
255
  playerName?: string;
258
256
  /** Player image filename (not full URL) */
259
257
  playerImage?: string;
258
+ /** Genre poster image filename (not full URL) */
259
+ posterImage?: string;
260
260
  /** Current act number (for multi-act games) */
261
261
  act?: number;
262
262
  /** Total number of acts planned */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zeus-api-types",
3
- "version": "1.0.55",
3
+ "version": "1.0.57",
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",