@chevre/factory 4.329.0-alpha.7 → 4.329.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.
@@ -57,12 +57,11 @@ export declare type IAcceptedOfferPriceSpecification = ITicketPriceSpecification
57
57
  */
58
58
  appliesToMovieTicket?: ReserveTransactionFactory.IAcceptedAppliesToMovieTicket;
59
59
  };
60
- export declare type IAcceptedAddOn = Pick<OfferFactory.IAddOn, 'typeOf' | 'id' | 'priceCurrency'>;
61
60
  /**
62
61
  * 受け入れられたチケットオファー
63
62
  */
64
63
  export declare type IAcceptedOffer4chevre = Pick<ITicketOffer, 'id' | 'identifier' | 'typeOf' | 'priceCurrency' | 'itemOffered' | 'additionalProperty'> & Pick<ReserveTransactionFactory.IAcceptedTicketOfferWithoutDetail, 'id' | 'addOn' | 'additionalProperty'> & {
65
- addOn?: IAcceptedAddOn[];
64
+ addOn?: ReserveTransactionFactory.IAcceptedAddOn[];
66
65
  itemOffered?: ReserveTransactionFactory.IAcceptedTicketOfferItemOffered;
67
66
  priceSpecification: IAcceptedOfferPriceSpecification;
68
67
  };
@@ -7,6 +7,9 @@ export declare type ISubOffer = IUnitPriceOffer;
7
7
  */
8
8
  export interface IAggregateOffer extends Pick<IOffer, 'typeOf' | 'project'> {
9
9
  typeOf: OfferType.AggregateOffer;
10
+ highPrice?: number;
11
+ lowPrice?: number;
12
+ offerCount?: number;
10
13
  /**
11
14
  * サブオファー
12
15
  * 基本的に1つの基本オファーが含まれる
package/lib/product.d.ts CHANGED
@@ -245,6 +245,10 @@ export interface ITicketOffer extends Pick<IBaseOffer, 'name' | 'description' |
245
245
  name: IOfferName;
246
246
  priceSpecification: ITicketPriceSpecification;
247
247
  itemOffered?: UnitPriceOfferFactory.IItemOffered;
248
+ offerIndex?: number;
249
+ /**
250
+ * カタログ内ソートインデックス
251
+ */
248
252
  sortIndex?: number;
249
253
  typeOf: OfferType.Offer;
250
254
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.329.0-alpha.7",
3
+ "version": "4.329.0-alpha.9",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",