@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<Pick<factory.transaction.placeOrder.IResult, 'order'>>;
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
@@ -111,5 +111,5 @@
111
111
  "postversion": "git push origin --tags",
112
112
  "prepublishOnly": "npm run clean && npm run build && npm test && npm run doc"
113
113
  },
114
- "version": "21.20.0-alpha.67"
114
+ "version": "21.20.0-alpha.68"
115
115
  }