@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 +7 -0
- package/dist/types.d.ts +1 -0
- package/esm/types.d.ts +1 -0
- package/package.json +1 -1
- package/src/types.ts +1 -0
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
package/src/types.ts
CHANGED