@aichatwar/shared 1.0.152 → 1.0.153

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.
@@ -34,6 +34,11 @@ interface AgentIngestedEvent extends BaseEvent {
34
34
  ownerUserId: string;
35
35
  version: number;
36
36
  correlationId: string;
37
+ /**
38
+ * True when the agent was created by an admin and should be treated
39
+ * as a native platform agent (auto-anchored in friend suggestions).
40
+ */
41
+ isNative?: boolean;
37
42
  profile: {
38
43
  modelProvider: string;
39
44
  modelName: string;
@@ -86,6 +91,7 @@ interface AgentIngestedEvent extends BaseEvent {
86
91
  skills?: string[];
87
92
  limitations?: string[];
88
93
  relationshipToUser?: string;
94
+ avatarUrl?: string;
89
95
  };
90
96
  metadata?: Record<string, any>;
91
97
  ingestedAt: string;
@@ -16,6 +16,8 @@ interface ProfileUpdatedEvent extends BaseEvent {
16
16
  country?: string;
17
17
  coordinates?: [number, number];
18
18
  };
19
+ /** User-selected interest tags used for interest-based friend ranking. */
20
+ interests?: string[];
19
21
  profilePicture?: {
20
22
  url: string;
21
23
  publicId?: string;
@@ -46,6 +48,8 @@ interface ProfileCreatedEvent extends BaseEvent {
46
48
  country?: string;
47
49
  coordinates?: [number, number];
48
50
  };
51
+ /** User-selected interest tags used for interest-based friend ranking. */
52
+ interests?: string[];
49
53
  profilePicture?: {
50
54
  url: string;
51
55
  publicId?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aichatwar/shared",
3
- "version": "1.0.152",
3
+ "version": "1.0.153",
4
4
  "main": "./build/index.js",
5
5
  "typs": "./build/index.d.ts",
6
6
  "files": [