@be-link/ecommerce-backend-bff-service-node-sdk 0.1.16 → 0.1.17
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/cjs/bff/modules/pandora/trade/ros/orderQuery/service.d.ts +5 -5
- package/cjs/bff/modules/pandora/trade/ros/orderQuery/service.js +2 -2
- package/cjs/bff/modules/pandora/trade/ros/orderQuery/types.d.ts +10 -10
- package/esm/bff/modules/pandora/trade/ros/orderQuery/service.d.ts +5 -5
- package/esm/bff/modules/pandora/trade/ros/orderQuery/service.mjs +2 -2
- package/esm/bff/modules/pandora/trade/ros/orderQuery/types.d.ts +10 -10
- package/package.json +1 -1
|
@@ -4,9 +4,9 @@ import type { StandardResponse } from '../../../../../../types';
|
|
|
4
4
|
export declare class PandoraRosOrderQueryService extends BaseService implements RosOrderQueryService.QueryByWebController {
|
|
5
5
|
protected prefixUrl: string;
|
|
6
6
|
orderList(request: RosOrderQueryService.Request.IRefundOrderList): Promise<StandardResponse<any[]>>;
|
|
7
|
-
list(request: RosOrderQueryService.Request.IRefundList): Promise<StandardResponse<RosOrderQueryService.Response.
|
|
8
|
-
orderExport(request: RosOrderQueryService.Request.IRefundExportOrderData): Promise<StandardResponse<RosOrderQueryService.Response.
|
|
9
|
-
getApplyRefundInfo(request: RosOrderQueryService.Request.IRefundGetApplyRefundInfo): Promise<StandardResponse<RosOrderQueryService.Response.
|
|
10
|
-
getRefundCouponInfo(request: RosOrderQueryService.Request.IRefundGetRefundCouponInfo): Promise<StandardResponse<RosOrderQueryService.Response.
|
|
11
|
-
countPendingOrders(
|
|
7
|
+
list(request: RosOrderQueryService.Request.IRefundList): Promise<StandardResponse<RosOrderQueryService.Response.IRefundList>>;
|
|
8
|
+
orderExport(request: RosOrderQueryService.Request.IRefundExportOrderData): Promise<StandardResponse<RosOrderQueryService.Response.IRefundExportOrderData>>;
|
|
9
|
+
getApplyRefundInfo(request: RosOrderQueryService.Request.IRefundGetApplyRefundInfo): Promise<StandardResponse<RosOrderQueryService.Response.IRefundGetApplyRefundInfo>>;
|
|
10
|
+
getRefundCouponInfo(request: RosOrderQueryService.Request.IRefundGetRefundCouponInfo): Promise<StandardResponse<RosOrderQueryService.Response.IRefundGetRefundCouponInfo>>;
|
|
11
|
+
countPendingOrders(): Promise<StandardResponse<RosOrderQueryService.Response.IRefundCountPendingOrders>>;
|
|
12
12
|
}
|
|
@@ -25,8 +25,8 @@ class PandoraRosOrderQueryService extends BaseService_1.default {
|
|
|
25
25
|
getRefundCouponInfo(request) {
|
|
26
26
|
return this.request(this.getRefundCouponInfo, request);
|
|
27
27
|
}
|
|
28
|
-
countPendingOrders(
|
|
29
|
-
return this.request(this.countPendingOrders
|
|
28
|
+
countPendingOrders() {
|
|
29
|
+
return this.request(this.countPendingOrders);
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
exports.PandoraRosOrderQueryService = PandoraRosOrderQueryService;
|
|
@@ -9,18 +9,18 @@ export declare namespace RosOrderQueryService {
|
|
|
9
9
|
type IRefundGetRefundCouponInfo = ROS.RosOrderQueryTypes.Request.IGetRefundCouponInfo;
|
|
10
10
|
}
|
|
11
11
|
namespace Response {
|
|
12
|
-
type
|
|
13
|
-
type
|
|
14
|
-
type
|
|
15
|
-
type
|
|
16
|
-
type
|
|
12
|
+
type IRefundList = ROS.RosOrderQueryTypes.Response.IList;
|
|
13
|
+
type IRefundExportOrderData = ROS.RosOrderQueryTypes.Response.IExportOrderData;
|
|
14
|
+
type IRefundGetApplyRefundInfo = ROS.RosOrderQueryTypes.Response.IGetApplyRefundInfo;
|
|
15
|
+
type IRefundGetRefundCouponInfo = ROS.RosOrderQueryTypes.Response.IGetRefundCouponInfo;
|
|
16
|
+
type IRefundCountPendingOrders = ROS.RosOrderQueryTypes.Response.ICountPendingOrders;
|
|
17
17
|
}
|
|
18
18
|
interface QueryByWebController {
|
|
19
19
|
orderList(request: Request.IRefundOrderList, req?: any): Promise<StandardResponse<any[]>>;
|
|
20
|
-
list(request: Request.IRefundList, req?: any): Promise<StandardResponse<Response.
|
|
21
|
-
orderExport(request: Request.IRefundExportOrderData, req?: any): Promise<StandardResponse<Response.
|
|
22
|
-
getApplyRefundInfo(request: Request.IRefundGetApplyRefundInfo, req?: any): Promise<StandardResponse<Response.
|
|
23
|
-
getRefundCouponInfo(request: Request.IRefundGetRefundCouponInfo, req?: any): Promise<StandardResponse<Response.
|
|
24
|
-
countPendingOrders(): Promise<StandardResponse<Response.
|
|
20
|
+
list(request: Request.IRefundList, req?: any): Promise<StandardResponse<Response.IRefundList>>;
|
|
21
|
+
orderExport(request: Request.IRefundExportOrderData, req?: any): Promise<StandardResponse<Response.IRefundExportOrderData>>;
|
|
22
|
+
getApplyRefundInfo(request: Request.IRefundGetApplyRefundInfo, req?: any): Promise<StandardResponse<Response.IRefundGetApplyRefundInfo>>;
|
|
23
|
+
getRefundCouponInfo(request: Request.IRefundGetRefundCouponInfo, req?: any): Promise<StandardResponse<Response.IRefundGetRefundCouponInfo>>;
|
|
24
|
+
countPendingOrders(): Promise<StandardResponse<Response.IRefundCountPendingOrders>>;
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -4,9 +4,9 @@ import type { StandardResponse } from '../../../../../../types';
|
|
|
4
4
|
export declare class PandoraRosOrderQueryService extends BaseService implements RosOrderQueryService.QueryByWebController {
|
|
5
5
|
protected prefixUrl: string;
|
|
6
6
|
orderList(request: RosOrderQueryService.Request.IRefundOrderList): Promise<StandardResponse<any[]>>;
|
|
7
|
-
list(request: RosOrderQueryService.Request.IRefundList): Promise<StandardResponse<RosOrderQueryService.Response.
|
|
8
|
-
orderExport(request: RosOrderQueryService.Request.IRefundExportOrderData): Promise<StandardResponse<RosOrderQueryService.Response.
|
|
9
|
-
getApplyRefundInfo(request: RosOrderQueryService.Request.IRefundGetApplyRefundInfo): Promise<StandardResponse<RosOrderQueryService.Response.
|
|
10
|
-
getRefundCouponInfo(request: RosOrderQueryService.Request.IRefundGetRefundCouponInfo): Promise<StandardResponse<RosOrderQueryService.Response.
|
|
11
|
-
countPendingOrders(
|
|
7
|
+
list(request: RosOrderQueryService.Request.IRefundList): Promise<StandardResponse<RosOrderQueryService.Response.IRefundList>>;
|
|
8
|
+
orderExport(request: RosOrderQueryService.Request.IRefundExportOrderData): Promise<StandardResponse<RosOrderQueryService.Response.IRefundExportOrderData>>;
|
|
9
|
+
getApplyRefundInfo(request: RosOrderQueryService.Request.IRefundGetApplyRefundInfo): Promise<StandardResponse<RosOrderQueryService.Response.IRefundGetApplyRefundInfo>>;
|
|
10
|
+
getRefundCouponInfo(request: RosOrderQueryService.Request.IRefundGetRefundCouponInfo): Promise<StandardResponse<RosOrderQueryService.Response.IRefundGetRefundCouponInfo>>;
|
|
11
|
+
countPendingOrders(): Promise<StandardResponse<RosOrderQueryService.Response.IRefundCountPendingOrders>>;
|
|
12
12
|
}
|
|
@@ -19,7 +19,7 @@ export class PandoraRosOrderQueryService extends BaseService {
|
|
|
19
19
|
getRefundCouponInfo(request) {
|
|
20
20
|
return this.request(this.getRefundCouponInfo, request);
|
|
21
21
|
}
|
|
22
|
-
countPendingOrders(
|
|
23
|
-
return this.request(this.countPendingOrders
|
|
22
|
+
countPendingOrders() {
|
|
23
|
+
return this.request(this.countPendingOrders);
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -9,18 +9,18 @@ export declare namespace RosOrderQueryService {
|
|
|
9
9
|
type IRefundGetRefundCouponInfo = ROS.RosOrderQueryTypes.Request.IGetRefundCouponInfo;
|
|
10
10
|
}
|
|
11
11
|
namespace Response {
|
|
12
|
-
type
|
|
13
|
-
type
|
|
14
|
-
type
|
|
15
|
-
type
|
|
16
|
-
type
|
|
12
|
+
type IRefundList = ROS.RosOrderQueryTypes.Response.IList;
|
|
13
|
+
type IRefundExportOrderData = ROS.RosOrderQueryTypes.Response.IExportOrderData;
|
|
14
|
+
type IRefundGetApplyRefundInfo = ROS.RosOrderQueryTypes.Response.IGetApplyRefundInfo;
|
|
15
|
+
type IRefundGetRefundCouponInfo = ROS.RosOrderQueryTypes.Response.IGetRefundCouponInfo;
|
|
16
|
+
type IRefundCountPendingOrders = ROS.RosOrderQueryTypes.Response.ICountPendingOrders;
|
|
17
17
|
}
|
|
18
18
|
interface QueryByWebController {
|
|
19
19
|
orderList(request: Request.IRefundOrderList, req?: any): Promise<StandardResponse<any[]>>;
|
|
20
|
-
list(request: Request.IRefundList, req?: any): Promise<StandardResponse<Response.
|
|
21
|
-
orderExport(request: Request.IRefundExportOrderData, req?: any): Promise<StandardResponse<Response.
|
|
22
|
-
getApplyRefundInfo(request: Request.IRefundGetApplyRefundInfo, req?: any): Promise<StandardResponse<Response.
|
|
23
|
-
getRefundCouponInfo(request: Request.IRefundGetRefundCouponInfo, req?: any): Promise<StandardResponse<Response.
|
|
24
|
-
countPendingOrders(): Promise<StandardResponse<Response.
|
|
20
|
+
list(request: Request.IRefundList, req?: any): Promise<StandardResponse<Response.IRefundList>>;
|
|
21
|
+
orderExport(request: Request.IRefundExportOrderData, req?: any): Promise<StandardResponse<Response.IRefundExportOrderData>>;
|
|
22
|
+
getApplyRefundInfo(request: Request.IRefundGetApplyRefundInfo, req?: any): Promise<StandardResponse<Response.IRefundGetApplyRefundInfo>>;
|
|
23
|
+
getRefundCouponInfo(request: Request.IRefundGetRefundCouponInfo, req?: any): Promise<StandardResponse<Response.IRefundGetRefundCouponInfo>>;
|
|
24
|
+
countPendingOrders(): Promise<StandardResponse<Response.IRefundCountPendingOrders>>;
|
|
25
25
|
}
|
|
26
26
|
}
|