@chevre/factory 4.367.0-alpha.4 → 4.367.0-alpha.5

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.
@@ -71,12 +71,16 @@ export interface IBusReservatonAsItemOfferedServiceOutput {
71
71
  additionalTicketText?: string;
72
72
  programMembershipUsed?: IAcceptedProgramMembershipUsed;
73
73
  reservedTicket?: {
74
+ /**
75
+ * チケット識別子
76
+ * 指定された場合、決済カードの対象チケット識別子と関連付けされます
77
+ * /^[0-9a-zA-Z]{8,16}$/
78
+ */
79
+ identifier?: string;
74
80
  issuedBy?: ReservationFactory.IUnderName;
75
81
  typeOf: ReservationFactory.TicketType;
76
82
  /**
77
- * 予約座席指定
78
- * 指定席イベントの場合、座席を指定
79
- * 自由席イベントの場合、あるいは、最大収容人数がないイベントの場合は、座席指定不要
83
+ * 座席指定
80
84
  */
81
85
  ticketedSeat?: ReservationFactory.ISeat;
82
86
  };
@@ -94,12 +98,16 @@ export interface IEventReservatonAsItemOfferedServiceOutput {
94
98
  additionalTicketText?: string;
95
99
  programMembershipUsed?: IAcceptedProgramMembershipUsed;
96
100
  reservedTicket?: {
101
+ /**
102
+ * チケット識別子
103
+ * 指定された場合、決済カードの対象チケット識別子と関連付けされます
104
+ * /^[0-9a-zA-Z]{8,16}$/
105
+ */
106
+ identifier?: string;
97
107
  issuedBy?: ReservationFactory.IUnderName;
98
108
  typeOf: ReservationFactory.TicketType;
99
109
  /**
100
- * 予約座席指定
101
- * 指定席イベントの場合、座席を指定
102
- * 自由席イベントの場合、あるいは、最大収容人数がないイベントの場合は、座席指定不要
110
+ * 座席指定
103
111
  */
104
112
  ticketedSeat?: ReservationFactory.ISeat;
105
113
  };
@@ -225,10 +233,6 @@ export interface IObjectWithoutDetail {
225
233
  export type IReservationFor = IBusReservationReservationFor | IEventReservationReservationFor;
226
234
  export type IOmittedReservationProperty = 'reservationFor' | 'broker' | 'issuedThrough' | 'provider' | 'reservationStatus' | 'project' | 'reservationNumber' | 'bookingTime' | 'modifiedTime' | 'underName' | 'checkedIn' | 'attended';
227
235
  export type IObjectSubReservation = Omit<IBusReservation, IOmittedReservationProperty> | Omit<IEventReservation, IOmittedReservationProperty>;
228
- export type IObjectSubReservationReservedTicket = Pick<ReservationFactory.ITicket, 'issuedBy' | 'ticketedSeat' | 'ticketType'>;
229
- export type IMinimizedObjectSubReservation = Pick<IObjectSubReservation, 'typeOf' | 'id' | 'subReservation'> & {
230
- reservedTicket: IObjectSubReservationReservedTicket;
231
- };
232
236
  export type IIssuedThrough = IBusReservationIssuedThrough | IEventReservationIssuedThrough;
233
237
  /**
234
238
  * 取引対象物
@@ -17,6 +17,7 @@ export interface IMovieTicketServiceOutput {
17
17
  /**
18
18
  * チケット識別子
19
19
  * 指定された場合、予約のチケット識別子と関連付けされます
20
+ * /^[0-9a-zA-Z]{8,16}$/
20
21
  */
21
22
  identifier?: string;
22
23
  ticketedSeat: ISeat;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.367.0-alpha.4",
3
+ "version": "4.367.0-alpha.5",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",