@memori.ai/memori-api-client 6.1.0 → 6.1.1
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.1.1](https://github.com/memori-ai/memori-api-client/compare/v6.1.0...v6.1.1) (2025-05-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add requireLoginToken field to Memori type ([c4296cc](https://github.com/memori-ai/memori-api-client/commit/c4296cc186fa8ea4da188c7f8d8b5d2008e11981))
|
|
9
|
+
|
|
3
10
|
## [6.1.0](https://github.com/memori-ai/memori-api-client/compare/v6.0.8...v6.1.0) (2025-04-28)
|
|
4
11
|
|
|
5
12
|
|
package/dist/types.d.ts
CHANGED
|
@@ -96,6 +96,7 @@ export declare type Memori = {
|
|
|
96
96
|
contentQualityIndex?: number;
|
|
97
97
|
contentQualityIndexTimestamp?: string;
|
|
98
98
|
alwaysAnswerWithCompletion?: boolean;
|
|
99
|
+
requireLoginToken?: boolean;
|
|
99
100
|
};
|
|
100
101
|
export declare type CompletionConfig = {
|
|
101
102
|
completionConfigID: string;
|
package/esm/types.d.ts
CHANGED
|
@@ -96,6 +96,7 @@ export declare type Memori = {
|
|
|
96
96
|
contentQualityIndex?: number;
|
|
97
97
|
contentQualityIndexTimestamp?: string;
|
|
98
98
|
alwaysAnswerWithCompletion?: boolean;
|
|
99
|
+
requireLoginToken?: boolean;
|
|
99
100
|
};
|
|
100
101
|
export declare type CompletionConfig = {
|
|
101
102
|
completionConfigID: string;
|
package/package.json
CHANGED
package/src/types.ts
CHANGED