digicust_types 1.8.323 → 1.8.326
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/contracts/start-taric-import.dto.d.ts +8 -0
- package/lib/models/digicust/documents/document-types/customs-service-instructions.model.d.ts +2 -1
- package/lib/models/digicust/multerfile.model.d.ts +1 -0
- package/package.json +1 -1
- package/lib/models/digicust/case/stats-case.model.d.ts +0 -12
- package/lib/models/digicust/case/stats-case.model.js +0 -2
package/lib/models/digicust/documents/document-types/customs-service-instructions.model.d.ts
CHANGED
@@ -2,10 +2,11 @@ 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";
|
5
|
+
import { LineItemContainingDocument } from "../line-item-containing-document";
|
5
6
|
/**
|
6
7
|
* Identifies an export/import instructions
|
7
8
|
*/
|
8
|
-
export interface CustomsServiceInstructions extends DigicustDocumentModel {
|
9
|
+
export interface CustomsServiceInstructions extends DigicustDocumentModel, LineItemContainingDocument {
|
9
10
|
issueDate?: DateTimeModel;
|
10
11
|
meansOfTransportation?: MeanOfTransportation[];
|
11
12
|
netWeight?: Weight;
|
package/package.json
CHANGED
@@ -1,12 +0,0 @@
|
|
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
|
-
}
|