@be-link/pos-cli-nodejs 0.0.139 → 0.0.141
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 +1 -1
- package/pos/modules/orderQuery/types.d.ts +2 -0
- package/types.d.ts +4 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -881,6 +881,10 @@ export interface IPositiveOrderInvoice {
|
|
|
881
881
|
/** 收件电话 */
|
|
882
882
|
receivingMobile?: string;
|
|
883
883
|
};
|
|
884
|
+
/** 商品名称 */
|
|
885
|
+
itemName: string;
|
|
886
|
+
/** 二级类目*/
|
|
887
|
+
categoryTwo: string;
|
|
884
888
|
}
|
|
885
889
|
/** 订单查询结果 */
|
|
886
890
|
export type QueryDataRes<K extends (keyof QueryDataBlockTypeMap)[]> = {
|