@be-link/ecommerce-backend-bff-service-node-sdk 0.1.36 → 0.1.38
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/room/service.d.ts +5 -0
- package/cjs/bff/modules/pandora/room/service.js +7 -0
- package/cjs/bff/modules/pandora/room/types.d.ts +2 -0
- package/cjs/bff/modules/pandora/userManager/service/point.service.d.ts +0 -4
- package/cjs/bff/modules/pandora/userManager/service/point.service.js +0 -12
- package/cjs/bff/modules/pandora/userManager/types/point.types.d.ts +0 -4
- package/esm/bff/modules/pandora/room/service.d.ts +5 -0
- package/esm/bff/modules/pandora/room/service.mjs +7 -0
- package/esm/bff/modules/pandora/room/types.d.ts +2 -0
- package/esm/bff/modules/pandora/userManager/service/point.service.d.ts +0 -4
- package/esm/bff/modules/pandora/userManager/service/point.service.mjs +0 -12
- package/esm/bff/modules/pandora/userManager/types/point.types.d.ts +0 -4
- package/package.json +4 -4
|
@@ -80,4 +80,9 @@ export declare class PandoraRoomService extends BaseService implements Service.B
|
|
|
80
80
|
* @returns Promise,解析为标准响应格式
|
|
81
81
|
*/
|
|
82
82
|
getLiveStreamProductTop(request: Service.Request.LiveStreamProductTop): Promise<StandardResponse<Service.Response.LiveStreamProductTop>>;
|
|
83
|
+
/**
|
|
84
|
+
* 导出观众列表
|
|
85
|
+
* @returns Promise,解析为标准响应格式
|
|
86
|
+
*/
|
|
87
|
+
audienceExport(): Promise<StandardResponse<Service.Response.AudienceExport>>;
|
|
83
88
|
}
|
|
@@ -111,5 +111,12 @@ class PandoraRoomService extends BaseService_1.default {
|
|
|
111
111
|
getLiveStreamProductTop(request) {
|
|
112
112
|
return this.request(this.getLiveStreamProductTop, request);
|
|
113
113
|
}
|
|
114
|
+
/**
|
|
115
|
+
* 导出观众列表
|
|
116
|
+
* @returns Promise,解析为标准响应格式
|
|
117
|
+
*/
|
|
118
|
+
audienceExport() {
|
|
119
|
+
return this.request(this.audienceExport);
|
|
120
|
+
}
|
|
114
121
|
}
|
|
115
122
|
exports.PandoraRoomService = PandoraRoomService;
|
|
@@ -159,6 +159,7 @@ export declare namespace RoomService {
|
|
|
159
159
|
type AudienceList = dataType.Response.AudienceList;
|
|
160
160
|
type LiveStreamStatistics = dataType.Response.LiveStreamStatistics;
|
|
161
161
|
type LiveStreamProductTop = dataType.Response.LiveStreamProductTop;
|
|
162
|
+
type AudienceExport = dataType.Response.AudienceExport;
|
|
162
163
|
}
|
|
163
164
|
interface BaseController {
|
|
164
165
|
list(request: Request.List): Promise<StandardResponse<Response.List>>;
|
|
@@ -173,6 +174,7 @@ export declare namespace RoomService {
|
|
|
173
174
|
getAudienceList(request: Request.AudienceList): Promise<StandardResponse<Response.AudienceList>>;
|
|
174
175
|
getLiveStreamStatistics(request: Request.LiveStreamStatistics): Promise<StandardResponse<Response.LiveStreamStatistics>>;
|
|
175
176
|
getLiveStreamProductTop(request: Request.LiveStreamProductTop): Promise<StandardResponse<Response.LiveStreamProductTop>>;
|
|
177
|
+
audienceExport(): Promise<StandardResponse<Response.AudienceExport>>;
|
|
176
178
|
}
|
|
177
179
|
}
|
|
178
180
|
/**
|
|
@@ -4,10 +4,6 @@ import type { StandardResponse } from '../../../../../types';
|
|
|
4
4
|
export declare class PandoraPointManagementService extends BaseService implements PandoraPointManagementTypes.Controller {
|
|
5
5
|
protected prefixUrl: string;
|
|
6
6
|
adjustPoint(request: PandoraPointManagementTypes.Request.adjustPoint): Promise<StandardResponse<PandoraPointManagementTypes.Response.adjustPoint>>;
|
|
7
|
-
batchAdjustPoints(request: PandoraPointManagementTypes.Request.batchAdjustPoints): Promise<StandardResponse<PandoraPointManagementTypes.Response.batchAdjustPoints>>;
|
|
8
7
|
getUserPointInfo(request: PandoraPointManagementTypes.Request.getUserPointInfo): Promise<StandardResponse<PandoraPointManagementTypes.Response.getUserPointInfo>>;
|
|
9
8
|
getPointFlowList(request: PandoraPointManagementTypes.Request.getPointFlowList): Promise<StandardResponse<PandoraPointManagementTypes.Response.getPointFlowList>>;
|
|
10
|
-
getPointDetailList(request: PandoraPointManagementTypes.Request.getPointDetailList): Promise<StandardResponse<PandoraPointManagementTypes.Response.getPointDetailList>>;
|
|
11
|
-
freezeUserPoint(request: PandoraPointManagementTypes.Request.freezeUserPoint): Promise<StandardResponse<PandoraPointManagementTypes.Response.freezeUserPoint>>;
|
|
12
|
-
unfreezeUserPoint(request: PandoraPointManagementTypes.Request.unfreezeUserPoint): Promise<StandardResponse<PandoraPointManagementTypes.Response.unfreezeUserPoint>>;
|
|
13
9
|
}
|
|
@@ -13,23 +13,11 @@ class PandoraPointManagementService extends BaseService_1.default {
|
|
|
13
13
|
adjustPoint(request) {
|
|
14
14
|
return this.request(this.adjustPoint, request);
|
|
15
15
|
}
|
|
16
|
-
batchAdjustPoints(request) {
|
|
17
|
-
return this.request(this.batchAdjustPoints, request);
|
|
18
|
-
}
|
|
19
16
|
getUserPointInfo(request) {
|
|
20
17
|
return this.request(this.getUserPointInfo, request);
|
|
21
18
|
}
|
|
22
19
|
getPointFlowList(request) {
|
|
23
20
|
return this.request(this.getPointFlowList, request);
|
|
24
21
|
}
|
|
25
|
-
getPointDetailList(request) {
|
|
26
|
-
return this.request(this.getPointDetailList, request);
|
|
27
|
-
}
|
|
28
|
-
freezeUserPoint(request) {
|
|
29
|
-
return this.request(this.freezeUserPoint, request);
|
|
30
|
-
}
|
|
31
|
-
unfreezeUserPoint(request) {
|
|
32
|
-
return this.request(this.unfreezeUserPoint, request);
|
|
33
|
-
}
|
|
34
22
|
}
|
|
35
23
|
exports.PandoraPointManagementService = PandoraPointManagementService;
|
|
@@ -9,11 +9,7 @@ export declare namespace PandoraPointManagementTypes {
|
|
|
9
9
|
export import Response = UserPointServiceTypes.Response;
|
|
10
10
|
interface Controller {
|
|
11
11
|
adjustPoint(request: Request.adjustPoint): Promise<StandardResponse<Response.adjustPoint>>;
|
|
12
|
-
batchAdjustPoints(request: Request.batchAdjustPoints): Promise<StandardResponse<Response.batchAdjustPoints>>;
|
|
13
12
|
getUserPointInfo(request: Request.getUserPointInfo): Promise<StandardResponse<Response.getUserPointInfo>>;
|
|
14
13
|
getPointFlowList(request: Request.getPointFlowList): Promise<StandardResponse<Response.getPointFlowList>>;
|
|
15
|
-
getPointDetailList(request: Request.getPointDetailList): Promise<StandardResponse<Response.getPointDetailList>>;
|
|
16
|
-
freezeUserPoint(request: Request.freezeUserPoint): Promise<StandardResponse<Response.freezeUserPoint>>;
|
|
17
|
-
unfreezeUserPoint(request: Request.unfreezeUserPoint): Promise<StandardResponse<Response.unfreezeUserPoint>>;
|
|
18
14
|
}
|
|
19
15
|
}
|
|
@@ -80,4 +80,9 @@ export declare class PandoraRoomService extends BaseService implements Service.B
|
|
|
80
80
|
* @returns Promise,解析为标准响应格式
|
|
81
81
|
*/
|
|
82
82
|
getLiveStreamProductTop(request: Service.Request.LiveStreamProductTop): Promise<StandardResponse<Service.Response.LiveStreamProductTop>>;
|
|
83
|
+
/**
|
|
84
|
+
* 导出观众列表
|
|
85
|
+
* @returns Promise,解析为标准响应格式
|
|
86
|
+
*/
|
|
87
|
+
audienceExport(): Promise<StandardResponse<Service.Response.AudienceExport>>;
|
|
83
88
|
}
|
|
@@ -105,4 +105,11 @@ export class PandoraRoomService extends BaseService {
|
|
|
105
105
|
getLiveStreamProductTop(request) {
|
|
106
106
|
return this.request(this.getLiveStreamProductTop, request);
|
|
107
107
|
}
|
|
108
|
+
/**
|
|
109
|
+
* 导出观众列表
|
|
110
|
+
* @returns Promise,解析为标准响应格式
|
|
111
|
+
*/
|
|
112
|
+
audienceExport() {
|
|
113
|
+
return this.request(this.audienceExport);
|
|
114
|
+
}
|
|
108
115
|
}
|
|
@@ -159,6 +159,7 @@ export declare namespace RoomService {
|
|
|
159
159
|
type AudienceList = dataType.Response.AudienceList;
|
|
160
160
|
type LiveStreamStatistics = dataType.Response.LiveStreamStatistics;
|
|
161
161
|
type LiveStreamProductTop = dataType.Response.LiveStreamProductTop;
|
|
162
|
+
type AudienceExport = dataType.Response.AudienceExport;
|
|
162
163
|
}
|
|
163
164
|
interface BaseController {
|
|
164
165
|
list(request: Request.List): Promise<StandardResponse<Response.List>>;
|
|
@@ -173,6 +174,7 @@ export declare namespace RoomService {
|
|
|
173
174
|
getAudienceList(request: Request.AudienceList): Promise<StandardResponse<Response.AudienceList>>;
|
|
174
175
|
getLiveStreamStatistics(request: Request.LiveStreamStatistics): Promise<StandardResponse<Response.LiveStreamStatistics>>;
|
|
175
176
|
getLiveStreamProductTop(request: Request.LiveStreamProductTop): Promise<StandardResponse<Response.LiveStreamProductTop>>;
|
|
177
|
+
audienceExport(): Promise<StandardResponse<Response.AudienceExport>>;
|
|
176
178
|
}
|
|
177
179
|
}
|
|
178
180
|
/**
|
|
@@ -4,10 +4,6 @@ import type { StandardResponse } from '../../../../../types';
|
|
|
4
4
|
export declare class PandoraPointManagementService extends BaseService implements PandoraPointManagementTypes.Controller {
|
|
5
5
|
protected prefixUrl: string;
|
|
6
6
|
adjustPoint(request: PandoraPointManagementTypes.Request.adjustPoint): Promise<StandardResponse<PandoraPointManagementTypes.Response.adjustPoint>>;
|
|
7
|
-
batchAdjustPoints(request: PandoraPointManagementTypes.Request.batchAdjustPoints): Promise<StandardResponse<PandoraPointManagementTypes.Response.batchAdjustPoints>>;
|
|
8
7
|
getUserPointInfo(request: PandoraPointManagementTypes.Request.getUserPointInfo): Promise<StandardResponse<PandoraPointManagementTypes.Response.getUserPointInfo>>;
|
|
9
8
|
getPointFlowList(request: PandoraPointManagementTypes.Request.getPointFlowList): Promise<StandardResponse<PandoraPointManagementTypes.Response.getPointFlowList>>;
|
|
10
|
-
getPointDetailList(request: PandoraPointManagementTypes.Request.getPointDetailList): Promise<StandardResponse<PandoraPointManagementTypes.Response.getPointDetailList>>;
|
|
11
|
-
freezeUserPoint(request: PandoraPointManagementTypes.Request.freezeUserPoint): Promise<StandardResponse<PandoraPointManagementTypes.Response.freezeUserPoint>>;
|
|
12
|
-
unfreezeUserPoint(request: PandoraPointManagementTypes.Request.unfreezeUserPoint): Promise<StandardResponse<PandoraPointManagementTypes.Response.unfreezeUserPoint>>;
|
|
13
9
|
}
|
|
@@ -7,22 +7,10 @@ export class PandoraPointManagementService extends BaseService {
|
|
|
7
7
|
adjustPoint(request) {
|
|
8
8
|
return this.request(this.adjustPoint, request);
|
|
9
9
|
}
|
|
10
|
-
batchAdjustPoints(request) {
|
|
11
|
-
return this.request(this.batchAdjustPoints, request);
|
|
12
|
-
}
|
|
13
10
|
getUserPointInfo(request) {
|
|
14
11
|
return this.request(this.getUserPointInfo, request);
|
|
15
12
|
}
|
|
16
13
|
getPointFlowList(request) {
|
|
17
14
|
return this.request(this.getPointFlowList, request);
|
|
18
15
|
}
|
|
19
|
-
getPointDetailList(request) {
|
|
20
|
-
return this.request(this.getPointDetailList, request);
|
|
21
|
-
}
|
|
22
|
-
freezeUserPoint(request) {
|
|
23
|
-
return this.request(this.freezeUserPoint, request);
|
|
24
|
-
}
|
|
25
|
-
unfreezeUserPoint(request) {
|
|
26
|
-
return this.request(this.unfreezeUserPoint, request);
|
|
27
|
-
}
|
|
28
16
|
}
|
|
@@ -9,11 +9,7 @@ export declare namespace PandoraPointManagementTypes {
|
|
|
9
9
|
export import Response = UserPointServiceTypes.Response;
|
|
10
10
|
interface Controller {
|
|
11
11
|
adjustPoint(request: Request.adjustPoint): Promise<StandardResponse<Response.adjustPoint>>;
|
|
12
|
-
batchAdjustPoints(request: Request.batchAdjustPoints): Promise<StandardResponse<Response.batchAdjustPoints>>;
|
|
13
12
|
getUserPointInfo(request: Request.getUserPointInfo): Promise<StandardResponse<Response.getUserPointInfo>>;
|
|
14
13
|
getPointFlowList(request: Request.getPointFlowList): Promise<StandardResponse<Response.getPointFlowList>>;
|
|
15
|
-
getPointDetailList(request: Request.getPointDetailList): Promise<StandardResponse<Response.getPointDetailList>>;
|
|
16
|
-
freezeUserPoint(request: Request.freezeUserPoint): Promise<StandardResponse<Response.freezeUserPoint>>;
|
|
17
|
-
unfreezeUserPoint(request: Request.unfreezeUserPoint): Promise<StandardResponse<Response.unfreezeUserPoint>>;
|
|
18
14
|
}
|
|
19
15
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@be-link/ecommerce-backend-bff-service-node-sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.38",
|
|
4
4
|
"description": "EcommerceBackendBffService Node.js SDK",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "./cjs/index.js",
|
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
"@be-link/ecommerce-trade-service-node-sdk": "^0.1.25",
|
|
28
28
|
"@be-link/ecommerce-backend-user-service-node-sdk": "^0.1.11",
|
|
29
29
|
"@be-link/ecommerce-volcengine-open-api-sdk": "^1.0.22",
|
|
30
|
-
"@be-link/ecommerce-client-backend-service-node-sdk": "^0.1.
|
|
30
|
+
"@be-link/ecommerce-client-backend-service-node-sdk": "^0.1.14",
|
|
31
31
|
"@be-link/ecommerce-tag-service-node-sdk": "^0.1.1",
|
|
32
32
|
"@be-link/ecommerce-store-service-node-sdk": "^0.1.3",
|
|
33
33
|
"@be-link/ecommerce-promotion-service-node-sdk": "^0.1.3",
|
|
34
34
|
"axios": "^1.13.2",
|
|
35
|
-
"@be-link/ecommerce-user-service-node-sdk": "^0.1.
|
|
35
|
+
"@be-link/ecommerce-user-service-node-sdk": "^0.1.20",
|
|
36
36
|
"@be-link/ecommerce-product-service-node-sdk": "^0.1.4",
|
|
37
|
-
"@be-link/ecommerce-task-center-service-node-sdk": "^0.1.
|
|
37
|
+
"@be-link/ecommerce-task-center-service-node-sdk": "^0.1.11"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"tsoa": "^6.4.0",
|