@yolo-croket-dev/amqp-access 0.2.54 → 0.2.55
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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ClientProxy } from '@nestjs/microservices';
|
|
2
2
|
import { AbstractParam } from '@yolo-croket-dev/core';
|
|
3
3
|
import { CreateAutoSoldOutStoreItemLogPayload } from '../dto';
|
|
4
|
-
import { GetAutoSoldOutStoreItemLogsCountResult, GetAutoSoldOutStoreItemLogsResult } from '../dto/auto-sold-out-store-item-log/query';
|
|
4
|
+
import { GetAutoSoldOutStoreItemLogExistsPayload, GetAutoSoldOutStoreItemLogExistsResult, GetAutoSoldOutStoreItemLogsCountResult, GetAutoSoldOutStoreItemLogsResult } from '../dto/auto-sold-out-store-item-log/query';
|
|
5
5
|
export declare class AmqpAutoSoldOutStoreItemLogService {
|
|
6
6
|
private readonly client;
|
|
7
7
|
private readonly amqpManager;
|
|
@@ -9,4 +9,5 @@ export declare class AmqpAutoSoldOutStoreItemLogService {
|
|
|
9
9
|
createAutoSoldOutStoreItemLog(payload: CreateAutoSoldOutStoreItemLogPayload, param: AbstractParam): Promise<void>;
|
|
10
10
|
getAutoSoldOutStoreItemLogs(payload: void, param: AbstractParam): Promise<GetAutoSoldOutStoreItemLogsResult[]>;
|
|
11
11
|
getAutoSoldOutStoreItemLogsCount(payload: void, param: AbstractParam): Promise<GetAutoSoldOutStoreItemLogsCountResult>;
|
|
12
|
+
getAutoSoldOutStoreItemLogExists(payload: GetAutoSoldOutStoreItemLogExistsPayload, param: AbstractParam): Promise<GetAutoSoldOutStoreItemLogExistsResult>;
|
|
12
13
|
}
|
|
@@ -30,6 +30,9 @@ let AmqpAutoSoldOutStoreItemLogService = class AmqpAutoSoldOutStoreItemLogServic
|
|
|
30
30
|
async getAutoSoldOutStoreItemLogsCount(payload, param) {
|
|
31
31
|
return this.amqpManager.call('로그인한 유저 상품 옵션 자동 품절 로그 갯수 불러오기', 'auto-sold-out-store-item-log.get.count', payload, param, { isErrorThrowing: true });
|
|
32
32
|
}
|
|
33
|
+
async getAutoSoldOutStoreItemLogExists(payload, param) {
|
|
34
|
+
return this.amqpManager.call('로그인한 유저 상품 옵션 자동 품절 로그 존재여부 불러오기', 'auto-sold-out-store-item-log.get.exists', payload, param, { isErrorThrowing: true });
|
|
35
|
+
}
|
|
33
36
|
};
|
|
34
37
|
exports.AmqpAutoSoldOutStoreItemLogService = AmqpAutoSoldOutStoreItemLogService;
|
|
35
38
|
exports.AmqpAutoSoldOutStoreItemLogService = AmqpAutoSoldOutStoreItemLogService = __decorate([
|