@chevre/factory 4.367.0-alpha.3 → 4.367.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.
package/lib/order.d.ts
CHANGED
|
@@ -119,7 +119,8 @@ export type ITripAsReservationFor = BusReservationFactory.IReservationFor;
|
|
|
119
119
|
export type IEventAsReservationFor = Omit<EventReservationFactory.IReservationFor, 'superEvent'> & {
|
|
120
120
|
superEvent: ISuperEvent;
|
|
121
121
|
};
|
|
122
|
-
export type IReservedTicket = Pick<ITicket, 'typeOf' | 'ticketedSeat' | '
|
|
122
|
+
export type IReservedTicket = Pick<ITicket, 'typeOf' | 'ticketedSeat' | 'identifier' | // 追加(2024-04-15~)
|
|
123
|
+
'ticketNumber' | 'dateIssued' | 'ticketToken' | 'coaTicketInfo' | 'coaReserveAmount'> & {
|
|
123
124
|
ticketType: ITicketType;
|
|
124
125
|
};
|
|
125
126
|
export type IBusReservation = Pick<BusReservationFactory.IReservation, 'additionalProperty' | 'additionalTicketText' | 'id' | 'issuedThrough' | 'programMembershipUsed' | 'reservationNumber' | 'typeOf'> & {
|
package/lib/reservation.d.ts
CHANGED
|
@@ -117,6 +117,10 @@ export interface ITicket {
|
|
|
117
117
|
* The date the ticket was used.
|
|
118
118
|
*/
|
|
119
119
|
dateUsed?: Date;
|
|
120
|
+
/**
|
|
121
|
+
* チケット識別子
|
|
122
|
+
*/
|
|
123
|
+
identifier?: string;
|
|
120
124
|
/**
|
|
121
125
|
* The organization issuing the ticket or permit.
|
|
122
126
|
*/
|
|
@@ -133,7 +137,6 @@ export interface ITicket {
|
|
|
133
137
|
*/
|
|
134
138
|
ticketedSeat?: ISeat;
|
|
135
139
|
/**
|
|
136
|
-
* チケット識別子
|
|
137
140
|
* The unique identifier for the ticket.
|
|
138
141
|
*/
|
|
139
142
|
ticketNumber?: string;
|