digicust_types 1.8.310 → 1.8.312
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/models/digicust/documents/document-types/user-input.model.d.ts +1 -0
- package/lib/models/digicust/execution-strategy/execution-strategy.model.d.ts +2 -0
- package/package.json +1 -1
- package/lib/models/digicust/case/stats-case.model.d.ts +0 -12
- package/lib/models/digicust/case/stats-case.model.js +0 -2
@@ -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,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
|
-
}
|