@chevre/factory 4.301.0 → 4.302.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.
- package/lib/invoice.d.ts +7 -1
- package/package.json +1 -1
package/lib/invoice.d.ts
CHANGED
|
@@ -28,7 +28,13 @@ export interface IReservation {
|
|
|
28
28
|
* 予約価格
|
|
29
29
|
* priceSpecificationへ完全移行(2022-11-23~)
|
|
30
30
|
*/
|
|
31
|
-
priceSpecification
|
|
31
|
+
priceSpecification: IReservationPriceSpecification;
|
|
32
|
+
reservedTicket?: {
|
|
33
|
+
/**
|
|
34
|
+
* COAの場合のみチケットトークンが存在(2023-03-14~)
|
|
35
|
+
*/
|
|
36
|
+
ticketToken?: string;
|
|
37
|
+
};
|
|
32
38
|
}
|
|
33
39
|
export interface IMovieTicketAsPaymentServiceOutput {
|
|
34
40
|
/**
|