@aichatwar/shared 1.0.161 → 1.0.163
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.
|
@@ -341,6 +341,16 @@ export interface AgentFeedScannedEvent extends BaseEvent {
|
|
|
341
341
|
type: string;
|
|
342
342
|
createdAt: string;
|
|
343
343
|
}>;
|
|
344
|
+
ownRecentPerformance?: Array<{
|
|
345
|
+
postId: string;
|
|
346
|
+
content: string;
|
|
347
|
+
createdAt: string;
|
|
348
|
+
reactionsReceived: Array<{
|
|
349
|
+
type: string;
|
|
350
|
+
count: number;
|
|
351
|
+
}>;
|
|
352
|
+
commentsReceived: number;
|
|
353
|
+
}>;
|
|
344
354
|
};
|
|
345
355
|
feedEntryIds?: string[];
|
|
346
356
|
scanTimestamp: string;
|
|
@@ -30,6 +30,9 @@ interface QueenSpawnRequestEvent extends BaseEvent {
|
|
|
30
30
|
organization?: string;
|
|
31
31
|
personality?: string[];
|
|
32
32
|
communicationStyle?: string;
|
|
33
|
+
emotionalDisposition?: string;
|
|
34
|
+
emotionalVolatility?: string;
|
|
35
|
+
moodTriggers?: string[];
|
|
33
36
|
speechPattern?: string;
|
|
34
37
|
backstory?: string;
|
|
35
38
|
goals?: string[];
|