@memori.ai/memori-api-client 0.10.1 → 0.10.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
 
2
2
 
3
+ ## [0.10.2](https://github.com/memori-ai/memori-api-client/compare/v0.10.1...v0.10.2) (2023-01-20)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * add flag in Message for AI-generated msgs ([6ea6ae3](https://github.com/memori-ai/memori-api-client/commit/6ea6ae33897c92b6bc032f4d74b8137d4a360f8b))
9
+
3
10
  ## [0.10.1](https://github.com/memori-ai/memori-api-client/compare/v0.10.0...v0.10.1) (2023-01-20)
4
11
 
5
12
 
package/dist/types.d.ts CHANGED
@@ -471,6 +471,7 @@ export declare type Message = {
471
471
  text: string;
472
472
  translatedText?: string;
473
473
  fromUser?: boolean;
474
+ generatedByAI?: boolean;
474
475
  media?: Medium[];
475
476
  initial?: boolean;
476
477
  timestamp?: string;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.10.1",
2
+ "version": "0.10.2",
3
3
  "name": "@memori.ai/memori-api-client",
4
4
  "description": "React library to integrate a Memori in your app or website",
5
5
  "license": "Apache-2.0",
package/src/types.ts CHANGED
@@ -504,6 +504,7 @@ export declare type Message = {
504
504
  text: string;
505
505
  translatedText?: string;
506
506
  fromUser?: boolean;
507
+ generatedByAI?: boolean;
507
508
  media?: Medium[];
508
509
  initial?: boolean;
509
510
  timestamp?: string;