digicust_types 1.8.337 → 1.8.339
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
|
+
}
|
@@ -34,6 +34,7 @@ export interface DakosySftpConfig {
|
|
34
34
|
ignoreToAddress?: boolean;
|
35
35
|
/** Anmelder ist Empfanger */
|
36
36
|
enforceImportDeclarantIsRecipient?: boolean;
|
37
|
+
objectAction?: ("CREATE" | "REPLACE" | "CHANGE" | "COMPLETE" | "SEND")[];
|
37
38
|
}
|
38
39
|
export interface LdvSftpConfig {
|
39
40
|
"sftp-password"?: string;
|