@chevre/factory 4.388.0-alpha.2 → 4.388.0-alpha.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.
|
@@ -59,5 +59,23 @@ export interface IReservation4informUsed {
|
|
|
59
59
|
dateUsed?: Date;
|
|
60
60
|
};
|
|
61
61
|
}
|
|
62
|
-
|
|
62
|
+
/**
|
|
63
|
+
* 予約作成通知
|
|
64
|
+
*/
|
|
65
|
+
export interface IReservationPackage4informPending {
|
|
66
|
+
project: IProject;
|
|
67
|
+
reservationNumber: string;
|
|
68
|
+
reservationStatus: ReservationStatusType.ReservationPending;
|
|
69
|
+
typeOf: ReservationType.ReservationPackage;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* 保留予約取消通知
|
|
73
|
+
*/
|
|
74
|
+
export interface IReservationPackage4informPendingCanceled {
|
|
75
|
+
project: IProject;
|
|
76
|
+
reservationNumber: string;
|
|
77
|
+
reservationStatus: ReservationStatusType.ReservationCancelled;
|
|
78
|
+
typeOf: ReservationType.ReservationPackage;
|
|
79
|
+
}
|
|
80
|
+
export type IReservation4inform = IReservationPackage4informConfirmed | IReservation4informCanceled | IReservation4informCheckedIn | IReservation4informUsed | IReservationPackage4informPending | IReservationPackage4informPendingCanceled;
|
|
63
81
|
export {};
|