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.
@@ -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
|
@@ -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 = {}));
|