digicust_types 1.8.250 → 1.8.252
Sign up to get free protection for your applications and to get access to all the features.
@@ -2,6 +2,8 @@ import { Meta } from "../../meta";
|
|
2
2
|
export interface DESpecificAggregated {
|
3
3
|
/** e.g. "2" */
|
4
4
|
security?: Meta<string>;
|
5
|
-
/** e.g. EX, CO */
|
5
|
+
/** e.g. EX, CO, T1, T2, ... */
|
6
6
|
declarationType?: Meta<string>;
|
7
|
+
/** e.g. 11, 10 */
|
8
|
+
transitDeclarationType?: Meta<string>;
|
7
9
|
}
|
@@ -96,6 +96,7 @@ export interface ExecutionStrategy {
|
|
96
96
|
customsTariffNumberNormalizationSettings?: CustomsTariffNumberNormalizationSettings;
|
97
97
|
guaranteeValueStrategy?: "headerFromInvoices" | "headerFromInvoiceHeader" | "lineItems";
|
98
98
|
guaranteeValueCalculation?: "includeVAT19%" | "excludeVAT";
|
99
|
+
guaranteeValueCalculationStrategy?: "default" | "assume25%";
|
99
100
|
waybillCodePreference?: "singleCode" | "seperateCodes";
|
100
101
|
calculateLineItemWeight?: "byQuantity" | "byTotalValue";
|
101
102
|
calculateWeight?: {
|