digicust_types 1.8.126 → 1.8.128
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/models/digicust/documents/document-types/temporary-storage.model.d.ts +2 -1
- package/lib/models/digicust/execution-strategy/index.d.ts +1 -0
- package/lib/models/digicust/execution-strategy/index.js +1 -0
- package/lib/models/digicust/execution-strategy/ruleCatalogItem.d.ts +6 -0
- package/lib/models/digicust/execution-strategy/ruleCatalogItem.js +2 -0
- package/lib/models/digicust/execution-strategy/sftp-config.model.d.ts +0 -1
- package/package.json +1 -1
@@ -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
|
}
|
@@ -17,3 +17,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./execution-strategy.model"), exports);
|
18
18
|
__exportStar(require("./rule"), exports);
|
19
19
|
__exportStar(require("./sftp-config.model"), exports);
|
20
|
+
__exportStar(require("./ruleCatalogItem"), exports);
|