@yolo-croket-dev/amqp-access 0.0.7-jun.10 → 0.0.7-jun.12

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
@@ -2,3 +2,4 @@ export * from './order-server';
2
2
  export * from './notification-service';
3
3
  export * from './user-service';
4
4
  export * from './elastic-service';
5
+ export * from './selection-server';
package/index.js CHANGED
@@ -18,3 +18,4 @@ __exportStar(require("./order-server"), exports);
18
18
  __exportStar(require("./notification-service"), exports);
19
19
  __exportStar(require("./user-service"), exports);
20
20
  __exportStar(require("./elastic-service"), exports);
21
+ __exportStar(require("./selection-server"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.0.7-jun.10",
3
+ "version": "0.0.7-jun.12",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -1,2 +1,2 @@
1
- export declare class AmqpElasticServiceModule {
1
+ export declare class AmqpSelectionServerModule {
2
2
  }
@@ -6,13 +6,13 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
6
6
  return c > 3 && r && Object.defineProperty(target, key, r), r;
7
7
  };
8
8
  Object.defineProperty(exports, "__esModule", { value: true });
9
- exports.AmqpElasticServiceModule = void 0;
9
+ exports.AmqpSelectionServerModule = void 0;
10
10
  const common_1 = require("@nestjs/common");
11
11
  const amqp_selection_server_provider_1 = require("./amqp.selection-server.provider");
12
12
  const services_1 = require("./services");
13
- let AmqpElasticServiceModule = class AmqpElasticServiceModule {
13
+ let AmqpSelectionServerModule = class AmqpSelectionServerModule {
14
14
  };
15
- AmqpElasticServiceModule = __decorate([
15
+ AmqpSelectionServerModule = __decorate([
16
16
  (0, common_1.Module)({
17
17
  providers: [
18
18
  amqp_selection_server_provider_1.SelectionServerProvider,
@@ -29,5 +29,5 @@ AmqpElasticServiceModule = __decorate([
29
29
  services_1.AmqpSelectionFrameService,
30
30
  ],
31
31
  })
32
- ], AmqpElasticServiceModule);
33
- exports.AmqpElasticServiceModule = AmqpElasticServiceModule;
32
+ ], AmqpSelectionServerModule);
33
+ exports.AmqpSelectionServerModule = AmqpSelectionServerModule;
@@ -13,7 +13,7 @@ export declare class AmqpSelectionFrameService {
13
13
  searchSelectionFrameForAdmin(payload: SearchSelectionFrameForAdminPayload, param: AbstractParam): Promise<SearchSelectionFrameForAdminResult>;
14
14
  searchSelectionFramesForBuyer(payload: SearchSelectionFramesForBuyerPayload, param: AbstractParam): Promise<SearchSelectionFramesForBuyerResult>;
15
15
  searchTitleMatchingSelectionFrames(payload: SearchTitleMatchingSelectionFramesPayload, param: AbstractParam): Promise<SearchTitleMatchingSelectionFramesResult>;
16
- search(payload: SearchSelectionFrameIdsBySelectionFrameDataIdPayload, param: AbstractParam): Promise<SearchSelectionFrameIdsBySelectionFrameDataIdResult>;
16
+ searchSelectionFrameIdsBySelectionFrameDataId(payload: SearchSelectionFrameIdsBySelectionFrameDataIdPayload, param: AbstractParam): Promise<SearchSelectionFrameIdsBySelectionFrameDataIdResult>;
17
17
  searchSelectionFramesByIds(payload: SearchSelectionFramesByIdsPayload, param: AbstractParam): Promise<SearchSelectionFramesByIdsResult>;
18
18
  searchSelectionFramesStoreItemsByStoreItemId(payload: SearchSelectionFramesStoreItemsByStoreItemIdPayload, param: AbstractParam): Promise<SearchSelectionFramesStoreItemsByStoreItemIdResult>;
19
19
  searchSelectionFrameDataIdsBySelectionFrameId(payload: SearchSelectionFrameDataIdsBySelectionFrameIdPayload, param: AbstractParam): Promise<SearchSelectionFrameDataIdsBySelectionFrameIdResult>;
@@ -42,7 +42,7 @@ let AmqpSelectionFrameService = class AmqpSelectionFrameService {
42
42
  async searchTitleMatchingSelectionFrames(payload, param) {
43
43
  return this.amqpManager.call('타이틀에 매칭되는 셀렉션 프레임 조회', 'selection-frame.get.title-match-list', payload, param, { isErrorThrowing: true });
44
44
  }
45
- async search(payload, param) {
45
+ async searchSelectionFrameIdsBySelectionFrameDataId(payload, param) {
46
46
  return this.amqpManager.call('', 'selection-frame.get.ids-by-selection-frame-data-id', payload, param, { isErrorThrowing: true });
47
47
  }
48
48
  async searchSelectionFramesByIds(payload, param) {