@chevre/factory 4.313.0-alpha.12 → 4.313.0-alpha.13

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.
@@ -4,7 +4,7 @@
4
4
  {
5
5
  "paymentMethod": {
6
6
  /**
7
- * ムビチケリスト
7
+ * 決済カードリスト
8
8
  */
9
9
  "serviceOutput": [
10
10
  {
@@ -12,6 +12,13 @@
12
12
  * 購入番号
13
13
  */
14
14
  "identifier": "2127021398",
15
+ "amount": {
16
+ /**
17
+ * 決済カード計上金額
18
+ * 認証レスポンスに値が存在する場合のみ含まれます
19
+ */
20
+ "value": 1200
21
+ },
15
22
  "serviceOutput": {
16
23
  /**
17
24
  * 予約の価格仕様
@@ -209,15 +209,18 @@ export interface IObjectWithoutDetail {
209
209
  }
210
210
  export declare type IReservationFor = IBusReservationReservationFor | IEventReservationReservationFor;
211
211
  export declare type IObjectSubReservation = ReserveActionFactory.ISubReservation;
212
- export declare type IMinimizedObjectSubReservation = Pick<ReserveActionFactory.ISubReservation, 'typeOf' | 'id' | 'reservationStatus' | 'subReservation' | 'underName'>;
212
+ export declare type IObjectSubReservationReservedTicket = Pick<ReservationFactory.ITicket, 'issuedBy' | 'ticketedSeat' | 'ticketType'>;
213
+ export declare type IMinimizedObjectSubReservation = Pick<ReserveActionFactory.ISubReservation, 'typeOf' | 'id' | 'subReservation'> & {
214
+ reservedTicket: IObjectSubReservationReservedTicket;
215
+ };
213
216
  /**
214
217
  * 取引対象物
215
218
  */
216
- export interface IObject extends Omit<IReservationPackage, 'subReservation'> {
219
+ export interface IObject extends Pick<IReservationPackage, 'broker' | 'reservationStatus' | 'typeOf'> {
217
220
  acceptedOffer?: IAcceptedOffer4object[];
218
221
  reservationFor?: IReservationFor;
219
222
  reservationNumber: string;
220
- subReservation?: IObjectSubReservation[];
223
+ subReservation?: IMinimizedObjectSubReservation[];
221
224
  }
222
225
  export interface IPotentialActions {
223
226
  reserve: ReserveActionFactory.IAttributes[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.313.0-alpha.12",
3
+ "version": "4.313.0-alpha.13",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",