digicust_types 1.8.202 → 1.8.204

Sign up to get free protection for your applications and to get access to all the features.
@@ -76,6 +76,7 @@ export interface ExecutionStrategy {
76
76
  allowDateInOrderNumber?: boolean;
77
77
  eliminateArticleNumberFromDescription?: boolean;
78
78
  alwaysAssumeThreeDigitDecimalForWeights?: boolean;
79
+ alwaysAssumeThousandsForWeights?: boolean;
79
80
  /** Determines whether or not data from incoming emails are extracted and normalized.
80
81
  * @default false */
81
82
  normalizeEmailDocuments?: boolean;
@@ -6,7 +6,8 @@ export declare enum FilterCondition {
6
6
  startsWith = "startsWith",
7
7
  endsWith = "endsWith",
8
8
  contains = "contains",
9
- isUserEdited = "isUserEdited"
9
+ isUserEdited = "isUserEdited",
10
+ isDefined = "isDefined"
10
11
  }
11
12
  export interface FilterObject {
12
13
  field: string;
@@ -11,4 +11,5 @@ var FilterCondition;
11
11
  FilterCondition["endsWith"] = "endsWith";
12
12
  FilterCondition["contains"] = "contains";
13
13
  FilterCondition["isUserEdited"] = "isUserEdited";
14
+ FilterCondition["isDefined"] = "isDefined";
14
15
  })(FilterCondition || (exports.FilterCondition = FilterCondition = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.202",
3
+ "version": "1.8.204",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",