digicust_types 1.8.292 → 1.8.294

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -29,5 +29,6 @@ export declare enum DigicustDocumentType {
29
29
  XML = "XML",
30
30
  SplittedDocument = "splittedDocument",
31
31
  CaseReference = "caseReference",
32
- WeighingCertificate = "weighingCertificate"
32
+ WeighingCertificate = "weighingCertificate",
33
+ CustomsServiceInstructions = "customsServiceInstructions"
33
34
  }
@@ -34,4 +34,5 @@ var DigicustDocumentType;
34
34
  DigicustDocumentType["SplittedDocument"] = "splittedDocument";
35
35
  DigicustDocumentType["CaseReference"] = "caseReference";
36
36
  DigicustDocumentType["WeighingCertificate"] = "weighingCertificate";
37
+ DigicustDocumentType["CustomsServiceInstructions"] = "customsServiceInstructions";
37
38
  })(DigicustDocumentType || (exports.DigicustDocumentType = DigicustDocumentType = {}));
@@ -0,0 +1,16 @@
1
+ import { CustomsOffice } from "../../customs";
2
+ import { DateTimeModel, Money, Weight } from "../../measures";
3
+ import { MeanOfTransportation, Package } from "../../transportation";
4
+ import { DigicustDocumentModel } from "./digicust-document.model";
5
+ /**
6
+ * Identifies an export/import instructions
7
+ */
8
+ export interface CustomsServiceInstructions extends DigicustDocumentModel {
9
+ issueDate?: DateTimeModel;
10
+ meansOfTransportation?: MeanOfTransportation[];
11
+ netWeight?: Weight;
12
+ grossWeight?: Weight;
13
+ customsOffices?: CustomsOffice[];
14
+ packages: Package[];
15
+ statisticalValue?: Money;
16
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -15,3 +15,4 @@ export * from "./transit-declaration.model";
15
15
  export * from "./export-list";
16
16
  export * from "./case-reference.model";
17
17
  export * from "./weighing-certificate";
18
+ export * from "./customs-service-instructions.model";
@@ -31,3 +31,4 @@ __exportStar(require("./transit-declaration.model"), exports);
31
31
  __exportStar(require("./export-list"), exports);
32
32
  __exportStar(require("./case-reference.model"), exports);
33
33
  __exportStar(require("./weighing-certificate"), exports);
34
+ __exportStar(require("./customs-service-instructions.model"), exports);
@@ -270,7 +270,10 @@ export interface ExecutionStrategy {
270
270
  disableAutomaticStakeholderCreation?: boolean;
271
271
  disableAutomaticMaterialCreation?: boolean;
272
272
  defaultLicensePlate?: "german" | false;
273
- useLineItemDescription?: boolean;
273
+ /**
274
+ * When set to true, line item descriptions will be omitted from the final goods description (if possible, if no other description is available it will be used).
275
+ */
276
+ omitLineItemDescription?: boolean;
274
277
  emailSenderAsRepresentativeEmail?: boolean;
275
278
  };
276
279
  dataValidation?: {
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  /**
3
2
  * Information about an uploaded file. Used by multer package.
4
3
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.292",
3
+ "version": "1.8.294",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",