@yolo-croket-dev/amqp-access 0.4.48 → 0.4.50-sj

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.4.48",
3
+ "version": "0.4.50-sj",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -22,7 +22,7 @@
22
22
  "@yolo-croket-dev/domain": "0.1.0",
23
23
  "@yolo-croket-dev/dto-v2": "^0.1.5",
24
24
  "@yolo-croket-dev/entity": "^0.2.1",
25
- "@yolo-croket-dev/entity-v2": "^0.1.16",
25
+ "@yolo-croket-dev/entity-v2": "^0.1.17",
26
26
  "class-transformer": "^0.5.1",
27
27
  "class-validator": "^0.13.2",
28
28
  "dotenv": "^16.3.1"
@@ -1,6 +1,6 @@
1
1
  import { ClientProxy } from '@nestjs/microservices';
2
2
  import { AbstractParam } from '@yolo-croket-dev/core';
3
- import { DeleteAppBatchPushDataByKeyPayload, DeleteAppBatchPushDataByKeyResult, GetAppBatchPushDataByKeyPayload, GetAppBatchPushDataByKeyResult, GetAppBatchPushKeysResult } from '../../dto/redis-db';
3
+ import { DeleteAppBatchPushDataByKeyPayload, DeleteAppBatchPushDataByKeyResult, GetAppBatchPushDataByKeyPayload, GetAppBatchPushDataByKeyResult, GetAppBatchPushKeysResult, SetDataAutoChangeWaitingReceiveProcessToBuyerMethodAppBatchPushPayload, SetDataAutoChangeWaitingReceiveProcessToBuyerMethodAppBatchPushResult } from '../../dto/redis-db';
4
4
  export declare class AmqpRedisDbAppBatchPushService {
5
5
  private readonly client;
6
6
  private readonly amqpManager;
@@ -8,4 +8,5 @@ export declare class AmqpRedisDbAppBatchPushService {
8
8
  getAppBatchPushKeys(param: AbstractParam): Promise<GetAppBatchPushKeysResult>;
9
9
  getAppBatchPushDataByKey(payload: GetAppBatchPushDataByKeyPayload, param: AbstractParam): Promise<GetAppBatchPushDataByKeyResult>;
10
10
  deleteAppBatchPushDataByKey(payload: DeleteAppBatchPushDataByKeyPayload, param: AbstractParam): Promise<DeleteAppBatchPushDataByKeyResult>;
11
+ setDataAutoChangeWaitingReceiveProcessToBuyerMethod(payload: SetDataAutoChangeWaitingReceiveProcessToBuyerMethodAppBatchPushPayload, param: AbstractParam): Promise<SetDataAutoChangeWaitingReceiveProcessToBuyerMethodAppBatchPushResult>;
11
12
  }
@@ -30,6 +30,9 @@ let AmqpRedisDbAppBatchPushService = class AmqpRedisDbAppBatchPushService {
30
30
  async deleteAppBatchPushDataByKey(payload, param) {
31
31
  return this.amqpManager.call('appBatchPush 키에 따른 데이터 삭제', 'redis-db.delete.data-app-batch-push-by-key', payload, param, { isErrorThrowing: true });
32
32
  }
33
+ async setDataAutoChangeWaitingReceiveProcessToBuyerMethod(payload, param) {
34
+ return this.amqpManager.call('redis에 autoChangeWaitingReceiveProcessToBuyer method 등록 및 수정', 'redis-db.set-data.app-batch-push-auto-change-waiting-receive-process-to-buyer', payload, param, { isErrorThrowing: true });
35
+ }
33
36
  };
34
37
  exports.AmqpRedisDbAppBatchPushService = AmqpRedisDbAppBatchPushService;
35
38
  exports.AmqpRedisDbAppBatchPushService = AmqpRedisDbAppBatchPushService = __decorate([