@memori.ai/memori-api-client 6.5.3 → 6.5.4

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
+ ## [6.5.4](https://github.com/memori-ai/memori-api-client/compare/v6.5.3...v6.5.4) (2025-06-10)
4
+
5
+
6
+ ### Features
7
+
8
+ * add continueFromChatLogID field to OpenSession type ([e1e3ab8](https://github.com/memori-ai/memori-api-client/commit/e1e3ab83a2b0b7773230c6fe4f4c71a4ff4e70fc))
9
+
3
10
  ## [6.5.3](https://github.com/memori-ai/memori-api-client/compare/v6.5.2...v6.5.3) (2025-06-09)
4
11
 
5
12
 
package/dist/types.d.ts CHANGED
@@ -511,6 +511,7 @@ export declare type OpenSession = {
511
511
  recoveryTokens?: string[];
512
512
  tag?: string;
513
513
  pin?: string;
514
+ continueFromChatLogID?: string;
514
515
  initialContextVars?: {
515
516
  [key: string]: string;
516
517
  };
package/esm/types.d.ts CHANGED
@@ -511,6 +511,7 @@ export declare type OpenSession = {
511
511
  recoveryTokens?: string[];
512
512
  tag?: string;
513
513
  pin?: string;
514
+ continueFromChatLogID?: string;
514
515
  initialContextVars?: {
515
516
  [key: string]: string;
516
517
  };
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "6.5.3",
2
+ "version": "6.5.4",
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
@@ -883,6 +883,7 @@ export declare type OpenSession = {
883
883
  recoveryTokens?: string[];
884
884
  tag?: string;
885
885
  pin?: string;
886
+ continueFromChatLogID?: string;
886
887
  initialContextVars?: { [key: string]: string };
887
888
  initialQuestion?: string;
888
889
  forceCloseSessions?: boolean;