@yolo-croket-dev/amqp-access 0.5.7-jun.1 → 0.5.7-jun.3

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.5.7-jun.1",
3
+ "version": "0.5.7-jun.3",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -31,7 +31,7 @@ export declare class WeeklyMegaDealPeriodItemDataDto implements WeeklyMegaDealPe
31
31
  /**
32
32
  * @description 판매 개수 제한
33
33
  */
34
- sellingNumsLimit?: number;
34
+ sellingNumsLimit?: number | null;
35
35
  /**
36
36
  * @description 현재 판매된 수 초기화 여부
37
37
  */
@@ -28,7 +28,7 @@ __decorate([
28
28
  __decorate([
29
29
  (0, class_validator_1.IsNumber)(),
30
30
  (0, class_validator_1.IsOptional)(),
31
- __metadata("design:type", Number)
31
+ __metadata("design:type", Object)
32
32
  ], WeeklyMegaDealPeriodItemDataDto.prototype, "sellingNumsLimit", void 0);
33
33
  __decorate([
34
34
  (0, class_validator_1.IsBoolean)(),
@@ -2,7 +2,7 @@ import { CartEntity } from '@yolo-croket-dev/entity-v2/cart';
2
2
  import { StoreItem } from '@yolo-croket-dev/entity/src/store-item/store-item.entity';
3
3
  import { UserEntity } from '@yolo-croket-dev/entity-v2/user/user.entity';
4
4
  type SearchedUserForWritePay = Pick<UserEntity, '_id' | 'username'>;
5
- type SearchedStoreItemForWritePay = Pick<StoreItem, '_id' | 'selectionInfos' | 'itemPrice' | 'insuranceInfo' | 'mainCategory' | 'subCategory' | 'sellerId' | 'isLimitSale' | 'itemName' | 'itemPriceForBuyer' | 'sellingInfo' | 'adultItemInfo' | 'limitSaleInfo' | 'itemImg' | 'purchased' | 'storeId'> & {
5
+ type SearchedStoreItemForWritePay = Pick<StoreItem, '_id' | 'selectionInfos' | 'itemPrice' | 'insuranceInfo' | 'mainCategory' | 'subCategory' | 'sellerId' | 'isLimitSale' | 'itemName' | 'itemPriceForBuyer' | 'sellingInfo' | 'adultItemInfo' | 'limitSaleInfo' | 'itemImg' | 'purchased' | 'storeId' | 'isAutoStopSellingNumsLimit' | 'autoStopSellingCurrentSoldNums' | 'autoStopSellingNumsLimitInfo'> & {
6
6
  _seller: SearchedUserForWritePay;
7
7
  };
8
8
  export type CartForWritePay = Pick<CartEntity, '_id' | 'itemId' | 'storeId' | 'pOption' | 'pOptionInfo' | 'itemName_past' | 'itemPrice_past' | 'sellingInfo_past' | 'cartType' | 'ownerId' | 'isChecked' | 'requirement' | 'lastModifyDate' | 'directAddress_custom'> & {
@@ -29,6 +29,9 @@ export declare const SearchedStoreItemForWritePaySelect: {
29
29
  itemImg: number;
30
30
  purchased: number;
31
31
  storeId: number;
32
+ isAutoStopSellingNumsLimit: number;
33
+ autoStopSellingCurrentSoldNums: number;
34
+ autoStopSellingNumsLimitInfo: number;
32
35
  _seller: number;
33
36
  };
34
37
  export declare const CartForWritePaySelect: {
@@ -22,6 +22,9 @@ exports.SearchedStoreItemForWritePaySelect = {
22
22
  itemImg: 1,
23
23
  purchased: 1,
24
24
  storeId: 1,
25
+ isAutoStopSellingNumsLimit: 1,
26
+ autoStopSellingCurrentSoldNums: 1,
27
+ autoStopSellingNumsLimitInfo: 1,
25
28
  _seller: 1,
26
29
  };
27
30
  exports.CartForWritePaySelect = {