@be-link/ecommerce-trade-service-node-sdk 0.0.31 → 0.0.33
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/modules/pos/orderQuery/types.d.ts +2 -2
- package/package.json +1 -1
- package/types.d.ts +0 -1
|
@@ -87,8 +87,6 @@ export declare namespace PosOrderQueryService {
|
|
|
87
87
|
orderId: string;
|
|
88
88
|
}
|
|
89
89
|
interface IGetOrderAddress {
|
|
90
|
-
/** 用户ID */
|
|
91
|
-
userId: string;
|
|
92
90
|
/** 订单ID */
|
|
93
91
|
orderId: string;
|
|
94
92
|
}
|
|
@@ -158,6 +156,7 @@ export declare namespace PosOrderQueryService {
|
|
|
158
156
|
orderId: string;
|
|
159
157
|
createdAt: number;
|
|
160
158
|
payTime: number;
|
|
159
|
+
deliveryTime: number;
|
|
161
160
|
source: ENUM.OrderSource;
|
|
162
161
|
platform: ENUM.OrderPlatform;
|
|
163
162
|
status: ENUM.OrderStatus;
|
|
@@ -199,6 +198,7 @@ export declare namespace PosOrderQueryService {
|
|
|
199
198
|
products: {
|
|
200
199
|
productId: string;
|
|
201
200
|
productName: string;
|
|
201
|
+
productImg: string;
|
|
202
202
|
specName: string;
|
|
203
203
|
specCode: string;
|
|
204
204
|
unitPrice: number;
|
package/package.json
CHANGED