@be-link/ecommerce-trade-service-node-sdk 0.1.17 → 0.1.19
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/index.d.ts
CHANGED
|
@@ -3,5 +3,6 @@ export { orderQueryByInternalService } from './orderQuery/internalService';
|
|
|
3
3
|
export { queryByUserService as orderQueryByUserService } from './orderQuery/userService';
|
|
4
4
|
export { PosOrderQueryService as PosOrderQueryTypes } from './orderQuery/types';
|
|
5
5
|
export { orderCoreByUserService } from './orderCore/userService';
|
|
6
|
+
export { orderCoreByInternalService } from './orderCore/internalService';
|
|
6
7
|
export { coreByWebService as orderCoreByWebService } from './orderCore/webService';
|
|
7
8
|
export { PosCoreService as PosOrderCoreTypes } from './orderCore/types';
|
package/modules/pos/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.orderCoreByWebService = exports.orderCoreByUserService = exports.orderQueryByUserService = exports.orderQueryByInternalService = exports.orderQueryByWebService = void 0;
|
|
3
|
+
exports.orderCoreByWebService = exports.orderCoreByInternalService = exports.orderCoreByUserService = exports.orderQueryByUserService = exports.orderQueryByInternalService = exports.orderQueryByWebService = void 0;
|
|
4
4
|
var webService_1 = require("./orderQuery/webService");
|
|
5
5
|
Object.defineProperty(exports, "orderQueryByWebService", { enumerable: true, get: function () { return webService_1.queryByWebService; } });
|
|
6
6
|
var internalService_1 = require("./orderQuery/internalService");
|
|
@@ -9,5 +9,7 @@ var userService_1 = require("./orderQuery/userService");
|
|
|
9
9
|
Object.defineProperty(exports, "orderQueryByUserService", { enumerable: true, get: function () { return userService_1.queryByUserService; } });
|
|
10
10
|
var userService_2 = require("./orderCore/userService");
|
|
11
11
|
Object.defineProperty(exports, "orderCoreByUserService", { enumerable: true, get: function () { return userService_2.orderCoreByUserService; } });
|
|
12
|
+
var internalService_2 = require("./orderCore/internalService");
|
|
13
|
+
Object.defineProperty(exports, "orderCoreByInternalService", { enumerable: true, get: function () { return internalService_2.orderCoreByInternalService; } });
|
|
12
14
|
var webService_2 = require("./orderCore/webService");
|
|
13
15
|
Object.defineProperty(exports, "orderCoreByWebService", { enumerable: true, get: function () { return webService_2.coreByWebService; } });
|
|
@@ -53,12 +53,8 @@ export declare namespace PosOrderQueryService {
|
|
|
53
53
|
orderId: string;
|
|
54
54
|
}
|
|
55
55
|
interface IGetOrderListForClientBackend {
|
|
56
|
-
/** 订单ID
|
|
56
|
+
/** 订单ID列表(最少1个,最多100个) */
|
|
57
57
|
orderIds: string[];
|
|
58
|
-
/** 页码(从0开始) */
|
|
59
|
-
pageIndex: number;
|
|
60
|
-
/** 每页数量 */
|
|
61
|
-
pageSize: number;
|
|
62
58
|
}
|
|
63
59
|
}
|
|
64
60
|
namespace Response {
|