digicust_types 1.8.261 → 1.8.263
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/models/digicust/documents/digicust-document-type.enum.d.ts +2 -2
- package/lib/models/digicust/documents/digicust-document-type.enum.js +1 -1
- package/lib/models/digicust/documents/document-types/case-reference.model.d.ts +10 -0
- package/lib/models/digicust/documents/document-types/case-reference.model.js +2 -0
- package/lib/models/digicust/documents/document-types/index.d.ts +1 -0
- package/lib/models/digicust/documents/document-types/index.js +1 -0
- package/lib/models/digicust/execution-strategy/execution-strategy.model.d.ts +4 -0
- package/package.json +1 -1
@@ -3,7 +3,6 @@
|
|
3
3
|
*/
|
4
4
|
export declare enum DigicustDocumentType {
|
5
5
|
ToBeClassified = "toBeClassified",
|
6
|
-
mixed = "mixed",
|
7
6
|
NoProcessing = "noProcessing",
|
8
7
|
Email = "email",
|
9
8
|
Invoice = "invoice",
|
@@ -28,5 +27,6 @@ export declare enum DigicustDocumentType {
|
|
28
27
|
ExportList = "ExportList",
|
29
28
|
UserInput = "UserInput",
|
30
29
|
XML = "XML",
|
31
|
-
SplittedDocument = "splittedDocument"
|
30
|
+
SplittedDocument = "splittedDocument",
|
31
|
+
CaseReference = "caseReference"
|
32
32
|
}
|
@@ -7,7 +7,6 @@ exports.DigicustDocumentType = void 0;
|
|
7
7
|
var DigicustDocumentType;
|
8
8
|
(function (DigicustDocumentType) {
|
9
9
|
DigicustDocumentType["ToBeClassified"] = "toBeClassified";
|
10
|
-
DigicustDocumentType["mixed"] = "mixed";
|
11
10
|
DigicustDocumentType["NoProcessing"] = "noProcessing";
|
12
11
|
DigicustDocumentType["Email"] = "email";
|
13
12
|
DigicustDocumentType["Invoice"] = "invoice";
|
@@ -33,4 +32,5 @@ var DigicustDocumentType;
|
|
33
32
|
DigicustDocumentType["UserInput"] = "UserInput";
|
34
33
|
DigicustDocumentType["XML"] = "XML";
|
35
34
|
DigicustDocumentType["SplittedDocument"] = "splittedDocument";
|
35
|
+
DigicustDocumentType["CaseReference"] = "caseReference";
|
36
36
|
})(DigicustDocumentType || (exports.DigicustDocumentType = DigicustDocumentType = {}));
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { AggregatedCaseDataModel } from "../../case";
|
2
|
+
import { DigicustDocumentModel } from "./digicust-document.model";
|
3
|
+
/**
|
4
|
+
* Identifies a case reference
|
5
|
+
*/
|
6
|
+
export interface CaseReference extends DigicustDocumentModel {
|
7
|
+
referenceCaseId?: string;
|
8
|
+
reference?: string;
|
9
|
+
aggregated?: AggregatedCaseDataModel;
|
10
|
+
}
|
@@ -29,3 +29,4 @@ __exportStar(require("./user-input.model"), exports);
|
|
29
29
|
__exportStar(require("./eur1.model"), exports);
|
30
30
|
__exportStar(require("./transit-declaration.model"), exports);
|
31
31
|
__exportStar(require("./export-list"), exports);
|
32
|
+
__exportStar(require("./case-reference.model"), exports);
|
@@ -42,6 +42,10 @@ export interface ExecutionStrategy {
|
|
42
42
|
dataExtraction?: {
|
43
43
|
active?: boolean;
|
44
44
|
engine?: "default" | "dexter_experimental";
|
45
|
+
/**
|
46
|
+
* Weather to classify using dexter classification or let user manually classify
|
47
|
+
*/
|
48
|
+
classifyUsingDexter?: boolean;
|
45
49
|
engineSpecification?: string;
|
46
50
|
promptRemarks?: string;
|
47
51
|
annotationRemarks?: string;
|