@be-link/ecommerce-client-backend-service-node-sdk 0.1.87 → 0.1.88
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.
|
@@ -13,6 +13,7 @@ declare class RoomDataServiceClass extends BaseService implements RoomDataServic
|
|
|
13
13
|
getStoreAnalysisList(request: StoreAnalysisService.Request.List): Promise<StoreAnalysisService.Response.List>;
|
|
14
14
|
getStoreAnalysisExportData(request: StoreAnalysisService.Request.Export): Promise<StoreAnalysisService.Response.Export>;
|
|
15
15
|
getStoreAnalysisProductList(request: StoreAnalysisService.Request.ProductList): Promise<StoreAnalysisService.Response.ProductList>;
|
|
16
|
+
getStoreAnalysisProductExportData(request: StoreAnalysisService.Request.ProductExport): Promise<StoreAnalysisService.Response.Export>;
|
|
16
17
|
}
|
|
17
18
|
export declare const roomDataService: RoomDataServiceClass;
|
|
18
19
|
export default roomDataService;
|
|
@@ -55,6 +55,9 @@ let RoomDataServiceClass = class RoomDataServiceClass extends BaseService_1.defa
|
|
|
55
55
|
getStoreAnalysisProductList(request) {
|
|
56
56
|
return (0, http_1.callApi)(this.getApiUrl(this.getStoreAnalysisProductList), request);
|
|
57
57
|
}
|
|
58
|
+
getStoreAnalysisProductExportData(request) {
|
|
59
|
+
return (0, http_1.callApi)(this.getApiUrl(this.getStoreAnalysisProductExportData), request);
|
|
60
|
+
}
|
|
58
61
|
};
|
|
59
62
|
__decorate([
|
|
60
63
|
(0, tsoa_1.OperationId)('直播间列表接口(门店维度)'),
|
|
@@ -111,6 +114,11 @@ __decorate([
|
|
|
111
114
|
(0, tsoa_1.Post)('get-store-analysis-product-list'),
|
|
112
115
|
__param(0, (0, tsoa_1.Body)())
|
|
113
116
|
], RoomDataServiceClass.prototype, "getStoreAnalysisProductList", null);
|
|
117
|
+
__decorate([
|
|
118
|
+
(0, tsoa_1.OperationId)('门店商品导出'),
|
|
119
|
+
(0, tsoa_1.Post)('get-store-analysis-product-export-data'),
|
|
120
|
+
__param(0, (0, tsoa_1.Body)())
|
|
121
|
+
], RoomDataServiceClass.prototype, "getStoreAnalysisProductExportData", null);
|
|
114
122
|
RoomDataServiceClass = __decorate([
|
|
115
123
|
(0, tsoa_1.Route)('room-data'),
|
|
116
124
|
(0, tsoa_1.Tags)('RoomData')
|