commune-ai 0.2.62 → 0.2.63

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +2 -0
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -196,6 +196,7 @@ export interface SearchResult {
196
196
  participants: string[];
197
197
  threadId: string;
198
198
  timestamp: Date;
199
+ direction?: 'inbound' | 'outbound';
199
200
  attachmentIds?: string[];
200
201
  hasAttachments?: boolean;
201
202
  attachmentCount?: number;
@@ -209,6 +210,7 @@ export interface ConversationMetadata {
209
210
  participants: string[];
210
211
  threadId: string;
211
212
  timestamp: Date;
213
+ direction?: 'inbound' | 'outbound';
212
214
  attachmentIds?: string[];
213
215
  hasAttachments?: boolean;
214
216
  attachmentCount?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "commune-ai",
3
- "version": "0.2.62",
3
+ "version": "0.2.63",
4
4
  "description": "SDK-first email infrastructure for agents - threads, history, semantic search, structured data output and attachments.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",