digicust_types 1.8.46 → 1.8.48
Sign up to get free protection for your applications and to get access to all the features.
@@ -63,7 +63,9 @@ export interface AggregatedCaseDataModel {
|
|
63
63
|
portOfExport?: Port;
|
64
64
|
portOfImport?: Port;
|
65
65
|
typeofBusiness?: TypeOfBusiness;
|
66
|
-
/**
|
66
|
+
/**
|
67
|
+
* @deprecated
|
68
|
+
* case flow (import, export, ...) */
|
67
69
|
caseType?: Meta<CaseType>;
|
68
70
|
items?: LineItemModel[];
|
69
71
|
numberOfShipments?: Meta<number>;
|
@@ -3,6 +3,13 @@ export declare enum CustomsSystem {
|
|
3
3
|
atlas = "atlas",
|
4
4
|
eZoll = "eZoll"
|
5
5
|
}
|
6
|
+
export interface Mapping {
|
7
|
+
name: string;
|
8
|
+
description: string;
|
9
|
+
mapping: {
|
10
|
+
[key: string]: any;
|
11
|
+
};
|
12
|
+
}
|
6
13
|
/**
|
7
14
|
* Project Model provides all the data related to a project and customer
|
8
15
|
*/
|
@@ -14,6 +21,7 @@ export interface ProjectModel {
|
|
14
21
|
modules?: ModuleModel[];
|
15
22
|
workspaces?: QueueWorkspaceModel[];
|
16
23
|
customsSystem?: CustomsSystem;
|
24
|
+
mappings?: Mapping[];
|
17
25
|
}
|
18
26
|
/**
|
19
27
|
* Information about a notification Model
|