digicust_types 1.8.283 → 1.8.285

Sign up to get free protection for your applications and to get access to all the features.
@@ -9,6 +9,7 @@ export interface DocumentPage {
9
9
  documentNumber?: string;
10
10
  pngURL?: string;
11
11
  ocrURL?: string;
12
+ extractionsURL?: string;
12
13
  width?: number;
13
14
  height?: number;
14
15
  }
@@ -48,7 +48,9 @@ export interface ExecutionStrategy {
48
48
  documentType?: DigicustDocumentType | null;
49
49
  sendToFallbackEngine?: boolean;
50
50
  remarks?: string;
51
+ ignoreLineItems?: boolean;
51
52
  }[];
53
+ onlyConsiderFirstAndLastPage?: boolean;
52
54
  };
53
55
  /**
54
56
  * Whether to classify using dexter classification or let user manually classify
@@ -6,6 +6,7 @@ export declare enum FilterCondition {
6
6
  startsWith = "startsWith",
7
7
  endsWith = "endsWith",
8
8
  contains = "contains",
9
+ notContains = "notContains",
9
10
  isUserEdited = "isUserEdited",
10
11
  isDefined = "isDefined"
11
12
  }
@@ -10,6 +10,7 @@ var FilterCondition;
10
10
  FilterCondition["startsWith"] = "startsWith";
11
11
  FilterCondition["endsWith"] = "endsWith";
12
12
  FilterCondition["contains"] = "contains";
13
+ FilterCondition["notContains"] = "notContains";
13
14
  FilterCondition["isUserEdited"] = "isUserEdited";
14
15
  FilterCondition["isDefined"] = "isDefined";
15
16
  })(FilterCondition || (exports.FilterCondition = FilterCondition = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.283",
3
+ "version": "1.8.285",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",