@be-link/ecommerce-trade-service-node-sdk 0.0.22 → 0.0.24

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.
@@ -3,8 +3,6 @@ export declare namespace PosCoreService {
3
3
  namespace ByWeb {
4
4
  namespace Request {
5
5
  interface IShipOrder {
6
- /** 操作人 */
7
- operator: string;
8
6
  /** 订单ID */
9
7
  orderId: string;
10
8
  /** 发货方式:WITH_LOGISTICS-需物流发货,WITHOUT_LOGISTICS-无物流发货 */
@@ -15,8 +13,6 @@ export declare namespace PosCoreService {
15
13
  logisticsNo?: string;
16
14
  }
17
15
  interface IBatchShipOrder {
18
- /** 操作人 */
19
- operator: string;
20
16
  /** 发货方式:WITH_LOGISTICS-需物流发货,WITHOUT_LOGISTICS-无物流发货 */
21
17
  shipType: 'WITH_LOGISTICS' | 'WITHOUT_LOGISTICS';
22
18
  /** Excel文件URL */
@@ -31,12 +27,18 @@ export declare namespace PosCoreService {
31
27
  receiverName: string;
32
28
  /** 收货人手机号 */
33
29
  receiverPhone: string;
34
- /** 省 */
35
- province: string;
36
- /** */
37
- city: string;
38
- /** */
39
- district: string;
30
+ /** 省ID */
31
+ provinceId: string;
32
+ /** 省名称 */
33
+ provinceName: string;
34
+ /** 市ID */
35
+ cityId: string;
36
+ /** 市名称 */
37
+ cityName: string;
38
+ /** 区ID */
39
+ districtId: string;
40
+ /** 区名称 */
41
+ districtName: string;
40
42
  /** 详细地址 */
41
43
  detailAddress: string;
42
44
  }
@@ -97,6 +99,7 @@ export declare namespace PosCoreService {
97
99
  }
98
100
  interface IUpdateAddress {
99
101
  userId: string;
102
+ orderId: string;
100
103
  receiverName?: string;
101
104
  receiverPhone?: string;
102
105
  userAddressId?: string;
@@ -130,12 +130,18 @@ export declare namespace PosOrderQueryService {
130
130
  receiverName: string;
131
131
  /** 收货人手机号 */
132
132
  receiverPhone: string;
133
- /** 省 */
134
- province: string;
135
- /** */
136
- city: string;
137
- /** */
138
- district: string;
133
+ /** 省ID */
134
+ provinceId: string;
135
+ /** 省名称 */
136
+ provinceName: string;
137
+ /** 市ID */
138
+ cityId: string;
139
+ /** 市名称 */
140
+ cityName: string;
141
+ /** 区ID */
142
+ districtId: string;
143
+ /** 区名称 */
144
+ districtName: string;
139
145
  /** 详细地址 */
140
146
  detailAddress: string;
141
147
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/ecommerce-trade-service-node-sdk",
3
- "version": "0.0.22",
3
+ "version": "0.0.24",
4
4
  "description": "EcommerceTradeService Node.js SDK",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",