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.
- package/lib/models/digicust/case/stats-case.model.d.ts +12 -0
- package/lib/models/digicust/case/stats-case.model.js +2 -0
- package/lib/models/digicust/documents/document-types/customs-service-instructions.model.d.ts +2 -1
- package/lib/models/digicust/documents/document-types/export-list.d.ts +3 -0
- package/package.json +1 -1
@@ -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
|
+
}
|
package/lib/models/digicust/documents/document-types/customs-service-instructions.model.d.ts
CHANGED
@@ -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
|
}
|