@be-link/pos-cli-nodejs 0.0.172 → 0.0.173

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.172",
3
+ "version": "0.0.173",
4
4
  "description": "正向订单服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -146,6 +146,19 @@ export declare namespace Service {
146
146
  categoryTwoList?: string[];
147
147
  /** 商品id */
148
148
  itemIdList?: string[];
149
+ /** 页码. 如果不传就查询所有 */
150
+ pageIndex?: number;
151
+ /** 页目条数 */
152
+ pageSize?: number;
153
+ /** 排序规则 */
154
+ sort?: {
155
+ /** 出团日期 */
156
+ fulfillAt?: 'ASC' | 'DESC';
157
+ /** 支付时间 */
158
+ paidAt?: 'ASC' | 'DESC';
159
+ /** 订单创建时间 */
160
+ createdAt?: 'ASC' | 'DESC';
161
+ };
149
162
  /** 查询块 */
150
163
  needBlocks: K;
151
164
  }