@chevre/factory 4.388.0-alpha.3 → 4.388.0-alpha.5
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.
|
@@ -1,25 +1,27 @@
|
|
|
1
|
-
import { OrganizationType } from '../organizationType';
|
|
2
1
|
import { IProvider, IUnderName } from '../reservation';
|
|
3
|
-
import { IIssuedThrough, IReservation, IReservationFor } from '../reservation/event';
|
|
2
|
+
import { IIssuedThrough, IReservation as IEventReservation, IReservationFor } from '../reservation/event';
|
|
4
3
|
import { ReservationStatusType } from '../reservationStatusType';
|
|
5
4
|
import { ReservationType } from '../reservationType';
|
|
6
|
-
|
|
7
|
-
id: string;
|
|
8
|
-
typeOf: OrganizationType.Project;
|
|
9
|
-
}
|
|
10
|
-
type IEventReservation = IReservation;
|
|
5
|
+
type IProject = IEventReservation['project'];
|
|
11
6
|
export type IMaskedUnderName = Pick<IUnderName, 'id' | 'typeOf'>;
|
|
12
|
-
export type ISubReservation4inform = Pick<IEventReservation, 'additionalProperty' | 'additionalTicketText' | '
|
|
7
|
+
export type ISubReservation4inform = Pick<IEventReservation, 'additionalProperty' | 'additionalTicketText' | 'id' | 'modifiedTime' | 'price' | 'programMembershipUsed' | 'reservedTicket' | 'subReservation' | 'typeOf'> & {
|
|
8
|
+
/**
|
|
9
|
+
* 廃止済
|
|
10
|
+
* ReservationPackageへ移行(2024-10-27~)
|
|
11
|
+
*/
|
|
12
|
+
bookingTime?: Date;
|
|
13
|
+
};
|
|
13
14
|
/**
|
|
14
15
|
* 確定予約通知
|
|
15
16
|
*/
|
|
16
17
|
export interface IReservationPackage4informConfirmed {
|
|
18
|
+
bookingTime?: Date;
|
|
17
19
|
issuedThrough: IIssuedThrough;
|
|
18
20
|
project: IProject;
|
|
19
21
|
provider: IProvider;
|
|
20
22
|
reservationFor: IReservationFor;
|
|
21
23
|
reservationNumber: string;
|
|
22
|
-
reservationStatus: ReservationStatusType;
|
|
24
|
+
reservationStatus: ReservationStatusType.ReservationConfirmed;
|
|
23
25
|
subReservation: ISubReservation4inform[];
|
|
24
26
|
underName?: IMaskedUnderName;
|
|
25
27
|
typeOf: ReservationType.ReservationPackage;
|