@yolo-croket-dev/amqp-access 0.7.204 → 0.7.205

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.
@@ -9,4 +9,5 @@ export declare class AmqpExchangeRateService {
9
9
  getExchangeRateByCountryCode(payload: GetExchangeRateByCountryCodePayload, param: AbstractParam): Promise<GetExchangeRateByCountryCodeResult>;
10
10
  getExchangeFeeByCountryCode(payload: GetExchangeFeeByCountryCodePayload, param: AbstractParam): Promise<GetExchangeFeeByCountryCodeResult>;
11
11
  getExchangedAmountByCountryCode(payload: GetExchangedAmountByCountryCodePayload, param: AbstractParam): Promise<GetExchangedAmountByCountryCodeResult>;
12
+ refreshCurrentBaseDateExchangeRate(param: AbstractParam): Promise<void>;
12
13
  }
@@ -33,6 +33,9 @@ let AmqpExchangeRateService = class AmqpExchangeRateService {
33
33
  async getExchangedAmountByCountryCode(payload, param) {
34
34
  return this.amqpManager.call('환전된 금액 조회 - 국가 코드로', 'exchange-rate.get.exchanged-amount-by-country-code', payload, param, { isErrorThrowing: true });
35
35
  }
36
+ async refreshCurrentBaseDateExchangeRate(param) {
37
+ return this.amqpManager.call('환율 조회 - 데일리 환율 정보 저장 스케쥴러용', 'exchange-rate.refresh.current-base-date', {}, param, { isErrorThrowing: true });
38
+ }
36
39
  };
37
40
  exports.AmqpExchangeRateService = AmqpExchangeRateService;
38
41
  exports.AmqpExchangeRateService = AmqpExchangeRateService = __decorate([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.7.204",
3
+ "version": "0.7.205",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -1,11 +0,0 @@
1
- {
2
- "permissions": {
3
- "allow": [
4
- "Read(//Users/jun/Desktop/code/work/monorepo/**)",
5
- "Bash(npm ls:*)",
6
- "Bash(cd:*)",
7
- "WebFetch(domain:developers.nicepay.co.kr)",
8
- "Bash(npx lerna:*)"
9
- ]
10
- }
11
- }