@chevre/factory 4.329.0-alpha.8 → 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.
|
@@ -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
|
}
|