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.
- package/lib/models/digicust/documents/digicust-document-type.enum.d.ts +2 -1
- package/lib/models/digicust/documents/digicust-document-type.enum.js +1 -0
- package/lib/models/digicust/documents/document-types/customs-service-instructions.model.d.ts +16 -0
- package/lib/models/digicust/documents/document-types/customs-service-instructions.model.js +2 -0
- package/lib/models/digicust/documents/document-types/index.d.ts +1 -0
- package/lib/models/digicust/documents/document-types/index.js +1 -0
- package/lib/models/digicust/execution-strategy/execution-strategy.model.d.ts +4 -1
- package/lib/models/digicust/multerfile.model.d.ts +0 -1
- package/package.json +1 -1
@@ -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
|
+
}
|
@@ -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
|
-
|
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?: {
|