@memori.ai/memori-api-client 6.15.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,19 @@
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
+
10
+ ## [6.16.0](https://github.com/memori-ai/memori-api-client/compare/v6.15.0...v6.16.0) (2025-11-27)
11
+
12
+
13
+ ### Features
14
+
15
+ * add disableAIContentCollection property to Memori type ([1cb03bb](https://github.com/memori-ai/memori-api-client/commit/1cb03bbeb040ae23a96290add1efde3e9b784940))
16
+
3
17
  ## [6.15.0](https://github.com/memori-ai/memori-api-client/compare/v6.14.2...v6.15.0) (2025-11-24)
4
18
 
5
19
 
package/dist/types.d.ts CHANGED
@@ -97,6 +97,7 @@ export declare type Memori = {
97
97
  contentQualityIndex?: number;
98
98
  contentQualityIndexTimestamp?: string;
99
99
  alwaysAnswerWithCompletion?: boolean;
100
+ disableAIContentCollection?: boolean;
100
101
  requireLoginToken?: boolean;
101
102
  };
102
103
  export declare type CompletionConfig = {
@@ -534,6 +535,7 @@ export declare type OpenSession = {
534
535
  tag?: string;
535
536
  pin?: string;
536
537
  continueFromChatLogID?: string;
538
+ continueFromSessionID?: string;
537
539
  initialContextVars?: {
538
540
  [key: string]: string;
539
541
  };
package/esm/types.d.ts CHANGED
@@ -97,6 +97,7 @@ export declare type Memori = {
97
97
  contentQualityIndex?: number;
98
98
  contentQualityIndexTimestamp?: string;
99
99
  alwaysAnswerWithCompletion?: boolean;
100
+ disableAIContentCollection?: boolean;
100
101
  requireLoginToken?: boolean;
101
102
  };
102
103
  export declare type CompletionConfig = {
@@ -534,6 +535,7 @@ export declare type OpenSession = {
534
535
  tag?: string;
535
536
  pin?: string;
536
537
  continueFromChatLogID?: string;
538
+ continueFromSessionID?: string;
537
539
  initialContextVars?: {
538
540
  [key: string]: string;
539
541
  };
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "6.15.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
@@ -120,6 +120,7 @@ export declare type Memori = {
120
120
  contentQualityIndex?: number;
121
121
  contentQualityIndexTimestamp?: string;
122
122
  alwaysAnswerWithCompletion?: boolean;
123
+ disableAIContentCollection?: boolean;
123
124
  requireLoginToken?: boolean;
124
125
  };
125
126
 
@@ -925,6 +926,7 @@ export declare type OpenSession = {
925
926
  tag?: string;
926
927
  pin?: string;
927
928
  continueFromChatLogID?: string;
929
+ continueFromSessionID?: string;
928
930
  initialContextVars?: { [key: string]: string };
929
931
  initialQuestion?: string;
930
932
  forceCloseSessions?: boolean;