@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.
- package/lib/cjs/types.d.ts +1 -2
- package/lib/esm/types.d.ts +1 -2
- package/package.json +1 -1
- package/src/types.ts +1 -2
package/lib/cjs/types.d.ts
CHANGED
|
@@ -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/lib/esm/types.d.ts
CHANGED
|
@@ -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
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 {
|