digicust_types 1.8.337 → 1.8.339

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.
@@ -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
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="node" />
2
- /// <reference types="node" />
3
2
  /**
4
3
  * Information about an uploaded file. Used by multer package.
5
4
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.337",
3
+ "version": "1.8.339",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",