@chevre/factory 8.1.0-alpha.6 → 8.1.0-alpha.7
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.
|
@@ -280,7 +280,8 @@ export type ISubReservationReservedTicket = Omit<IReservedTicket, 'ticketType'>
|
|
|
280
280
|
*/
|
|
281
281
|
ticketType: ITicketType;
|
|
282
282
|
};
|
|
283
|
-
export type IEventReservationAsSubReservation = Pick<IEventReservation, 'additionalProperty' | 'additionalTicketText' | 'id' | '
|
|
283
|
+
export type IEventReservationAsSubReservation = Pick<IEventReservation, 'additionalProperty' | 'additionalTicketText' | 'id' | 'programMembershipUsed' | 'subReservation' | 'typeOf'> & {
|
|
284
|
+
numSeats?: number;
|
|
284
285
|
price?: IReservationPrice;
|
|
285
286
|
priceCurrency?: PriceCurrency;
|
|
286
287
|
reservedTicket: ISubReservationReservedTicket;
|
|
@@ -151,6 +151,7 @@ export interface IReservation extends IBaseReservation<IPriceSpecification> {
|
|
|
151
151
|
typeOf: ReservationType.EventReservation;
|
|
152
152
|
issuedThrough?: never;
|
|
153
153
|
priceCurrency?: never;
|
|
154
|
+
numSeats?: never;
|
|
154
155
|
}
|
|
155
156
|
export interface IReservationForSearchConditions {
|
|
156
157
|
typeOf?: EventType;
|
|
@@ -153,10 +153,6 @@ export interface IReservation<T extends Omit<IPriceSpecification, 'project'>> {
|
|
|
153
153
|
* Any additional text to appear on a ticket, such as additional privileges or identifiers.
|
|
154
154
|
*/
|
|
155
155
|
additionalTicketText?: string;
|
|
156
|
-
/**
|
|
157
|
-
* Who made the reservation.
|
|
158
|
-
* SupersededBy broker(2022-05-13~)
|
|
159
|
-
*/
|
|
160
156
|
/**
|
|
161
157
|
* Date the reservation was made.
|
|
162
158
|
*/
|
|
@@ -170,13 +166,6 @@ export interface IReservation<T extends Omit<IPriceSpecification, 'project'>> {
|
|
|
170
166
|
* Time the reservation was last modified.
|
|
171
167
|
*/
|
|
172
168
|
modifiedTime?: Date;
|
|
173
|
-
/**
|
|
174
|
-
* Web page where reservation can be modified.
|
|
175
|
-
*/
|
|
176
|
-
/**
|
|
177
|
-
* Number of seats if unreserved seating.
|
|
178
|
-
*/
|
|
179
|
-
numSeats?: number;
|
|
180
169
|
/**
|
|
181
170
|
* Total price of the Reservation.
|
|
182
171
|
*/
|