@botonic/plugin-flow-builder 0.33.0-alpha.0 → 0.33.0-alpha.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.
@@ -33,11 +33,10 @@ export declare enum FlowBuilderJSONVersion {
33
33
  }
34
34
  export interface KnowledgeBaseResponse {
35
35
  inferenceId: string;
36
- question: string;
37
- answer: string;
38
36
  hasKnowledge: boolean;
39
37
  isFaithful: boolean;
40
38
  chunkIds: string[];
39
+ answer: string;
41
40
  }
42
41
  export interface SmartIntentResponse {
43
42
  data: {
@@ -33,11 +33,10 @@ export declare enum FlowBuilderJSONVersion {
33
33
  }
34
34
  export interface KnowledgeBaseResponse {
35
35
  inferenceId: string;
36
- question: string;
37
- answer: string;
38
36
  hasKnowledge: boolean;
39
37
  isFaithful: boolean;
40
38
  chunkIds: string[];
39
+ answer: string;
41
40
  }
42
41
  export interface SmartIntentResponse {
43
42
  data: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botonic/plugin-flow-builder",
3
- "version": "0.33.0-alpha.0",
3
+ "version": "0.33.0-alpha.1",
4
4
  "main": "./lib/cjs/index.js",
5
5
  "module": "./lib/esm/index.js",
6
6
  "description": "Use Flow Builder to show your contents",
package/src/types.ts CHANGED
@@ -49,11 +49,10 @@ export enum FlowBuilderJSONVersion {
49
49
 
50
50
  export interface KnowledgeBaseResponse {
51
51
  inferenceId: string
52
- question: string
53
- answer: string
54
52
  hasKnowledge: boolean
55
53
  isFaithful: boolean
56
54
  chunkIds: string[]
55
+ answer: string
57
56
  }
58
57
 
59
58
  export interface SmartIntentResponse {