@memori.ai/memori-api-client 0.6.0 → 0.7.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,12 @@
1
1
 
2
2
 
3
+ ## [0.7.0](https://github.com/memori-ai/memori-api-client/compare/v0.6.0...v0.7.0) (2022-12-21)
4
+
5
+
6
+ ### Features
7
+
8
+ * add hints as memory properties ([49ed038](https://github.com/memori-ai/memori-api-client/commit/49ed0385d52e7bc5f25520e26007bd60c37c6f2d))
9
+
3
10
  ## [0.6.0](https://github.com/memori-ai/memori-api-client/compare/v0.5.0...v0.6.0) (2022-12-20)
4
11
 
5
12
 
package/dist/types.d.ts CHANGED
@@ -417,6 +417,7 @@ export declare type Memory = {
417
417
  conclusive?: boolean;
418
418
  help?: boolean;
419
419
  notPickable?: boolean;
420
+ hints?: string[];
420
421
  minTimeout?: number;
421
422
  maxTimeout?: number;
422
423
  contextVarsToSet?: {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.6.0",
2
+ "version": "0.7.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
@@ -452,6 +452,7 @@ export declare type Memory = {
452
452
  conclusive?: boolean;
453
453
  help?: boolean;
454
454
  notPickable?: boolean;
455
+ hints?: string[];
455
456
  minTimeout?: number;
456
457
  maxTimeout?: number;
457
458
  contextVarsToSet?: { [variable: string]: string };