digicust_types 1.8.361 → 1.8.363

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,5 @@
1
1
  import { CustomsTariffNumberNormalizationSettings, DigicustDocumentType, Event, Money, PackageType, ProcedureMode, Rule, StakeholderModel } from "..";
2
+ import { UserInputTemplate } from "../userInputTemplate";
2
3
  import { Submission } from "./sftp-config.model";
3
4
  import { UploadWidget } from "./uploadWidget";
4
5
  /**
@@ -498,6 +499,7 @@ export interface ExecutionStrategy {
498
499
  doNotSendProcessedNotification?: boolean;
499
500
  events?: Event[];
500
501
  rules?: Rule[];
502
+ userInputTemplates?: UserInputTemplate[];
501
503
  automated?: boolean;
502
504
  customs?: {
503
505
  GRN?: string;
@@ -27,3 +27,4 @@ export * from "./codes";
27
27
  export * from "./read-lock.model";
28
28
  export * from "./cache";
29
29
  export * from "./country-specific";
30
+ export * from "./userInputTemplate";
@@ -43,3 +43,4 @@ __exportStar(require("./codes"), exports);
43
43
  __exportStar(require("./read-lock.model"), exports);
44
44
  __exportStar(require("./cache"), exports);
45
45
  __exportStar(require("./country-specific"), exports);
46
+ __exportStar(require("./userInputTemplate"), exports);
@@ -1,3 +1,4 @@
1
+ /// <reference types="node" />
1
2
  /**
2
3
  * Information about an uploaded file. Used by multer package.
3
4
  */
@@ -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 });
@@ -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.361",
3
+ "version": "1.8.363",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",