@be-link/ecommerce-trade-service-node-sdk 0.1.37 → 0.1.38

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.
@@ -83,7 +83,6 @@ export declare namespace PosOrderQueryService {
83
83
  statusList?: ENUM.OrderStatus[];
84
84
  orderTypeList?: ENUM.OrderType[];
85
85
  refundStatusList?: ENUM.OrderRefundStatus[];
86
- verificationStatusList?: ENUM.OrderVerificationStatus[];
87
86
  productPickList?: string[];
88
87
  productDispatchList?: string[];
89
88
  createdAt?: Dto.ITimeRange;
@@ -187,7 +186,6 @@ export declare namespace PosOrderQueryService {
187
186
  pointsNum: number;
188
187
  orderStatus: ENUM.OrderStatus;
189
188
  refundStatus: ENUM.OrderRefundStatus;
190
- verificationStatus: ENUM.OrderVerificationStatus;
191
189
  receiverName: string;
192
190
  receiverPhone: string;
193
191
  productPick: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/ecommerce-trade-service-node-sdk",
3
- "version": "0.1.37",
3
+ "version": "0.1.38",
4
4
  "description": "EcommerceTradeService Node.js SDK",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/types.d.ts CHANGED
@@ -13,7 +13,6 @@ export interface ITradeOrder {
13
13
  status: ENUM.OrderStatus;
14
14
  payStatus: ENUM.OrderPayStatus;
15
15
  refundStatus: ENUM.OrderRefundStatus;
16
- verificationStatus: ENUM.OrderVerificationStatus;
17
16
  storeId: string;
18
17
  liveRoomId: string;
19
18
  totalAmount: number;
@@ -251,6 +250,10 @@ export interface RosOrderPayload {
251
250
  refundWay: ENUM.ReverseRefundWay;
252
251
  /** 退款份数 */
253
252
  quantity: number;
253
+ /** 退款金额 */
254
+ refundAmount: number;
255
+ /** 直播间ID */
256
+ liveRoomId: string;
254
257
  }
255
258
  export interface RosOrderHeaders {
256
259
  /** 是否全单退(0=否,1=是)退最后一份也算全单退 */