digicust_types 1.8.257 → 1.8.258
Sign up to get free protection for your applications and to get access to all the features.
@@ -239,6 +239,7 @@ export interface ExecutionStrategy {
|
|
239
239
|
useSpecializedDescriptionAggregation?: boolean;
|
240
240
|
/**
|
241
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
|
+
* The input for this JSONAta query is an array of lineItemContexts.
|
242
243
|
*/
|
243
244
|
specializedDescriptionAggregationJsonAta?: string;
|
244
245
|
lineItemGrossWeightStrategy?: "default" | "forceToFirstLineItem";
|
@@ -3,5 +3,8 @@ import { Meta } from "../..";
|
|
3
3
|
export interface Weight extends Meta<number> {
|
4
4
|
unit?: WeightUnit;
|
5
5
|
kgEquivalent?: number;
|
6
|
+
derivationFlags?: {
|
7
|
+
includesNinetyPercentMultiplier?: boolean;
|
8
|
+
};
|
6
9
|
}
|
7
10
|
export declare const condenseWeight: (weight: Weight) => Weight;
|