@be-link/ecommerce-client-backend-service-node-sdk 0.1.41 → 0.1.43
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/modules/data/types.d.ts
CHANGED
|
@@ -249,6 +249,12 @@ export interface Audience {
|
|
|
249
249
|
source: ENUM.LIVE_STREAM_AUDIENCE.VIEW_TYPE;
|
|
250
250
|
/** 门店id */
|
|
251
251
|
storeId: string;
|
|
252
|
+
/** 门店名称 */
|
|
253
|
+
storeName: string;
|
|
254
|
+
/** BD 负责人 ID */
|
|
255
|
+
bdDisplayId: string;
|
|
256
|
+
/** BD 负责人姓名 */
|
|
257
|
+
bdName: string;
|
|
252
258
|
/** 用户id */
|
|
253
259
|
userId: string;
|
|
254
260
|
/** 用户名称 */
|
package/modules/rule/service.js
CHANGED
|
@@ -36,22 +36,22 @@ let RuleServiceClass = class RuleServiceClass extends BaseService_1.default {
|
|
|
36
36
|
};
|
|
37
37
|
__decorate([
|
|
38
38
|
(0, tsoa_1.OperationId)('创建直播间可见性规则'),
|
|
39
|
-
(0, tsoa_1.Post)('create'),
|
|
39
|
+
(0, tsoa_1.Post)('rule/create-room-visibility-rule'),
|
|
40
40
|
__param(0, (0, tsoa_1.Body)())
|
|
41
41
|
], RuleServiceClass.prototype, "createRoomVisibilityRule", null);
|
|
42
42
|
__decorate([
|
|
43
43
|
(0, tsoa_1.OperationId)('删除直播间可见性规则'),
|
|
44
|
-
(0, tsoa_1.Post)('delete'),
|
|
44
|
+
(0, tsoa_1.Post)('delete-room-visibility-rule'),
|
|
45
45
|
__param(0, (0, tsoa_1.Body)())
|
|
46
46
|
], RuleServiceClass.prototype, "deleteRoomVisibilityRule", null);
|
|
47
47
|
__decorate([
|
|
48
48
|
(0, tsoa_1.OperationId)('获取直播间可见性规则列表'),
|
|
49
|
-
(0, tsoa_1.Post)('list'),
|
|
49
|
+
(0, tsoa_1.Post)('get-room-visibility-rule-list'),
|
|
50
50
|
__param(0, (0, tsoa_1.Body)())
|
|
51
51
|
], RuleServiceClass.prototype, "getRoomVisibilityRuleList", null);
|
|
52
52
|
__decorate([
|
|
53
53
|
(0, tsoa_1.OperationId)('检查门店是否可见直播间'),
|
|
54
|
-
(0, tsoa_1.Post)('check'),
|
|
54
|
+
(0, tsoa_1.Post)('check-room-visibility-rule'),
|
|
55
55
|
__param(0, (0, tsoa_1.Body)())
|
|
56
56
|
], RuleServiceClass.prototype, "checkRoomVisibilityRule", null);
|
|
57
57
|
RuleServiceClass = __decorate([
|
package/modules/rule/types.d.ts
CHANGED