@be-link/pos-cli-nodejs 0.0.82 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/pos-cli-nodejs",
3
- "version": "0.0.82",
3
+ "version": "0.0.84",
4
4
  "description": "正向订单服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -506,20 +506,23 @@ export declare namespace Service {
506
506
  storeId: string;
507
507
  }
508
508
  interface queryRollingSalesStatistics {
509
- /** 商品ID */
510
- itemId: string;
511
- /** 套餐名称 */
512
- comboName: string;
513
- /** 适用人群 */
514
- applicablePeople: string;
515
- /** 份数 */
516
- quantity: number;
517
- /** gmv */
518
- gmv: number;
519
- /** 实付金额 */
520
- paidAmount: number;
521
- /** 商品名称 */
522
- itemName: string;
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,拒单原因数组 */