@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 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
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "6.1.0",
2
+ "version": "6.1.1",
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
@@ -119,6 +119,7 @@ export declare type Memori = {
119
119
  contentQualityIndex?: number;
120
120
  contentQualityIndexTimestamp?: string;
121
121
  alwaysAnswerWithCompletion?: boolean;
122
+ requireLoginToken?: boolean;
122
123
  };
123
124
 
124
125
  export declare type CompletionConfig = {