digicust_types 1.8.150 → 1.8.152
Sign up to get free protection for your applications and to get access to all the features.
@@ -24,6 +24,7 @@ export interface AggregatedCaseDataModel {
|
|
24
24
|
route?: Meta<string[]>;
|
25
25
|
arrivalDate?: DateTimeModel;
|
26
26
|
departureDate?: DateTimeModel;
|
27
|
+
presentationDate?: DateTimeModel;
|
27
28
|
issueDate?: DateTimeModel;
|
28
29
|
transferDate?: DateTimeModel;
|
29
30
|
registrationDate?: DateTimeModel;
|
@@ -28,6 +28,8 @@ export interface EmailDocument extends DigicustDocumentModel {
|
|
28
28
|
weight?: Weight;
|
29
29
|
weightUnit?: Meta<WeightUnit>;
|
30
30
|
shipper?: CompanyModel;
|
31
|
+
carrier?: CompanyModel;
|
32
|
+
presentationDate?: DateTimeModel;
|
31
33
|
shippingDate?: DateTimeModel;
|
32
34
|
packages?: Package[];
|
33
35
|
seals?: Seal[];
|
@@ -262,6 +262,8 @@ export interface ExecutionStrategy {
|
|
262
262
|
*/
|
263
263
|
isProcessWithDextor?: boolean;
|
264
264
|
submission?: Submission;
|
265
|
+
doNotSendUploadNotification?: boolean;
|
266
|
+
doNotSendProcessedNotification?: boolean;
|
265
267
|
events?: Event[];
|
266
268
|
rules?: Rule[];
|
267
269
|
automated?: boolean;
|