digicust_types 1.7.533 → 1.7.535
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/models/digicust/codes/settlement.code.d.ts +2 -1
- package/lib/models/digicust/documents/document-types/structured-data.d.ts +7 -0
- package/lib/models/digicust/documents/document-types/structured-data.js +2 -0
- package/lib/models/digicust/documents/document-types/user-input.model.d.ts +2 -0
- package/package.json +1 -1
@@ -1,6 +1,7 @@
|
|
1
1
|
import { AggregatedCaseDataModel } from "../../case";
|
2
2
|
import { ValidationError } from "../../errors.model";
|
3
3
|
import { ExecutionStrategy } from "../../execution-strategy";
|
4
|
+
import { LineItemModel } from "../../line-item";
|
4
5
|
import { DigicustDocumentModel } from "./digicust-document.model";
|
5
6
|
/**
|
6
7
|
* Identifies user input as a document
|
@@ -10,4 +11,5 @@ export interface UserInput extends DigicustDocumentModel {
|
|
10
11
|
annotatedAggregated?: AggregatedCaseDataModel;
|
11
12
|
annotatedExecutionStrategy?: ExecutionStrategy;
|
12
13
|
customValidationMessages?: ValidationError[];
|
14
|
+
annotatedLineItem?: LineItemModel;
|
13
15
|
}
|