@be-link/pos-cli-nodejs 0.0.83 → 0.0.84
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/package.json
CHANGED
|
@@ -506,20 +506,23 @@ export declare namespace Service {
|
|
|
506
506
|
storeId: string;
|
|
507
507
|
}
|
|
508
508
|
interface queryRollingSalesStatistics {
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
509
|
+
list: {
|
|
510
|
+
/** 商品ID */
|
|
511
|
+
itemId: string;
|
|
512
|
+
/** 套餐名称 */
|
|
513
|
+
comboName: string;
|
|
514
|
+
/** 适用人群 */
|
|
515
|
+
applicablePeople: string;
|
|
516
|
+
/** 份数 */
|
|
517
|
+
quantity: number;
|
|
518
|
+
/** gmv(实付金额. 不包含退款金额) */
|
|
519
|
+
gmv: number;
|
|
520
|
+
/** 剩余金额 */
|
|
521
|
+
remainAmount: number;
|
|
522
|
+
/** 商品名称 */
|
|
523
|
+
itemName: string;
|
|
524
|
+
}[];
|
|
525
|
+
total: number;
|
|
523
526
|
}
|
|
524
527
|
type queryRejectReasons = {
|
|
525
528
|
/** 订单id,拒单原因数组 */
|