Skip to content

Commit

Permalink
興行オファー承認アクションにアドオン数量指定を追加
Browse files Browse the repository at this point in the history
  • Loading branch information
ilovegadd committed Sep 6, 2023
1 parent a0e74f7 commit c1079a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -12,6 +12,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
- 集計オファーを追加
- 集計オファー同期タスクを追加
- 単価オファー検索条件拡張
- 興行オファー承認アクションにアドオン数量指定を追加

### Changed

Expand Down
3 changes: 1 addition & 2 deletions src/action/authorize/offer/seatReservation.ts
Expand Up @@ -77,7 +77,6 @@ export type IAcceptedOfferPriceSpecification =
*/
appliesToMovieTicket?: ReserveTransactionFactory.IAcceptedAppliesToMovieTicket;
};
export type IAcceptedAddOn = Pick<OfferFactory.IAddOn, 'typeOf' | 'id' | 'priceCurrency'>;
/**
* 受け入れられたチケットオファー
*/
Expand All @@ -88,7 +87,7 @@ export type IAcceptedOffer4chevre =
>
& Pick<ReserveTransactionFactory.IAcceptedTicketOfferWithoutDetail, 'id' | 'addOn' | 'additionalProperty'>
& {
addOn?: IAcceptedAddOn[];
addOn?: ReserveTransactionFactory.IAcceptedAddOn[];
itemOffered?: ReserveTransactionFactory.IAcceptedTicketOfferItemOffered;
priceSpecification: IAcceptedOfferPriceSpecification;
};
Expand Down

0 comments on commit c1079a2

Please sign in to comment.