@be-link/pos-cli-nodejs 1.0.194 → 1.0.195
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/index.d.ts +2 -1
- package/index.js +3 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ import queryByStoreService from './pos/modules/orderQuery/store';
|
|
|
8
8
|
import queryByUserService from './pos/modules/orderQuery/user';
|
|
9
9
|
import queryByWebService from './pos/modules/orderQuery/web';
|
|
10
10
|
import queryBySupplierService from './pos/modules/orderQuery/supplier';
|
|
11
|
+
import queryByPandoraService from './pos/modules/orderQuery/pandora';
|
|
11
12
|
import orderNoteService from './pos/modules/orderNote/service';
|
|
12
13
|
import orderJobService from './pos/modules/orderJob/service';
|
|
13
14
|
import dataMigrateService from './pos/modules/dataMigrate/service';
|
|
@@ -19,7 +20,7 @@ import { VenueInfoProxy } from './utils/posProxy/venueInfoProxy';
|
|
|
19
20
|
import orderTouristMaterialService from './pos/modules/orderTourMaterial/service';
|
|
20
21
|
export {
|
|
21
22
|
/** 业务模块 */
|
|
22
|
-
orderCoreService, orderFulfillService, queryByCommodityService, queryByStoreService, queryByUserService, queryByWebService, queryBySupplierService, orderNoteService, orderJobService, dataMigrateService, orderTouristMaterialService,
|
|
23
|
+
orderCoreService, orderFulfillService, queryByCommodityService, queryByStoreService, queryByUserService, queryByWebService, queryBySupplierService, queryByPandoraService, orderNoteService, orderJobService, dataMigrateService, orderTouristMaterialService,
|
|
23
24
|
/** 枚举类 */
|
|
24
25
|
PosConstants, PosDto,
|
|
25
26
|
/** 错误类 */
|
package/index.js
CHANGED
|
@@ -26,7 +26,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
26
26
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
-
exports.VenueInfoProxy = exports.ComboInfoProxy = exports.SkuInfoProxy = exports.ItemInfoProxy = exports.PosProxyFactory = exports.BizError = exports.PosDto = exports.PosConstants = exports.orderTouristMaterialService = exports.dataMigrateService = exports.orderJobService = exports.orderNoteService = exports.queryBySupplierService = exports.queryByWebService = exports.queryByUserService = exports.queryByStoreService = exports.queryByCommodityService = exports.orderFulfillService = exports.orderCoreService = void 0;
|
|
29
|
+
exports.VenueInfoProxy = exports.ComboInfoProxy = exports.SkuInfoProxy = exports.ItemInfoProxy = exports.PosProxyFactory = exports.BizError = exports.PosDto = exports.PosConstants = exports.orderTouristMaterialService = exports.dataMigrateService = exports.orderJobService = exports.orderNoteService = exports.queryByPandoraService = exports.queryBySupplierService = exports.queryByWebService = exports.queryByUserService = exports.queryByStoreService = exports.queryByCommodityService = exports.orderFulfillService = exports.orderCoreService = void 0;
|
|
30
30
|
const PosConstants = __importStar(require("vitality-meta/enums/pos"));
|
|
31
31
|
exports.PosConstants = PosConstants;
|
|
32
32
|
const PosDto = __importStar(require("./types"));
|
|
@@ -47,6 +47,8 @@ const web_1 = __importDefault(require("./pos/modules/orderQuery/web"));
|
|
|
47
47
|
exports.queryByWebService = web_1.default;
|
|
48
48
|
const supplier_1 = __importDefault(require("./pos/modules/orderQuery/supplier"));
|
|
49
49
|
exports.queryBySupplierService = supplier_1.default;
|
|
50
|
+
const pandora_1 = __importDefault(require("./pos/modules/orderQuery/pandora"));
|
|
51
|
+
exports.queryByPandoraService = pandora_1.default;
|
|
50
52
|
const service_3 = __importDefault(require("./pos/modules/orderNote/service"));
|
|
51
53
|
exports.orderNoteService = service_3.default;
|
|
52
54
|
const service_4 = __importDefault(require("./pos/modules/orderJob/service"));
|