digicust_types 1.8.396 → 1.8.398

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11,9 +11,9 @@ export declare enum FilterCondition {
11
11
  isDefined = "isDefined"
12
12
  }
13
13
  export interface FilterObject {
14
- field: string;
14
+ field?: string;
15
15
  fieldKey?: string;
16
- condition: FilterCondition;
17
- value: string | undefined | boolean | Date | number;
16
+ condition?: FilterCondition;
17
+ value?: string | undefined | boolean | Date | number;
18
18
  type?: "array" | "string" | "number" | "object";
19
19
  }
@@ -82,16 +82,6 @@ export interface MaterialModel {
82
82
  netWeight?: Weight & Workflow<number>;
83
83
  grossWeight?: Weight & Workflow<number>;
84
84
  dimensions?: Dimensions & Workflow<any>;
85
- /**
86
- * Use shippers instead.
87
- * @deprecated
88
- */
89
- shipper?: string;
90
- /**
91
- * Use shippers instead.
92
- * @deprecated
93
- */
94
- shipperId?: string;
95
85
  /**
96
86
  * Used for matching by shipper stakeholder
97
87
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.396",
3
+ "version": "1.8.398",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",