@deepdesk/deepdesk-sdk 11.2.1-beta.2 → 11.2.1-beta.4
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/index.cjs.js +2 -2
- package/dist/index.d.mts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.esm.js +2 -2
- package/dist/index.iife.js +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -709,8 +709,9 @@ interface KnowledgeAnswer {
|
|
|
709
709
|
sources: ListItemSource[];
|
|
710
710
|
}
|
|
711
711
|
interface KnowledgeRequest {
|
|
712
|
-
|
|
712
|
+
customerInstruction: string;
|
|
713
713
|
question: string;
|
|
714
|
+
doNotAnswer?: string;
|
|
714
715
|
}
|
|
715
716
|
interface KnowledgeResponse {
|
|
716
717
|
question: string;
|
|
@@ -1082,7 +1083,8 @@ declare namespace Server {
|
|
|
1082
1083
|
id: number;
|
|
1083
1084
|
code: string;
|
|
1084
1085
|
name: string;
|
|
1085
|
-
|
|
1086
|
+
customer_instruction: string;
|
|
1087
|
+
do_not_know_answer?: string;
|
|
1086
1088
|
urls: Array<string>;
|
|
1087
1089
|
files: Array<string>;
|
|
1088
1090
|
has_changes: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -709,8 +709,9 @@ interface KnowledgeAnswer {
|
|
|
709
709
|
sources: ListItemSource[];
|
|
710
710
|
}
|
|
711
711
|
interface KnowledgeRequest {
|
|
712
|
-
|
|
712
|
+
customerInstruction: string;
|
|
713
713
|
question: string;
|
|
714
|
+
doNotAnswer?: string;
|
|
714
715
|
}
|
|
715
716
|
interface KnowledgeResponse {
|
|
716
717
|
question: string;
|
|
@@ -1082,7 +1083,8 @@ declare namespace Server {
|
|
|
1082
1083
|
id: number;
|
|
1083
1084
|
code: string;
|
|
1084
1085
|
name: string;
|
|
1085
|
-
|
|
1086
|
+
customer_instruction: string;
|
|
1087
|
+
do_not_know_answer?: string;
|
|
1086
1088
|
urls: Array<string>;
|
|
1087
1089
|
files: Array<string>;
|
|
1088
1090
|
has_changes: boolean;
|