digicust_types 1.8.385 → 1.8.386

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,6 @@
1
1
  export * from "./execution-strategy.model";
2
2
  export * from "./rule";
3
3
  export * from "./sftp-config.model";
4
+ export * from "./resolved-rule";
4
5
  export * from "./ruleCatalogItem";
5
6
  export * from "./condition";
@@ -17,5 +17,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./execution-strategy.model"), exports);
18
18
  __exportStar(require("./rule"), exports);
19
19
  __exportStar(require("./sftp-config.model"), exports);
20
+ __exportStar(require("./resolved-rule"), exports);
20
21
  __exportStar(require("./ruleCatalogItem"), exports);
21
22
  __exportStar(require("./condition"), exports);
@@ -0,0 +1,8 @@
1
+ import { UserInput } from "../documents";
2
+ import { Condition } from "./condition";
3
+ export interface ResolvedRule {
4
+ userInput: UserInput;
5
+ ruleName: string;
6
+ ruleId: string;
7
+ conditions?: Condition[];
8
+ }
@@ -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.385",
3
+ "version": "1.8.386",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",