digicust_types 1.8.125 → 1.8.127
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,8 +1,9 @@
|
|
1
|
-
import { ATB, Meta, PackageType, Weight } from "../..";
|
1
|
+
import { ATB, Meta, Package, PackageType, Weight } from "../..";
|
2
2
|
import { DigicustDocumentModel } from "./digicust-document.model";
|
3
3
|
export interface TemporaryStorageModel extends DigicustDocumentModel {
|
4
4
|
preliminaryDocuments?: ATB[];
|
5
5
|
typeOfPackage?: PackageType;
|
6
6
|
weight?: Weight;
|
7
7
|
numberOfShipments?: Meta<number>;
|
8
|
+
packages?: Package[];
|
8
9
|
}
|
@@ -28,6 +28,7 @@ export interface ExecutionStrategy {
|
|
28
28
|
mergeMultipleUploads?: boolean;
|
29
29
|
handleXLSXFileUploads?: boolean;
|
30
30
|
forceReference?: false | "invoiceNumber";
|
31
|
+
forceReferenceJSONata?: string;
|
31
32
|
defaultClassification?: DigicustDocumentType;
|
32
33
|
defaultProcedureMode?: ProcedureMode;
|
33
34
|
dataExtraction?: {
|
@@ -179,9 +180,9 @@ export interface ExecutionStrategy {
|
|
179
180
|
*/
|
180
181
|
descriptionFormatStringJsonAta?: string;
|
181
182
|
lineItemGrossWeightStrategy?: "default" | "forceToFirstLineItem";
|
182
|
-
|
183
|
-
|
184
|
-
|
183
|
+
forceInvoiceNumberToReferenceNumberUCR?: boolean;
|
184
|
+
forceInvoiceNumberToRegistrationNumberExternal?: boolean;
|
185
|
+
forceInvoiceNumberToLRN?: boolean;
|
185
186
|
defaultLicensePlate?: "german" | false;
|
186
187
|
};
|
187
188
|
dataValidation?: {
|