@yolo-croket-dev/amqp-access 0.0.7 → 0.0.8

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.
Files changed (29) hide show
  1. package/elastic-service/amqp.elastic-service.module.d.ts +2 -0
  2. package/elastic-service/amqp.elastic-service.module.js +27 -0
  3. package/elastic-service/amqp.elastic-service.provider.d.ts +4 -0
  4. package/elastic-service/amqp.elastic-service.provider.js +21 -0
  5. package/elastic-service/amqp.elastic-service.service.d.ts +13 -0
  6. package/elastic-service/amqp.elastic-service.service.js +45 -0
  7. package/elastic-service/index.d.ts +3 -0
  8. package/elastic-service/index.js +19 -0
  9. package/index.d.ts +3 -0
  10. package/index.js +3 -0
  11. package/package.json +1 -1
  12. package/selection-server/amqp.selection-server.module.d.ts +2 -0
  13. package/selection-server/amqp.selection-server.module.js +33 -0
  14. package/selection-server/amqp.selection-server.provider.d.ts +4 -0
  15. package/selection-server/amqp.selection-server.provider.js +21 -0
  16. package/selection-server/index.d.ts +3 -0
  17. package/selection-server/index.js +19 -0
  18. package/selection-server/services/amqp.selection-frame-connect.service.d.ts +16 -0
  19. package/selection-server/services/amqp.selection-frame-connect.service.js +51 -0
  20. package/selection-server/services/amqp.selection-frame-data.service.d.ts +21 -0
  21. package/selection-server/services/amqp.selection-frame-data.service.js +68 -0
  22. package/selection-server/services/amqp.selection-frame-guide.service.d.ts +14 -0
  23. package/selection-server/services/amqp.selection-frame-guide.service.js +45 -0
  24. package/selection-server/services/amqp.selection-frame.service.d.ts +22 -0
  25. package/selection-server/services/amqp.selection-frame.service.js +69 -0
  26. package/selection-server/services/index.d.ts +4 -0
  27. package/selection-server/services/index.js +20 -0
  28. package/user-service/amqp.user-service.service.d.ts +5 -1
  29. package/user-service/amqp.user-service.service.js +12 -0
