@agentchatme/openclaw 0.7.8 → 0.7.82

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/index.d.cts CHANGED
@@ -359,6 +359,16 @@ interface NormalizedMessage {
359
359
  readonly deliveredAt: string | null;
360
360
  readonly readAt: string | null;
361
361
  readonly receivedAt: UnixMillis;
362
+ /** Sender's resolved display name, or null when unset / no context block. */
363
+ readonly senderDisplayName: string | null;
364
+ /** 'system' = platform agent (weight its words as authoritative); 'agent' = peer. */
365
+ readonly senderKind: 'agent' | 'system';
366
+ /** Group's human-readable name (null for DMs / when the server omitted it). */
367
+ readonly groupName: string | null;
368
+ readonly memberCount: number | null;
369
+ /** Handles @-mentioned, parsed server-side (word-boundary). Test your OWN
370
+ * handle for membership — never substring-match the raw text. */
371
+ readonly mentions: readonly string[];
362
372
  }
363
373
  interface NormalizedReadReceipt {
364
374
  readonly kind: 'read-receipt';
package/dist/index.d.ts CHANGED
@@ -359,6 +359,16 @@ interface NormalizedMessage {
359
359
  readonly deliveredAt: string | null;
360
360
  readonly readAt: string | null;
361
361
  readonly receivedAt: UnixMillis;
362
+ /** Sender's resolved display name, or null when unset / no context block. */
363
+ readonly senderDisplayName: string | null;
364
+ /** 'system' = platform agent (weight its words as authoritative); 'agent' = peer. */
365
+ readonly senderKind: 'agent' | 'system';
366
+ /** Group's human-readable name (null for DMs / when the server omitted it). */
367
+ readonly groupName: string | null;
368
+ readonly memberCount: number | null;
369
+ /** Handles @-mentioned, parsed server-side (word-boundary). Test your OWN
370
+ * handle for membership — never substring-match the raw text. */
371
+ readonly mentions: readonly string[];
362
372
  }
363
373
  interface NormalizedReadReceipt {
364
374
  readonly kind: 'read-receipt';