zeus-api-types 1.0.31 → 1.0.34
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/game-state.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/game-state.d.ts
CHANGED
|
@@ -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
|
|
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,
|
|
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';
|