zeus-api-types 1.0.31 → 1.0.35

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.
@@ -66,7 +66,7 @@ export interface Location extends WorldEntity {
66
66
  /**
67
67
  * World container - reduced version without events (for frontend)
68
68
  */
69
- export interface World {
69
+ export interface WorldReduced {
70
70
  locations: Record<string, Location>;
71
71
  npcs: Record<string, NPC>;
72
72
  }
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  export type { ApiError, ApiErrorResponse } from './errors';
2
2
  export type { NarrativeStartEventPayload, NarrativeChunkEventPayload, NarrativeCompleteEventPayload, NarrativeMetadataEventPayload, MetadataEventPayload, DoneEventPayload, ErrorEventPayload, NarrativeSSEEventPayload, } from './sse/narrative';
3
- export type { TimeState, WorldEntity, Player, NPC, Location, World, DialogMessage, HistoryEntry, PresentationCache, Session, StoryArc, } from './game-state';
3
+ export type { TimeState, WorldEntity, Player, NPC, Location, WorldReduced, DialogMessage, HistoryEntry, PresentationCache, Session, StoryArc, } from './game-state';
4
4
  export type { NarrativeFontPreferences, SoundPreferences, ModelStackPreset, ModelEntry, ModelStack, ModelStackPreferences, SystemModelPresets, AIPreferences, UserPreferences, UserMetadata, } from './user-preferences';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zeus-api-types",
3
- "version": "1.0.31",
3
+ "version": "1.0.35",
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",