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

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.1](https://github.com/memori-ai/memori-api-client/compare/v4.1.0...v4.1.1) (2024-04-29)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * add new attributes to history message ([477420d](https://github.com/memori-ai/memori-api-client/commit/477420dd6fceba55189ff18b44ad4ee8c03c71e0))
9
+
3
10
  ## [4.1.0](https://github.com/memori-ai/memori-api-client/compare/v4.0.3...v4.1.0) (2024-04-16)
4
11
 
5
12
 
package/dist/types.d.ts CHANGED
@@ -525,6 +525,12 @@ export declare type Message = {
525
525
  contextVars?: {
526
526
  [key: string]: string;
527
527
  };
528
+ date?: string;
529
+ dateUncertaintyDays?: number;
530
+ placeName?: string;
531
+ placeLatitude?: number;
532
+ placeLongitude?: number;
533
+ placeUncertaintyKm?: number;
528
534
  };
529
535
  export type ConsumptionLog = {
530
536
  consumptionLogID: string;
package/esm/types.d.ts CHANGED
@@ -525,6 +525,12 @@ export declare type Message = {
525
525
  contextVars?: {
526
526
  [key: string]: string;
527
527
  };
528
+ date?: string;
529
+ dateUncertaintyDays?: number;
530
+ placeName?: string;
531
+ placeLatitude?: number;
532
+ placeLongitude?: number;
533
+ placeUncertaintyKm?: number;
528
534
  };
529
535
  export type ConsumptionLog = {
530
536
  consumptionLogID: string;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "4.1.0",
2
+ "version": "4.1.1",
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
@@ -724,6 +724,12 @@ export declare type Message = {
724
724
  emitter?: string;
725
725
  timestamp?: string;
726
726
  contextVars?: { [key: string]: string };
727
+ date?: string;
728
+ dateUncertaintyDays?: number;
729
+ placeName?: string;
730
+ placeLatitude?: number;
731
+ placeLongitude?: number;
732
+ placeUncertaintyKm?: number;
727
733
  };
728
734
 
729
735
  export type ConsumptionLog = {