@memori.ai/memori-api-client 5.0.0 → 5.0.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,12 @@
1
1
 
2
2
 
3
+ ## [5.0.1](https://github.com/memori-ai/memori-api-client/compare/v5.0.0...v5.0.1) (2024-08-02)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * add translatedEmission in DialogState ([6a77d1d](https://github.com/memori-ai/memori-api-client/commit/6a77d1df713abdf7e25a3e28877cb2e04eb6abdb))
9
+
3
10
  ## [5.0.0](https://github.com/memori-ai/memori-api-client/compare/v4.2.2...v5.0.0) (2024-06-26)
4
11
 
5
12
 
package/dist/types.d.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
+ translatedEmission?: string;
338
339
  emitter?: string;
339
340
  completion?: boolean;
340
341
  continuationEmitted?: boolean;
package/esm/types.d.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
+ translatedEmission?: string;
338
339
  emitter?: string;
339
340
  completion?: boolean;
340
341
  continuationEmitted?: boolean;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "5.0.0",
2
+ "version": "5.0.1",
3
3
  "name": "@memori.ai/memori-api-client",
4
4
  "description": "React library to integrate a Memori in your app or website",
5
5
  "license": "Apache-2.0",
package/src/types.ts CHANGED
@@ -442,6 +442,7 @@ export declare type DialogState = {
442
442
  confidence?: number;
443
443
  confidenceLevel?: 'NONE' | 'LOW' | 'MEDIUM' | 'HIGH';
444
444
  emission?: string;
445
+ translatedEmission?: string;
445
446
  emitter?: string;
446
447
  completion?: boolean;
447
448
  continuationEmitted?: boolean;