@memori.ai/memori-api-client 6.16.0 → 6.18.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 +14 -0
- package/dist/types.d.ts +2 -0
- package/esm/types.d.ts +2 -0
- package/package.json +1 -1
- package/src/types.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [6.18.0](https://github.com/memori-ai/memori-api-client/compare/v6.17.0...v6.18.0) (2026-01-05)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add DTDescription property to Memori type ([ad3454b](https://github.com/memori-ai/memori-api-client/commit/ad3454b2571b4f6acbe9d8b69edc05a672cf329f))
|
|
9
|
+
|
|
10
|
+
## [6.17.0](https://github.com/memori-ai/memori-api-client/compare/v6.16.0...v6.17.0) (2025-11-27)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* add continueFromSessionID to OpenSession type ([24895f8](https://github.com/memori-ai/memori-api-client/commit/24895f88e050af10cc26ad47cfcec304321405ac))
|
|
16
|
+
|
|
3
17
|
## [6.16.0](https://github.com/memori-ai/memori-api-client/compare/v6.15.0...v6.16.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;
|
|
@@ -535,6 +536,7 @@ export declare type OpenSession = {
|
|
|
535
536
|
tag?: string;
|
|
536
537
|
pin?: string;
|
|
537
538
|
continueFromChatLogID?: string;
|
|
539
|
+
continueFromSessionID?: string;
|
|
538
540
|
initialContextVars?: {
|
|
539
541
|
[key: string]: string;
|
|
540
542
|
};
|
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;
|
|
@@ -535,6 +536,7 @@ export declare type OpenSession = {
|
|
|
535
536
|
tag?: string;
|
|
536
537
|
pin?: string;
|
|
537
538
|
continueFromChatLogID?: string;
|
|
539
|
+
continueFromSessionID?: string;
|
|
538
540
|
initialContextVars?: {
|
|
539
541
|
[key: string]: string;
|
|
540
542
|
};
|
package/package.json
CHANGED
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;
|
|
@@ -926,6 +927,7 @@ export declare type OpenSession = {
|
|
|
926
927
|
tag?: string;
|
|
927
928
|
pin?: string;
|
|
928
929
|
continueFromChatLogID?: string;
|
|
930
|
+
continueFromSessionID?: string;
|
|
929
931
|
initialContextVars?: { [key: string]: string };
|
|
930
932
|
initialQuestion?: string;
|
|
931
933
|
forceCloseSessions?: boolean;
|