@@ -0,0 +1,2 @@
1
+ export declare class AmqpElasticServiceModule {
2
+ }
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ Object.defineProperty(exports, "__esModule", { value: true });
9
+ exports.AmqpElasticServiceModule = void 0;
10
+ const common_1 = require("@nestjs/common");
11
+ const amqp_elastic_service_provider_1 = require("./amqp.elastic-service.provider");
12
+ const amqp_elastic_service_service_1 = require("./amqp.elastic-service.service");
13
+ let AmqpElasticServiceModule = class AmqpElasticServiceModule {
14
+ };
15
+ AmqpElasticServiceModule = __decorate([
16
+ (0, common_1.Module)({
17
+ providers: [
18
+ amqp_elastic_service_provider_1.ElasticServiceProvider,
19
+ amqp_elastic_service_service_1.AmqpElasticService,
20
+ ],
21
+ exports: [
22
+ amqp_elastic_service_provider_1.ElasticServiceProvider,
23
+ amqp_elastic_service_service_1.AmqpElasticService,
24
+ ],
25
+ })
26
+ ], AmqpElasticServiceModule);
27
+ exports.AmqpElasticServiceModule = AmqpElasticServiceModule;
@@ -0,0 +1,4 @@
1
+ export declare const ElasticServiceProvider: {
2
+ provide: string;
3
+ useFactory: () => import("@nestjs/microservices").ClientProxy & import("@nestjs/microservices").Closeable;
4
+ };
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ElasticServiceProvider = void 0;
4
+ /* eslint-disable @typescript-eslint/no-explicit-any */
5
+ const microservices_1 = require("@nestjs/microservices");
6
+ const { AMQP_URL, ELASTIC_SERVICE } = process.env;
7
+ exports.ElasticServiceProvider = {
8
+ provide: 'ELASTIC_SERVICE_PROVIDER',
9
+ useFactory: () => microservices_1.ClientProxyFactory.create({
10
+ transport: microservices_1.Transport.RMQ,
11
+ options: {
12
+ urls: [AMQP_URL],
13
+ queue: ELASTIC_SERVICE || 'ELASTIC_SERVICE',
14
+ noAck: false,
15
+ queueOptions: {
16
+ durable: true,
17
+ noAssert: true,
18
+ },
19
+ },
20
+ }),
21
+ };
@@ -0,0 +1,13 @@
1
+ import { ClientProxy } from '@nestjs/microservices';
2
+ import { AbstractParam } from '@yolo-croket-dev/core';
3
+ import { CreateAndUpdateEsSelectionFrameDatasPayload, ESStoreItemSearchDataPayload, ESStoreItemSearchDataResult, SearchEsSelectionFrameDataPayload, SearchEsSelectionFrameDataResult, DeleteEsSelectionFrameDataPayload, CreateAndUpdateEsSelectionFrameDataPayload } from '@yolo-croket-dev/dto-v2/elastic-search-service';
4
+ export declare class AmqpElasticService {
5
+ private readonly client;
6
+ private readonly amqpManager;
7
+ constructor(client: ClientProxy);
8
+ syncCreateAndUpdateSelectionFrameDataToElasticSearch(payload: CreateAndUpdateEsSelectionFrameDataPayload, param: AbstractParam): Promise<void>;
9
+ syncCreateAndUpdateSelectionFrameDataToElasticSearchAmqp(payload: CreateAndUpdateEsSelectionFrameDatasPayload, param: AbstractParam): Promise<void>;
10
+ syncDeleteSelectionFrameDataToElasticsearch(payload: DeleteEsSelectionFrameDataPayload, param: AbstractParam): Promise<void>;
11
+ searchElasticSearchStoreItemAmqp(payload: ESStoreItemSearchDataPayload, param: AbstractParam): Promise<ESStoreItemSearchDataResult>;
12
+ searchEsSelectionFrameData(payload: SearchEsSelectionFrameDataPayload, param: AbstractParam): Promise<SearchEsSelectionFrameDataResult>;
13
+ }
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ var __param = (this && this.__param) || function (paramIndex, decorator) {
12
+ return function (target, key) { decorator(target, key, paramIndex); }
13
+ };
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.AmqpElasticService = void 0;
16
+ const common_1 = require("@nestjs/common");
17
+ const microservices_1 = require("@nestjs/microservices");
18
+ const functions_1 = require("@yolo-croket-dev/core/functions");
19
+ let AmqpElasticService = class AmqpElasticService {
20
+ constructor(client) {
21
+ this.client = client;
22
+ this.amqpManager = new functions_1.AmqpManagement(this.client);
23
+ }
24
+ async syncCreateAndUpdateSelectionFrameDataToElasticSearch(payload, param) {
25
+ return this.amqpManager.call('es 셀렉션 프레임 데이터 생성 및 수정 데이터 싱크', 'es-selection-frame-data.create-and-update', payload, param, { isErrorThrowing: true });
26
+ }
27
+ async syncCreateAndUpdateSelectionFrameDataToElasticSearchAmqp(payload, param) {
28
+ return this.amqpManager.call('es 셀렉션 프레임 데이터 생성 및 수정 bulk 데이터 싱크', 'es-selection-frame-data.create-and-update-bulk', payload, param, { isErrorThrowing: true });
29
+ }
30
+ async syncDeleteSelectionFrameDataToElasticsearch(payload, param) {
31
+ return this.amqpManager.call('es 셀렉션 프레임 데이터 삭제 데이터 싱크', 'es-selection-frame-data.delete', payload, param, { isErrorThrowing: true });
32
+ }
33
+ async searchElasticSearchStoreItemAmqp(payload, param) {
34
+ return this.amqpManager.call('엘라스틱 상품 검색', 'ES_STORE_ITEM_SEARCH_DATA', payload, param, { isErrorThrowing: true });
35
+ }
36
+ async searchEsSelectionFrameData(payload, param) {
37
+ return this.amqpManager.call('es 셀렉션 프레임 데이터 조회', 'es-selection-frame-data.search', payload, param, { isErrorThrowing: true });
38
+ }
39
+ };
40
+ AmqpElasticService = __decorate([
41
+ (0, common_1.Injectable)(),
42
+ __param(0, (0, common_1.Inject)('ELASTIC_SERVICE_PROVIDER')),
43
+ __metadata("design:paramtypes", [microservices_1.ClientProxy])
44
+ ], AmqpElasticService);
45
+ exports.AmqpElasticService = AmqpElasticService;
@@ -0,0 +1,3 @@
1
+ export * from './amqp.elastic-service.module';
2
+ export * from './amqp.elastic-service.provider';
3
+ export * from './amqp.elastic-service.service';
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./amqp.elastic-service.module"), exports);
18
+ __exportStar(require("./amqp.elastic-service.provider"), exports);
19
+ __exportStar(require("./amqp.elastic-service.service"), exports);
package/index.d.ts CHANGED
@@ -1,2 +1,5 @@
1
1
  export * from './order-server';
2
2
  export * from './notification-service';
3
+ export * from './user-service';
4
+ export * from './elastic-service';
5
+ export * from './selection-server';
package/index.js CHANGED
@@ -16,3 +16,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./order-server"), exports);
18
18
  __exportStar(require("./notification-service"), exports);
