digicust_types 1.8.249 → 1.8.251

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,8 +1,11 @@
1
1
  import { Meta } from "../../meta";
2
+ import { MeanOfTransportation, PackageType } from "../../transportation";
2
3
  import { DigicustDocumentModel } from "./digicust-document.model";
3
4
  /**
4
5
  * Identifies an export list document (Ausfuhrliste)
5
6
  */
6
7
  export interface ExportList extends DigicustDocumentModel {
7
8
  numberOfShipments?: Meta<number>;
9
+ meansOfTransportation?: MeanOfTransportation[];
10
+ typeOfPackage?: PackageType;
8
11
  }
@@ -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?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.249",
3
+ "version": "1.8.251",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",