digicust_types 1.8.92 → 1.8.94
Sign up to get free protection for your applications and to get access to all the features.
@@ -31,7 +31,8 @@ export interface ProjectModel {
|
|
31
31
|
masterData?: {
|
32
32
|
bulkImport: {
|
33
33
|
type: string;
|
34
|
-
|
34
|
+
fileName: string;
|
35
|
+
status: "inProgress" | "completed" | "error";
|
35
36
|
timestamp: Date;
|
36
37
|
numberOfEntries: number;
|
37
38
|
classificationType: ClassificationTypes;
|
@@ -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
|
}
|