@be-link/ecommerce-client-backend-service-node-sdk 0.0.12 → 0.0.13
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.
|
@@ -8,7 +8,7 @@ declare class RoomServiceClass extends BaseService implements RoomService.BaseCo
|
|
|
8
8
|
detail(request: RoomService.Request.Detail): Promise<RoomService.Response.Detail>;
|
|
9
9
|
share(request: RoomService.Request.Share): Promise<RoomService.Response.Share>;
|
|
10
10
|
uploadShareCover(request: RoomService.Request.UploadShareCover): Promise<RoomService.Response.UploadShareCover>;
|
|
11
|
-
getShareCover(request: RoomService.Request.
|
|
11
|
+
getShareCover(request: RoomService.Request.GetShareCover): Promise<RoomService.Response.GetShareCover>;
|
|
12
12
|
settle(request: RoomService.Request.settle): Promise<RoomService.Response.settle>;
|
|
13
13
|
roomStatus(request: RoomService.Request.RoomStatus): Promise<RoomService.Response.RoomStatus>;
|
|
14
14
|
getBindStore(request: RoomService.Request.GetBindStore): Promise<RoomService.Response.GetBindStore>;
|
package/modules/room/types.d.ts
CHANGED
|
@@ -31,7 +31,7 @@ export declare namespace RoomService {
|
|
|
31
31
|
/**
|
|
32
32
|
* 获取封面
|
|
33
33
|
*/
|
|
34
|
-
interface
|
|
34
|
+
interface GetShareCover {
|
|
35
35
|
/** 直播间id */
|
|
36
36
|
id: string;
|
|
37
37
|
}
|
|
@@ -122,7 +122,7 @@ export declare namespace RoomService {
|
|
|
122
122
|
/**
|
|
123
123
|
* 获取封面
|
|
124
124
|
*/
|
|
125
|
-
interface
|
|
125
|
+
interface GetShareCover {
|
|
126
126
|
/** 直播间id */
|
|
127
127
|
id: string;
|
|
128
128
|
/** 名称 */
|
|
@@ -173,7 +173,7 @@ export declare namespace RoomService {
|
|
|
173
173
|
list(request: Request.List, req?: FastifyRequest): Promise<Response.List>;
|
|
174
174
|
detail(request: Request.Detail, req?: FastifyRequest): Promise<Response.Detail>;
|
|
175
175
|
share(request: Request.Share, req?: FastifyRequest): Promise<Response.Share>;
|
|
176
|
-
getShareCover(request: Request.
|
|
176
|
+
getShareCover(request: Request.GetShareCover, req?: FastifyRequest): Promise<Response.GetShareCover>;
|
|
177
177
|
uploadShareCover(request: Request.UploadShareCover, req?: FastifyRequest): Promise<Response.UploadShareCover>;
|
|
178
178
|
settle(request: Request.settle, req?: FastifyRequest): Promise<Response.settle>;
|
|
179
179
|
roomStatus(request: Request.RoomStatus, req?: FastifyRequest): Promise<Response.RoomStatus>;
|