@memori.ai/memori-api-client 6.16.0 → 6.17.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.17.0](https://github.com/memori-ai/memori-api-client/compare/v6.16.0...v6.17.0) (2025-11-27)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add continueFromSessionID to OpenSession type ([24895f8](https://github.com/memori-ai/memori-api-client/commit/24895f88e050af10cc26ad47cfcec304321405ac))
|
|
9
|
+
|
|
3
10
|
## [6.16.0](https://github.com/memori-ai/memori-api-client/compare/v6.15.0...v6.16.0) (2025-11-27)
|
|
4
11
|
|
|
5
12
|
|
package/dist/types.d.ts
CHANGED
package/esm/types.d.ts
CHANGED
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -926,6 +926,7 @@ export declare type OpenSession = {
|
|
|
926
926
|
tag?: string;
|
|
927
927
|
pin?: string;
|
|
928
928
|
continueFromChatLogID?: string;
|
|
929
|
+
continueFromSessionID?: string;
|
|
929
930
|
initialContextVars?: { [key: string]: string };
|
|
930
931
|
initialQuestion?: string;
|
|
931
932
|
forceCloseSessions?: boolean;
|