@yolo-croket-dev/amqp-access 0.0.74-jun.0 → 0.0.74-jun.2

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.0.74-jun.0",
3
+ "version": "0.0.74-jun.2",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -1,5 +1,6 @@
1
1
  import { StoreItemLegacyEntity } from '@yolo-croket-dev/entity/src/store-item/store-item-legacy.entity';
2
2
  import { GetStoreItemByAtlasSortTypeEnum, GetStoreItemByAtlasDTypeEnum, GetStoreItemByAtlasCategoryInfo } from './get-store-item-ids-by-atlas-search.dto';
3
+ export { GetStoreItemByAtlasSortTypeEnum, GetStoreItemByAtlasDTypeEnum, GetStoreItemByAtlasCategoryInfo, };
3
4
  export declare class GetLegacyStoreItemsByAtlasSearchPayload {
4
5
  /** 다음 페이징 토큰 */
5
6
  searchAfter?: string;
@@ -9,10 +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.GetLegacyStoreItemsByAtlasSearchPayload = void 0;
12
+ exports.GetLegacyStoreItemsByAtlasSearchPayload = exports.GetStoreItemByAtlasCategoryInfo = exports.GetStoreItemByAtlasDTypeEnum = exports.GetStoreItemByAtlasSortTypeEnum = void 0;
13
13
  const class_validator_1 = require("class-validator");
14
14
  const class_transformer_1 = require("class-transformer");
15
15
  const get_store_item_ids_by_atlas_search_dto_1 = require("./get-store-item-ids-by-atlas-search.dto");
16
+ Object.defineProperty(exports, "GetStoreItemByAtlasSortTypeEnum", { enumerable: true, get: function () { return get_store_item_ids_by_atlas_search_dto_1.GetStoreItemByAtlasSortTypeEnum; } });
17
+ Object.defineProperty(exports, "GetStoreItemByAtlasDTypeEnum", { enumerable: true, get: function () { return get_store_item_ids_by_atlas_search_dto_1.GetStoreItemByAtlasDTypeEnum; } });
18
+ Object.defineProperty(exports, "GetStoreItemByAtlasCategoryInfo", { enumerable: true, get: function () { return get_store_item_ids_by_atlas_search_dto_1.GetStoreItemByAtlasCategoryInfo; } });
16
19
  class GetLegacyStoreItemsByAtlasSearchPayload {
17
20
  }
18
21
  exports.GetLegacyStoreItemsByAtlasSearchPayload = GetLegacyStoreItemsByAtlasSearchPayload;
@@ -22,6 +22,10 @@ export declare class GetStoreItemByAtlasCategoryInfo {
22
22
  subCategory?: string;
23
23
  }
24
24
  export declare class GetStoreItemIdsByAtlasSearchPayload {
25
+ /**
26
+ * @deprecated 페이지 (성능 이슈로 페이징 토큰 사용을 권장)
27
+ * */
28
+ page?: number;
25
29
  /** 다음 페이징 토큰 */
26
30
  searchAfter?: string;
27
31
  /** 이전 페이징 토큰 */
@@ -48,6 +48,11 @@ __decorate([
48
48
  class GetStoreItemIdsByAtlasSearchPayload {
49
49
  }
50
50
  exports.GetStoreItemIdsByAtlasSearchPayload = GetStoreItemIdsByAtlasSearchPayload;
51
+ __decorate([
52
+ (0, class_validator_1.IsNumber)(),
53
+ (0, class_validator_1.IsOptional)(),
54
+ __metadata("design:type", Number)
55
+ ], GetStoreItemIdsByAtlasSearchPayload.prototype, "page", void 0);
51
56
  __decorate([
52
57
  (0, class_validator_1.IsString)(),
53
58
  (0, class_validator_1.IsOptional)(),