@chevre/factory 4.343.0-alpha.4 → 4.343.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.
- package/lib/offerCatalog.d.ts +8 -0
- package/lib/unitPriceOffer.d.ts +1 -0
- package/package.json +1 -1
package/lib/offerCatalog.d.ts
CHANGED
|
@@ -32,10 +32,18 @@ export interface IItemListElementAsAggregateOffer {
|
|
|
32
32
|
}
|
|
33
33
|
export type IItemListElement = IItemListElementAsOfferCatalog | IItemListElementAsAggregateOffer;
|
|
34
34
|
export interface IReletedOfferPriceSpecification {
|
|
35
|
+
/**
|
|
36
|
+
* 適用決済カード条件
|
|
37
|
+
* 複数の場合、全条件を満たすオファーのみが対象
|
|
38
|
+
*/
|
|
35
39
|
appliesToMovieTicket?: Pick<IAppliesToMovieTicket, 'serviceOutput'>[];
|
|
36
40
|
}
|
|
37
41
|
export interface IRelatedOffer {
|
|
38
42
|
typeOf: OfferType.Offer;
|
|
43
|
+
/**
|
|
44
|
+
* 対象オファーの価格仕様条件
|
|
45
|
+
* 適用決済カード条件無しの場合、存在しない
|
|
46
|
+
*/
|
|
39
47
|
priceSpecification?: IReletedOfferPriceSpecification;
|
|
40
48
|
}
|
|
41
49
|
/**
|
package/lib/unitPriceOffer.d.ts
CHANGED