digicust_types 1.8.310 → 1.8.312

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.
@@ -12,4 +12,5 @@ export interface UserInput extends DigicustDocumentModel {
12
12
  annotatedExecutionStrategy?: ExecutionStrategy;
13
13
  customValidationMessages?: ValidationError[];
14
14
  annotatedLineItem?: LineItemModel;
15
+ annotateOnlyFirstLineItem?: boolean;
15
16
  }
@@ -93,6 +93,8 @@ export interface ExecutionStrategy {
93
93
  alwaysAssumeThreeDigitDecimalForWeights?: boolean;
94
94
  alwaysAssumeThousandsForWeights?: boolean;
95
95
  alwaysAssumeThousandsForQuantity?: boolean;
96
+ /** Determines whether or not to aggregate (sum up) pallets together with other package types */
97
+ aggregatePalletsAndOtherPackages?: boolean;
96
98
  /** Determines whether or not data from incoming emails are extracted and normalized.
97
99
  * @default false */
98
100
  normalizeEmailDocuments?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.310",
3
+ "version": "1.8.312",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -1,12 +0,0 @@
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
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });