@chevre/factory 4.386.0-alpha.1 → 4.386.0-alpha.2
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.
|
@@ -76,11 +76,6 @@ export interface IResult extends IResultAsAggregateOffer {
|
|
|
76
76
|
*/
|
|
77
77
|
amount: OrderFactory.ITotalPaymentDue[];
|
|
78
78
|
}
|
|
79
|
-
/**
|
|
80
|
-
* 受け入れられたチケットオファー
|
|
81
|
-
* optimize(2024-07-03~)
|
|
82
|
-
*/
|
|
83
|
-
export type IAcceptedOffer = Pick<IAcceptedTicketOfferWithoutDetail, 'id' | 'addOn' | 'additionalProperty' | 'priceSpecification' | 'itemOffered'>;
|
|
84
79
|
export type IAcceptedOfferWithoutDetail = IAcceptedTicketOfferWithoutDetail;
|
|
85
80
|
export { IObjectWithoutDetail };
|
|
86
81
|
export type ICOAPendingTransaction = Pick<COA.factory.reserve.IDelTmpReserveArgs, 'theaterCode' | 'dateJouei' | 'titleCode' | 'titleBranchNum' | 'timeBegin' | 'tmpReserveNum'> & {
|
|
@@ -214,6 +214,17 @@ export interface IAcceptedTicketOfferWithoutDetail {
|
|
|
214
214
|
priceSpecification?: {
|
|
215
215
|
appliesToMovieTicket?: IAcceptedAppliesToMovieTicket;
|
|
216
216
|
};
|
|
217
|
+
/**
|
|
218
|
+
* オファーの含まれるサブカタログID
|
|
219
|
+
* プロダクトのカタログがサブカタログで構成されていない場合は無視される
|
|
220
|
+
* 明示的に指定しない場合、プロダクトのひとつめのカタログに含まれるサブカタログで自動的にフィルターされる
|
|
221
|
+
*/
|
|
222
|
+
includedInDataCatalog?: {
|
|
223
|
+
/**
|
|
224
|
+
* サブカタログID
|
|
225
|
+
*/
|
|
226
|
+
id: string;
|
|
227
|
+
};
|
|
217
228
|
}
|
|
218
229
|
/**
|
|
219
230
|
* 受け入れられたチケットオファー
|