digicust_types 1.8.170 → 1.8.172

Sign up to get free protection for your applications and to get access to all the features.
@@ -13,6 +13,10 @@ export interface EmailDocument extends DigicustDocumentModel {
13
13
  documents?: (DigicustDocumentModel & {
14
14
  belongsTo: string;
15
15
  })[];
16
+ shipments?: {
17
+ invoiceNumber?: Meta<string>;
18
+ reference?: Meta<string>;
19
+ }[];
16
20
  preliminaryDocuments?: PreliminaryDocument[];
17
21
  customsOffice?: CustomsOffice;
18
22
  entryCustomsOffice?: CustomsOffice;
@@ -113,6 +113,7 @@ export interface ExecutionStrategy {
113
113
  preferWeightFromHead?: boolean;
114
114
  documentCodeEnrichment?: {
115
115
  addNegativeCodings?: boolean;
116
+ noLineItemDocumentCodes?: boolean;
116
117
  };
117
118
  /**
118
119
  * Custom formattings for the resulting description of line items. For more complex conditional formattings, use the JSONAta property instead.
@@ -251,6 +252,9 @@ export interface ExecutionStrategy {
251
252
  createNewCustomsCaseForInvoice?: {
252
253
  active?: boolean;
253
254
  };
255
+ createNewCustomsCasesAsMentionedInEmail?: {
256
+ active?: boolean;
257
+ };
254
258
  };
255
259
  matchingEngine?: {
256
260
  materialMatching?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.170",
3
+ "version": "1.8.172",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",