@memori.ai/memori-api-client 6.17.0 → 6.18.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,19 @@
1
1
 
2
2
 
3
+ ## [6.18.1](https://github.com/memori-ai/memori-api-client/compare/v6.18.0...v6.18.1) (2026-01-05)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * rename DTDescription to dtDescription in Memori type ([386d347](https://github.com/memori-ai/memori-api-client/commit/386d3478b60eccbe00ddcfea8d3f367bf2aaf422))
9
+
10
+ ## [6.18.0](https://github.com/memori-ai/memori-api-client/compare/v6.17.0...v6.18.0) (2026-01-05)
11
+
12
+
13
+ ### Features
14
+
15
+ * add DTDescription property to Memori type ([ad3454b](https://github.com/memori-ai/memori-api-client/commit/ad3454b2571b4f6acbe9d8b69edc05a672cf329f))
16
+
3
17
  ## [6.17.0](https://github.com/memori-ai/memori-api-client/compare/v6.16.0...v6.17.0) (2025-11-27)
4
18
 
5
19
 
package/dist/types.d.ts CHANGED
@@ -61,6 +61,7 @@ export declare type Memori = {
61
61
  nsfw?: boolean;
62
62
  enableCompletions?: boolean;
63
63
  completionDescription?: string;
64
+ dtDescription?: string;
64
65
  enableDeepThought?: boolean;
65
66
  enableBoardOfExperts?: boolean;
66
67
  disableCompletionMediaExtraction?: boolean;
package/esm/types.d.ts CHANGED
@@ -61,6 +61,7 @@ export declare type Memori = {
61
61
  nsfw?: boolean;
62
62
  enableCompletions?: boolean;
63
63
  completionDescription?: string;
64
+ dtDescription?: string;
64
65
  enableDeepThought?: boolean;
65
66
  enableBoardOfExperts?: boolean;
66
67
  disableCompletionMediaExtraction?: boolean;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "6.17.0",
2
+ "version": "6.18.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
@@ -72,6 +72,7 @@ export declare type Memori = {
72
72
  nsfw?: boolean;
73
73
  enableCompletions?: boolean;
74
74
  completionDescription?: string;
75
+ dtDescription?: string;
75
76
  enableDeepThought?: boolean;
76
77
  enableBoardOfExperts?: boolean;
77
78
  disableCompletionMediaExtraction?: boolean;