@be-link/pos-cli-nodejs 0.0.134 → 0.0.136
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/types.d.ts +4 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -838,6 +838,8 @@ export interface QueryDataBlockTypeMap {
|
|
|
838
838
|
export interface IPositiveOrderInvoice {
|
|
839
839
|
/** ID */
|
|
840
840
|
id?: string;
|
|
841
|
+
/** itemId */
|
|
842
|
+
itemId?: string;
|
|
841
843
|
/** status */
|
|
842
844
|
status?: string;
|
|
843
845
|
/** 创建时间 */
|
|
@@ -868,6 +870,8 @@ export interface IPositiveOrderInvoice {
|
|
|
868
870
|
url?: string;
|
|
869
871
|
/** 开票方 */
|
|
870
872
|
invoiceBase?: string;
|
|
873
|
+
/** 开票金额 */
|
|
874
|
+
invoiceMoney?: number;
|
|
871
875
|
/** 收货地址 */
|
|
872
876
|
receivingExtraInfo?: {
|
|
873
877
|
/** 收货地址 */
|