digicust_types 1.8.93 → 1.8.95

Sign up to get free protection for your applications and to get access to all the features.
@@ -33,7 +33,8 @@ export interface ProjectModel {
33
33
  type: string;
34
34
  fileName: string;
35
35
  status: "inProgress" | "completed" | "error";
36
- timestamp: Date;
36
+ startTime: Date;
37
+ endTime: Date;
37
38
  numberOfEntries: number;
38
39
  classificationType: ClassificationTypes;
39
40
  }[];
@@ -22,4 +22,9 @@ export interface CustomsTariffNumberNormalizationSettings {
22
22
  itemDescriptionSource?: "description" | "altDescription";
23
23
  hideOriginalItemDescription?: boolean;
24
24
  preferMasterDataDescription?: boolean;
25
+ /**
26
+ * Specifies whether to combine the original item description with the tariff number description.
27
+ * Only applicable if useAsItemDescription is true.
28
+ */
29
+ combineWithOriginalItemDescription?: boolean;
25
30
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.93",
3
+ "version": "1.8.95",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",