digicust_types 1.8.268 → 1.8.270

Sign up to get free protection for your applications and to get access to all the features.
@@ -28,5 +28,6 @@ export declare enum DigicustDocumentType {
28
28
  UserInput = "UserInput",
29
29
  XML = "XML",
30
30
  SplittedDocument = "splittedDocument",
31
- CaseReference = "caseReference"
31
+ CaseReference = "caseReference",
32
+ WeighingCertificate = "weighingCertificate"
32
33
  }
@@ -33,4 +33,5 @@ var DigicustDocumentType;
33
33
  DigicustDocumentType["XML"] = "XML";
34
34
  DigicustDocumentType["SplittedDocument"] = "splittedDocument";
35
35
  DigicustDocumentType["CaseReference"] = "caseReference";
36
+ DigicustDocumentType["WeighingCertificate"] = "weighingCertificate";
36
37
  })(DigicustDocumentType || (exports.DigicustDocumentType = DigicustDocumentType = {}));
@@ -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 } 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 } from "..";
2
2
  import { ItemFraudDetectionDetails } from "../fraud/item-fraud-detection";
3
3
  /**
4
4
  * Identifies line items (specific products) listed on a document
@@ -68,6 +68,7 @@ export interface LineItemModel {
68
68
  specialRemarks?: Meta<string>[];
69
69
  typeOfBusiness?: TypeOfBusiness;
70
70
  invoiceNumber?: Meta<string>;
71
+ invoiceDate?: DateTimeModel;
71
72
  waybillNumber?: Meta<string>;
72
73
  transitNumber?: Meta<string>;
73
74
  box40?: Meta<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.268",
3
+ "version": "1.8.270",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",