digicust_types 1.8.255 → 1.8.257

Sign up to get free protection for your applications and to get access to all the features.
@@ -237,6 +237,10 @@ export interface ExecutionStrategy {
237
237
  * Enables experimental feature to use specialized description aggregation for line items, summing up quantities and concatenating lineItemDescriptions with "-" in the special "aggregated.aggregatedDescriptions" map (otherwise this property will remain empty or undefined).
238
238
  */
239
239
  useSpecializedDescriptionAggregation?: boolean;
240
+ /**
241
+ * Experimental: Use specialized formatting for aggregated descriptions. This will be used if useSpecializedDescriptionAggregation is set to true. If not set, uses the default descriptionFormatStringJsonAta and aggregation algorithm.
242
+ */
243
+ specializedDescriptionAggregationJsonAta?: string;
240
244
  lineItemGrossWeightStrategy?: "default" | "forceToFirstLineItem";
241
245
  forceInvoiceNumberToReferenceNumberUCR?: boolean;
242
246
  forceInvoiceNumberToRegistrationNumberExternal?: boolean;
@@ -11,7 +11,7 @@ export interface ReadLockModel {
11
11
  container?: string;
12
12
  locked?: boolean;
13
13
  key?: string;
14
- leaseStart?: Date;
14
+ leaseStart?: number;
15
15
  leaseDuration?: number;
16
16
  created?: Date;
17
17
  modified?: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.255",
3
+ "version": "1.8.257",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",