@memori.ai/memori-api-client 6.16.0 → 6.17.0

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.17.0](https://github.com/memori-ai/memori-api-client/compare/v6.16.0...v6.17.0) (2025-11-27)
4
+
5
+
6
+ ### Features
7
+
8
+ * add continueFromSessionID to OpenSession type ([24895f8](https://github.com/memori-ai/memori-api-client/commit/24895f88e050af10cc26ad47cfcec304321405ac))
9
+
3
10
  ## [6.16.0](https://github.com/memori-ai/memori-api-client/compare/v6.15.0...v6.16.0) (2025-11-27)
4
11
 
5
12
 
package/dist/types.d.ts CHANGED
@@ -535,6 +535,7 @@ export declare type OpenSession = {
535
535
  tag?: string;
536
536
  pin?: string;
537
537
  continueFromChatLogID?: string;
538
+ continueFromSessionID?: string;
538
539
  initialContextVars?: {
539
540
  [key: string]: string;
540
541
  };
package/esm/types.d.ts CHANGED
@@ -535,6 +535,7 @@ export declare type OpenSession = {
535
535
  tag?: string;
536
536
  pin?: string;
537
537
  continueFromChatLogID?: string;
538
+ continueFromSessionID?: string;
538
539
  initialContextVars?: {
539
540
  [key: string]: string;
540
541
  };
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "6.16.0",
2
+ "version": "6.17.0",
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
@@ -926,6 +926,7 @@ export declare type OpenSession = {
926
926
  tag?: string;
927
927
  pin?: string;
928
928
  continueFromChatLogID?: string;
929
+ continueFromSessionID?: string;
929
930
  initialContextVars?: { [key: string]: string };
930
931
  initialQuestion?: string;
931
932
  forceCloseSessions?: boolean;