@yolo-croket-dev/amqp-access 0.1.3-jun.3 → 0.1.3-jun.4
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 { DomesticAccountStoreEntity, StoreForTossPaymentEntity } from '@yolo-croket-dev/entity-v2';
|
|
4
|
-
import { GetDomesticAccountStoreInfoPayload, GetDomesticAccountStoresPayload, MigrationTossPaymentsSettlementProxySellerIdResult, UpdatePrivateSellerInfoSellerAddressPayload, GetUserIdsByStoreTitlePayload, GetUserIdsByStoreTitleResult, GetStoreIdsByStoreTitlePayload, GetStoreIdsByStoreTitleResult, GetStoreTitlesByStoreIdsPayload, GetStoreTitlesByStoreIdsResult, GetStoreIdsByAtlasPayload, GetStoreIdsByAtlasResult } from '../dto/store';
|
|
4
|
+
import { GetDomesticAccountStoreInfoPayload, GetDomesticAccountStoresPayload, MigrationTossPaymentsSettlementProxySellerIdResult, UpdatePrivateSellerInfoSellerAddressPayload, GetUserIdsByStoreTitlePayload, GetUserIdsByStoreTitleResult, GetStoreIdsByStoreTitlePayload, GetStoreIdsByStoreTitleResult, GetStoreTitlesByStoreIdsPayload, GetStoreTitlesByStoreIdsResult, GetStoreIdsByAtlasPayload, GetStoreIdsByAtlasResult, CheckShowAdCenterInflowPayload } from '../dto/store';
|
|
5
5
|
import { GetStoresForTossPaymentPayload } from '../dto/store/query/get-stores-for-toss-payment.dto';
|
|
6
6
|
export declare class AmqpStoreService {
|
|
7
7
|
private readonly client;
|
|
@@ -16,4 +16,5 @@ export declare class AmqpStoreService {
|
|
|
16
16
|
getStoreIdsByStoreTitle(payload: GetStoreIdsByStoreTitlePayload, param: AbstractParam): Promise<GetStoreIdsByStoreTitleResult>;
|
|
17
17
|
getStoreTitlesByStoreIds(payload: GetStoreTitlesByStoreIdsPayload, param: AbstractParam): Promise<GetStoreTitlesByStoreIdsResult>;
|
|
18
18
|
getStoreIdsByAtlas(payload: GetStoreIdsByAtlasPayload, param: AbstractParam): Promise<GetStoreIdsByAtlasResult>;
|
|
19
|
+
checkShowAdCenterInflow(payload: CheckShowAdCenterInflowPayload, param: AbstractParam): Promise<boolean>;
|
|
19
20
|
}
|
|
@@ -48,6 +48,9 @@ let AmqpStoreService = class AmqpStoreService {
|
|
|
48
48
|
async getStoreIdsByAtlas(payload, param) {
|
|
49
49
|
return this.amqpManager.call('스토어 아이디 조회 (atlas)', 'store.get.store-ids-by-atlas', payload, param, { isErrorThrowing: true });
|
|
50
50
|
}
|
|
51
|
+
async checkShowAdCenterInflow(payload, param) {
|
|
52
|
+
return this.amqpManager.call('광고센터유입 노출 여부 체크', 'store.check.show-ad-center-inflow', payload, param, { isErrorThrowing: true });
|
|
53
|
+
}
|
|
51
54
|
};
|
|
52
55
|
exports.AmqpStoreService = AmqpStoreService;
|
|
53
56
|
exports.AmqpStoreService = AmqpStoreService = __decorate([
|