@chevre/factory 4.301.0-alpha.1 → 4.301.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.
|
@@ -84,6 +84,14 @@ export declare type ICOATicketInfoWithDetails = COA.factory.reserve.IUpdReserveT
|
|
|
84
84
|
* ポイント割引の場合の消費ポイント
|
|
85
85
|
*/
|
|
86
86
|
usePoint: number;
|
|
87
|
+
/**
|
|
88
|
+
* 制限単位(001:n人単位、002:n人以上)
|
|
89
|
+
*/
|
|
90
|
+
limitUnit: string;
|
|
91
|
+
/**
|
|
92
|
+
* 人数制限
|
|
93
|
+
*/
|
|
94
|
+
limitCount: number;
|
|
87
95
|
};
|
|
88
96
|
/**
|
|
89
97
|
* 座席予約供給情報インターフェース
|
|
@@ -81,9 +81,12 @@ export declare type IAcceptedOffer4COA = Pick<ReserveTransactionFactory.IAccepte
|
|
|
81
81
|
* COAイベントでは、priceSpecificationで価格を表現しきれないので、numberとしてのpriceが必要
|
|
82
82
|
*/
|
|
83
83
|
price: number;
|
|
84
|
-
priceSpecification
|
|
84
|
+
priceSpecification: OrderFactory.ITicketPriceSpecification & {
|
|
85
85
|
appliesToSurfrock?: {
|
|
86
86
|
identifier?: string;
|
|
87
|
+
serviceOutput?: {
|
|
88
|
+
typeOf?: string;
|
|
89
|
+
};
|
|
87
90
|
};
|
|
88
91
|
};
|
|
89
92
|
};
|