@memori.ai/memori-api-client 6.5.3 → 6.5.4
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.5.4](https://github.com/memori-ai/memori-api-client/compare/v6.5.3...v6.5.4) (2025-06-10)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add continueFromChatLogID field to OpenSession type ([e1e3ab8](https://github.com/memori-ai/memori-api-client/commit/e1e3ab83a2b0b7773230c6fe4f4c71a4ff4e70fc))
|
|
9
|
+
|
|
3
10
|
## [6.5.3](https://github.com/memori-ai/memori-api-client/compare/v6.5.2...v6.5.3) (2025-06-09)
|
|
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
|
@@ -883,6 +883,7 @@ export declare type OpenSession = {
|
|
|
883
883
|
recoveryTokens?: string[];
|
|
884
884
|
tag?: string;
|
|
885
885
|
pin?: string;
|
|
886
|
+
continueFromChatLogID?: string;
|
|
886
887
|
initialContextVars?: { [key: string]: string };
|
|
887
888
|
initialQuestion?: string;
|
|
888
889
|
forceCloseSessions?: boolean;
|