19
+ __exportStar(require("./user-service"), exports);
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",
3
+ "version": "0.0.8",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -0,0 +1,2 @@
1
+ export declare class AmqpSelectionServerModule {
2
+ }
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ Object.defineProperty(exports, "__esModule", { value: true });
9
+ exports.AmqpSelectionServerModule = void 0;
10
+ const common_1 = require("@nestjs/common");
11
+ const amqp_selection_server_provider_1 = require("./amqp.selection-server.provider");
12
+ const services_1 = require("./services");
13
+ let AmqpSelectionServerModule = class AmqpSelectionServerModule {
14
+ };
15
+ AmqpSelectionServerModule = __decorate([
16
+ (0, common_1.Module)({
17
+ providers: [
18
+ amqp_selection_server_provider_1.SelectionServerProvider,
19
+ services_1.AmqpSelectionFrameConnectService,
20
+ services_1.AmqpSelectionFrameDataService,
21
+ services_1.AmqpSelectionFrameGuideService,
22
+ services_1.AmqpSelectionFrameService,
23
+ ],
24
+ exports: [
25
+ amqp_selection_server_provider_1.SelectionServerProvider,
26
+ services_1.AmqpSelectionFrameConnectService,
27
+ services_1.AmqpSelectionFrameDataService,
28
+ services_1.AmqpSelectionFrameGuideService,
29
+ services_1.AmqpSelectionFrameService,
30
+ ],
31
+ })
32
+ ], AmqpSelectionServerModule);
33
+ exports.AmqpSelectionServerModule = AmqpSelectionServerModule;
@@ -0,0 +1,4 @@
1
+ export declare const SelectionServerProvider: {
2
+ provide: string;
3
+ useFactory: () => import("@nestjs/microservices").ClientProxy & import("@nestjs/microservices").Closeable;
4
+ };
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SelectionServerProvider = void 0;
4
+ /* eslint-disable @typescript-eslint/no-explicit-any */
5
+ const microservices_1 = require("@nestjs/microservices");
6
+ const { AMQP_URL, SELECTION_SERVER } = process.env;
7
+ exports.SelectionServerProvider = {
8
+ provide: 'SELECTION_SERVER_PROVIDER',
9
+ useFactory: () => microservices_1.ClientProxyFactory.create({
10
+ transport: microservices_1.Transport.RMQ,
11
+ options: {
12
+ urls: [AMQP_URL],
13
+ queue: SELECTION_SERVER || 'SELECTION_SERVER',
14
+ noAck: false,
15
+ queueOptions: {
16
+ durable: true,
17
+ noAssert: true,
18
+ },
19
+ },
20
+ }),
21
+ };
@@ -0,0 +1,3 @@
1
+ export * from './amqp.selection-server.module';
2
+ export * from './amqp.selection-server.provider';
3
+ export * from './services';
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./amqp.selection-server.module"), exports);
18
+ __exportStar(require("./amqp.selection-server.provider"), exports);
19
+ __exportStar(require("./services"), exports);
@@ -0,0 +1,16 @@
1
+ import { ClientProxy } from '@nestjs/microservices';
2
+ import { AbstractParam } from '@yolo-croket-dev/core';
3
+ /** @dto -v2 */
4
+ import { CreateSelectionItemConnectBulkPayload, CreateSelectionItemConnectBulkResult, DeleteSelectionItemConnectBulkPayload, DeleteSelectionItemConnectsBySelectionFrameIdPayload, SearchSelectionItemConnectForAdminsPayload, SearchSelectionItemConnectForAdminsResult, SearchSelectionItemConnectsByStoreItemIdsPayload, SearchSelectionItemConnectsByStoreItemIdsResult, UpdateSelectionItemConnectPayload } from '@yolo-croket-dev/dto-v2/user-service';
5
+ export declare class AmqpSelectionFrameConnectService {
6
+ private readonly client;
7
+ private readonly amqpManager;
8
+ constructor(client: ClientProxy);
9
+ createSelectionItemConnectBulk(payload: CreateSelectionItemConnectBulkPayload, param: AbstractParam): Promise<CreateSelectionItemConnectBulkResult>;
10
+ checkUpdateSelectionItemConnectData(payload: UpdateSelectionItemConnectPayload, param: AbstractParam): Promise<void>;
11
+ updateSelectionItemConnect(payload: UpdateSelectionItemConnectPayload, param: AbstractParam): Promise<void>;
12
+ searchSelectionItemConnectForAdmins(payload: SearchSelectionItemConnectForAdminsPayload, param: AbstractParam): Promise<SearchSelectionItemConnectForAdminsResult>;
13
+ deleteSelectionItemConnectBulk(payload: DeleteSelectionItemConnectBulkPayload, param: AbstractParam): Promise<void>;
14
+ deleteSelectionItemConnectsBySelectionFrameId(payload: DeleteSelectionItemConnectsBySelectionFrameIdPayload, param: AbstractParam): Promise<void>;
15
+ searchSelectionItemConnectsByStoreItemIds(payload: SearchSelectionItemConnectsByStoreItemIdsPayload, param: AbstractParam): Promise<SearchSelectionItemConnectsByStoreItemIdsResult>;
16
+ }
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ var __param = (this && this.__param) || function (paramIndex, decorator) {
12
+ return function (target, key) { decorator(target, key, paramIndex); }
13
+ };
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.AmqpSelectionFrameConnectService = void 0;
16
+ const common_1 = require("@nestjs/common");
17
+ const microservices_1 = require("@nestjs/microservices");
18
+ const functions_1 = require("@yolo-croket-dev/core/functions");
19
+ let AmqpSelectionFrameConnectService = class AmqpSelectionFrameConnectService {
20
+ constructor(client) {
21
+ this.client = client;
22
+ this.amqpManager = new functions_1.AmqpManagement(this.client);
23
+ }
24
+ async createSelectionItemConnectBulk(payload, param) {
25
+ return this.amqpManager.call('', 'selection-item-connect.create-bulk', payload, param, { isErrorThrowing: true });
26
+ }
27
+ async checkUpdateSelectionItemConnectData(payload, param) {
28
+ return this.amqpManager.call('', 'selection-item-connect.can-update', payload, param, { isErrorThrowing: true });
29
+ }
30
+ async updateSelectionItemConnect(payload, param) {
31
+ return this.amqpManager.call('', 'selection-item-connect.update', payload, param, { isErrorThrowing: true });
32
+ }
33
+ async searchSelectionItemConnectForAdmins(payload, param) {
34
+ return this.amqpManager.call('', 'selection-item-connect.get.for-admins', payload, param, { isErrorThrowing: true });
35
+ }
36
+ async deleteSelectionItemConnectBulk(payload, param) {
37
+ return this.amqpManager.call('', 'selection-item-connect.delete.bulk', payload, param, { isErrorThrowing: true });
38
+ }
39
+ async deleteSelectionItemConnectsBySelectionFrameId(payload, param) {
40
+ return this.amqpManager.call('', 'selection-item-connect.delete.by-selection-frame-id', payload, param, { isErrorThrowing: true });
41
+ }
42
+ async searchSelectionItemConnectsByStoreItemIds(payload, param) {
43
+ return this.amqpManager.call('', 'selection-item-connect.get.by-store-item-ids', payload, param, { isErrorThrowing: true });
44
+ }
45
+ };
46
+ AmqpSelectionFrameConnectService = __decorate([
47
+ (0, common_1.Injectable)(),
48
+ __param(0, (0, common_1.Inject)('SELECTION_SERVER_PROVIDER')),
49
+ __metadata("design:paramtypes", [microservices_1.ClientProxy])
50
+ ], AmqpSelectionFrameConnectService);
51
+ exports.AmqpSelectionFrameConnectService = AmqpSelectionFrameConnectService;
@@ -0,0 +1,21 @@
1
+ import { ClientProxy } from '@nestjs/microservices';
2
+ import { AbstractParam } from '@yolo-croket-dev/core';
3
+ /** @dto -v2 */
4
+ import { CreateSelectionFrameDataPayload, CreateSelectionFrameDataResult, SearchSelectionFrameChildDatasPayload, SearchSelectionFrameChildDatasResult, SearchSelectionFrameLargeDatasResult, UpdateSelectionFrameDataPayload, UpdateSelectionFrameDataResult, UpdateSelectionFrameChildDataSortPayload, GetSelectionFrameDataForEsPayload, GetSelectionFrameDataForEsResult, SearchSelectionFrameDatasForSortEditResult, SearchSelectionFrameDatasForSortEditPayload, UpdateSelectionFrameLargeDataSortPayload, GetSelectionFrameDataIdsByIdsPayload, GetSelectionFrameDataIdsByIdsResult, SearchSelectionFrameLargeDatasByStoreItemIdPayload, SearchSelectionFrameLargeDatasByStoreItemIdResult, GetSelectionFrameDatasForEsPayload, GetSelectionFrameDatasForEsResult, SearchSelectionFrameChildIsPickDatasPayload, SearchSelectionFrameChildIsPickDatasResult } from '@yolo-croket-dev/dto-v2/user-service/selection-frame-data';
5
+ export declare class AmqpSelectionFrameDataService {
6
+ private readonly client;
7
+ private readonly amqpManager;
8
+ constructor(client: ClientProxy);
9
+ createSelectionFrameData(payload: CreateSelectionFrameDataPayload, param: AbstractParam): Promise<CreateSelectionFrameDataResult>;
10
+ updateSelectionFrameData(payload: UpdateSelectionFrameDataPayload, param: AbstractParam): Promise<UpdateSelectionFrameDataResult>;
11
+ searchSelectionFrameLargeDatas(payload: void, param: AbstractParam): Promise<SearchSelectionFrameLargeDatasResult>;
12
+ searchSelectionFrameChildDatas(payload: SearchSelectionFrameChildDatasPayload, param: AbstractParam): Promise<SearchSelectionFrameChildDatasResult>;
13
+ updateSelectionFrameLargeDataSort(payload: UpdateSelectionFrameLargeDataSortPayload, param: AbstractParam): Promise<void>;
14
+ updateSelectionFrameChildDataSort(payload: UpdateSelectionFrameChildDataSortPayload, param: AbstractParam): Promise<void>;
15
+ getSelectionFrameDataForEs(payload: GetSelectionFrameDataForEsPayload, param: AbstractParam): Promise<GetSelectionFrameDataForEsResult>;
16
+ searchSelectionFrameDatasForSortEdit(payload: SearchSelectionFrameDatasForSortEditPayload, param: AbstractParam): Promise<SearchSelectionFrameDatasForSortEditResult>;
17
+ getSelectionFrameDataIdsByIds(payload: GetSelectionFrameDataIdsByIdsPayload, param: AbstractParam): Promise<GetSelectionFrameDataIdsByIdsResult>;
18
+ searchSelectionFrameLargeDatasByStoreItemId(payload: SearchSelectionFrameLargeDatasByStoreItemIdPayload, param: AbstractParam): Promise<SearchSelectionFrameLargeDatasByStoreItemIdResult>;
19
+ getSelectionFrameDatasForEs(payload: GetSelectionFrameDatasForEsPayload, param: AbstractParam): Promise<GetSelectionFrameDatasForEsResult>;
20
+ searchSelectionFrameChildIsPickDatas(payload: SearchSelectionFrameChildIsPickDatasPayload, param: AbstractParam): Promise<SearchSelectionFrameChildIsPickDatasResult>;
21
+ }
@@ -0,0 +1,68 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ var __param = (this && this.__param) || function (paramIndex, decorator) {
12
+ return function (target, key) { decorator(target, key, paramIndex); }
13
+ };
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.AmqpSelectionFrameDataService = void 0;
16
+ const common_1 = require("@nestjs/common");
17
+ const microservices_1 = require("@nestjs/microservices");
18
+ const functions_1 = require("@yolo-croket-dev/core/functions");
19
+ let AmqpSelectionFrameDataService = class AmqpSelectionFrameDataService {
20
+ constructor(client) {
21
+ this.client = client;
22
+ this.amqpManager = new functions_1.AmqpManagement(this.client);
23
+ }
24
+ // eslint-disable-next-line max-len
25
+ async createSelectionFrameData(payload, param) {
26
+ return this.amqpManager.call('셀렉션 데이터 등록', 'selection-frame-data.create', payload, param, { isErrorThrowing: true });
27
+ }
28
+ // eslint-disable-next-line max-len
29
+ async updateSelectionFrameData(payload, param) {
30
+ return this.amqpManager.call('셀렉션 데이터 수정', 'selection-frame-data.update', payload, param, { isErrorThrowing: true });
31
+ }
32
+ async searchSelectionFrameLargeDatas(payload, param) {
33
+ return this.amqpManager.call('셀렉션 프레임 대분류 데이터 리스트 조회', 'selection-frame-data.get.large-list', payload, param, { isErrorThrowing: true });
34
+ }
35
+ async searchSelectionFrameChildDatas(payload, param) {
36
+ return this.amqpManager.call('셀렉션 프레임 하위 데이터 리스트 조회', 'selection-frame-data.get.child-list', payload, param, { isErrorThrowing: true });
37
+ }
38
+ async updateSelectionFrameLargeDataSort(payload, param) {
39
+ return this.amqpManager.call('셀렉션 프레임 부모 데이터 정렬 순서 수정', 'selection-frame-data.update.large-sort', payload, param, { isErrorThrowing: true });
40
+ }
41
+ async updateSelectionFrameChildDataSort(payload, param) {
42
+ return this.amqpManager.call('셀렉션 프레임 자식 데이터 정렬 순서 수정', 'selection-frame-data.update.child-sort', payload, param, { isErrorThrowing: true });
43
+ }
44
+ async getSelectionFrameDataForEs(payload, param) {
45
+ return this.amqpManager.call('elastic-service용 셀렉션 프레임 조회', 'selection-frame-data.get.info-for-es', payload, param, { isErrorThrowing: true });
46
+ }
47
+ async searchSelectionFrameDatasForSortEdit(payload, param) {
48
+ return this.amqpManager.call('셀렉션 프레임 데이터 리스트 조회 (정렬 수정 페이지 디폴트 조회.)', 'selection-frame-data.get.list-for-sort-edit', payload, param, { isErrorThrowing: true });
49
+ }
50
+ async getSelectionFrameDataIdsByIds(payload, param) {
51
+ return this.amqpManager.call('해당 타입의 셀렉션 프레임 데이터가 존재하지는 체크', 'selection-frame-data.get-ids.by-ids', payload, param, { isErrorThrowing: true });
52
+ }
53
+ async searchSelectionFrameLargeDatasByStoreItemId(payload, param) {
54
+ return this.amqpManager.call('스토어 상품 ID에 연결된 selectionFrameData 대 타이틀 리스트 가져오기', 'selection-frame-data.get.large-datas-by-store-item-id', payload, param, { isErrorThrowing: true });
55
+ }
56
+ async getSelectionFrameDatasForEs(payload, param) {
57
+ return this.amqpManager.call('elastic-service용 셀렉션 프레임 리스트 조회', 'selection-frame-data.get.infos-for-es', payload, param, { isErrorThrowing: true });
58
+ }
59
+ async searchSelectionFrameChildIsPickDatas(payload, param) {
60
+ return this.amqpManager.call('isPick 연결 상품이 있는 셀렉션 프레임 자식 데이터 리스트 조회', 'selection-frame-data.get.is-pick.child-list', payload, param, { isErrorThrowing: true });
61
+ }
62
+ };
63
+ AmqpSelectionFrameDataService = __decorate([
64
+ (0, common_1.Injectable)(),
65
+ __param(0, (0, common_1.Inject)('SELECTION_SERVER_PROVIDER')),
66
+ __metadata("design:paramtypes", [microservices_1.ClientProxy])
67
+ ], AmqpSelectionFrameDataService);
68
+ exports.AmqpSelectionFrameDataService = AmqpSelectionFrameDataService;
@@ -0,0 +1,14 @@
1
+ import { ClientProxy } from '@nestjs/microservices';
2
+ import { AbstractParam } from '@yolo-croket-dev/core';
3
+ /** @dto -v2 */
4
+ import { CreateSelectionFrameGuidePayload, CreateSelectionFrameGuideResult, DeleteSelectionFrameGuidePayload, SearchSelectionFrameGuidePayload, SearchSelectionFrameGuideResult, SearchSelectionFrameGuideTemplateNamesResult, SearchSelectionFrameGuidesResult } from '@yolo-croket-dev/dto-v2/user-service';
5
+ export declare class AmqpSelectionFrameGuideService {
6
+ private readonly client;
7
+ private readonly amqpManager;
8
+ constructor(client: ClientProxy);
9
+ createSelectionFrameGuide(payload: CreateSelectionFrameGuidePayload, param: AbstractParam): Promise<CreateSelectionFrameGuideResult>;
10
+ deleteSelectionFrameGuide(payload: DeleteSelectionFrameGuidePayload, param: AbstractParam): Promise<void>;
11
+ searchSelectionFrameGuide(payload: SearchSelectionFrameGuidePayload, param: AbstractParam): Promise<SearchSelectionFrameGuideResult>;
12
+ searchSelectionFrameGuideTemplateNames(payload: void, param: AbstractParam): Promise<SearchSelectionFrameGuideTemplateNamesResult>;
13
+ searchSelectionFrameGuides(payload: void, param: AbstractParam): Promise<SearchSelectionFrameGuidesResult>;
14
+ }
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ var __param = (this && this.__param) || function (paramIndex, decorator) {
12
+ return function (target, key) { decorator(target, key, paramIndex); }
13
+ };
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.AmqpSelectionFrameGuideService = void 0;
16
+ const common_1 = require("@nestjs/common");
17
+ const microservices_1 = require("@nestjs/microservices");
18
+ const functions_1 = require("@yolo-croket-dev/core/functions");
19
+ let AmqpSelectionFrameGuideService = class AmqpSelectionFrameGuideService {
20
+ constructor(client) {
21
+ this.client = client;
22
+ this.amqpManager = new functions_1.AmqpManagement(this.client);
23
+ }
24
+ async createSelectionFrameGuide(payload, param) {
25
+ return this.amqpManager.call('', 'selection-frame-guide.create', payload, param, { isErrorThrowing: true });
26
+ }
27
+ async deleteSelectionFrameGuide(payload, param) {
28
+ return this.amqpManager.call('', 'selection-frame-guide.delete', payload, param, { isErrorThrowing: true });
29
+ }
30
+ async searchSelectionFrameGuide(payload, param) {
31
+ return this.amqpManager.call('', 'selection-frame-guide.search', payload, param, { isErrorThrowing: true });
32
+ }
33
+ async searchSelectionFrameGuideTemplateNames(payload, param) {
34
+ return this.amqpManager.call('', 'selection-frame-guide.search-template-names', payload, param, { isErrorThrowing: true });
35
+ }
36
+ async searchSelectionFrameGuides(payload, param) {
37
+ return this.amqpManager.call('', 'selection-frame-guide.search-list', payload, param, { isErrorThrowing: true });
38
+ }
39
+ };
40
+ AmqpSelectionFrameGuideService = __decorate([
41
+ (0, common_1.Injectable)(),
42
+ __param(0, (0, common_1.Inject)('SELECTION_SERVER_PROVIDER')),
43
+ __metadata("design:paramtypes", [microservices_1.ClientProxy])
44
+ ], AmqpSelectionFrameGuideService);
45
+ exports.AmqpSelectionFrameGuideService = AmqpSelectionFrameGuideService;
@@ -0,0 +1,22 @@
1
+ import { ClientProxy } from '@nestjs/microservices';
2
+ import { AbstractParam } from '@yolo-croket-dev/core';
3
+ /** @dto -v2 */
4
+ import { CreateSelectionFramePayload, CreateSelectionFrameResult, DeleteSelectionFramePayload, SearchSelectionFramesForAdminPayload, UpdateSelectionFramePayload, SearchSelectionFramesForAdminResult, SearchSelectionFrameForAdminPayload, SearchSelectionFrameForAdminResult, SearchSelectionFramesForBuyerPayload, SearchSelectionFramesForBuyerResult, SearchTitleMatchingSelectionFramesPayload, SearchTitleMatchingSelectionFramesResult, SearchSelectionFrameIdsBySelectionFrameDataIdPayload, SearchSelectionFrameIdsBySelectionFrameDataIdResult, SearchSelectionFramesByIdsPayload, SearchSelectionFramesByIdsResult, SearchSelectionFramesStoreItemsByStoreItemIdPayload, SearchSelectionFramesStoreItemsByStoreItemIdResult, SearchSelectionFrameDataIdsBySelectionFrameIdPayload, SearchSelectionFrameDataIdsBySelectionFrameIdResult, SearchLargeSelectionDataTitlesPayload, SearchLargeSelectionDataTitlesResult, CreateSelectionFrameBulkPayload } from '@yolo-croket-dev/dto-v2/user-service';
5
+ export declare class AmqpSelectionFrameService {
6
+ private readonly client;
7
+ private readonly amqpManager;
8
+ constructor(client: ClientProxy);
9
+ createSelectionFrame(payload: CreateSelectionFramePayload, param: AbstractParam): Promise<CreateSelectionFrameResult>;
10
+ deleteSelectionFrame(payload: DeleteSelectionFramePayload, param: AbstractParam): Promise<void>;
11
+ updateSelectionFrame(payload: UpdateSelectionFramePayload, param: AbstractParam): Promise<void>;
12
+ searchSelectionFramesForAdmin(payload: SearchSelectionFramesForAdminPayload, param: AbstractParam): Promise<SearchSelectionFramesForAdminResult>;
13
+ searchSelectionFrameForAdmin(payload: SearchSelectionFrameForAdminPayload, param: AbstractParam): Promise<SearchSelectionFrameForAdminResult>;
14
+ searchSelectionFramesForBuyer(payload: SearchSelectionFramesForBuyerPayload, param: AbstractParam): Promise<SearchSelectionFramesForBuyerResult>;
15
+ searchTitleMatchingSelectionFrames(payload: SearchTitleMatchingSelectionFramesPayload, param: AbstractParam): Promise<SearchTitleMatchingSelectionFramesResult>;
16
+ searchSelectionFrameIdsBySelectionFrameDataId(payload: SearchSelectionFrameIdsBySelectionFrameDataIdPayload, param: AbstractParam): Promise<SearchSelectionFrameIdsBySelectionFrameDataIdResult>;
17
+ searchSelectionFramesByIds(payload: SearchSelectionFramesByIdsPayload, param: AbstractParam): Promise<SearchSelectionFramesByIdsResult>;
18
+ searchSelectionFramesStoreItemsByStoreItemId(payload: SearchSelectionFramesStoreItemsByStoreItemIdPayload, param: AbstractParam): Promise<SearchSelectionFramesStoreItemsByStoreItemIdResult>;
19
+ searchSelectionFrameDataIdsBySelectionFrameId(payload: SearchSelectionFrameDataIdsBySelectionFrameIdPayload, param: AbstractParam): Promise<SearchSelectionFrameDataIdsBySelectionFrameIdResult>;
20
+ searchLargeSelectionDataTitles(payload: SearchLargeSelectionDataTitlesPayload, param: AbstractParam): Promise<SearchLargeSelectionDataTitlesResult>;
21
+ createSelectionFrameBulk(payload: CreateSelectionFrameBulkPayload, param: AbstractParam): Promise<void>;
22
+ }
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ var __param = (this && this.__param) || function (paramIndex, decorator) {
12
+ return function (target, key) { decorator(target, key, paramIndex); }
13
+ };
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.AmqpSelectionFrameService = void 0;
16
+ const common_1 = require("@nestjs/common");
17
+ const microservices_1 = require("@nestjs/microservices");
18
+ const functions_1 = require("@yolo-croket-dev/core/functions");
19
+ let AmqpSelectionFrameService = class AmqpSelectionFrameService {
20
+ constructor(client) {
21
+ this.client = client;
22
+ this.amqpManager = new functions_1.AmqpManagement(this.client);
23
+ }
24
+ async createSelectionFrame(payload, param) {
25
+ return this.amqpManager.call('셀렉션 프레임 등록', 'selection-frame.create', payload, param, { isErrorThrowing: true });
26
+ }
27
+ async deleteSelectionFrame(payload, param) {
28
+ return this.amqpManager.call('셀렉션 프레임 삭제', 'selection-frame.delete', payload, param, { isErrorThrowing: true });
29
+ }
30
+ async updateSelectionFrame(payload, param) {
31
+ return this.amqpManager.call('셀렉션 프레임 수정', 'selection-frame.update', payload, param, { isErrorThrowing: true });
32
+ }
33
+ async searchSelectionFramesForAdmin(payload, param) {
34
+ return this.amqpManager.call('셀렉션 프레임 리스트 조회 -관리자-', 'selection-frame.get.admin-list', payload, param, { isErrorThrowing: true });
35
+ }
36
+ async searchSelectionFrameForAdmin(payload, param) {
37
+ return this.amqpManager.call('셀렉션 프레임 상세 조회 -관리자-', 'selection-frame.get.admin', payload, param, { isErrorThrowing: true });
38
+ }
39
+ async searchSelectionFramesForBuyer(payload, param) {
40
+ return this.amqpManager.call('구매자 셀렉션 프레임 상세 조회 (반환값은 리스트입니다.)', 'selection-frame.get.buyer-list', payload, param, { isErrorThrowing: true });
41
+ }
42
+ async searchTitleMatchingSelectionFrames(payload, param) {
43
+ return this.amqpManager.call('타이틀에 매칭되는 셀렉션 프레임 조회', 'selection-frame.get.title-match-list', payload, param, { isErrorThrowing: true });
44
+ }
45
+ async searchSelectionFrameIdsBySelectionFrameDataId(payload, param) {
46
+ return this.amqpManager.call('', 'selection-frame.get.ids-by-selection-frame-data-id', payload, param, { isErrorThrowing: true });
47
+ }
48
+ async searchSelectionFramesByIds(payload, param) {
49
+ return this.amqpManager.call('아이디 리스트로 셀렉션 프레임 리스트 조회', 'selection-frame.get.by-ids', payload, param, { isErrorThrowing: true });
50
+ }
51
+ async searchSelectionFramesStoreItemsByStoreItemId(payload, param) {
52
+ return this.amqpManager.call('', 'selection-frame.get.selection-frames-store-items-by-store-item-id', payload, param, { isErrorThrowing: true });
53
+ }
54
+ async searchSelectionFrameDataIdsBySelectionFrameId(payload, param) {
55
+ return this.amqpManager.call('셀렉션 프레임 아이디로 관련 셀렉션 프레임 데이터 아이디 리스트호출', 'selection-frame.get.selection-data-ids-by-selection-frame-id', payload, param, { isErrorThrowing: true });
56
+ }
57
+ async searchLargeSelectionDataTitles(payload, param) {
58
+ return this.amqpManager.call('', 'selection-frame.get.large-titles', payload, param, { isErrorThrowing: true });
59
+ }
60
+ async createSelectionFrameBulk(payload, param) {
61
+ return this.amqpManager.call('셀렉션 프레임 등록 - bulk', 'selection-frame.create-bulk', payload, param, { isErrorThrowing: true });
62
+ }
63
+ };
64
+ AmqpSelectionFrameService = __decorate([
65
+ (0, common_1.Injectable)(),
66
+ __param(0, (0, common_1.Inject)('SELECTION_SERVER_PROVIDER')),
67
+ __metadata("design:paramtypes", [microservices_1.ClientProxy])
68
+ ], AmqpSelectionFrameService);
69
+ exports.AmqpSelectionFrameService = AmqpSelectionFrameService;
@@ -0,0 +1,4 @@
1
+ export * from './amqp.selection-frame-connect.service';
2
+ export * from './amqp.selection-frame-data.service';
3
+ export * from './amqp.selection-frame-guide.service';
4
+ export * from './amqp.selection-frame.service';
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./amqp.selection-frame-connect.service"), exports);
18
+ __exportStar(require("./amqp.selection-frame-data.service"), exports);
19
+ __exportStar(require("./amqp.selection-frame-guide.service"), exports);
20
+ __exportStar(require("./amqp.selection-frame.service"), exports);
@@ -1,9 +1,13 @@
1
1
  import { ClientProxy } from '@nestjs/microservices';
