digicust_types 1.7.356 → 1.7.358

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  import { DigicustDocumentModel } from "./digicust-document.model";
2
2
  import { WaybillTypeModel, DocumentCode } from "..";
3
- import { CompanyModel, Meta, DateTimeModel, WeightUnit, Weight, Money, IncotermModel, AddressModel, Currency, Package, MeanOfTransportation } from "../..";
3
+ import { CompanyModel, Meta, DateTimeModel, WeightUnit, Weight, Money, IncotermModel, AddressModel, Currency, Package, MeanOfTransportation, PackageType } from "../..";
4
4
  /**
5
5
  * Identifies a waybill document
6
6
  */
@@ -24,6 +24,7 @@ export interface WaybillModel extends DigicustDocumentModel {
24
24
  placeIncoterm?: AddressModel;
25
25
  goodsDescription?: Meta<string>;
26
26
  currency?: Meta<Currency>;
27
+ typeOfPackage?: PackageType;
27
28
  numPackagesShipped?: Meta<number>;
28
29
  packages?: Package[];
29
30
  }
@@ -6,4 +6,8 @@ export interface CustomsTariffNumberNormalizationSettings {
6
6
  customsTariffNumberLength?: number;
7
7
  /** Specifies whether to ignore customs tariff numbers from invoices. E.g. `true` would not consider extracted customs tariff numbers */
8
8
  ignoreCustomsTariffNumbersFromInvoice?: boolean;
9
+ /** Specifies whether to take the the first valid digits and consier fallback sub-chapters */
10
+ autoFixTariffNumbers?: boolean;
11
+ /** Specifies whether to take the tariff number description for item description */
12
+ useAsItemDescription?: boolean;
9
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.7.356",
3
+ "version": "1.7.358",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",