@be-link/ecommerce-client-backend-service-node-sdk 0.1.40 → 0.1.41

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/index.d.ts CHANGED
@@ -1,9 +1,11 @@
1
1
  export type { RoomService } from './modules/room/types';
2
2
  export type { DataService } from './modules/data/types';
3
3
  export type { DomainService } from './modules/domain/types';
4
+ export type { RuleService } from './modules/rule/types';
4
5
  export { roomService } from './modules/room/service';
5
6
  export { dataService } from './modules/data/service';
6
7
  export { domainService } from './modules/domain/service';
8
+ export { ruleService } from './modules/rule/service';
7
9
  export { ENUM as CLIENT_BACKEND_ENUM } from './enum';
8
10
  export type { Room, RoomAutoStartConfig, RoomLoopVideo, RoomTag, RoomBindStore } from './types';
9
11
  export type { Domain, Current } from './modules/domain/types';
package/index.js CHANGED
@@ -1,12 +1,14 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CLIENT_BACKEND_ENUM = exports.domainService = exports.dataService = exports.roomService = void 0;
3
+ exports.CLIENT_BACKEND_ENUM = exports.ruleService = exports.domainService = exports.dataService = exports.roomService = void 0;
4
4
  var service_1 = require("./modules/room/service");
5
5
  Object.defineProperty(exports, "roomService", { enumerable: true, get: function () { return service_1.roomService; } });
6
6
  var service_2 = require("./modules/data/service");
7
7
  Object.defineProperty(exports, "dataService", { enumerable: true, get: function () { return service_2.dataService; } });
8
8
  var service_3 = require("./modules/domain/service");
9
9
  Object.defineProperty(exports, "domainService", { enumerable: true, get: function () { return service_3.domainService; } });
10
+ var service_4 = require("./modules/rule/service");
11
+ Object.defineProperty(exports, "ruleService", { enumerable: true, get: function () { return service_4.ruleService; } });
10
12
  var enum_1 = require("./enum");
11
13
  Object.defineProperty(exports, "CLIENT_BACKEND_ENUM", { enumerable: true, get: function () { return enum_1.ENUM; } });
12
14
  // 服务.模块.枚举名称.枚举值 示例: DEMO_ENUM.ORDER_ENUM.STATUS.PENDING
@@ -50,7 +50,7 @@ __decorate([
50
50
  __param(0, (0, tsoa_1.Body)())
51
51
  ], RuleServiceClass.prototype, "getRoomVisibilityRuleList", null);
52
52
  __decorate([
53
- (0, tsoa_1.OperationId)('检查直播间可见性规则'),
53
+ (0, tsoa_1.OperationId)('检查门店是否可见直播间'),
54
54
  (0, tsoa_1.Post)('check'),
55
55
  __param(0, (0, tsoa_1.Body)())
56
56
  ], RuleServiceClass.prototype, "checkRoomVisibilityRule", null);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/ecommerce-client-backend-service-node-sdk",
3
- "version": "0.1.40",
3
+ "version": "0.1.41",
4
4
  "description": "EcommerceClientBackendService Node.js SDK",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",