@memori.ai/memori-api-client 0.8.3 → 0.9.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 CHANGED
@@ -1,5 +1,13 @@
1
1
 
2
2
 
3
+ ## [0.9.0](https://github.com/memori-ai/memori-api-client/compare/v0.8.3...v0.9.0) (2023-01-19)
4
+
5
+
6
+ ### Features
7
+
8
+ * add new flags in dialog state ([24abc93](https://github.com/memori-ai/memori-api-client/commit/24abc9352134e1b0a922700740f60a57870681a2))
9
+ * add new flags in memori ([6fd0fb0](https://github.com/memori-ai/memori-api-client/commit/6fd0fb0a593b44451e068975edb05f1678ad820e))
10
+
3
11
  ## [0.8.3](https://github.com/memori-ai/memori-api-client/compare/v0.8.2...v0.8.3) (2023-01-14)
4
12
 
5
13
 
package/dist/types.d.ts CHANGED
@@ -63,6 +63,8 @@ export declare type Memori = {
63
63
  exposed?: boolean;
64
64
  disableR2R3Loop?: boolean;
65
65
  disableR4Loop?: boolean;
66
+ disableR5Loop?: boolean;
67
+ enableCompletions?: boolean;
66
68
  chainingMemoriID?: string;
67
69
  chainingBaseURL?: string;
68
70
  chainingPassword?: string;
@@ -312,6 +314,7 @@ export declare type DialogState = {
312
314
  acceptsDate?: boolean;
313
315
  acceptsPlace?: boolean;
314
316
  acceptsTag?: boolean;
317
+ acceptsFeedback?: boolean;
315
318
  hints?: string[];
316
319
  timeout?: number;
317
320
  translatedHints?: TranslatedHint[];
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.8.3",
2
+ "version": "0.9.0",
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
@@ -62,6 +62,8 @@ export declare type Memori = {
62
62
  exposed?: boolean;
63
63
  disableR2R3Loop?: boolean;
64
64
  disableR4Loop?: boolean;
65
+ disableR5Loop?: boolean;
66
+ enableCompletions?: boolean;
65
67
  chainingMemoriID?: string;
66
68
  chainingBaseURL?: string;
67
69
  chainingPassword?: string;
@@ -341,6 +343,7 @@ export declare type DialogState = {
341
343
  acceptsDate?: boolean;
342
344
  acceptsPlace?: boolean;
343
345
  acceptsTag?: boolean;
346
+ acceptsFeedback?: boolean;
344
347
  hints?: string[];
345
348
  timeout?: number;
346
349
  translatedHints?: TranslatedHint[];