@chevre/factory 4.388.0-alpha.8 → 4.388.0-alpha.9
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,4 +1,4 @@
|
|
|
1
|
-
import { IProvider, IUnderName } from '../reservation';
|
|
1
|
+
import { IProvider, ITicket, IUnderName } from '../reservation';
|
|
2
2
|
import { IIssuedThrough, IReservation as IEventReservation, IReservationFor } from '../reservation/event';
|
|
3
3
|
import { ReservationStatusType } from '../reservationStatusType';
|
|
4
4
|
import { ReservationType } from '../reservationType';
|
|
@@ -47,6 +47,10 @@ export interface IReservation4informCheckedIn {
|
|
|
47
47
|
reservationNumber?: string;
|
|
48
48
|
checkedIn: boolean;
|
|
49
49
|
modifiedTime?: Date;
|
|
50
|
+
/**
|
|
51
|
+
* 発券通知がarrayの場合、ひとつめのみreservedTicket.ticketTokenが含まれる(2024-10-30~)
|
|
52
|
+
*/
|
|
53
|
+
reservedTicket?: Pick<ITicket, 'ticketToken'>;
|
|
50
54
|
reservationStatus?: never;
|
|
51
55
|
attended?: never;
|
|
52
56
|
}
|