digicust_types 1.8.349 → 1.8.350

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.
@@ -398,6 +398,10 @@ export interface ExecutionStrategy {
398
398
  * If update mode is active, the descriptions will be replaced on each update (except if the new description is empty)
399
399
  */
400
400
  persistItemDescriptions?: boolean;
401
+ /**
402
+ * This is always persisted for tariff number based master data, but needs to be explicitly enabled for material based master data
403
+ */
404
+ persistCustomsTariffNumbersForMaterialBasedMasterData?: boolean;
401
405
  /**
402
406
  * Controls how history data is configured and managed
403
407
  */
@@ -406,11 +410,6 @@ export interface ExecutionStrategy {
406
410
  * Maximum number of entries to keep in each history. Default: 10
407
411
  */
408
412
  maxHistoryEntries?: number;
409
- /**
410
- * If true, identical consecutive entries will be merged to save space
411
- * Default: false
412
- */
413
- mergeIdenticalEntries?: boolean;
414
413
  /**
415
414
  * If true, recipients will be tracked in the history with NO limit(!). Needs to be true for useRecipientOrImporter to work for matching
416
415
  */
@@ -428,15 +427,15 @@ export interface ExecutionStrategy {
428
427
  */
429
428
  prices?: boolean;
430
429
  };
430
+ };
431
+ /**
432
+ * Controls document code integration from different sources.
433
+ */
434
+ documentCodeIntegration?: {
431
435
  /**
432
- * Controls document code integration from different sources.
436
+ * Allowed sources for document code derivation
433
437
  */
434
- documentCodeIntegration?: {
435
- /**
436
- * Allowed sources for document code derivation
437
- */
438
- allowedSources?: DocumentCodeSource[];
439
- };
438
+ allowedSources?: DocumentCodeSource[];
440
439
  };
441
440
  /**
442
441
  * Controls how additional material properties are handled
@@ -459,30 +458,15 @@ export interface ExecutionStrategy {
459
458
  */
460
459
  updateUnitOfMeasurement?: boolean;
461
460
  /**
462
- * Controls weight updates from items
461
+ * If true, net weights from items will update material net weight
462
+ * Default: true
463
463
  */
464
- weightManagement?: {
465
- /**
466
- * If true, net weights from items will update material net weight
467
- * Default: true
468
- */
469
- updateNetWeight?: boolean;
470
- /**
471
- * If true, gross weights from items will update material gross weight
472
- * Default: true
473
- */
474
- updateGrossWeight?: boolean;
475
- };
476
- };
477
- /**
478
- * Quality requirements for material master data
479
- */
480
- materialQualityRequirements?: {
464
+ updateNetWeight?: boolean;
481
465
  /**
482
- * Minimum confidence score for material number matching to be accepted
483
- * Value between 0 and 1. Default: 0.9
466
+ * If true, gross weights from items will update material gross weight
467
+ * Default: true
484
468
  */
485
- minimumMatchConfidence?: number;
469
+ updateGrossWeight?: boolean;
486
470
  };
487
471
  };
488
472
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.349",
3
+ "version": "1.8.350",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",