@chevre/factory 4.389.0-alpha.11 → 4.389.0-alpha.13
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,3 +1,4 @@
|
|
|
1
|
+
import { ActionType } from '../actionType';
|
|
1
2
|
import { IProvider, ITicket, IUnderName } from '../reservation';
|
|
2
3
|
import { IIssuedThrough, IReservation as IEventReservation, IReservationFor } from '../reservation/event';
|
|
3
4
|
import { ReservationStatusType } from '../reservationStatusType';
|
|
@@ -81,6 +82,21 @@ export interface IReservation4informUsed {
|
|
|
81
82
|
reservationStatus?: never;
|
|
82
83
|
checkedIn?: never;
|
|
83
84
|
}
|
|
85
|
+
/**
|
|
86
|
+
* 予約使用アクション通知
|
|
87
|
+
*/
|
|
88
|
+
export interface IUseAction {
|
|
89
|
+
object: Pick<IReservation4informUsed, 'id' | 'modifiedTime' | 'reservedTicket' | 'typeOf'>;
|
|
90
|
+
typeOf: ActionType.UseAction;
|
|
91
|
+
project: IProject;
|
|
92
|
+
id: string;
|
|
93
|
+
location?: {
|
|
94
|
+
/**
|
|
95
|
+
* 入場ゲートコード
|
|
96
|
+
*/
|
|
97
|
+
identifier: string;
|
|
98
|
+
};
|
|
99
|
+
}
|
|
84
100
|
/**
|
|
85
101
|
* 予約作成通知
|
|
86
102
|
*/
|
|
@@ -105,5 +121,5 @@ export interface IReservationPackage4informPendingCanceled {
|
|
|
105
121
|
reservationStatus: ReservationStatusType.ReservationCancelled;
|
|
106
122
|
typeOf: ReservationType.ReservationPackage;
|
|
107
123
|
}
|
|
108
|
-
export type IReservation4inform = IReservationPackage4informConfirmed | IReservation4informCanceled[] | IReservation4informCheckedIn[] | IReservationPackage4informCheckedIn[] | IReservation4informUsed | IReservationPackage4informPending | IReservationPackage4informPendingCanceled;
|
|
124
|
+
export type IReservation4inform = IReservationPackage4informConfirmed | IReservation4informCanceled[] | IReservation4informCheckedIn[] | IReservationPackage4informCheckedIn[] | IReservation4informUsed | IUseAction | IReservationPackage4informPending | IReservationPackage4informPendingCanceled;
|
|
109
125
|
export {};
|