digicust_types 1.7.528 → 1.7.529
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/delivery-note.model.d.ts +1 -0
- package/lib/models/digicust/documents/document-types/export-declaration.model.d.ts +1 -0
- package/lib/models/digicust/documents/document-types/invoice.model.d.ts +1 -0
- package/lib/models/digicust/documents/document-types/packing-list.model.d.ts +3 -1
- package/lib/models/digicust/documents/document-types/transit-declaration.model.d.ts +1 -0
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ export interface DeliveryNotesModel extends DigicustDocumentModel, LineItemConta
|
|
|
16
16
|
referenceNumber?: Meta<string>;
|
|
17
17
|
waybillNumber?: Meta<string>;
|
|
18
18
|
packingList?: Meta<string>;
|
|
19
|
+
taxDetails?: Meta<string>;
|
|
19
20
|
meansOfTransportation?: MeanOfTransportation[];
|
|
20
21
|
typeOfBusiness?: TypeOfBusiness;
|
|
21
22
|
portOfExport?: Port;
|
|
@@ -10,6 +10,7 @@ export interface ExportDeclaration extends DigicustDocumentModel, LineItemContai
|
|
|
10
10
|
applicant?: CompanyModel;
|
|
11
11
|
exportCustomsOffice?: CustomsOffice;
|
|
12
12
|
exitCustomsOffice?: CustomsOffice;
|
|
13
|
+
invoiceNumber?: Meta<string>;
|
|
13
14
|
exportingCountry?: AddressModel;
|
|
14
15
|
destinationCountry?: AddressModel;
|
|
15
16
|
/** will be normalized into transitCountries - do not further use! */
|
|
@@ -47,6 +47,7 @@ export interface InvoiceModel extends DigicustDocumentModel, LineItemContainingD
|
|
|
47
47
|
packagingCosts?: Money;
|
|
48
48
|
discount?: Money;
|
|
49
49
|
discountUnit?: Meta<Currency | "%">;
|
|
50
|
+
buyerReferenceId?: Meta<string>;
|
|
50
51
|
licenseFee?: Money;
|
|
51
52
|
otherPayments?: Money;
|
|
52
53
|
shippingCost?: Money;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DigicustDocumentModel } from "./digicust-document.model";
|
|
2
2
|
import { LineItemContainingDocument, DocumentLanguage } from "..";
|
|
3
|
-
import { CompanyModel, LanguageModel, Meta, DateTimeModel, IncotermModel, AddressModel, CustomsTariffNumber, TradePreference, Weight, WeightUnit, PackageType, Dimensions, Package, Money, Currency, Port } from "../..";
|
|
3
|
+
import { CompanyModel, LanguageModel, Meta, DateTimeModel, IncotermModel, AddressModel, CustomsTariffNumber, TradePreference, Weight, WeightUnit, PackageType, Dimensions, Package, Money, Currency, Port, MeanOfTransportation } from "../..";
|
|
4
4
|
export interface PackingListModel extends DigicustDocumentModel, LineItemContainingDocument {
|
|
5
5
|
shipper?: CompanyModel;
|
|
6
6
|
recipient?: CompanyModel;
|
|
@@ -16,6 +16,8 @@ export interface PackingListModel extends DigicustDocumentModel, LineItemContain
|
|
|
16
16
|
referenceNumber?: Meta<string>;
|
|
17
17
|
waybillNumber?: Meta<string>;
|
|
18
18
|
deliveryNote?: Meta<string>;
|
|
19
|
+
meansOfTransportation?: MeanOfTransportation[];
|
|
20
|
+
substanceCharacteristics?: Meta<string>;
|
|
19
21
|
incoterm?: IncotermModel;
|
|
20
22
|
placeIncoterm?: AddressModel;
|
|
21
23
|
countryOfOrigin?: AddressModel;
|
|
@@ -20,6 +20,7 @@ export interface TransitDeclaration extends DigicustDocumentModel, LineItemConta
|
|
|
20
20
|
weightUnit?: Meta<WeightUnit>;
|
|
21
21
|
totalGrossWeight?: Weight;
|
|
22
22
|
totalNetWeight?: Weight;
|
|
23
|
+
invoiceNumber?: Meta<string>;
|
|
23
24
|
meansOfTransportation?: MeanOfTransportation[];
|
|
24
25
|
}
|
|
25
26
|
export interface TransitDeclarationType extends Meta<"T1" | "T2"> {
|