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.
@@ -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
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -13,3 +13,4 @@ export * from "./user-input.model";
13
13
  export * from "./eur1.model";
14
14
  export * from "./transit-declaration.model";
15
15
  export * from "./export-list";
16
+ export * from "./case-reference.model";
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.261",
3
+ "version": "1.8.263",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",