@chevre/factory 10.3.0-alpha.3 → 10.3.0-alpha.4
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.
|
@@ -20,6 +20,14 @@ export type ISubReservation4inform = Pick<IEventReservation, 'id' | 'modifiedTim
|
|
|
20
20
|
additionalProperty?: never;
|
|
21
21
|
programMembershipUsed?: never;
|
|
22
22
|
};
|
|
23
|
+
export type IReservationFor4informLegacy = IReservationForLegacy;
|
|
24
|
+
/**
|
|
25
|
+
* 確定予約通知のイベント属性
|
|
26
|
+
* 2026-09-01~
|
|
27
|
+
*/
|
|
28
|
+
export type IReservationFor4inform = Pick<IReservationForLegacy, 'id' | 'typeOf'> & {
|
|
29
|
+
superEvent?: never;
|
|
30
|
+
};
|
|
23
31
|
/**
|
|
24
32
|
* 確定予約通知
|
|
25
33
|
*/
|
|
@@ -27,7 +35,7 @@ export interface IReservationPackage4informConfirmed {
|
|
|
27
35
|
bookingTime: Date;
|
|
28
36
|
project: IProject;
|
|
29
37
|
provider: IProvider;
|
|
30
|
-
reservationFor:
|
|
38
|
+
reservationFor: IReservationFor4inform | IReservationFor4informLegacy;
|
|
31
39
|
reservationNumber: string;
|
|
32
40
|
reservationStatus: ReservationStatusType.ReservationConfirmed;
|
|
33
41
|
subReservation: ISubReservation4inform[];
|