@memori.ai/memori-api-client
Advanced tools
Comparing version 2.6.1 to 2.6.2
## [2.6.2](https://github.com/memori-ai/memori-api-client/compare/v2.6.1...v2.6.2) (2023-12-11) | ||
### Changes | ||
* add chatlogs attributes for board of experts ([3d746a7](https://github.com/memori-ai/memori-api-client/commit/3d746a7ec97cfe05bc584b2f8b1fc5b6ca450d80)) | ||
## [2.6.1](https://github.com/memori-ai/memori-api-client/compare/v2.6.0...v2.6.1) (2023-12-08) | ||
@@ -4,0 +11,0 @@ |
@@ -552,2 +552,3 @@ export declare type Error = { | ||
text: string; | ||
emitter?: string; | ||
media?: ChatMedium[]; | ||
@@ -567,2 +568,3 @@ memoryID?: string; | ||
receiverTag?: string; | ||
boardOfExperts?: boolean; | ||
lines: ChatLogLine[]; | ||
@@ -569,0 +571,0 @@ }; |
@@ -552,2 +552,3 @@ export declare type Error = { | ||
text: string; | ||
emitter?: string; | ||
media?: ChatMedium[]; | ||
@@ -567,2 +568,3 @@ memoryID?: string; | ||
receiverTag?: string; | ||
boardOfExperts?: boolean; | ||
lines: ChatLogLine[]; | ||
@@ -569,0 +571,0 @@ }; |
{ | ||
"version": "2.6.1", | ||
"version": "2.6.2", | ||
"name": "@memori.ai/memori-api-client", | ||
@@ -4,0 +4,0 @@ "description": "React library to integrate a Memori in your app or website", |
@@ -664,2 +664,8 @@ export declare type Error = { | ||
/** | ||
* @type {string=} | ||
* Name of the Memori that provided the text. Used with Board of Experts model. | ||
* Null for inbound lines, if no Board of Experts is configured, or if the Memori providing the text is the chairman of the Board. | ||
*/ | ||
emitter?: string; | ||
/** | ||
* Media attached with the Dialog State Machine emission, if present. Empty if the line is inbound. | ||
@@ -716,2 +722,7 @@ */ | ||
receiverTag?: string; | ||
/** | ||
* @type {?boolean} | ||
* True if this chat log was performed with the Memori configured as a Board of Experts. | ||
*/ | ||
boardOfExperts?: boolean; | ||
@@ -718,0 +729,0 @@ /** |
698481
13372