digicust_types 1.8.90 → 1.8.91
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ModuleModel, QueueWorkspaceModel } from "..";
|
1
|
+
import { ClassificationTypes, ModuleModel, QueueWorkspaceModel } from "..";
|
2
2
|
export declare enum CustomsSystem {
|
3
3
|
atlas = "atlas",
|
4
4
|
eZoll = "eZoll"
|
@@ -28,6 +28,15 @@ export interface ProjectModel {
|
|
28
28
|
workspaces?: QueueWorkspaceModel[];
|
29
29
|
customsSystem?: CustomsSystem;
|
30
30
|
mappings?: Mapping[];
|
31
|
+
masterData?: {
|
32
|
+
bulkImport: {
|
33
|
+
type: string;
|
34
|
+
filename: string;
|
35
|
+
timestamp: Date;
|
36
|
+
numberOfEntries: number;
|
37
|
+
classificationType: ClassificationTypes;
|
38
|
+
}[];
|
39
|
+
};
|
31
40
|
}
|
32
41
|
/**
|
33
42
|
* Information about a notification Model
|
@@ -1,7 +1,11 @@
|
|
1
|
-
import { HsCodeModel, Meta,
|
1
|
+
import { ClassificationCode, ClassificationTypes, HsCodeModel, Meta, TariffNumberSuggestion } from "../..";
|
2
2
|
export interface CustomsTariffNumber extends Meta<string> {
|
3
3
|
hsCode?: Meta<string>;
|
4
|
-
|
4
|
+
taric?: {
|
5
|
+
processedByTaric?: boolean;
|
6
|
+
toBeProcessed?: boolean;
|
7
|
+
classificationType?: ClassificationTypes;
|
8
|
+
};
|
5
9
|
additionalCodes?: Meta<string>[];
|
6
10
|
hsCodeInvoice?: Meta<string>;
|
7
11
|
customsDescription?: string;
|