digicust_types 1.8.271 → 1.8.273
Sign up to get free protection for your applications and to get access to all the features.
@@ -127,6 +127,7 @@ export interface ExecutionStrategy {
|
|
127
127
|
enforcePackageType?: PackageType;
|
128
128
|
preferPackagesFromHead?: boolean;
|
129
129
|
preferWeightFromHead?: boolean;
|
130
|
+
ignoreTotalValueFromProformaInvoices?: boolean;
|
130
131
|
documentCodeEnrichment?: {
|
131
132
|
addNegativeCodings?: boolean;
|
132
133
|
add3LNAQualifiers?: boolean;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Adjustment, Container, DigicustDocumentModel, DocumentTypeCode, MatchingMetadataModel, MaterialMatchInput, MaterialMatchResult, Package, PreferenceState, Procedure, AddressModel, CompanyModel, Currency, CustomsTariffNumber, Meta, Money, Quantity, Weight, WeightUnit, Bbox, UnitOfMeasurement, MasterDataCreationType, CustomsDuty, ImportSalesTax, AdditionDeduction, Translatable, TypeOfBusiness, CountrySpecificLineItem, DateTimeModel } from "..";
|
1
|
+
import { Adjustment, Container, DigicustDocumentModel, DocumentTypeCode, MatchingMetadataModel, MaterialMatchInput, MaterialMatchResult, Package, PreferenceState, Procedure, AddressModel, CompanyModel, Currency, CustomsTariffNumber, Meta, Money, Quantity, Weight, WeightUnit, Bbox, UnitOfMeasurement, MasterDataCreationType, CustomsDuty, ImportSalesTax, AdditionDeduction, Translatable, TypeOfBusiness, CountrySpecificLineItem, DateTimeModel, PackageType } from "..";
|
2
2
|
import { ItemFraudDetectionDetails } from "../fraud/item-fraud-detection";
|
3
3
|
/**
|
4
4
|
* Identifies line items (specific products) listed on a document
|
@@ -55,8 +55,8 @@ export interface LineItemModel {
|
|
55
55
|
packingList?: Meta<string>;
|
56
56
|
reference?: Meta<string>;
|
57
57
|
CAS?: Meta<string>;
|
58
|
-
/** export declaration * */
|
59
58
|
packages?: Package[];
|
59
|
+
packageType?: PackageType;
|
60
60
|
/** index of the position this item is included in */
|
61
61
|
includedWithPosition?: Meta<string>;
|
62
62
|
shipper?: CompanyModel;
|