2
2
  import { AbstractParam } from '@yolo-croket-dev/core';
3
- import { GetUsersForAdminPayload, GetUsersForAdminResult } from '@yolo-croket-dev/dto-v2/user-service';
3
+ import { GetStoreItemsForAdminPayload, GetStoreItemsForAdminResult, GetUsersForAdminPayload, GetUsersForAdminResult, UpdateStoreItemSelectionConnectInfosBulkPayload, GetStoreItemSaleStatusBulkPayload, GetStoreItemSaleStatusBulkResult, GetStoreItemLegaciesPayload, GetStoreItemLegaciesResult } from '@yolo-croket-dev/dto-v2/user-service';
4
4
  export declare class AmqpUserService {
5
5
  private readonly client;
6
6
  private readonly amqpManager;
7
7
  constructor(client: ClientProxy);
8
8
  getUsersForAdmin(payload: GetUsersForAdminPayload, param: AbstractParam): Promise<GetUsersForAdminResult>;
9
+ getStoreItemsForAdminAmqp(payload: GetStoreItemsForAdminPayload, param: AbstractParam): Promise<GetStoreItemsForAdminResult>;
10
+ updateStoreItemSelectionConnectInfosBulkAmqp(payload: UpdateStoreItemSelectionConnectInfosBulkPayload, param: AbstractParam): Promise<void>;
11
+ getStoreItemSaleStatusBulk(payload: GetStoreItemSaleStatusBulkPayload, param: AbstractParam): Promise<GetStoreItemSaleStatusBulkResult>;
12
+ searchStoreItemBySelectionFrameId(payload: GetStoreItemLegaciesPayload, param: AbstractParam): Promise<GetStoreItemLegaciesResult>;
9
13
  }
