@yolo-croket-dev/amqp-access 0.3.11 → 0.3.12

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.3.11",
3
+ "version": "0.3.12",
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.0.31",
23
23
  "@yolo-croket-dev/dto-v2": "^0.0.162",
24
24
  "@yolo-croket-dev/entity": "^0.1.141",
25
- "@yolo-croket-dev/entity-v2": "^0.0.125",
25
+ "@yolo-croket-dev/entity-v2": "^0.0.127",
26
26
  "class-transformer": "^0.5.1",
27
27
  "class-validator": "^0.13.2",
28
28
  "dotenv": "^16.3.1"
@@ -0,0 +1,3 @@
1
+ export declare class GetListRedisDBPayload {
2
+ redisDBKey: string;
3
+ }
@@ -9,17 +9,13 @@ var __metadata = (this && this.__metadata) || function (k, v) {
9
9
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.CreateSellerPortalChannelLinkRequestPayload = exports.RequestTypeEnum = void 0;
12
+ exports.GetListRedisDBPayload = void 0;
13
13
  const class_validator_1 = require("class-validator");
14
- var RequestTypeEnum;
15
- (function (RequestTypeEnum) {
16
- RequestTypeEnum["onlyPortal"] = "onlyPortal";
17
- RequestTypeEnum["portalAndAd"] = "portalAndAd";
18
- })(RequestTypeEnum || (exports.RequestTypeEnum = RequestTypeEnum = {}));
19
- class CreateSellerPortalChannelLinkRequestPayload {
14
+ class GetListRedisDBPayload {
20
15
  }
21
- exports.CreateSellerPortalChannelLinkRequestPayload = CreateSellerPortalChannelLinkRequestPayload;
16
+ exports.GetListRedisDBPayload = GetListRedisDBPayload;
22
17
  __decorate([
23
- (0, class_validator_1.IsEnum)(RequestTypeEnum),
18
+ (0, class_validator_1.IsString)(),
19
+ (0, class_validator_1.MinLength)(1),
24
20
  __metadata("design:type", String)
25
- ], CreateSellerPortalChannelLinkRequestPayload.prototype, "requestType", void 0);
21
+ ], GetListRedisDBPayload.prototype, "redisDBKey", void 0);
@@ -1,2 +1,3 @@
1
- export * from './push-redis-db.dto';
2
- export * from './pull-redis-db.dto';
1
+ export * from './push-list-redis-db.dto';
2
+ export * from './pull-list-redis-db.dto';
3
+ export * from './get-list-redis-db.dto';
@@ -14,5 +14,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./push-redis-db.dto"), exports);
18
- __exportStar(require("./pull-redis-db.dto"), exports);
17
+ __exportStar(require("./push-list-redis-db.dto"), exports);
18
+ __exportStar(require("./pull-list-redis-db.dto"), exports);
19
+ __exportStar(require("./get-list-redis-db.dto"), exports);
@@ -0,0 +1,6 @@
1
+ import { PushListRedisDBPayload } from './push-list-redis-db.dto';
2
+ export declare class PullListRedisDBPayload extends PushListRedisDBPayload {
3
+ }
4
+ export interface PullListRedisDBResult {
5
+ result: string;
6
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PullListRedisDBPayload = void 0;
4
+ const push_list_redis_db_dto_1 = require("./push-list-redis-db.dto");
5
+ class PullListRedisDBPayload extends push_list_redis_db_dto_1.PushListRedisDBPayload {
6
+ }
7
+ exports.PullListRedisDBPayload = PullListRedisDBPayload;
@@ -0,0 +1,7 @@
1
+ export declare class PushListRedisDBPayload {
2
+ redisDBKey: string;
3
+ value: string;
4
+ }
5
+ export interface PushListRedisDBResult {
6
+ result: boolean;
7
+ }
@@ -9,18 +9,18 @@ var __metadata = (this && this.__metadata) || function (k, v) {
9
9
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.PushRedisDBPayload = void 0;
12
+ exports.PushListRedisDBPayload = void 0;
13
13
  const class_validator_1 = require("class-validator");
14
- class PushRedisDBPayload {
14
+ class PushListRedisDBPayload {
15
15
  }
16
- exports.PushRedisDBPayload = PushRedisDBPayload;
16
+ exports.PushListRedisDBPayload = PushListRedisDBPayload;
17
17
  __decorate([
18
18
  (0, class_validator_1.IsString)(),
19
19
  (0, class_validator_1.MinLength)(1),
20
20
  __metadata("design:type", String)
21
- ], PushRedisDBPayload.prototype, "redisDBKey", void 0);
21
+ ], PushListRedisDBPayload.prototype, "redisDBKey", void 0);
22
22
  __decorate([
23
23
  (0, class_validator_1.IsString)(),
24
24
  (0, class_validator_1.MinLength)(1),
25
25
  __metadata("design:type", String)
26
- ], PushRedisDBPayload.prototype, "value", void 0);
26
+ ], PushListRedisDBPayload.prototype, "value", void 0);
@@ -1,7 +0,0 @@
1
- import { SelectionFrameDataEntity } from '@yolo-croket-dev/entity-v2';
2
- export declare class SearchAllSelectionFrameDatasByTargetSelectionDataIdPayload {
3
- targetSelectionDataId: string;
4
- }
5
- export declare class SearchAllSelectionFrameDatasByTargetSelectionDataIdResult {
6
- selectionFrameDatas: SelectionFrameDataEntity[];
7
- }
@@ -1,23 +0,0 @@
1
- "use strict";
2
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
- return c > 3 && r && Object.defineProperty(target, key, r), r;
7
- };
8
- var __metadata = (this && this.__metadata) || function (k, v) {
9
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
- };
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.SearchAllSelectionFrameDatasByTargetSelectionDataIdResult = exports.SearchAllSelectionFrameDatasByTargetSelectionDataIdPayload = void 0;
13
- const class_validator_1 = require("class-validator");
14
- class SearchAllSelectionFrameDatasByTargetSelectionDataIdPayload {
15
- }
16
- exports.SearchAllSelectionFrameDatasByTargetSelectionDataIdPayload = SearchAllSelectionFrameDatasByTargetSelectionDataIdPayload;
17
- __decorate([
18
- (0, class_validator_1.IsMongoId)(),
19
- __metadata("design:type", String)
20
- ], SearchAllSelectionFrameDatasByTargetSelectionDataIdPayload.prototype, "targetSelectionDataId", void 0);
21
- class SearchAllSelectionFrameDatasByTargetSelectionDataIdResult {
22
- }
23
- exports.SearchAllSelectionFrameDatasByTargetSelectionDataIdResult = SearchAllSelectionFrameDatasByTargetSelectionDataIdResult;
@@ -1,3 +0,0 @@
1
- import { PushRedisDBPayload } from './push-redis-db.dto';
2
- export declare class PullRedisDBPayload extends PushRedisDBPayload {
3
- }
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PullRedisDBPayload = void 0;
4
- const push_redis_db_dto_1 = require("./push-redis-db.dto");
5
- class PullRedisDBPayload extends push_redis_db_dto_1.PushRedisDBPayload {
6
- }
7
- exports.PullRedisDBPayload = PullRedisDBPayload;
@@ -1,4 +0,0 @@
1
- export declare class PushRedisDBPayload {
2
- redisDBKey: string;
3
- value: string;
4
- }
@@ -1,7 +0,0 @@
1
- export declare enum RequestTypeEnum {
2
- onlyPortal = "onlyPortal",
3
- portalAndAd = "portalAndAd"
4
- }
5
- export declare class CreateSellerPortalChannelLinkRequestPayload {
6
- requestType: RequestTypeEnum;
7
- }