@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/brain.js +743 -758
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/interfaces.d.ts +20 -28
- package/dist/interfaces.js +68 -68
- package/dist/interfaces.js.map +6 -4
- package/dist/plugins.d.ts +4 -0
- package/dist/plugins.js +65 -65
- package/dist/plugins.js.map +6 -6
- package/dist/site.js +187 -440
- package/dist/site.js.map +26 -161
- package/package.json +1 -1
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?: {
|