@memori.ai/memori-api-client 0.9.0 → 0.10.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,25 @@
1
1
 
2
2
 
3
+ ## [0.10.1](https://github.com/memori-ai/memori-api-client/compare/v0.10.0...v0.10.1) (2023-01-20)
4
+
5
+
6
+ ### Changes
7
+
8
+ * remove internal api not usable from public ([d3d3656](https://github.com/memori-ai/memori-api-client/commit/d3d3656619c45f192ffd0ea2bfb2391cb9c483c5))
9
+
10
+ ## [0.10.0](https://github.com/memori-ai/memori-api-client/compare/v0.9.0...v0.10.0) (2023-01-19)
11
+
12
+
13
+ ### Features
14
+
15
+ * add new nlp apis ([9befc96](https://github.com/memori-ai/memori-api-client/commit/9befc9629e8f5d99b89e910b365f9c2306cffe1d))
16
+
17
+
18
+ ### Changes
19
+
20
+ * add memory type DRAFT ([fa64870](https://github.com/memori-ai/memori-api-client/commit/fa648709749a3220f038edeaacbdf78749f3f7e7))
21
+ * add memoryID in chat log lines ([52fa29d](https://github.com/memori-ai/memori-api-client/commit/52fa29db601037e4d11f5874a3a01a161b46bc1e))
22
+
3
23
  ## [0.9.0](https://github.com/memori-ai/memori-api-client/compare/v0.8.3...v0.9.0) (2023-01-19)
4
24
 
5
25
 
@@ -14,7 +14,7 @@ declare const _default: (apiUrl: string) => {
14
14
  * @param {number} howMany The number of items to return
15
15
  * @param {string=} type Optional type of the Memory objects to list: ALL, CONTENTS, DEFAULTS
16
16
  */
17
- getMemoriesPaginated: (sessionId: string, from: number, howMany: number, type?: "ALL" | "CONTENTS" | "DEFAULTS" | undefined) => Promise<ResponseSpec & {
17
+ getMemoriesPaginated: (sessionId: string, from: number, howMany: number, type?: "ALL" | "CONTENTS" | "DEFAULTS" | "DRAFTS" | undefined) => Promise<ResponseSpec & {
18
18
  count: number;
19
19
  memories: Memory[];
20
20
  }>;