digicust_types 1.8.309 → 1.8.311
Sign up to get free protection for your applications and to get access to all the features.
@@ -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;
|
@@ -104,6 +106,7 @@ export interface ExecutionStrategy {
|
|
104
106
|
/** Default: Assume origin from preference. Set to true to mitigate this behavior */
|
105
107
|
doNotAssumeOriginFromPreference?: boolean;
|
106
108
|
assumeOriginFromHead?: boolean;
|
109
|
+
assumeOriginFromDepartureCountry?: boolean;
|
107
110
|
translateLineItemDescriptions?: {
|
108
111
|
active?: boolean;
|
109
112
|
destinationLanguage?: string;
|
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
|
-
}
|