digicust_types 1.8.312 → 1.8.314

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,12 @@
1
+ import { Meta } from "..";
2
+ /**
3
+ * Statistics about a case
4
+ */
5
+ export interface StatsCaseModel {
6
+ fillOutRatio?: Meta<number>;
7
+ difficulty?: Meta<number>;
8
+ accuracy?: Meta<number>;
9
+ completeness?: Meta<number>;
10
+ correctness?: Meta<number>;
11
+ overallConfidence?: Meta<number>;
12
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,4 +1,4 @@
1
- import { CustomsOffice } from "../../customs";
1
+ import { CustomsOffice, CustomsTariffNumber } from "../../customs";
2
2
  import { DateTimeModel, Money, Weight } from "../../measures";
3
3
  import { MeanOfTransportation, Package } from "../../transportation";
4
4
  import { DigicustDocumentModel } from "./digicust-document.model";
@@ -13,4 +13,5 @@ export interface CustomsServiceInstructions extends DigicustDocumentModel {
13
13
  customsOffices?: CustomsOffice[];
14
14
  packages?: Package[];
15
15
  statisticalValue?: Money;
16
+ generalCustomsTariffNumber?: CustomsTariffNumber;
16
17
  }
@@ -1,4 +1,5 @@
1
1
  import { CompanyModel } from "../../company";
2
+ import { Weight } from "../../measures";
2
3
  import { Meta } from "../../meta";
3
4
  import { MeanOfTransportation, PackageType } from "../../transportation";
4
5
  import { DigicustDocumentModel } from "./digicust-document.model";
@@ -10,4 +11,6 @@ export interface ExportList extends DigicustDocumentModel {
10
11
  meansOfTransportation?: MeanOfTransportation[];
11
12
  typeOfPackage?: PackageType;
12
13
  consignee?: CompanyModel;
14
+ /** Total gross weight */
15
+ weight?: Weight;
13
16
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.312",
3
+ "version": "1.8.314",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",