@be-link/pos-cli-nodejs 0.0.124 → 0.0.126

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 +39 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/pos-cli-nodejs",
3
- "version": "0.0.124",
3
+ "version": "0.0.126",
4
4
  "description": "正向订单服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/types.d.ts CHANGED
@@ -835,6 +835,45 @@ export interface QueryDataBlockTypeMap {
835
835
  /** 营销信息 */
836
836
  promotionInfo: IPositivePromotionInfo[];
837
837
  }
838
+ export interface IPositiveOrderInvoice {
839
+ /** ID */
840
+ id: string;
841
+ /** status */
842
+ status: string;
843
+ /** 创建时间 */
844
+ createdAt: number;
845
+ /** 更新时间 */
846
+ updatedAt: number;
847
+ /** 是否删除 0否1是 */
848
+ isDeleted: number;
849
+ /** 快照:订单ID */
850
+ tradeOrderId: string;
851
+ /** 开票类型 */
852
+ invoiceType: string;
853
+ /** 发票抬头 */
854
+ invoiceHeader: string;
855
+ /** 发票抬头类型 */
856
+ invoiceHeaderType: string;
857
+ /** 税号 */
858
+ taxNumber: string;
859
+ /** address */
860
+ address: string;
861
+ /** 注册电话 */
862
+ mobile: string;
863
+ /** 开户银行 */
864
+ bankBase: string;
865
+ /** 银行账号 */
866
+ bankAccount: string;
867
+ /** 收货地址 */
868
+ receivingExtraInfo?: {
869
+ /** 收货地址 */
870
+ receivingAddress?: number;
871
+ /** 收件人 */
872
+ receivingName?: string;
873
+ /** 收件电话 */
874
+ receivingMobile?: string;
875
+ };
876
+ }
838
877
  /** 订单查询结果 */
839
878
  export type QueryDataRes<K extends (keyof QueryDataBlockTypeMap)[]> = {
840
879
  [key in K[number]]: QueryDataBlockTypeMap[key];