@@ -24,6 +24,18 @@ let AmqpUserService = class AmqpUserService {
24
24
  async getUsersForAdmin(payload, param) {
25
25
  return this.amqpManager.call('관리자를 위한 유저 정보 리스트 조회', 'user.get.for-admin', payload, param, { isErrorThrowing: true });
26
26
  }
27
+ async getStoreItemsForAdminAmqp(payload, param) {
28
+ return this.amqpManager.call('관리자를 위한 상품 정보 조회', 'store-item.get.for-admins', payload, param, { isErrorThrowing: true });
29
+ }
30
+ async updateStoreItemSelectionConnectInfosBulkAmqp(payload, param) {
31
+ return this.amqpManager.call('상품 선택 연결 정보 일괄 수정', 'store-item.update.selection-connect-infos-bulk', payload, param, { isErrorThrowing: true });
32
+ }
33
+ async getStoreItemSaleStatusBulk(payload, param) {
34
+ return this.amqpManager.call('상품 아이디로 판매 상태 일괄 조회', 'store-item.get.sale-status-bulk', payload, param, { isErrorThrowing: true });
35
+ }
36
+ async searchStoreItemBySelectionFrameId(payload, param) {
37
+ return this.amqpManager.call('셀렉션 연결 상품 데이터 조회', 'store-item.get.store-item-leyacies', payload, param, { isErrorThrowing: true });
38
+ }
27
39
  };
28
40
  AmqpUserService = __decorate([
29
41
  (0, common_1.Injectable)(),