@chevre/factory 4.303.0 → 4.304.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.
|
@@ -92,6 +92,11 @@ export declare type ICOATicketInfoWithDetails = COA.factory.reserve.IUpdReserveT
|
|
|
92
92
|
* 人数制限
|
|
93
93
|
*/
|
|
94
94
|
limitCount: number;
|
|
95
|
+
/**
|
|
96
|
+
* 販売可能チケットのsalePrice
|
|
97
|
+
* COA予約確定時に指定するsalePriceと異なる
|
|
98
|
+
*/
|
|
99
|
+
salesTicketSalePrice: number;
|
|
95
100
|
};
|
|
96
101
|
/**
|
|
97
102
|
* 座席予約供給情報インターフェース
|
|
@@ -74,14 +74,19 @@ export import ICOATicketInfoWithDetails = COAReservationOfferFactory.ICOATicketI
|
|
|
74
74
|
/**
|
|
75
75
|
* 受入COA興行オファー
|
|
76
76
|
*/
|
|
77
|
-
export declare type IAcceptedOffer4COA = Pick<ReserveTransactionFactory.IAcceptedTicketOfferWithoutDetail, 'id' | 'itemOffered' | 'additionalProperty'> & Pick<OfferFactory.IOffer, 'typeOf' | 'id' | 'identifier' | 'name' | 'priceCurrency' | '
|
|
77
|
+
export declare type IAcceptedOffer4COA = Pick<ReserveTransactionFactory.IAcceptedTicketOfferWithoutDetail, 'id' | 'itemOffered' | 'additionalProperty'> & Pick<OfferFactory.IOffer, 'typeOf' | 'id' | 'identifier' | 'name' | 'priceCurrency' | 'additionalProperty' | 'eligibleMonetaryAmount'> & {
|
|
78
78
|
itemOffered: ReserveTransactionFactory.IAcceptedTicketOfferItemOffered;
|
|
79
79
|
ticketInfo: ICOATicketInfoWithDetails;
|
|
80
80
|
/**
|
|
81
81
|
* COAイベントでは、priceSpecificationで価格を表現しきれないので、numberとしてのpriceが必要
|
|
82
82
|
*/
|
|
83
83
|
price: number;
|
|
84
|
-
priceSpecification: OrderFactory.ITicketPriceSpecification
|
|
84
|
+
priceSpecification: OrderFactory.ITicketPriceSpecification;
|
|
85
|
+
};
|
|
86
|
+
export declare type IAcceptedOfferBeforeAuthorize4COA = Pick<ReserveTransactionFactory.IAcceptedTicketOfferWithoutDetail, 'id' | 'itemOffered' | 'additionalProperty'> & Pick<OfferFactory.IOffer, 'id' | 'name' | 'additionalProperty'> & {
|
|
87
|
+
itemOffered: ReserveTransactionFactory.IAcceptedTicketOfferItemOffered;
|
|
88
|
+
ticketInfo: Omit<ICOATicketInfoWithDetails, 'salePrice'>;
|
|
89
|
+
priceSpecification: {
|
|
85
90
|
appliesToSurfrock?: {
|
|
86
91
|
identifier?: string;
|
|
87
92
|
serviceOutput?: {
|