@be-link/pos-cli-nodejs 1.0.99 → 1.0.100
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/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ITradeOrderTourMaterialInfo } from '../../../types';
|
|
2
2
|
import BaseService from '../service';
|
|
3
3
|
import { Service } from './types';
|
|
4
4
|
declare class OrderTouristMaterialService extends BaseService implements Service.Controller {
|
|
5
5
|
protected prefixUrl: string;
|
|
6
6
|
get(request: Service.Request.IGet): Promise<ITradeOrderTourMaterialInfo>;
|
|
7
7
|
queryExists(request: Service.Request.IQueryExists): Promise<Record<string, boolean>>;
|
|
8
|
-
getTourMaterialInfo(request: Service.Request.IGetTourMaterialInfo): Promise<
|
|
8
|
+
getTourMaterialInfo(request: Service.Request.IGetTourMaterialInfo): Promise<Service.Response.IGetTourMaterialInfo>;
|
|
9
9
|
}
|
|
10
10
|
declare const orderTouristMaterialService: OrderTouristMaterialService;
|
|
11
11
|
export default orderTouristMaterialService;
|
|
@@ -24,6 +24,6 @@ export declare namespace Service {
|
|
|
24
24
|
/** 查询订单上是否存在商品出行材料快照信息 */
|
|
25
25
|
queryExists(request: Request.IQueryExists): Promise<Record<string, boolean>>;
|
|
26
26
|
/** 获取商品出行材料快照信息 */
|
|
27
|
-
getTourMaterialInfo(request: Request.IGetTourMaterialInfo): Promise<
|
|
27
|
+
getTourMaterialInfo(request: Request.IGetTourMaterialInfo): Promise<Response.IGetTourMaterialInfo>;
|
|
28
28
|
}
|
|
29
29
|
}
|