@memori.ai/memori-api-client 0.4.0 → 0.4.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/dist/types.d.ts CHANGED
@@ -436,7 +436,7 @@ export declare type UnansweredQuestion = {
436
436
  creationName?: string;
437
437
  lastChangeTimestamp?: string;
438
438
  lastChangeName?: string;
439
- candidateAnswers?: SearchMatches[];
439
+ suggestions?: SearchMatches[];
440
440
  };
441
441
  export declare type Message = {
442
442
  text: string;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.4.0",
2
+ "version": "0.4.1",
3
3
  "main": "dist/index.js",
4
4
  "typings": "dist/index.d.ts",
5
5
  "files": [
package/src/types.ts CHANGED
@@ -468,7 +468,7 @@ export declare type UnansweredQuestion = {
468
468
  creationName?: string;
469
469
  lastChangeTimestamp?: string;
470
470
  lastChangeName?: string;
471
- candidateAnswers?: SearchMatches[];
471
+ suggestions?: SearchMatches[];
472
472
  };
473
473
 
474
474
  export declare type Message = {