digicust_types 1.8.106 → 1.8.108
Sign up to get free protection for your applications and to get access to all the features.
@@ -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.
|