digicust_types 1.8.371 → 1.8.373

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.
@@ -47,6 +47,8 @@ export interface ExecutionStrategy {
47
47
  classificationRemarks?: string;
48
48
  extractionRemarks?: {
49
49
  documentType?: DigicustDocumentType | null;
50
+ engine?: string;
51
+ modelId?: string;
50
52
  sendToFallbackEngine?: boolean;
51
53
  remarks?: string;
52
54
  ignoreLineItems?: boolean;
@@ -343,6 +345,9 @@ export interface ExecutionStrategy {
343
345
  createNewCustomsCasesPerWaybillContainer?: {
344
346
  active?: boolean;
345
347
  };
348
+ createNewCustomsCasesAsDetectedInExcel?: {
349
+ active?: boolean;
350
+ };
346
351
  /**
347
352
  * Controls master data integration automation settings
348
353
  */
@@ -0,0 +1,7 @@
1
+ import { UserInput } from "./documents";
2
+ export interface UserInputTemplate {
3
+ id: string;
4
+ name: string;
5
+ description?: string;
6
+ userInput?: UserInput;
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.371",
3
+ "version": "1.8.373",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",