digicust_types 1.8.211 → 1.8.213
Sign up to get free protection for your applications and to get access to all the features.
@@ -43,7 +43,6 @@ export interface InvoiceModel extends DigicustDocumentModel, LineItemContainingD
|
|
43
43
|
numberOfShipments?: Meta<number>;
|
44
44
|
packages?: Package[];
|
45
45
|
totalValueExcludingCharges?: Money;
|
46
|
-
totalTaxAmount?: Money;
|
47
46
|
insuranceCosts?: Money;
|
48
47
|
packagingCosts?: Money;
|
49
48
|
discount?: Money;
|
@@ -92,6 +92,9 @@ export interface LineItemModel {
|
|
92
92
|
creationType?: MasterDataCreationType;
|
93
93
|
bbox?: Bbox;
|
94
94
|
fraudDetection?: ItemFraudDetectionDetails;
|
95
|
+
dangerousGoods?: {
|
96
|
+
UNNumber?: Meta<string>;
|
97
|
+
}[];
|
95
98
|
matchingMetadata?: MatchingMetadataModel<MaterialMatchInput, MaterialMatchResult>;
|
96
99
|
}
|
97
100
|
export declare const condenseLineItem: (lineItem?: LineItemModel) => LineItemModel;
|