digicust_types 1.8.414 → 1.8.415

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 });
@@ -392,9 +392,6 @@ export interface ExecutionStrategy {
392
392
  * Enable updates of fields in manually created tariff numbers
393
393
  */
394
394
  updateManuallyCreatedTariffNumbers?: boolean;
395
- /**
396
- * Immediately confirm master data entries that were created automatically (in technical terms: mark them as user-edited)
397
- */
398
395
  autoSetPropertiesToUserEdited?: boolean;
399
396
  /**
400
397
  * Matching options for tariff number master data, effectively which properties from the shipment will be used to match the tariff number
@@ -8,7 +8,7 @@ export interface MaterialMatchResult {
8
8
  matchesBuyerArticleNumberUserEdited?: boolean;
9
9
  matchesShipper?: boolean;
10
10
  hasAnyUserEditedProperties?: boolean;
11
- fallbackSearchUsed?: "none" | "paddedNumber" | "emptyShipperCountry" | "emptyDestinationCountry";
11
+ fallbackSearchUsed?: "none" | "paddedNumber" | "emptyShipperCountry" | "emptyDestinationCountry" | "emptyStakeholders" | "paddedNumber-emptyStakeholders" | "emptyShipperCountry-emptyStakeholders" | "emptyDestinationCountry-emptyStakeholders" | "emptyShipperCountry-paddedNumber" | "emptyDestinationCountry-paddedNumber" | "emptyShipperCountry-emptyDestinationCountry" | "emptyShipperCountry-emptyStakeholders-paddedNumber" | "emptyDestinationCountry-emptyStakeholders-paddedNumber";
12
12
  id?: string;
13
13
  shipperId?: string;
14
14
  cacheKey?: string;
@@ -1,5 +1,3 @@
1
- /// <reference types="node" />
2
- /// <reference types="node" />
3
1
  /**
4
2
  * Information about an uploaded file. Used by multer package.
5
3
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.414",
3
+ "version": "1.8.415",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",