@chevre/factory 8.2.0-alpha.4 → 8.2.0-alpha.6

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.
@@ -360,11 +360,12 @@ export type IMovieTicketTypeChargePriceComponent = Pick<IMovieTicketTypeChargeSp
360
360
  export type IUnitPriceComponent = Pick<IUnitPriceOfferPriceSpecification, 'accounting' | 'appliesToMovieTicket' | 'appliesToAddOn' | 'name' | 'price' | 'priceCurrency' | 'referenceQuantity' | 'typeOf' | 'valueAddedTaxIncluded'>;
361
361
  export type ITicketPriceComponent = ICategoryChargePriceComponent | IMovieTicketTypeChargePriceComponent | IUnitPriceComponent;
362
362
  export type IPrice = Pick<ICompoundPriceSpecification<ITicketPriceComponent>, 'priceComponent' | 'priceCurrency' | 'typeOf' | 'valueAddedTaxIncluded'>;
363
- export type IEventReservationAsSubReservation = Pick<IEventReservation, 'additionalProperty' | 'additionalTicketText' | 'id' | 'programMembershipUsed' | 'subReservation' | 'typeOf'> & {
363
+ export type IEventReservationAsSubReservation = Pick<IEventReservation, 'additionalTicketText' | 'id' | 'programMembershipUsed' | 'subReservation' | 'typeOf'> & {
364
364
  numSeats?: number;
365
365
  price?: IPrice;
366
366
  priceCurrency?: PriceCurrency;
367
367
  reservedTicket: ISubReservationReservedTicket;
368
+ additionalProperty?: never;
368
369
  };
369
370
  export type IObjectSubReservation = IEventReservationAsSubReservation;
370
371
  export type IServiceTypeOfIssuedThrough = Pick<IServiceType, 'codeValue' | 'inCodeSet' | 'typeOf'>;
@@ -200,10 +200,11 @@ export type IEventReservation = Pick<IRawReservation, 'additionalProperty' | 'ad
200
200
  /**
201
201
  * COAの場合の予約
202
202
  */
203
- export type ICOAEventReservation = Pick<IRawReservation, 'additionalProperty' | 'additionalTicketText' | 'id' | 'programMembershipUsed' | 'reservationNumber' | 'typeOf'> & {
203
+ export type ICOAEventReservation = Pick<IRawReservation, 'additionalTicketText' | 'id' | 'programMembershipUsed' | 'reservationNumber' | 'typeOf'> & {
204
204
  issuedThrough: ICOAIssuedThrough;
205
205
  reservationFor: ICOAEventAsReservationFor;
206
206
  reservedTicket: ICOAReservedTicket;
207
+ additionalProperty?: IPropertyValue<string>[];
207
208
  };
208
209
  /**
209
210
  * オファー提供アイテムとしての予約
@@ -532,14 +533,7 @@ export interface IAcceptedOffersSearchConditions {
532
533
  * 予約番号
533
534
  */
534
535
  reservationNumbers?: string[];
535
- reservedTicket?: {
536
- /**
537
- * 予約チケット識別子
538
- */
539
- identifier?: {
540
- $eq?: string;
541
- };
542
- };
536
+ reservedTicket?: never;
543
537
  };
544
538
  serialNumber?: {
545
539
  $eq?: string;
@@ -618,7 +612,7 @@ export interface ISearchConditions {
618
612
  */
619
613
  paymentMethods?: IPaymentMethodsSearchConditions;
620
614
  /**
621
- * 注文アイテム条件
615
+ * 注文オファー条件
622
616
  */
623
617
  acceptedOffers?: IAcceptedOffersSearchConditions;
624
618
  }
@@ -199,5 +199,5 @@ export interface IReservation {
199
199
  * 出席(入場)済かどうか
200
200
  */
201
201
  attended?: boolean;
202
- additionalProperty?: IPropertyValue<string>[];
202
+ additionalProperty?: never;
203
203
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "8.2.0-alpha.4",
3
+ "version": "8.2.0-alpha.6",
4
4
  "main": "./lib/index.js",
5
5
  "types": "./lib/index.d.ts",
6
6
  "files": [