@be-link/pos-cli-nodejs 0.0.130 → 0.0.131

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.130",
3
+ "version": "0.0.131",
4
4
  "description": "正向订单服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -4,23 +4,23 @@ export declare namespace Service {
4
4
  namespace Request {
5
5
  interface createOrderInvoice {
6
6
  /** 快照:订单ID */
7
- tradeOrderId: string;
7
+ tradeOrderId?: string;
8
8
  /** 开票类型 */
9
- invoiceType: string;
9
+ invoiceType?: string;
10
10
  /** 发票抬头 */
11
- invoiceHeader: string;
11
+ invoiceHeader?: string;
12
12
  /** 发票抬头类型 */
13
- invoiceHeaderType: string;
13
+ invoiceHeaderType?: string;
14
14
  /** 税号 */
15
- taxNumber: string;
15
+ taxNumber?: string;
16
16
  /** address */
17
- address: string;
17
+ address?: string;
18
18
  /** 注册电话 */
19
- mobile: string;
19
+ mobile?: string;
20
20
  /** 开户银行 */
21
- bankBase: string;
21
+ bankBase?: string;
22
22
  /** 银行账号 */
23
- bankAccount: string;
23
+ bankAccount?: string;
24
24
  /** 收货地址 */
25
25
  receivingExtraInfo?: {
26
26
  /** 收货地址 */
package/types.d.ts CHANGED
@@ -837,37 +837,37 @@ export interface QueryDataBlockTypeMap {
837
837
  }
838
838
  export interface IPositiveOrderInvoice {
839
839
  /** ID */
840
- id: string;
840
+ id?: string;
841
841
  /** status */
842
- status: string;
842
+ status?: string;
843
843
  /** 创建时间 */
844
- createdAt: number;
844
+ createdAt?: number;
845
845
  /** 更新时间 */
846
- updatedAt: number;
846
+ updatedAt?: number;
847
847
  /** 是否删除 0否1是 */
848
- isDeleted: number;
848
+ isDeleted?: number;
849
849
  /** 快照:订单ID */
850
- tradeOrderId: string;
850
+ tradeOrderId?: string;
851
851
  /** 开票类型 */
852
- invoiceType: string;
852
+ invoiceType?: string;
853
853
  /** 发票抬头 */
854
- invoiceHeader: string;
854
+ invoiceHeader?: string;
855
855
  /** 发票抬头类型 */
856
- invoiceHeaderType: string;
856
+ invoiceHeaderType?: string;
857
857
  /** 税号 */
858
- taxNumber: string;
858
+ taxNumber?: string;
859
859
  /** address */
860
- address: string;
860
+ address?: string;
861
861
  /** 注册电话 */
862
- mobile: string;
862
+ mobile?: string;
863
863
  /** 开户银行 */
864
- bankBase: string;
864
+ bankBase?: string;
865
865
  /** 银行账号 */
866
- bankAccount: string;
866
+ bankAccount?: string;
867
867
  /** url */
868
- url: string;
868
+ url?: string;
869
869
  /** 开票方 */
870
- invoiceBase: string;
870
+ invoiceBase?: string;
871
871
  /** 收货地址 */
872
872
  receivingExtraInfo?: {
873
873
  /** 收货地址 */