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

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.
package/lib/order.d.ts CHANGED
@@ -119,7 +119,8 @@ export type ITripAsReservationFor = BusReservationFactory.IReservationFor;
119
119
  export type IEventAsReservationFor = Omit<EventReservationFactory.IReservationFor, 'superEvent'> & {
120
120
  superEvent: ISuperEvent;
121
121
  };
122
- export type IReservedTicket = Pick<ITicket, 'typeOf' | 'ticketedSeat' | 'ticketNumber' | 'dateIssued' | 'ticketToken' | 'coaTicketInfo' | 'coaReserveAmount'> & {
122
+ export type IReservedTicket = Pick<ITicket, 'typeOf' | 'ticketedSeat' | 'identifier' | // 追加(2024-04-15~)
123
+ 'ticketNumber' | 'dateIssued' | 'ticketToken' | 'coaTicketInfo' | 'coaReserveAmount'> & {
123
124
  ticketType: ITicketType;
124
125
  };
125
126
  export type IBusReservation = Pick<BusReservationFactory.IReservation, 'additionalProperty' | 'additionalTicketText' | 'id' | 'issuedThrough' | 'programMembershipUsed' | 'reservationNumber' | 'typeOf'> & {
@@ -18,7 +18,7 @@ export interface IMovieTicketServiceOutput {
18
18
  * チケット識別子
19
19
  * 指定された場合、予約のチケット識別子と関連付けされます
20
20
  */
21
- ticketNumber?: string;
21
+ identifier?: string;
22
22
  ticketedSeat: ISeat;
23
23
  };
24
24
  }
@@ -117,6 +117,10 @@ export interface ITicket {
117
117
  * The date the ticket was used.
118
118
  */
119
119
  dateUsed?: Date;
120
+ /**
121
+ * チケット識別子
122
+ */
123
+ identifier?: string;
120
124
  /**
121
125
  * The organization issuing the ticket or permit.
122
126
  */
@@ -133,7 +137,6 @@ export interface ITicket {
133
137
  */
134
138
  ticketedSeat?: ISeat;
135
139
  /**
136
- * チケット識別子
137
140
  * The unique identifier for the ticket.
138
141
  */
139
142
  ticketNumber?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.367.0-alpha.3",
3
+ "version": "4.367.0-alpha.4",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",