@be-link/pos-cli-nodejs 0.0.160 → 0.0.162
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
|
@@ -17,7 +17,7 @@ declare class QueryByCommodityService extends BaseService implements Service.Que
|
|
|
17
17
|
queryItemSalesInfoInDays(request: Service.Request.IQueryItemSaleInfoInDays): Promise<Service.Response.IQueryItemSaleInfoInDays[]>;
|
|
18
18
|
getRollingSalesStatisticsTotalAmount(request: Service.Request.getRollingSalesStatisticsTotalAmount): Promise<number>;
|
|
19
19
|
queryRollingSalesStatistics(request: Service.Request.queryRollingSalesStatistics): Promise<Service.Response.queryRollingSalesStatistics>;
|
|
20
|
-
queryItemOrderCountAndRejectCount(request: Service.Request.IQueryItemOrderCountAndRejectCount): Promise<Service.Response.IQueryItemOrderCountAndRejectCount
|
|
20
|
+
queryItemOrderCountAndRejectCount(request: Service.Request.IQueryItemOrderCountAndRejectCount): Promise<Service.Response.IQueryItemOrderCountAndRejectCount>;
|
|
21
21
|
}
|
|
22
22
|
declare const queryByCommodityService: QueryByCommodityService;
|
|
23
23
|
export default queryByCommodityService;
|
|
@@ -545,7 +545,7 @@ export declare namespace Service {
|
|
|
545
545
|
}
|
|
546
546
|
interface IQueryItemOrderCountAndRejectCount {
|
|
547
547
|
/** 商品ID */
|
|
548
|
-
|
|
548
|
+
itemIdList: string[];
|
|
549
549
|
/** 履约起始时间 */
|
|
550
550
|
startTime: number;
|
|
551
551
|
/** 履约结束时间 */
|
|
@@ -876,6 +876,6 @@ export declare namespace Service {
|
|
|
876
876
|
/**
|
|
877
877
|
* 查询一段时间内商品的订单支付成功数量和拒单数量
|
|
878
878
|
*/
|
|
879
|
-
queryItemOrderCountAndRejectCount(request: Request.IQueryItemOrderCountAndRejectCount): Promise<Response.IQueryItemOrderCountAndRejectCount
|
|
879
|
+
queryItemOrderCountAndRejectCount(request: Request.IQueryItemOrderCountAndRejectCount): Promise<Response.IQueryItemOrderCountAndRejectCount>;
|
|
880
880
|
}
|
|
881
881
|
}
|