digicust_types 1.8.106 → 1.8.108
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.
@@ -102,5 +102,8 @@ export interface AggregatedCaseDataModel {
|
|
102
102
|
domesticInsuranceCosts?: DomesticFreightCosts;
|
103
103
|
statisticalValue?: Money;
|
104
104
|
additionalInformation?: Meta<string>;
|
105
|
+
GRN?: Meta<string>;
|
106
|
+
GRNAccessCode?: Meta<string>;
|
107
|
+
LRN?: Meta<string>;
|
105
108
|
}
|
106
109
|
export declare const condenseAggregated: (aggregated?: AggregatedCaseDataModel) => AggregatedCaseDataModel;
|
@@ -62,7 +62,7 @@ export interface ExecutionStrategy {
|
|
62
62
|
dataNormalization?: {
|
63
63
|
active?: boolean;
|
64
64
|
/** Determines how to deal with additional costs like shipping costs, packing, ... */
|
65
|
-
additionalCostsStrategy?: "addToFirstItem" | "splitToAllItems" | "splitToAllItemsByNetWeight" | "splitToAllItemsByTotalValue";
|
65
|
+
additionalCostsStrategy?: "equalDistribution" | "addToFirstItem" | "splitToAllItems" | "splitToAllItemsByNetWeight" | "splitToAllItemsByTotalValue";
|
66
66
|
allowDateInOrderNumber?: boolean;
|
67
67
|
eliminateArticleNumberFromDescription?: boolean;
|
68
68
|
/** Determines whether or not data from incoming emails are extracted and normalized.
|