@yolo-croket-dev/amqp-access 0.7.47-jun.31 → 0.7.47-jun.32
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,5 +1,5 @@
|
|
|
1
1
|
import { Types } from 'mongoose';
|
|
2
|
-
import { ReservationPeriod, ReservationStockModeInfo } from '@yolo-croket-dev/entity/src/store-item';
|
|
2
|
+
import { ReservationPeriod, ReservationStockModeInfo, StoreItemReservationStatsInfo } from '@yolo-croket-dev/entity/src/store-item';
|
|
3
3
|
import { CardQuotaEnum, PurchasedProcessEnum } from '@yolo-croket-dev/entity-v2/purchased-info';
|
|
4
4
|
/** @description 예약 상태 Enum */
|
|
5
5
|
export declare enum ReservationStatusEnum {
|
|
@@ -41,6 +41,7 @@ export interface StoreItemReservationForAdminDetail {
|
|
|
41
41
|
shippingPeriod: ReservationPeriod;
|
|
42
42
|
stockModeInfo: ReservationStockModeInfo;
|
|
43
43
|
reservationStatus: ReservationStatusEnum;
|
|
44
|
+
reservationStatsInfo: StoreItemReservationStatsInfo;
|
|
44
45
|
}
|
|
45
46
|
/** @description 관리자용 예약 상품 상세 조회 Result */
|
|
46
47
|
export declare class GetReservationItemDetailForAdminResult {
|
package/store-item-server/dto/reservation-store-item/query/get-reservation-items-for-admin.dto.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StoreItem as StoreItemEntity, ReservationPeriod, ReservationStockModeInfo } from '@yolo-croket-dev/entity/src/store-item';
|
|
1
|
+
import { StoreItem as StoreItemEntity, ReservationPeriod, ReservationStockModeInfo, StoreItemReservationStatsInfo } from '@yolo-croket-dev/entity/src/store-item';
|
|
2
2
|
export declare enum GetReservationItemsForAdminSearchTypeEnum {
|
|
3
3
|
'ITEM_NAME' = "ITEM_NAME",
|
|
4
4
|
'ITEM_ID' = "ITEM_ID",
|
|
@@ -30,6 +30,7 @@ export interface GetReservationItemsForAdminListItem {
|
|
|
30
30
|
stockSecuringPeriod: ReservationPeriod;
|
|
31
31
|
shippingPeriod: ReservationPeriod;
|
|
32
32
|
stockModeInfo: ReservationStockModeInfo;
|
|
33
|
+
reservationStatsInfo: StoreItemReservationStatsInfo;
|
|
33
34
|
}
|
|
34
35
|
export declare class GetReservationItemsForAdminResult {
|
|
35
36
|
list: GetReservationItemsForAdminListItem[];
|