@deepdesk/deepdesk-sdk 19.1.1-beta.5 → 19.1.1-beta.7
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 +8 -8
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +8 -8
- package/dist/index.iife.js +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -690,7 +690,7 @@ declare namespace Server {
|
|
|
690
690
|
type EvaluationResponse = {
|
|
691
691
|
evaluation_id: string;
|
|
692
692
|
evaluation_status: EvaluationStatus;
|
|
693
|
-
output: EvaluationOutput | KAAnswer;
|
|
693
|
+
output: EvaluationOutput | KAAnswer | string;
|
|
694
694
|
};
|
|
695
695
|
type EvaluationOutput = Array<{
|
|
696
696
|
code: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -690,7 +690,7 @@ declare namespace Server {
|
|
|
690
690
|
type EvaluationResponse = {
|
|
691
691
|
evaluation_id: string;
|
|
692
692
|
evaluation_status: EvaluationStatus;
|
|
693
|
-
output: EvaluationOutput | KAAnswer;
|
|
693
|
+
output: EvaluationOutput | KAAnswer | string;
|
|
694
694
|
};
|
|
695
695
|
type EvaluationOutput = Array<{
|
|
696
696
|
code: string;
|