digicust_types 1.8.449 → 1.8.451

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.
@@ -88,6 +88,8 @@ export interface AggregatedCaseDataModel {
88
88
  numberOfShipments?: Meta<number>;
89
89
  packages?: Package[];
90
90
  seals?: Seal[];
91
+ /** CT-1895 p2 field requested by HTS, it will be present on email or invoice */
92
+ chassisNumber?: Meta<string>;
91
93
  sealNumber?: Meta<string>;
92
94
  truckNationality?: Meta<string>;
93
95
  truckLicensePlate?: Meta<string>;
@@ -4,6 +4,7 @@ import { CustomsOffice, Money, MeanOfTransportation, Meta, Incoterm, Weight, Pac
4
4
  import { DateTimeModel, PersonModel, WeightUnit } from "../../measures";
5
5
  /**
6
6
  * Identifies an Email
7
+ * NOTE: if a field is added here, please update the extraction in normailization service
7
8
  */
8
9
  export interface EmailDocument extends DigicustDocumentModel {
9
10
  subject?: string;
@@ -50,6 +51,8 @@ export interface EmailDocument extends DigicustDocumentModel {
50
51
  presentationTimeStart?: Meta<string>;
51
52
  presentationTimeEnd?: Meta<string>;
52
53
  shippingDate?: DateTimeModel;
54
+ /** CT-1895 p2 field requested by HTS, it will be present on email or invoice */
55
+ chassisNumber?: Meta<string>;
53
56
  packages?: Package[];
54
57
  containers?: Container[];
55
58
  items?: LineItemModel[];
@@ -1,3 +1,4 @@
1
+ /// <reference types="node" />
1
2
  /**
2
3
  * Information about an uploaded file. Used by multer package.
3
4
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.449",
3
+ "version": "1.8.451",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",