@chevre/factory 6.0.0-alpha.8 → 6.0.0-alpha.9

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.
@@ -1,11 +1,13 @@
1
1
  import { ActionType } from '../actionType';
2
2
  import { IProvider, ITicket, IUnderName } from '../reservation';
3
- import { IIssuedThrough, IReservation as IEventReservation, IReservationFor } from '../reservation/event';
3
+ import { IIssuedThrough, IReservation as IEventReservation, IReservationFor, IPrice } from '../reservation/event';
4
4
  import { ReservationStatusType } from '../reservationStatusType';
5
5
  import { ReservationType } from '../reservationType';
6
6
  type IProject = IEventReservation['project'];
7
7
  export type IMaskedUnderName = Pick<IUnderName, 'id' | 'typeOf'>;
8
- export type ISubReservation4inform = Pick<IEventReservation, 'additionalProperty' | 'additionalTicketText' | 'id' | 'modifiedTime' | 'price' | 'programMembershipUsed' | 'reservedTicket' | 'subReservation' | 'typeOf'>;
8
+ export type ISubReservation4inform = Pick<IEventReservation, 'additionalProperty' | 'additionalTicketText' | 'id' | 'modifiedTime' | 'programMembershipUsed' | 'reservedTicket' | 'subReservation' | 'typeOf'> & {
9
+ price?: IPrice;
10
+ };
9
11
  /**
10
12
  * 確定予約通知
11
13
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "6.0.0-alpha.8",
3
+ "version": "6.0.0-alpha.9",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",