feat(shared): add 'invention' to MemoryEventType and NarrationEvent type

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
root
2026-03-08 23:48:50 +00:00
parent 3480405185
commit 69a07248ce
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ export type NarrationOutcome = InteractionOutcome | 'proposal_accepted' | 'propo
export interface NarrationEvent {
id: number;
tick: number;
type: 'social' | 'proposal';
type: 'social' | 'proposal' | 'invention';
entityIds: [EntityId, EntityId];
names: [string, string];
outcome: NarrationOutcome;
+2 -1
View File
@@ -12,7 +12,8 @@ export type MemoryEventType =
| 'need_crisis' | 'need_recovery'
| 'goal_change'
| 'bond_formed' | 'bond_dissolved'
| 'spawned';
| 'spawned'
| 'invention';
export interface MemoryEvent {
id: number;