digicust_types 1.7.534 → 1.7.535
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.
- package/lib/models/digicust/documents/document-types/structured-data.d.ts +7 -0
- package/lib/models/digicust/documents/document-types/user-input.model.d.ts +2 -0
- package/package.json +1 -1
- package/lib/models/digicust/documents/document-types/temporary-usage.model.d.ts +0 -7
- /package/lib/models/digicust/documents/document-types/{temporary-usage.model.js → structured-data.js} +0 -0
@@ -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
|
}
|
package/package.json
CHANGED
@@ -1,7 +0,0 @@
|
|
1
|
-
import { Weight, Meta, ATB } from "../..";
|
2
|
-
import { DigicustDocumentModel } from "./digicust-document.model";
|
3
|
-
export interface TemporaryUsageModel extends DigicustDocumentModel {
|
4
|
-
preliminaryDocuments?: ATB[];
|
5
|
-
weight?: Weight;
|
6
|
-
numberOfShipments?: Meta<number>;
|
7
|
-
}
|
File without changes
|