digicust_types 1.7.138 → 1.7.142

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.
@@ -3,6 +3,11 @@ export interface Workflow<T> {
3
3
  * The current value of the property
4
4
  */
5
5
  value?: T;
6
+ /**
7
+ * Normalized searchValue, for any related queries.
8
+ * Needs to be a string, even if value is of a different type.
9
+ */
10
+ searchValue?: string;
6
11
  /**
7
12
  * Encoded user (username, userId, etc.)
8
13
  */
@@ -3,6 +3,7 @@ export * from "./invoice.model";
3
3
  export * from "./packing-list.model";
4
4
  export * from "./waybill-type.model";
5
5
  export * from "./waybill.model";
6
+ export * from "./export-declaration.model";
6
7
  export * from "./custom-document.model";
7
8
  export * from "./digicust-document.model";
8
9
  export * from "./digicust-document-type.enum";
@@ -18,6 +18,8 @@ __exportStar(require("./packing-list.model"), exports);
18
18
  // Waybill
19
19
  __exportStar(require("./waybill-type.model"), exports);
20
20
  __exportStar(require("./waybill.model"), exports);
21
+ // customs declarations
22
+ __exportStar(require("./export-declaration.model"), exports);
21
23
  __exportStar(require("./custom-document.model"), exports);
22
24
  __exportStar(require("./digicust-document.model"), exports);
23
25
  __exportStar(require("./digicust-document-type.enum"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.7.138",
3
+ "version": "1.7.142",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",