digicust_types 1.7.523 → 1.7.524

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 { DocumentCode, LineItemContainingDocument } from "..";
3
- import { CompanyModel, CustomsOffice, AddressModel, Meta, Weight, MeanOfTransportation, Package, DateTimeModel } from "../..";
3
+ import { CompanyModel, CustomsOffice, AddressModel, Meta, Weight, MeanOfTransportation, Package, DateTimeModel, WeightUnit } from "../..";
4
4
  /**
5
5
  * Identifies an Export Declaration
6
6
  */
@@ -17,8 +17,10 @@ export interface TransitDeclaration extends DigicustDocumentModel, LineItemConta
17
17
  exportingCountry?: AddressModel;
18
18
  destinationCountry?: AddressModel;
19
19
  transitCountry?: AddressModel;
20
- meansOfTransportation?: MeanOfTransportation[];
20
+ weightUnit?: Meta<WeightUnit>;
21
21
  totalGrossWeight?: Weight;
22
+ totalNetWeight?: Weight;
23
+ meansOfTransportation?: MeanOfTransportation[];
22
24
  }
23
25
  export interface TransitDeclarationType extends Meta<"T1" | "T2"> {
24
26
  documentCode?: DocumentCode;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.7.523",
3
+ "version": "1.7.524",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",