digicust_types 1.8.501 → 1.8.503

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.
@@ -126,6 +126,10 @@ export interface ExecutionStrategy {
126
126
  maxGuaranteeValue?: Money;
127
127
  waybillCodePreference?: "singleCode" | "seperateCodes" | "dependentOnPreferences";
128
128
  addAllInvoicesIfNoItemSpecificInvoiceIsFound?: boolean;
129
+ /**
130
+ * Disables the aggregation of invoice documents with a single "reference", as is the default behavior.
131
+ */
132
+ disableInvoiceReferenceAggregation?: boolean;
129
133
  calculateLineItemWeight?: "byQuantity" | "byTotalValue";
130
134
  calculateWeight?: {
131
135
  grossWeightFromNetWeight?: number | false;
@@ -134,6 +138,7 @@ export interface ExecutionStrategy {
134
138
  statisticalValueRounding?: "noRounding" | "roundOff" | "roundUp" | "roundToNearest";
135
139
  forceTotalValueToStatisticalValue?: boolean;
136
140
  statisticalValueAdditionDeductionOnlyToFirstLineItem?: boolean;
141
+ ignoreLineItemsWithNoValue?: boolean;
137
142
  defaultInvoiceType?: "tax_invoice" | "proforma";
138
143
  /** Between 0 and 1 */
139
144
  foreignFreightCostRate?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.501",
3
+ "version": "1.8.503",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",