digicust_types 1.8.45 → 1.8.47

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
- /** case flow (import, export, ...) */
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,12 @@ export declare enum CustomsSystem {
3
3
  atlas = "atlas",
4
4
  eZoll = "eZoll"
5
5
  }
6
+ export interface Mapping {
7
+ alias: string;
8
+ mapping: {
9
+ [key: string]: any;
10
+ };
11
+ }
6
12
  /**
7
13
  * Project Model provides all the data related to a project and customer
8
14
  */
@@ -14,6 +20,7 @@ export interface ProjectModel {
14
20
  modules?: ModuleModel[];
15
21
  workspaces?: QueueWorkspaceModel[];
16
22
  customsSystem?: CustomsSystem;
23
+ mappings?: Mapping[];
17
24
  }
18
25
  /**
19
26
  * Information about a notification Model
@@ -106,7 +106,8 @@ export interface ExecutionStrategy {
106
106
  disabled?: boolean;
107
107
  disableTariffNumberMatching?: boolean;
108
108
  disableMaterialNumberMatching?: boolean;
109
- sendMasterDataOnly?: boolean;
109
+ sendMasterDataTariffNumberOnly?: boolean;
110
+ sendMasterDataDescriptionOnly?: boolean;
110
111
  tariffNumberMatchingConfiguration?: {
111
112
  stakeholderFilters?: ("shipper" | "consignee" | "recipient" | "beneficiary" | "applicant" | "declarant" | "importer" | "exporter" | "buyer" | "agent" | "broker" | "carrier" | "warehouse" | "obligater")[];
112
113
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.45",
3
+ "version": "1.8.47",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",