digicust_types 1.8.126 → 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
|
}
|