@be-link/pos-cli-nodejs 0.0.142 → 0.0.143

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/pos-cli-nodejs",
3
- "version": "0.0.142",
3
+ "version": "0.0.143",
4
4
  "description": "正向订单服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/types.d.ts CHANGED
@@ -882,11 +882,11 @@ export interface IPositiveOrderInvoice {
882
882
  receivingMobile?: string;
883
883
  };
884
884
  /** 商品名称 */
885
- itemName: string;
885
+ itemName?: string;
886
886
  /** 二级类目*/
887
- categoryTwo: string;
887
+ categoryTwo?: string;
888
888
  /** 备注 */
889
- remark: string;
889
+ remark?: string;
890
890
  }
891
891
  /** 订单查询结果 */
892
892
  export type QueryDataRes<K extends (keyof QueryDataBlockTypeMap)[]> = {