@rizom/brain 0.2.0-alpha.49 → 0.2.0-alpha.50

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/plugins.d.ts CHANGED
@@ -917,6 +917,10 @@ interface IIdentityNamespace {
917
917
  interface IConversationsNamespace {
918
918
  get(conversationId: string): Promise<Conversation | null>;
919
919
  search(query: string): Promise<Conversation[]>;
920
+ list(options?: {
921
+ limit?: number;
922
+ updatedAfter?: string;
923
+ }): Promise<Conversation[]>;
920
924
  getMessages(conversationId: string, options?: {
921
925
  limit?: number;
922
926
  range?: {