@memori.ai/memori-api-client 6.15.0 → 6.16.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.16.0](https://github.com/memori-ai/memori-api-client/compare/v6.15.0...v6.16.0) (2025-11-27)
4
+
5
+
6
+ ### Features
7
+
8
+ * add disableAIContentCollection property to Memori type ([1cb03bb](https://github.com/memori-ai/memori-api-client/commit/1cb03bbeb040ae23a96290add1efde3e9b784940))
9
+
3
10
  ## [6.15.0](https://github.com/memori-ai/memori-api-client/compare/v6.14.2...v6.15.0) (2025-11-24)
4
11
 
5
12
 
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 = {
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 = {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "6.15.0",
2
+ "version": "6.16.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