@memori.ai/memori-api-client 4.1.1 → 4.1.3

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,19 @@
1
1
 
2
2
 
3
+ ## [4.1.3](https://github.com/memori-ai/memori-api-client/compare/v4.1.2...v4.1.3) (2024-04-30)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * add new attributes to history message ([c03919a](https://github.com/memori-ai/memori-api-client/commit/c03919a3cc98fd9916847defe6eedcf23bd75d8e))
9
+
10
+ ## [4.1.2](https://github.com/memori-ai/memori-api-client/compare/v4.1.1...v4.1.2) (2024-04-29)
11
+
12
+
13
+ ### Maintenance
14
+
15
+ * add new attributes to history message ([badfd60](https://github.com/memori-ai/memori-api-client/commit/badfd6000a06db2b1484a7f342fa0b6ddb719b9b))
16
+
3
17
  ## [4.1.1](https://github.com/memori-ai/memori-api-client/compare/v4.1.0...v4.1.1) (2024-04-29)
4
18
 
5
19
 
package/dist/types.d.ts CHANGED
@@ -515,6 +515,7 @@ export declare type Message = {
515
515
  memoryID?: string;
516
516
  text: string;
517
517
  translatedText?: string;
518
+ questionAnswered?: string;
518
519
  acceptsFeedback?: boolean;
519
520
  generatedByAI?: boolean;
520
521
  fromUser?: boolean;
@@ -531,6 +532,8 @@ export declare type Message = {
531
532
  placeLatitude?: number;
532
533
  placeLongitude?: number;
533
534
  placeUncertaintyKm?: number;
535
+ tag?: string;
536
+ memoryTags?: string[];
534
537
  };
535
538
  export type ConsumptionLog = {
536
539
  consumptionLogID: string;
package/esm/types.d.ts CHANGED
@@ -515,6 +515,7 @@ export declare type Message = {
515
515
  memoryID?: string;
516
516
  text: string;
517
517
  translatedText?: string;
518
+ questionAnswered?: string;
518
519
  acceptsFeedback?: boolean;
519
520
  generatedByAI?: boolean;
520
521
  fromUser?: boolean;
@@ -531,6 +532,8 @@ export declare type Message = {
531
532
  placeLatitude?: number;
532
533
  placeLongitude?: number;
533
534
  placeUncertaintyKm?: number;
535
+ tag?: string;
536
+ memoryTags?: string[];
534
537
  };
535
538
  export type ConsumptionLog = {
536
539
  consumptionLogID: string;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "4.1.1",
2
+ "version": "4.1.3",
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
@@ -716,6 +716,7 @@ export declare type Message = {
716
716
  memoryID?: string;
717
717
  text: string;
718
718
  translatedText?: string;
719
+ questionAnswered?: string;
719
720
  acceptsFeedback?: boolean;
720
721
  generatedByAI?: boolean;
721
722
  fromUser?: boolean;
@@ -730,6 +731,8 @@ export declare type Message = {
730
731
  placeLatitude?: number;
731
732
  placeLongitude?: number;
732
733
  placeUncertaintyKm?: number;
734
+ tag?: string;
735
+ memoryTags?: string[];
733
736
  };
734
737
 
735
738
  export type ConsumptionLog = {