digicust_types 1.8.307 → 1.8.308
Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,12 @@
|
|
1
|
+
import { Meta } from "..";
|
2
|
+
/**
|
3
|
+
* Statistics about a case
|
4
|
+
*/
|
5
|
+
export interface StatsCaseModel {
|
6
|
+
fillOutRatio?: Meta<number>;
|
7
|
+
difficulty?: Meta<number>;
|
8
|
+
accuracy?: Meta<number>;
|
9
|
+
completeness?: Meta<number>;
|
10
|
+
correctness?: Meta<number>;
|
11
|
+
overallConfidence?: Meta<number>;
|
12
|
+
}
|
@@ -54,7 +54,7 @@ export interface EmailEvent extends Event {
|
|
54
54
|
} & CaseFileMapping;
|
55
55
|
}
|
56
56
|
export interface CaseFileMapping {
|
57
|
-
format?: "JSON" | "CSV" | "XML" | "TXT";
|
57
|
+
format?: "JSON" | "CSV" | "XML" | "TXT" | "XLSX";
|
58
58
|
/** mapping in JSONATA format (https://www.npmjs.com/package/jsonata) */
|
59
59
|
fileNameMapping?: string;
|
60
60
|
/** mapping in JSONATA format (https://www.npmjs.com/package/jsonata) */
|