digicust_types 1.8.389 → 1.8.390
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.
@@ -509,6 +509,14 @@ export interface ExecutionStrategy {
|
|
509
509
|
doNotSendUploadNotification?: boolean;
|
510
510
|
doNotSendProcessedNotification?: boolean;
|
511
511
|
ruleSystem?: "default" | "chained";
|
512
|
+
ruleSettings: {
|
513
|
+
/**
|
514
|
+
* Sort line items before applying line item rules with annotateOnlyFirstLineItem.
|
515
|
+
* This influences which ones of these line items will be annotated.
|
516
|
+
* Default value: position
|
517
|
+
*/
|
518
|
+
sortLineItemsBeforeAnnotating: "position" | "customsTariffNumber";
|
519
|
+
};
|
512
520
|
events?: Event[];
|
513
521
|
rules?: Rule[];
|
514
522
|
userInputTemplates?: UserInputTemplate[];
|