@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 +1 -0
- package/index.js +1 -0
- package/package.json +1 -1
- package/selection-server/amqp.selection-server.module.d.ts +1 -1
- package/selection-server/amqp.selection-server.module.js +5 -5
- package/selection-server/services/amqp.selection-frame.service.d.ts +1 -1
- package/selection-server/services/amqp.selection-frame.service.js +1 -1
package/index.d.ts
CHANGED
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,2 +1,2 @@
|
|
|
1
|
-
export declare class
|
|
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.
|
|
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
|
|
13
|
+
let AmqpSelectionServerModule = class AmqpSelectionServerModule {
|
|
14
14
|
};
|
|
15
|
-
|
|
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
|
-
],
|
|
33
|
-
exports.
|
|
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
|
-
|
|
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
|
|
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) {
|