@yolo-croket-dev/amqp-access 0.5.45 → 0.5.47
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/excel-upload-server/services/amqp.ad-center-storeitem-keyword-excel.service.d.ts +4 -0
- package/excel-upload-server/services/amqp.ad-center-storeitem-keyword-excel.service.js +8 -0
- package/order-server/amqp.order-server.service.d.ts +2 -1
- package/order-server/amqp.order-server.service.js +3 -0
- package/package.json +1 -1
|
@@ -7,4 +7,8 @@ export declare class AmqpAdCenterStoreItemKeywordExcelService {
|
|
|
7
7
|
constructor(client: ClientProxy);
|
|
8
8
|
excelUploadAdCenterStoreItemKeywordManagement(payload: ExcelUploadAdCenterStoreItemKeywordManagementPayload, param: AbstractParam): Promise<ExcelUploadAdCenterStoreItemKeywordManagementResult>;
|
|
9
9
|
excelUploadAdCenterStoreItemKeywordSellerBudgetManagement(payload: ExcelUploadAdCenterStoreItemKeywordSellerBudgetManagementPayload, param: AbstractParam): Promise<ExcelUploadAdCenterStoreItemKeywordSellerBudgetManagementResult>;
|
|
10
|
+
/** 광고 키워드 집계 매일 자정 동작하는 스케쥴러 처리 */
|
|
11
|
+
schedulerAdCenterStoreItemKeywordDailyAggregation(payload: unknown, param: AbstractParam): Promise<boolean>;
|
|
12
|
+
/** 광고 키워드 예산 초과 처리 매일 1시간 마다 스케쥴러 처리 */
|
|
13
|
+
schedulerAdCenterStoreItemKeywordBudgetMonitor(payload: unknown, param: AbstractParam): Promise<boolean>;
|
|
10
14
|
}
|
|
@@ -27,6 +27,14 @@ let AmqpAdCenterStoreItemKeywordExcelService = class AmqpAdCenterStoreItemKeywor
|
|
|
27
27
|
async excelUploadAdCenterStoreItemKeywordSellerBudgetManagement(payload, param) {
|
|
28
28
|
return this.amqpManager.call('광고 센터 키워드 예산 관리 엑셀 업로드', 'ad-center-excel.excel-upload.management-storeitem-keyword-seller-budget', payload, param, { isErrorThrowing: true });
|
|
29
29
|
}
|
|
30
|
+
/** 광고 키워드 집계 매일 자정 동작하는 스케쥴러 처리 */
|
|
31
|
+
async schedulerAdCenterStoreItemKeywordDailyAggregation(payload, param) {
|
|
32
|
+
return this.amqpManager.call('광고 키워드 집계 매일 자정 동작하는 스케쥴러 처리', 'ad-center-excel.scheduler.ad-center-storeitem-keyword-daily-aggregation', payload, param, { isErrorThrowing: true });
|
|
33
|
+
}
|
|
34
|
+
/** 광고 키워드 예산 초과 처리 매일 1시간 마다 스케쥴러 처리 */
|
|
35
|
+
async schedulerAdCenterStoreItemKeywordBudgetMonitor(payload, param) {
|
|
36
|
+
return this.amqpManager.call('광고 키워드 예산 초과 처리 매일 자정 동작하는 스케쥴러 처리', 'ad-center-excel.scheduler.ad-center-storeitem-keyword-budget-monitor', payload, param, { isErrorThrowing: true });
|
|
37
|
+
}
|
|
30
38
|
};
|
|
31
39
|
exports.AmqpAdCenterStoreItemKeywordExcelService = AmqpAdCenterStoreItemKeywordExcelService;
|
|
32
40
|
exports.AmqpAdCenterStoreItemKeywordExcelService = AmqpAdCenterStoreItemKeywordExcelService = __decorate([
|
|
@@ -2,7 +2,7 @@ import { ClientProxy } from '@nestjs/microservices';
|
|
|
2
2
|
import { AbstractParam } from '@yolo-croket-dev/core';
|
|
3
3
|
import { GetPurchasedInfoByIdsPayload, GetPurchasedInfosForBulkNotiPayload, GetPurchasedInfosForBulkNotiResult, GetPurchasedInfoForAdminExcelPayload, GetPurchasedInfoForAdminExcelResult } from '@yolo-croket-dev/dto-v2/order-server';
|
|
4
4
|
import { PurchasedInfoEntity } from '@yolo-croket-dev/entity/src/purchased-info';
|
|
5
|
-
import { SearchSellerTransactionHistoryByProcessPayload, SearchSellerTransactionHistoryByProcessResult } from './dto';
|
|
5
|
+
import { GetPInfoForExpectSettleByAtlasPayload, GetPInfoForExpectSettleByAtlasResult, SearchSellerTransactionHistoryByProcessPayload, SearchSellerTransactionHistoryByProcessResult } from './dto';
|
|
6
6
|
export declare class AmqpOrderServer {
|
|
7
7
|
private readonly client;
|
|
8
8
|
private readonly amqpManager;
|
|
@@ -13,4 +13,5 @@ export declare class AmqpOrderServer {
|
|
|
13
13
|
searchSellerTransactionHistoryByProcess(payload: SearchSellerTransactionHistoryByProcessPayload, param: AbstractParam): Promise<SearchSellerTransactionHistoryByProcessResult[]>;
|
|
14
14
|
/** 결제 내역 추출 */
|
|
15
15
|
getPurchasedInfoForAdminExcel(payload: GetPurchasedInfoForAdminExcelPayload, param: AbstractParam): Promise<GetPurchasedInfoForAdminExcelResult>;
|
|
16
|
+
getPInfoForExpectSettleByAtlas(payload: GetPInfoForExpectSettleByAtlasPayload, param: AbstractParam): Promise<GetPInfoForExpectSettleByAtlasResult[]>;
|
|
16
17
|
}
|
|
@@ -36,6 +36,9 @@ let AmqpOrderServer = class AmqpOrderServer {
|
|
|
36
36
|
async getPurchasedInfoForAdminExcel(payload, param) {
|
|
37
37
|
return this.amqpManager.call('결제 내역 엑셀 다운로드용 데이터 조회', 'purchased-info.search.for-admin-excel', payload, param, { isErrorThrowing: true });
|
|
38
38
|
}
|
|
39
|
+
async getPInfoForExpectSettleByAtlas(payload, param) {
|
|
40
|
+
return this.amqpManager.call('결제 내역 엑셀 다운로드용 데이터 조회', 'purchased-info.get.list-for-expect-settle-by-atlas', payload, param, { isErrorThrowing: true });
|
|
41
|
+
}
|
|
39
42
|
};
|
|
40
43
|
exports.AmqpOrderServer = AmqpOrderServer;
|
|
41
44
|
exports.AmqpOrderServer = AmqpOrderServer = __decorate([
|