@memori.ai/memori-api-client 0.10.2 → 0.10.3
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/package.json +1 -1
- package/src/types.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [0.10.3](https://github.com/memori-ai/memori-api-client/compare/v0.10.2...v0.10.3) (2023-01-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add completion flag in dialog state ([9d7b417](https://github.com/memori-ai/memori-api-client/commit/9d7b4170fe1bbfe575cd9dff1165ad01525e898c))
|
|
9
|
+
|
|
3
10
|
## [0.10.2](https://github.com/memori-ai/memori-api-client/compare/v0.10.1...v0.10.2) (2023-01-20)
|
|
4
11
|
|
|
5
12
|
|
package/dist/types.d.ts
CHANGED
|
@@ -306,6 +306,7 @@ export declare type DialogState = {
|
|
|
306
306
|
confidence?: number;
|
|
307
307
|
confidenceLevel?: 'NONE' | 'LOW' | 'MEDIUM' | 'HIGH';
|
|
308
308
|
emission?: string;
|
|
309
|
+
completion?: boolean;
|
|
309
310
|
continuationEmitted?: boolean;
|
|
310
311
|
lastMatchedMemoryID?: string;
|
|
311
312
|
acceptsTimeout?: boolean;
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -335,6 +335,7 @@ export declare type DialogState = {
|
|
|
335
335
|
confidence?: number;
|
|
336
336
|
confidenceLevel?: 'NONE' | 'LOW' | 'MEDIUM' | 'HIGH';
|
|
337
337
|
emission?: string;
|
|
338
|
+
completion?: boolean;
|
|
338
339
|
continuationEmitted?: boolean;
|
|
339
340
|
lastMatchedMemoryID?: string;
|
|
340
341
|
acceptsTimeout?: boolean;
|