digicust_types 1.8.308 → 1.8.310
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/models/digicust/customs/VOC.model.d.ts +8 -0
- package/lib/models/digicust/customs/VOC.model.js +2 -0
- package/lib/models/digicust/customs/index.d.ts +1 -0
- package/lib/models/digicust/customs/index.js +1 -0
- package/lib/models/digicust/execution-strategy/execution-strategy.model.d.ts +1 -0
- package/lib/models/digicust/line-item/line-item.model.d.ts +2 -1
- package/package.json +1 -1
@@ -40,3 +40,4 @@ __exportStar(require("./representative-constellation.enum"), exports);
|
|
40
40
|
__exportStar(require("./vat-number.model"), exports);
|
41
41
|
__exportStar(require("./buyerSellerRelationship.model"), exports);
|
42
42
|
__exportStar(require("./typeOfExportDeclaration.model"), exports);
|
43
|
+
__exportStar(require("./VOC.model"), exports);
|
@@ -104,6 +104,7 @@ export interface ExecutionStrategy {
|
|
104
104
|
/** Default: Assume origin from preference. Set to true to mitigate this behavior */
|
105
105
|
doNotAssumeOriginFromPreference?: boolean;
|
106
106
|
assumeOriginFromHead?: boolean;
|
107
|
+
assumeOriginFromDepartureCountry?: boolean;
|
107
108
|
translateLineItemDescriptions?: {
|
108
109
|
active?: boolean;
|
109
110
|
destinationLanguage?: string;
|
@@ -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, PackageType } 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, VOC } from "..";
|
2
2
|
import { ItemFraudDetectionDetails } from "../fraud/item-fraud-detection";
|
3
3
|
/**
|
4
4
|
* Identifies line items (specific products) listed on a document
|
@@ -49,6 +49,7 @@ export interface LineItemModel {
|
|
49
49
|
serialNumber?: Meta<string>;
|
50
50
|
buyerArticleNumber?: Meta<string>;
|
51
51
|
buyerOrderNumber?: Meta<string>;
|
52
|
+
VOC?: VOC;
|
52
53
|
meursingCode?: Meta<string>;
|
53
54
|
preferenceInformation?: Meta<string>;
|
54
55
|
/** Textual Material Description */
|