@be-link/pos-cli-nodejs 0.0.50 → 0.0.52

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.50",
3
+ "version": "0.0.52",
4
4
  "description": "正向订单服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -29,6 +29,8 @@ export declare namespace Service {
29
29
  unionIdList: string[];
30
30
  /** 订单状态列表 */
31
31
  statusList?: PosConstants.TradeOrderStatusEnum[];
32
+ /** 二级类目 */
33
+ categoryTwo?: string[];
32
34
  }
33
35
  interface queryUserOrder<K> {
34
36
  condition: {
@@ -40,6 +42,8 @@ export declare namespace Service {
40
42
  categoryTwoList?: string[];
41
43
  /** 是否是会员订单 */
42
44
  isMemberOrder?: boolean;
45
+ /** 是否是主单 */
46
+ isRootOrder?: boolean;
43
47
  };
44
48
  /** 排序规则 */
45
49
  sort: {
@@ -105,7 +109,7 @@ export declare namespace Service {
105
109
  /** 二级类目列表 */
106
110
  categoryTwoList?: string[];
107
111
  /** 商品id */
108
- itemIdList: string[];
112
+ itemIdList?: string[];
109
113
  /** 查询块 */
110
114
  needBlocks: K;
111
115
  }