@yolo-croket-dev/amqp-access 0.0.14-jun.0 → 0.0.14
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/package.json
CHANGED
|
@@ -2,7 +2,6 @@ import { ClientProxy } from '@nestjs/microservices';
|
|
|
2
2
|
import { AbstractParam } from '@yolo-croket-dev/core';
|
|
3
3
|
/** @dto -v2 */
|
|
4
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
|
-
import { GetSelectionFrameAllDatasForEsPayload, GetSelectionFrameAllDatasForEsResult } from '@yolo-croket-dev/dto-v2/selection-server';
|
|
6
5
|
export declare class AmqpSelectionFrameDataService {
|
|
7
6
|
private readonly client;
|
|
8
7
|
private readonly amqpManager;
|
|
@@ -14,7 +13,6 @@ export declare class AmqpSelectionFrameDataService {
|
|
|
14
13
|
updateSelectionFrameLargeDataSort(payload: UpdateSelectionFrameLargeDataSortPayload, param: AbstractParam): Promise<void>;
|
|
15
14
|
updateSelectionFrameChildDataSort(payload: UpdateSelectionFrameChildDataSortPayload, param: AbstractParam): Promise<void>;
|
|
16
15
|
getSelectionFrameDataForEs(payload: GetSelectionFrameDataForEsPayload, param: AbstractParam): Promise<GetSelectionFrameDataForEsResult>;
|
|
17
|
-
getSelectionFrameAllDatasForEs(payload: GetSelectionFrameAllDatasForEsPayload, param: AbstractParam): Promise<GetSelectionFrameAllDatasForEsResult>;
|
|
18
16
|
searchSelectionFrameDatasForSortEdit(payload: SearchSelectionFrameDatasForSortEditPayload, param: AbstractParam): Promise<SearchSelectionFrameDatasForSortEditResult>;
|
|
19
17
|
getSelectionFrameDataIdsByIds(payload: GetSelectionFrameDataIdsByIdsPayload, param: AbstractParam): Promise<GetSelectionFrameDataIdsByIdsResult>;
|
|
20
18
|
searchSelectionFrameLargeDatasByStoreItemId(payload: SearchSelectionFrameLargeDatasByStoreItemIdPayload, param: AbstractParam): Promise<SearchSelectionFrameLargeDatasByStoreItemIdResult>;
|
|
@@ -44,9 +44,6 @@ let AmqpSelectionFrameDataService = class AmqpSelectionFrameDataService {
|
|
|
44
44
|
async getSelectionFrameDataForEs(payload, param) {
|
|
45
45
|
return this.amqpManager.call('elastic-service용 셀렉션 프레임 조회', 'selection-frame-data.get.info-for-es', payload, param, { isErrorThrowing: true });
|
|
46
46
|
}
|
|
47
|
-
async getSelectionFrameAllDatasForEs(payload, param) {
|
|
48
|
-
return this.amqpManager.call('elastic-service용 셀렉션 프레임 전체 조회', 'selection-frame-data.get.all-datas-for-es', payload, param, { isErrorThrowing: true });
|
|
49
|
-
}
|
|
50
47
|
async searchSelectionFrameDatasForSortEdit(payload, param) {
|
|
51
48
|
return this.amqpManager.call('셀렉션 프레임 데이터 리스트 조회 (정렬 수정 페이지 디폴트 조회.)', 'selection-frame-data.get.list-for-sort-edit', payload, param, { isErrorThrowing: true });
|
|
52
49
|
}
|