@chevre/factory 4.365.0-alpha.1 → 4.366.0-alpha.0
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.
|
@@ -237,6 +237,9 @@ export interface IObject extends Pick<IReservationPackage, 'broker' | 'provider'
|
|
|
237
237
|
acceptedOffer?: IAcceptedOffer4object[];
|
|
238
238
|
issuedThrough?: IIssuedThrough;
|
|
239
239
|
reservationFor?: IReservationFor;
|
|
240
|
+
/**
|
|
241
|
+
* 予約番号
|
|
242
|
+
*/
|
|
240
243
|
reservationNumber: string;
|
|
241
244
|
subReservation?: IObjectSubReservation[];
|
|
242
245
|
/**
|
package/lib/order.d.ts
CHANGED
|
@@ -122,11 +122,11 @@ export type IEventAsReservationFor = Omit<EventReservationFactory.IReservationFo
|
|
|
122
122
|
export type IReservedTicket = Pick<ITicket, 'typeOf' | 'ticketedSeat' | 'dateIssued' | 'ticketNumber' | 'ticketToken' | 'coaTicketInfo' | 'coaReserveAmount'> & {
|
|
123
123
|
ticketType: ITicketType;
|
|
124
124
|
};
|
|
125
|
-
export type IBusReservation = Pick<BusReservationFactory.IReservation, 'additionalProperty' | 'additionalTicketText' | '
|
|
125
|
+
export type IBusReservation = Pick<BusReservationFactory.IReservation, 'additionalProperty' | 'additionalTicketText' | 'id' | 'issuedThrough' | 'programMembershipUsed' | 'reservationNumber' | 'typeOf'> & {
|
|
126
126
|
reservationFor: ITripAsReservationFor;
|
|
127
127
|
reservedTicket: IReservedTicket;
|
|
128
128
|
};
|
|
129
|
-
export type IEventReservation = Pick<EventReservationFactory.IReservation, 'additionalProperty' | 'additionalTicketText' | '
|
|
129
|
+
export type IEventReservation = Pick<EventReservationFactory.IReservation, 'additionalProperty' | 'additionalTicketText' | 'id' | 'issuedThrough' | 'programMembershipUsed' | 'reservationNumber' | 'typeOf'> & {
|
|
130
130
|
reservationFor: IEventAsReservationFor;
|
|
131
131
|
reservedTicket: IReservedTicket;
|
|
132
132
|
};
|
|
@@ -22,9 +22,10 @@ export interface IIssuedThrough extends ReservationFactory.IIssuedThrough {
|
|
|
22
22
|
id: string;
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
25
|
+
* トリップ予約
|
|
26
26
|
*/
|
|
27
27
|
export interface IReservation extends ReservationFactory.IReservation<IPriceSpecification> {
|
|
28
|
+
bookingTime: Date;
|
|
28
29
|
id: string;
|
|
29
30
|
issuedThrough: IIssuedThrough;
|
|
30
31
|
reservationFor: IReservationFor;
|
|
@@ -49,6 +49,7 @@ export interface IIssuedThrough extends ReservationFactory.IIssuedThrough {
|
|
|
49
49
|
* イベント予約
|
|
50
50
|
*/
|
|
51
51
|
export interface IReservation extends ReservationFactory.IReservation<IPriceSpecification> {
|
|
52
|
+
bookingTime: Date;
|
|
52
53
|
id: string;
|
|
53
54
|
issuedThrough: IIssuedThrough;
|
|
54
55
|
reservationFor: IReservationFor;
|