digicust_types 1.7.111 → 1.7.112

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.
@@ -15,35 +15,32 @@ export interface LineItemModel {
15
15
  box40?: Meta<string>;
16
16
  guaranteeNumber?: Meta<string>;
17
17
  billOfLading?: Meta<string>;
18
- packingList?: Meta<string>;
18
+ customsTariffNumber?: CustomsTariffNumber;
19
+ discountText?: string;
19
20
  position?: Meta<string>;
20
21
  code?: Meta<string>;
21
22
  hsCode?: Meta<string>;
22
- amount?: Money;
23
23
  batchNumber?: Meta<string>;
24
24
  lotNumber?: Meta<string>;
25
25
  serialNumber?: Meta<string>;
26
26
  orderNumber?: Meta<string>;
27
27
  description?: Meta<string>;
28
- customsTariffNumber?: CustomsTariffNumber;
29
28
  quantity?: Quantity;
30
29
  orderedQuantity?: Quantity;
31
30
  unitOfMeasurement?: Meta<UOM>;
32
31
  countryOfOrigin?: AddressModel;
33
32
  itemValue?: Money;
34
- discountText?: string;
35
- discount?: Money;
36
- currency: Meta<Currency>;
37
33
  totalValue?: Money;
38
34
  customsValue?: Money;
39
- /** Net weight per quantity */
35
+ amountUnit?: Meta<Number>;
36
+ discount?: Money;
37
+ discountUnit?: Meta<Currency>;
38
+ currency: Meta<Currency>;
40
39
  netWeight?: Weight;
41
- /** Net weight for whole quantity */
42
40
  totalNetWeight?: Weight;
43
- /** Gross weight per quantity */
44
41
  grossWeight?: Weight;
45
- /** Gross weight for whole quantity */
46
42
  totalGrossWeight?: Weight;
43
+ weightUnit?: Meta<Currency>;
47
44
  itemSize?: Meta<string>;
48
45
  buyerArticleNumber?: Meta<string>;
49
46
  buyerOrderNumber?: Meta<string>;
@@ -53,6 +50,7 @@ export interface LineItemModel {
53
50
  CAS?: Meta<string>;
54
51
  deliveryNote?: Meta<string>;
55
52
  reference?: Meta<string>;
53
+ packingList?: Meta<string>;
56
54
  procedure?: Procedure;
57
55
  units?: {
58
56
  number?: number;
@@ -62,11 +60,7 @@ export interface LineItemModel {
62
60
  documents?: DigicustDocumentModel[];
63
61
  adjustments?: Adjustment[];
64
62
  containers?: Container[];
65
- /** Reference to material masterdata */
66
63
  materialId?: string;
67
- /**
68
- * Bounding box of full extracted line (with page)
69
- */
70
64
  bbox?: Bbox;
71
65
  }
72
66
  export declare const condenseLineItem: (lineItem?: LineItemModel | undefined) => LineItemModel | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.7.111",
3
+ "version": "1.7.112",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",