@yolo-croket-dev/amqp-access 0.7.47-jun.29 → 0.7.47-jun.30
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,6 @@
|
|
|
1
1
|
import { Types } from 'mongoose';
|
|
2
2
|
import { ReservationPeriod, ReservationStockModeInfo } from '@yolo-croket-dev/entity/src/store-item';
|
|
3
|
+
import { CardQuotaEnum, PurchasedProcessEnum } from '@yolo-croket-dev/entity-v2/purchased-info';
|
|
3
4
|
/** @description 예약 상태 Enum */
|
|
4
5
|
export declare enum ReservationStatusEnum {
|
|
5
6
|
/** 예약중 (예약 기간 내) */
|
|
@@ -28,6 +29,9 @@ export interface PInfoReservationForAdminDetail {
|
|
|
28
29
|
firstPaymentFailedDate?: Date;
|
|
29
30
|
paymentFailReason?: string;
|
|
30
31
|
retryDeadline?: Date;
|
|
32
|
+
process: PurchasedProcessEnum;
|
|
33
|
+
cardQuota: CardQuotaEnum;
|
|
34
|
+
isPaid: boolean;
|
|
31
35
|
}
|
|
32
36
|
/** @description 상품 예약 설정 정보 */
|
|
33
37
|
export interface StoreItemReservationForAdminDetail {
|