@yolo-croket-dev/amqp-access 0.4.101 → 0.4.102
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.
|
@@ -6,4 +6,5 @@ export declare class AmqpPurchasedInfoExcelService {
|
|
|
6
6
|
private readonly amqpManager;
|
|
7
7
|
constructor(client: ClientProxy);
|
|
8
8
|
generateAndSharePurchasedInfosForAdminExcel(payload: GenerateAndSharePurchasedInfosForAdminExcelPayload, param: AbstractParam): Promise<void>;
|
|
9
|
+
dailyCroketMetricsAggregation(payload: unknown, param: AbstractParam): Promise<boolean>;
|
|
9
10
|
}
|
|
@@ -24,6 +24,9 @@ let AmqpPurchasedInfoExcelService = class AmqpPurchasedInfoExcelService {
|
|
|
24
24
|
async generateAndSharePurchasedInfosForAdminExcel(payload, param) {
|
|
25
25
|
return this.amqpManager.call('JSON 구매 정보 엑셀 파일 생성 및 슬랙 공유', 'purchased-info-excel.generate-and-share-purchased-infos-for-admin-excel', payload, param, { isErrorThrowing: true });
|
|
26
26
|
}
|
|
27
|
+
async dailyCroketMetricsAggregation(payload, param) {
|
|
28
|
+
return this.amqpManager.call('Daily 크로켓 전사 지표 슬랙 공유', 'aggregation.croket-metrics.daily', payload, param, { isErrorThrowing: true });
|
|
29
|
+
}
|
|
27
30
|
};
|
|
28
31
|
exports.AmqpPurchasedInfoExcelService = AmqpPurchasedInfoExcelService;
|
|
29
32
|
exports.AmqpPurchasedInfoExcelService = AmqpPurchasedInfoExcelService = __decorate([
|