@final-commerce/command-frame 0.1.42 → 0.1.43
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.
- package/dist/CommonTypes.d.ts +3 -8
- package/package.json +1 -1
package/dist/CommonTypes.d.ts
CHANGED
|
@@ -234,13 +234,14 @@ export interface CFPosDataItem {
|
|
|
234
234
|
export interface CFDiscountDetail {
|
|
235
235
|
percentage: number;
|
|
236
236
|
amount: string;
|
|
237
|
-
|
|
237
|
+
label?: string;
|
|
238
238
|
}
|
|
239
239
|
export interface CFFeeDetail {
|
|
240
240
|
percentage: number;
|
|
241
241
|
amount: string;
|
|
242
242
|
tax: string;
|
|
243
243
|
taxTableId: string;
|
|
244
|
+
label?: string;
|
|
244
245
|
}
|
|
245
246
|
export interface CFDiscountLineItem {
|
|
246
247
|
itemDiscount: CFDiscountDetail;
|
|
@@ -286,13 +287,7 @@ export interface CFCustomSale {
|
|
|
286
287
|
cartDiscount: CFDiscountDetail;
|
|
287
288
|
};
|
|
288
289
|
fee: {
|
|
289
|
-
cartFee:
|
|
290
|
-
amount: string;
|
|
291
|
-
label: string;
|
|
292
|
-
percentage: number;
|
|
293
|
-
tax: string;
|
|
294
|
-
taxTableId: string;
|
|
295
|
-
};
|
|
290
|
+
cartFee: CFFeeDetail;
|
|
296
291
|
};
|
|
297
292
|
}
|
|
298
293
|
export interface CFRefundedLineItem {
|