@chevre/domain 21.20.0-alpha.67 → 21.20.0-alpha.68
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.
|
@@ -30,5 +30,15 @@ type IConfirmParams = PlaceOrderFactory.IConfirmParams & {
|
|
|
30
30
|
/**
|
|
31
31
|
* 注文取引を確定する
|
|
32
32
|
*/
|
|
33
|
-
declare function confirm(params: IConfirmParams): IConfirmOperation<
|
|
33
|
+
declare function confirm(params: IConfirmParams): IConfirmOperation<{
|
|
34
|
+
order: factory.order.IOrder;
|
|
35
|
+
/**
|
|
36
|
+
* expectsReservationIdsの場合のみ
|
|
37
|
+
*/
|
|
38
|
+
eventId?: string;
|
|
39
|
+
/**
|
|
40
|
+
* expectsReservationIdsの場合のみ
|
|
41
|
+
*/
|
|
42
|
+
reservationIds?: string[];
|
|
43
|
+
}>;
|
|
34
44
|
export { confirm };
|
package/package.json
CHANGED