digicust_types 1.8.521 → 1.8.522

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.
@@ -1,5 +1,6 @@
1
1
  import { AggregatedCaseDataModel, CaseStatus, DigicustDocumentModel, Environment, ErrorModel, ExecutionStrategy, Meta, ProcedureMode, UploadedFileModel } from "..";
2
2
  import { ProcessingModel } from "../queue";
3
+ import { AppliedRuleModel } from "./applied-rule.model";
3
4
  /**
4
5
  * Model used for any kind of customs case.
5
6
  */
@@ -57,5 +58,7 @@ export interface CaseModel {
57
58
  aggregated?: AggregatedCaseDataModel;
58
59
  /** Information on how the case needs to be processed */
59
60
  executionStrategy?: ExecutionStrategy;
61
+ /** Rules that were applied during case processing */
62
+ appliedRules?: AppliedRuleModel[];
60
63
  }
61
64
  export declare const condenseCaseModel: (caseModel?: CaseModel) => CaseModel;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.521",
3
+ "version": "1.8.522",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",