@memori.ai/memori-api-client 4.1.2 → 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,12 @@
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
+
3
10
  ## [4.1.2](https://github.com/memori-ai/memori-api-client/compare/v4.1.1...v4.1.2) (2024-04-29)
4
11
 
5
12
 
package/dist/types.d.ts CHANGED
@@ -532,6 +532,8 @@ export declare type Message = {
532
532
  placeLatitude?: number;
533
533
  placeLongitude?: number;
534
534
  placeUncertaintyKm?: number;
535
+ tag?: string;
536
+ memoryTags?: string[];
535
537
  };
536
538
  export type ConsumptionLog = {
537
539
  consumptionLogID: string;
package/esm/types.d.ts CHANGED
@@ -532,6 +532,8 @@ export declare type Message = {
532
532
  placeLatitude?: number;
533
533
  placeLongitude?: number;
534
534
  placeUncertaintyKm?: number;
535
+ tag?: string;
536
+ memoryTags?: string[];
535
537
  };
536
538
  export type ConsumptionLog = {
537
539
  consumptionLogID: string;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "4.1.2",
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
@@ -731,6 +731,8 @@ export declare type Message = {
731
731
  placeLatitude?: number;
732
732
  placeLongitude?: number;
733
733
  placeUncertaintyKm?: number;
734
+ tag?: string;
735
+ memoryTags?: string[];
734
736
  };
735
737
 
736
738
  export type ConsumptionLog = {